[LON-CAPA-cvs] cvs: loncom /homework structuretags.pm
raeburn
raeburn@source.lon-capa.org
Sun, 28 Feb 2010 23:28:55 -0000
raeburn Sun Feb 28 23:28:55 2010 EDT
Modified files:
/loncom/homework structuretags.pm
Log:
- Bug 6119 Anonymous Surveys. New question types.
- anonsurvey -- course personnel can not view both identity of submitter
and submission details.
- anonsurveycred -- same anonymity, but submitter receives 'awarded' for
submission
-surveycred - submitter receives 'awarded' for submission to survey.
Index: loncom/homework/structuretags.pm
diff -u loncom/homework/structuretags.pm:1.464 loncom/homework/structuretags.pm:1.465
--- loncom/homework/structuretags.pm:1.464 Wed Feb 10 20:17:44 2010
+++ loncom/homework/structuretags.pm Sun Feb 28 23:28:54 2010
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# definition of tags that give a structure to a document
#
-# $Id: structuretags.pm,v 1.464 2010/02/10 20:17:44 raeburn Exp $
+# $Id: structuretags.pm,v 1.465 2010/02/28 23:28:54 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -273,7 +273,7 @@
my $form_tag_start;
if (!defined($found{'form'})) {
$form_tag_start='<form name="lonhomework" enctype="multipart/form-data" method="post" action="';
- my $uri = Apache::loncommon::inhibit_menu_check(
+ my $uri = &Apache::loncommon::inhibit_menu_check(
&Apache::lonenc::check_encrypt($env{'request.uri'}));
$uri = &HTML::Entities::encode($uri,'<>&"');
$form_tag_start.=$uri.'" ';
@@ -472,6 +472,9 @@
".&option('exam' ,'problemtype').&mt("Exam Problem")."</option>
".&option('problem','problemtype').&mt("Homework Problem")."</option>
".&option('survey' ,'problemtype').&mt("Survey Question")."</option>
+ ".&option('surveycred' ,'problemtype').&mt("Survey Question (with credit)")."</option>
+ ".&option('anonsurvey' ,'problemtype').&mt("Anonymous Survey Question")."</option>
+ ".&option('anonsurveycred' ,'problemtype').&mt("Anonymous Survey Question (with credit)")."</option>
".&option('practice' ,'problemtype').&mt("Practice Problem")."</option>
</select>
</span>
@@ -1952,6 +1955,9 @@
$result .=&Apache::edit::checked_arg('When used as type(s):','for',
[ ['exam','Exam/Quiz Problem'],
['survey','Survey'],
+ ['surveycred','Survey (with credit)'],
+ ['anonsurvey','Anonymous Survey'],
+ ['anonsurveycred','Anonymous Survey (with credit)'],
['problem','Homework Problem'],
['practice','Practice Problem'] ]
,$token);