Annotation of loncom/startup.pl, revision 1.18

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

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