[LON-CAPA-cvs] cvs: loncom(version_2_11_X) /xml lonxml.pm
raeburn
raeburn at source.lon-capa.org
Sun Jul 7 17:43:24 EDT 2024
raeburn Sun Jul 7 21:43:24 2024 EDT
Modified files: (Branch: version_2_11_X)
/loncom/xml lonxml.pm
Log:
- For 2.11
Backport 1.563
Index: loncom/xml/lonxml.pm
diff -u loncom/xml/lonxml.pm:1.531.2.25 loncom/xml/lonxml.pm:1.531.2.26
--- loncom/xml/lonxml.pm:1.531.2.25 Thu Jul 4 15:50:20 2024
+++ loncom/xml/lonxml.pm Sun Jul 7 21:43:24 2024
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# XML Parser Module
#
-# $Id: lonxml.pm,v 1.531.2.25 2024/07/04 15:50:20 raeburn Exp $
+# $Id: lonxml.pm,v 1.531.2.26 2024/07/07 21:43:24 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -1633,6 +1633,21 @@
return $output;
}
+sub setmode_javascript {
+ return <<"ENDSCRIPT";
+<script type="text/javascript">
+// <![CDATA[
+function setmode(form,probmode) {
+ var initial = form.problemmode.value;
+ form.problemmode.value = probmode;
+ form.submit();
+ form.problemmode.value = initial;
+}
+// ]]>
+</script>
+ENDSCRIPT
+}
+
sub inserteditinfo {
my ($filecontents,$filetype,$filename,$symb,$itemtitle,$folderpath,$uri,$action) = @_;
$filecontents = &HTML::Entities::encode($filecontents,'<>&"');
More information about the LON-CAPA-cvs
mailing list