Annotation of loncom/startup.pl, revision 1.29

1.1       harris41    1: #!/usr/bin/perl
                      2: 
1.16      albertel    3: BEGIN {
1.23      albertel    4:     eval "use Apache2::compat();";
1.16      albertel    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.24      albertel   24: use Parse::RecDescent();
                     25: use Date::Manip();
1.4       albertel   26: use IO::Socket();
                     27: use LWP::UserAgent();
1.5       albertel   28: use Math::Cephes();
1.22      albertel   29: use Math::Cephes::Matrix qw(mat);
1.5       albertel   30: use Math::Random();
1.22      albertel   31: use Math::Complex;
1.4       albertel   32: use Opcode();
                     33: use POSIX qw(strftime);
                     34: use Safe();
                     35: use Safe::Hole();
1.26      albertel   36: use LONCAPA;
1.4       albertel   37: use Apache::lonnet();
                     38: use Apache::lonxml();
                     39: use Apache::lonhomework();
                     40: use Apache::lonrep();
                     41: use Apache::lonuserstate();
                     42: use Apache::lonacc();
                     43: use Apache::lonparmset();
                     44: use Apache::lonauth();
                     45: use Apache::caparesponse();
                     46: use Apache::lonstatistics();
1.6       albertel   47: use Apache::grades();
                     48: use Apache::lonpublisher();
                     49: use Apache::radiobuttonresponse();
                     50: use Apache::optionresponse();
                     51: use Apache::imageresponse();
                     52: use Apache::essayresponse();
                     53: use Apache::externalresponse();
1.8       albertel   54: use Apache::lonnavmaps();
1.29    ! albertel   55: use Apache::lonnavdisplay();
1.9       albertel   56: use Apache::lontexconvert();
1.10      albertel   57: use Apache::randomlylabel();
                     58: use Apache::loncommon();
                     59: use Apache::lonquickgrades();
                     60: use Apache::lonaboutme();
                     61: use Apache::lonannounce();
                     62: use Apache::lonbulletin();
                     63: use Apache::londropadd();
                     64: use Apache::lonerrorhandler();
                     65: use Apache::lonevaluate();
                     66: use Apache::lonfeedback();
                     67: use Apache::lonhelp();
                     68: use Apache::lonindexer();
                     69: use Apache::lonlogin();
                     70: use Apache::lonlogout();
                     71: use Apache::lonmenu();
                     72: use Apache::lonmeta();
                     73: use Apache::lonpageflip();
                     74: use Apache::lonpage();
                     75: use Apache::lonpreferences();
                     76: use Apache::lonprintout();
1.17      matthew    77: use Apache::lonsubmissiontimeanalysis();
                     78: use Apache::lonstudentsubmissions();
1.10      albertel   79: use Apache::lonproblemanalysis();
                     80: use Apache::lonproblemstatistics();
                     81: use Apache::lonroles();
1.11      albertel   82: use Apache::lontrans();
                     83: use Apache::hint();
                     84: use Apache::inputtags();
                     85: use Apache::lonambiguous();
                     86: use Apache::lonchat();
                     87: use Apache::lonchatfetch();
                     88: use Apache::loncommunicate();
                     89: use Apache::loncoursedata();
                     90: use Apache::loncreatecourse();
                     91: use Apache::londefdef();
                     92: use Apache::londocs();
                     93: use Apache::lonhtmlcommon();
                     94: use Apache::lonmsg();
                     95: use Apache::lonmysql();
                     96: use Apache::lonpercentage();
                     97: use Apache::lonpickstudent();
                     98: use Apache::lonplot();
                     99: use Apache::lonsearchcat();
                    100: use Apache::lonsequence();
                    101: use Apache::lonsimplepage();
                    102: use Apache::lonspreadsheet();
1.14      matthew   103: use Apache::Spreadsheet();
                    104: use Apache::classcalc();
                    105: use Apache::studentcalc();
                    106: use Apache::assesscalc();
1.11      albertel  107: use Apache::lonstudentassessment();
                    108: use Apache::lonsyllabus();
                    109: use Apache::lontokacc();
                    110: use Apache::lonunauthorized();
                    111: use Apache::lonupload();
                    112: use Apache::lonuploadedacc();
                    113: use Apache::lonwrapper();
                    114: use Apache::admannotations();
                    115: use Apache::admbookmarks();
                    116: use Apache::style();
                    117: use Apache::lontex();
                    118: use Apache::matchresponse();
                    119: use Apache::outputtags();
                    120: use Apache::randomlabel();
                    121: use Apache::rankresponse();
                    122: use Apache::response();
                    123: use Apache::run();
                    124: use Apache::scripttag();
                    125: use Apache::structuretags();
1.18      banghart  126: use Apache::portfolio();
1.20      albertel  127: use Apache::bridgetask();
1.19      matthew   128: use Apache::loncreateuser();
1.24      albertel  129: use Apache::switchserver();
1.25      albertel  130: use Apache::lonwhatsnew();
1.26      albertel  131: use Apache::loncoursegroups();
                    132: use Apache::longroupchat();
                    133: use Apache::lonmsgdisplay();
                    134: use Apache::lonmainmenu();
                    135: use Apache::loncss();
                    136: use Apache::lontrackstudent();
                    137: use Apache::lonnotify();
                    138: use Apache::lonrss();
                    139: use Apache::slotrequest();
                    140: use Apache::lonhelper();
                    141: use Apache::lonpickcourse();
1.27      albertel  142: use Apache::longroup();
                    143: use Apache::groupboards();
1.28      albertel  144: use Apache::lonclonecourse();
1.1       harris41  145: 1;
1.11      albertel  146: __END__
                    147: 

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