[LON-CAPA-cvs] cvs: loncom /interface lonhtmlcommon.pm
albertel
lon-capa-cvs@mail.lon-capa.org
Thu, 01 Jun 2006 19:30:50 -0000
albertel Thu Jun 1 15:30:50 2006 EDT
Modified files:
/loncom/interface lonhtmlcommon.pm
Log:
-xhtmlize
Index: loncom/interface/lonhtmlcommon.pm
diff -u loncom/interface/lonhtmlcommon.pm:1.130 loncom/interface/lonhtmlcommon.pm:1.131
--- loncom/interface/lonhtmlcommon.pm:1.130 Tue May 30 08:46:09 2006
+++ loncom/interface/lonhtmlcommon.pm Thu Jun 1 15:30:49 2006
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# a pile of common html routines
#
-# $Id: lonhtmlcommon.pm,v 1.130 2006/05/30 12:46:09 www Exp $
+# $Id: lonhtmlcommon.pm,v 1.131 2006/06/01 19:30:49 albertel Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -820,10 +820,10 @@
function openpopwin () {
popwin=open(\'\',\'popwin\',\'width=400,height=100\');".
"popwin.document.writeln(\'".$start_page.
- "<h4>$heading</h4>".
- "<form name=popremain>".
+ "<h4>$heading<\/h4>".
+ "<form name=\"popremain\" method=\"post\">".
'<input type="text" size="'.$width.'" name="remaining" value="'.
- &mt('Starting').'"></form>'.$end_page.
+ &mt('Starting').'" /><\\/form>'.$end_page.
"\');".
"popwin.document.close();}".
"\nwindow.setTimeout(openpopwin,0)</script>");
@@ -998,7 +998,7 @@
function spellcheckerwindow() {
checkwin=window.open($nothing,'spellcheckwin','height=320,width=280,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no');
- checkwin.document.writeln('$start_page<form name="spellcheckform" action="/adm/spellcheck" method="post"><input type="hidden" name="text" value="" /></form>$end_page');
+ checkwin.document.writeln('$start_page<form name="spellcheckform" action="/adm/spellcheck" method="post"><input type="hidden" name="text" value="" /><\\/form>$end_page');
checkwin.document.close();
}
// END LON-CAPA Internal -->