[LON-CAPA-cvs] cvs: loncom / startup.pl doc/loncapafiles loncapafiles.lpml
matthew
lon-capa-cvs@mail.lon-capa.org
Fri, 16 May 2003 20:56:38 -0000
matthew Fri May 16 16:56:38 2003 EDT
Modified files:
/doc/loncapafiles loncapafiles.lpml
/loncom startup.pl
Log:
Adding in new lonspreadsheet.pm, Spreadsheet.pm, classcalc.pm, studentcalc.pm,
and assesscalc.pm
Index: doc/loncapafiles/loncapafiles.lpml
diff -u doc/loncapafiles/loncapafiles.lpml:1.243 doc/loncapafiles/loncapafiles.lpml:1.244
--- doc/loncapafiles/loncapafiles.lpml:1.243 Sat May 10 19:05:52 2003
+++ doc/loncapafiles/loncapafiles.lpml Fri May 16 16:56:38 2003
@@ -2,7 +2,7 @@
"http://lpml.sourceforge.net/DTD/lpml.dtd">
<!-- loncapafiles.lpml -->
-<!-- $Id: loncapafiles.lpml,v 1.243 2003/05/10 23:05:52 www Exp $ -->
+<!-- $Id: loncapafiles.lpml,v 1.244 2003/05/16 20:56:38 matthew Exp $ -->
<!--
@@ -2669,13 +2669,49 @@
<status>works/unverified</status>
</file>
<file>
-<source>loncom/interface/lonspreadsheet.pm</source>
+<source>loncom/interface/spreadsheet/lonspreadsheet.pm</source>
<target dist='default'>home/httpd/lib/perl/Apache/lonspreadsheet.pm</target>
<categoryname>handler</categoryname>
<description>
-Spreadsheets are completely web-based.
-They exist on the level of a whole course, a student, and individual
-assessments.
+The top level interface for the display and editing of spreadsheets. There
+are three levels of spreadsheet.
+</description>
+<status>works/unverified</status>
+</file>
+<file>
+<source>loncom/interface/spreadsheet/Spreadsheet.pm</source>
+<target dist='default'>home/httpd/lib/perl/Apache/Spreadsheet.pm</target>
+<categoryname>handler</categoryname>
+<description>
+Defines the parent object of each spreadsheet type (classcalc, studentcalc,
+assesscalc).
+</description>
+<status>works/unverified</status>
+</file>
+<file>
+<source>loncom/interface/spreadsheet/classcalc.pm</source>
+<target dist='default'>home/httpd/lib/perl/Apache/classcalc.pm</target>
+<categoryname>handler</categoryname>
+<description>
+Defines the specifics of the course level spreadsheet.
+</description>
+<status>works/unverified</status>
+</file>
+<file>
+<source>loncom/interface/spreadsheet/studentcalc.pm</source>
+<target dist='default'>home/httpd/lib/perl/Apache/studentcalc.pm</target>
+<categoryname>handler</categoryname>
+<description>
+Defines the specifics of the student level spreadsheet.
+</description>
+<status>works/unverified</status>
+</file>
+<file>
+<source>loncom/interface/spreadsheet/assesscalc.pm</source>
+<target dist='default'>home/httpd/lib/perl/Apache/assesscalc.pm</target>
+<categoryname>handler</categoryname>
+<description>
+Defines the specifics of the assessment level spreadsheet.
</description>
<status>works/unverified</status>
</file>
Index: loncom/startup.pl
diff -u loncom/startup.pl:1.13 loncom/startup.pl:1.14
--- loncom/startup.pl:1.13 Tue Feb 11 10:36:07 2003
+++ loncom/startup.pl Fri May 16 16:56:38 2003
@@ -90,6 +90,10 @@
use Apache::lonsequence();
use Apache::lonsimplepage();
use Apache::lonspreadsheet();
+use Apache::Spreadsheet();
+use Apache::classcalc();
+use Apache::studentcalc();
+use Apache::assesscalc();
use Apache::lonstudentassessment();
use Apache::lonsyllabus();
use Apache::lontokacc();