[LON-CAPA-cvs] cvs: loncom /interface/statistics lonproblemstatistics.pm
matthew
lon-capa-cvs@mail.lon-capa.org
Wed, 06 Oct 2004 15:38:00 -0000
matthew Wed Oct 6 11:38:00 2004 EDT
Modified files:
/loncom/interface/statistics lonproblemstatistics.pm
Log:
More information for research only.
Index: loncom/interface/statistics/lonproblemstatistics.pm
diff -u loncom/interface/statistics/lonproblemstatistics.pm:1.93 loncom/interface/statistics/lonproblemstatistics.pm:1.94
--- loncom/interface/statistics/lonproblemstatistics.pm:1.93 Wed Aug 4 11:07:42 2004
+++ loncom/interface/statistics/lonproblemstatistics.pm Wed Oct 6 11:37:59 2004
@@ -1,6 +1,6 @@
# The LearningOnline Network with CAPA
#
-# $Id: lonproblemstatistics.pm,v 1.93 2004/08/04 15:07:42 matthew Exp $
+# $Id: lonproblemstatistics.pm,v 1.94 2004/10/06 15:37:59 matthew Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -320,6 +320,28 @@
# selectable => 'no',
# defaultselected => 'yes',
# },
+## maxtries included for research purposes. Commented out most of the time.
+# { name => 'maxtries',
+# title => 'Maxtries',
+# align => 'left',
+# color => '#FFFFFF',
+# sortable => 'no',
+# graphable => 'no',
+# long_title => 'Maximum number of tries',
+# selectable => 'no',
+# defaultselected => 'yes',
+# },
+## hinttries included for research purposes. Commented out most of the time.
+# { name => 'hinttries',
+# title => 'hinttries',
+# align => 'left',
+# color => '#FFFFFF',
+# sortable => 'no',
+# graphable => 'no',
+# long_title => 'Number of tries before a hint appears',
+# selectable => 'no',
+# defaultselected => 'yes',
+# },
);
my @SeqFields = (
@@ -1547,6 +1569,10 @@
# &Apache::lonnet::EXT('resource.'.$part.'.duedate',$symb);
# $data->{'opendate'} =
# &Apache::lonnet::EXT('resource.'.$part.'.opendate',$symb);
+# $data->{'maxtries'} =
+# &Apache::lonnet::EXT('resource.'.$part.'.maxtries',$symb);
+# $data->{'hinttries'} =
+# &Apache::lonnet::EXT('resource.'.$part.'.hinttries',$symb);
# $data->{'resptypes'} = join(',',@{$resource->{'partdata'}->{$part}->{'ResponseTypes'}});
return $data;
}