[LON-CAPA-cvs] cvs: loncom /homework bridgetask.pm structuretags.pm
albertel
lon-capa-cvs@mail.lon-capa.org
Thu, 02 Mar 2006 21:20:31 -0000
albertel Thu Mar 2 16:20:31 2006 EDT
Modified files:
/loncom/homework structuretags.pm bridgetask.pm
Log:
- some xhtml cleanups
Index: loncom/homework/structuretags.pm
diff -u loncom/homework/structuretags.pm:1.336 loncom/homework/structuretags.pm:1.337
--- loncom/homework/structuretags.pm:1.336 Wed Feb 15 21:03:25 2006
+++ loncom/homework/structuretags.pm Thu Mar 2 16:20:30 2006
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# definition of tags that give a structure to a document
#
-# $Id: structuretags.pm,v 1.336 2006/02/16 02:03:25 albertel Exp $
+# $Id: structuretags.pm,v 1.337 2006/03/02 21:20:30 albertel Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -156,9 +156,8 @@
}
my $form_tag_start;
if (!defined($found{'form'})) {
- $form_tag_start='<form name="lonhomework" enctype="multipart/form-data" method="POST" action="';
- my $uri=$env{'request.uri'};
- if ($env{'request.enc'}) { $uri=&Apache::lonenc::encrypted($uri); }
+ $form_tag_start='<form name="lonhomework" enctype="multipart/form-data" method="post" action="';
+ my $uri = &Apache::lonenc::check_encrypted($env{'request.uri'});
$form_tag_start.=$uri.'" ';
if ($target eq 'edit') {
$form_tag_start.=&Apache::edit::form_change_detection();
Index: loncom/homework/bridgetask.pm
diff -u loncom/homework/bridgetask.pm:1.114 loncom/homework/bridgetask.pm:1.115
--- loncom/homework/bridgetask.pm:1.114 Tue Feb 21 17:41:29 2006
+++ loncom/homework/bridgetask.pm Thu Mar 2 16:20:30 2006
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# definition of tags that give a structure to a document
#
-# $Id: bridgetask.pm,v 1.114 2006/02/21 22:41:29 albertel Exp $
+# $Id: bridgetask.pm,v 1.115 2006/03/02 21:20:30 albertel Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -155,7 +155,7 @@
join("</option>\n<option>",@to_show).
"</option>\n";
$list.='<option value="current">'.&mt('Current').'</option>';
- $result.='<form name="getprevious" method="POST" action="';
+ $result.='<form name="getprevious" method="post" action="';
my $uri=$env{'request.uri'};
if ($env{'request.enc'}) { $uri=&Apache::lonenc::encrypted($uri); }
$result.=$uri.'">'.
@@ -236,7 +236,7 @@
if ($env{'request.enc'}) { $symb=&Apache::lonenc::encrypted($symb); }
$symb=&Apache::lonnet::escape($symb);
- $result.='<form method="POST" action="/adm/slotrequest">'.
+ $result.='<form method="post" action="/adm/slotrequest">'.
'<input type="hidden" name="symb" value="'.$symb.'" />'.
'<input type="hidden" name="command" value="'.$action.'" />'.
'<input type="submit" name="requestattempt" value="'.
@@ -420,13 +420,13 @@
if ($target eq 'web' && $env{'request.state'} ne 'construct') {
if ($Apache::lonhomework::modifygrades) {
- $body_tag_start.='<form name="gradesubmission" method="POST" action="';
+ $body_tag_start.='<form name="gradesubmission" method="post" action="';
my $uri=$env{'request.uri'};
if ($env{'request.enc'}) { $uri=&Apache::lonenc::encrypted($uri); }
$body_tag_start.=$uri.'">'.&add_grading_button()."</form>";
my $symb=&Apache::lonnet::symbread();
if (&Apache::lonnet::allowed('mgq',$env{'request.course.id'})) {
- $body_tag_start.='<form method="POST" name="slotrequest" action="/adm/slotrequest">'.
+ $body_tag_start.='<form method="post" name="slotrequest" action="/adm/slotrequest">'.
'<input type="hidden" name="symb" value="'.$symb.'" />'.
'<input type="hidden" name="command" value="showslots" />'.
'<input type="submit" name="requestattempt" value="'.
@@ -435,7 +435,7 @@
my $target_id =
&Apache::lonstathelpers::make_target_id({symb => $symb,
part => '0'});
- $body_tag_start.='<form method="POST" name="gradingstatus" action="/adm/statistics">'.
+ $body_tag_start.='<form method="post" name="gradingstatus" action="/adm/statistics">'.
'<input type="hidden" name="problemchoice" value="'.$target_id.'" />'.
'<input type="hidden" name="reportSelected" value="grading_analysis" />'.
'<input type="submit" name="grading" value="'.
@@ -815,8 +815,9 @@
&show_task($status,$previous)) {
$result.=&Apache::inputtags::gradestatus('0');
$result.='</form>';
+ my $action = &Apache::lonenc::check_encrypted($env{'request.uri'});
$result.=<<DONEBUTTON;
-<form method="POST">
+<form name="done" method="post" action="$action">
<input type="hidden" name="donescreen" value="1" />
<input type="submit" value="Done" />
</form>
@@ -1226,7 +1227,7 @@
$result.=(<<FORM);
<td>$status</td>
<td>
-<form style="display: inline" method="POST">
+<form style="display: inline" method="post">
<input type="hidden" name="gradingkey" value="$ekey" />
<input type="hidden" name="queue" value="$queue" />
<input type="hidden" name="gradingaction" value="$action" />
@@ -1534,7 +1535,7 @@
$result.=<<RESULT;
<tr>
<td>
- <form style="display: inline" method="POST">
+ <form style="display: inline" method="post">
<input type="hidden" name="gradingkey" value="$todo" />
<input type="hidden" name="queue" value="$queue" />
<input type="hidden" name="webgrade" value="no" />
@@ -1969,7 +1970,7 @@
<h2>Proctor Validation</h2>
<p>Your room's proctor needs to validate your access to this resource.</p>
$msg
-<form name="checkout" method="POST" action="$env{'request.uri'}">
+<form name="checkout" method="post" action="$env{'request.uri'}">
<input type="hidden" name="validate" value="yes" />
<input type="hidden" name="submitted" value="yes" />
<table>