File:  [LON-CAPA] / loncom / startup.pl
Revision 1.14: download - view: text, annotated - select for diffs
Fri May 16 20:56:38 2003 UTC (20 years, 11 months ago) by matthew
Branches: MAIN
CVS tags: version_1_0_3, version_1_0_2, version_1_0_1, version_1_0_0, version_0_99_5, version_0_99_4, version_0_99_3, version_0_99_2, version_0_99_1, version_0_99_0, conference_2003, HEAD
Adding in new lonspreadsheet.pm, Spreadsheet.pm, classcalc.pm, studentcalc.pm,
and assesscalc.pm

    1: #!/usr/bin/perl
    2: 
    3: use Apache();
    4: use lib '/home/httpd/lib/perl';
    5: #use lib '/usr/lib/perl5/site_perl/5.005/';
    6: use lib '/usr/lib/perl5/site_perl/5.6.0/i386-linux/';
    7: use Apache::Constants qw(:common :http :methods);
    8: use CGI::Cookie();
    9: use CGI qw(-compile standard);
   10: use HTTP::Headers();
   11: use Apache::File();
   12: use Crypt::DES();
   13: use DBI();
   14: use Fcntl qw(:flock);
   15: use File::Copy();
   16: use GDBM_File();
   17: use HTML::LCParser();
   18: use HTML::TokeParser();
   19: use HTML::TreeBuilder();
   20: use HTML::Entities();
   21: use IO::Socket();
   22: use LWP::UserAgent();
   23: use Math::Cephes();
   24: use Math::Random();
   25: use Opcode();
   26: use POSIX qw(strftime);
   27: use Safe();
   28: use Safe::Hole();
   29: use Apache::lonnet();
   30: use Apache::lonxml();
   31: use Apache::lonhomework();
   32: use Apache::lonrep();
   33: use Apache::lonuserstate();
   34: use Apache::lonacc();
   35: use Apache::lonparmset();
   36: use Apache::lonauth();
   37: use Apache::caparesponse();
   38: use Apache::lonstatistics();
   39: use Apache::grades();
   40: use Apache::lonpublisher();
   41: use Apache::radiobuttonresponse();
   42: use Apache::optionresponse();
   43: use Apache::imageresponse();
   44: use Apache::essayresponse();
   45: use Apache::externalresponse();
   46: use Apache::lonnavmaps();
   47: use Apache::lontexconvert();
   48: use Apache::randomlylabel();
   49: use Apache::loncommon();
   50: use Apache::lonquickgrades();
   51: use Apache::lonaboutme();
   52: use Apache::lonannounce();
   53: use Apache::lonassignments();
   54: use Apache::lonbulletin();
   55: use Apache::londropadd();
   56: use Apache::lonerrorhandler();
   57: use Apache::lonevaluate();
   58: use Apache::lonfeedback();
   59: use Apache::lonhelp();
   60: use Apache::lonindexer();
   61: use Apache::lonlogin();
   62: use Apache::lonlogout();
   63: use Apache::lonmenu();
   64: use Apache::lonmeta();
   65: use Apache::lonpageflip();
   66: use Apache::lonpage();
   67: use Apache::lonpreferences();
   68: use Apache::lonprintout();
   69: use Apache::lonproblemanalysis();
   70: use Apache::lonproblemstatistics();
   71: use Apache::lonroles();
   72: use Apache::lontrans();
   73: use Apache::hint();
   74: use Apache::inputtags();
   75: use Apache::lonambiguous();
   76: use Apache::lonchat();
   77: use Apache::lonchatfetch();
   78: use Apache::loncommunicate();
   79: use Apache::loncoursedata();
   80: use Apache::loncreatecourse();
   81: use Apache::londefdef();
   82: use Apache::londocs();
   83: use Apache::lonhtmlcommon();
   84: use Apache::lonmsg();
   85: use Apache::lonmysql();
   86: use Apache::lonpercentage();
   87: use Apache::lonpickstudent();
   88: use Apache::lonplot();
   89: use Apache::lonsearchcat();
   90: use Apache::lonsequence();
   91: use Apache::lonsimplepage();
   92: use Apache::lonspreadsheet();
   93: use Apache::Spreadsheet();
   94: use Apache::classcalc();
   95: use Apache::studentcalc();
   96: use Apache::assesscalc();
   97: use Apache::lonstudentassessment();
   98: use Apache::lonsyllabus();
   99: use Apache::lontokacc();
  100: use Apache::lonunauthorized();
  101: use Apache::lonupload();
  102: use Apache::lonuploadedacc();
  103: use Apache::lonwrapper();
  104: use Apache::admannotations();
  105: use Apache::admbookmarks();
  106: use Apache::style();
  107: use Apache::lontex();
  108: use Apache::matchresponse();
  109: use Apache::outputtags();
  110: use Apache::randomlabel();
  111: use Apache::rankresponse();
  112: use Apache::response();
  113: use Apache::run();
  114: use Apache::scripttag();
  115: use Apache::structuretags();
  116: # can't include this one due to the way it does it's BEGIN
  117: #use Apache::loncreateuser();
  118: 1;
  119: __END__
  120: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>