Annotation of loncom/startup.pl, revision 1.34

1.1       harris41    1: #!/usr/bin/perl
1.34    ! raeburn     2: # $Id: startup.pl,v 1.33 2008/07/13 17:38:55 raeburn Exp $
1.1       harris41    3: 
1.16      albertel    4: BEGIN {
1.23      albertel    5:     eval "use Apache2::compat();";
1.16      albertel    6:     eval "use Apache();";
                      7: };
1.4       albertel    8: use lib '/home/httpd/lib/perl';
                      9: #use lib '/usr/lib/perl5/site_perl/5.005/';
1.13      albertel   10: use lib '/usr/lib/perl5/site_perl/5.6.0/i386-linux/';
1.3       www        11: use Apache::Constants qw(:common :http :methods);
                     12: use CGI::Cookie();
1.5       albertel   13: use CGI qw(-compile standard);
1.3       www        14: use HTTP::Headers();
1.4       albertel   15: use Apache::File();
                     16: use Crypt::DES();
                     17: use DBI();
                     18: use Fcntl qw(:flock);
                     19: use File::Copy();
1.31      albertel   20: use DateTime();
1.4       albertel   21: use GDBM_File();
1.11      albertel   22: use HTML::LCParser();
1.4       albertel   23: use HTML::TokeParser();
                     24: use HTML::TreeBuilder();
1.5       albertel   25: use HTML::Entities();
1.24      albertel   26: use Parse::RecDescent();
                     27: use Date::Manip();
1.4       albertel   28: use IO::Socket();
                     29: use LWP::UserAgent();
1.5       albertel   30: use Math::Cephes();
1.22      albertel   31: use Math::Cephes::Matrix qw(mat);
1.5       albertel   32: use Math::Random();
1.22      albertel   33: use Math::Complex;
1.4       albertel   34: use Opcode();
                     35: use POSIX qw(strftime);
                     36: use Safe();
                     37: use Safe::Hole();
1.26      albertel   38: use LONCAPA;
1.4       albertel   39: use Apache::lonnet();
                     40: use Apache::lonxml();
                     41: use Apache::lonhomework();
                     42: use Apache::lonrep();
                     43: use Apache::lonuserstate();
                     44: use Apache::lonacc();
                     45: use Apache::lonparmset();
                     46: use Apache::lonauth();
                     47: use Apache::caparesponse();
                     48: use Apache::lonstatistics();
1.6       albertel   49: use Apache::grades();
                     50: use Apache::lonpublisher();
                     51: use Apache::radiobuttonresponse();
                     52: use Apache::optionresponse();
                     53: use Apache::imageresponse();
                     54: use Apache::essayresponse();
                     55: use Apache::externalresponse();
1.8       albertel   56: use Apache::lonnavmaps();
1.29      albertel   57: use Apache::lonnavdisplay();
1.9       albertel   58: use Apache::lontexconvert();
1.10      albertel   59: use Apache::randomlylabel();
                     60: use Apache::loncommon();
                     61: use Apache::lonquickgrades();
                     62: use Apache::lonaboutme();
                     63: use Apache::lonannounce();
                     64: use Apache::lonbulletin();
                     65: use Apache::lonerrorhandler();
                     66: use Apache::lonevaluate();
                     67: use Apache::lonfeedback();
                     68: use Apache::lonhelp();
                     69: use Apache::lonindexer();
                     70: use Apache::lonlogin();
                     71: use Apache::lonlogout();
                     72: use Apache::lonmenu();
                     73: use Apache::lonmeta();
                     74: use Apache::lonpageflip();
                     75: use Apache::lonpage();
                     76: use Apache::lonpreferences();
                     77: use Apache::lonprintout();
1.17      matthew    78: use Apache::lonsubmissiontimeanalysis();
                     79: use Apache::lonstudentsubmissions();
1.10      albertel   80: use Apache::lonproblemanalysis();
                     81: use Apache::lonproblemstatistics();
                     82: use Apache::lonroles();
1.11      albertel   83: use Apache::lontrans();
                     84: use Apache::hint();
                     85: use Apache::inputtags();
                     86: use Apache::lonambiguous();
                     87: use Apache::lonchat();
                     88: use Apache::lonchatfetch();
                     89: use Apache::loncommunicate();
                     90: use Apache::loncoursedata();
                     91: use Apache::loncreatecourse();
                     92: use Apache::londefdef();
                     93: use Apache::londocs();
                     94: use Apache::lonhtmlcommon();
                     95: use Apache::lonmsg();
                     96: use Apache::lonmysql();
                     97: use Apache::lonpercentage();
                     98: use Apache::lonpickstudent();
                     99: use Apache::lonplot();
                    100: use Apache::lonsearchcat();
                    101: use Apache::lonsequence();
                    102: use Apache::lonsimplepage();
                    103: use Apache::lonspreadsheet();
1.14      matthew   104: use Apache::Spreadsheet();
                    105: use Apache::classcalc();
                    106: use Apache::studentcalc();
                    107: use Apache::assesscalc();
1.11      albertel  108: use Apache::lonstudentassessment();
                    109: use Apache::lonsyllabus();
                    110: use Apache::lontokacc();
                    111: use Apache::lonunauthorized();
                    112: use Apache::lonupload();
                    113: use Apache::lonuploadedacc();
                    114: use Apache::lonwrapper();
                    115: use Apache::admannotations();
                    116: use Apache::admbookmarks();
                    117: use Apache::style();
                    118: use Apache::lontex();
                    119: use Apache::matchresponse();
                    120: use Apache::outputtags();
                    121: use Apache::randomlabel();
                    122: use Apache::rankresponse();
                    123: use Apache::response();
                    124: use Apache::run();
                    125: use Apache::scripttag();
                    126: use Apache::structuretags();
1.18      banghart  127: use Apache::portfolio();
1.20      albertel  128: use Apache::bridgetask();
1.19      matthew   129: use Apache::loncreateuser();
1.24      albertel  130: use Apache::switchserver();
1.25      albertel  131: use Apache::lonwhatsnew();
1.26      albertel  132: use Apache::loncoursegroups();
                    133: use Apache::longroupchat();
                    134: use Apache::lonmsgdisplay();
                    135: use Apache::lonmainmenu();
                    136: use Apache::loncss();
                    137: use Apache::lontrackstudent();
                    138: use Apache::lonnotify();
                    139: use Apache::lonrss();
                    140: use Apache::slotrequest();
                    141: use Apache::lonhelper();
                    142: use Apache::lonpickcourse();
1.27      albertel  143: use Apache::longroup();
                    144: use Apache::groupboards();
1.28      albertel  145: use Apache::lonclonecourse();
1.32      raeburn   146: use Apache::lonuserutils();
1.33      raeburn   147: use Apache::coursecatalog();
                    148: use Apache::courseclassifier();
                    149: use Apache::selfenroll();
                    150: use Apache::createaccount();
1.34    ! raeburn   151: use Apache::lonconfigsettings();
        !           152: use Apache::courseprefs();
1.1       harris41  153: 1;
1.11      albertel  154: __END__
                    155: 

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