Annotation of loncom/startup.pl, revision 1.11

1.1       harris41    1: #!/usr/bin/perl
                      2: 
1.4       albertel    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.005/i386-linux/';
1.3       www         7: use Apache::Constants qw(:common :http :methods);
                      8: use CGI::Cookie();
1.5       albertel    9: use CGI qw(-compile standard);
1.3       www        10: use HTTP::Headers();
1.4       albertel   11: use Apache::File();
                     12: use Crypt::DES();
                     13: use DBI();
                     14: use Fcntl qw(:flock);
                     15: use File::Copy();
                     16: use GDBM_File();
1.11    ! albertel   17: use HTML::LCParser();
1.4       albertel   18: use HTML::TokeParser();
                     19: use HTML::TreeBuilder();
1.5       albertel   20: use HTML::Entities();
1.4       albertel   21: use IO::Socket();
                     22: use LWP::UserAgent();
1.5       albertel   23: use Math::Cephes();
                     24: use Math::Random();
1.4       albertel   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();
1.6       albertel   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();
1.8       albertel   46: use Apache::lonnavmaps();
1.9       albertel   47: use Apache::lontexconvert();
1.10      albertel   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();
1.11    ! albertel   72: use Apache::lontrans();
        !            73: use Apache::hint();
        !            74: use Apache::inputtags();
        !            75: use Apache::localauth();
        !            76: use Apache::lonambiguous();
        !            77: use Apache::lonchat();
        !            78: use Apache::lonchatfetch();
        !            79: use Apache::lonclassifystudents();
        !            80: use Apache::loncommunicate();
        !            81: use Apache::loncoursedata();
        !            82: use Apache::loncreatecourse();
        !            83: use Apache::londefdef();
        !            84: use Apache::londocs();
        !            85: use Apache::lonhtmlcommon();
        !            86: use Apache::lonmsg();
        !            87: use Apache::lonmysql();
        !            88: use Apache::lonpercentage();
        !            89: use Apache::lonpickstudent();
        !            90: use Apache::lonplot();
        !            91: use Apache::lonsearchcat();
        !            92: use Apache::lonsequence();
        !            93: use Apache::lonsimplepage();
        !            94: use Apache::lonspreadsheet();
        !            95: use Apache::lonstudentassessment();
        !            96: use Apache::lonsyllabus();
        !            97: use Apache::lontokacc();
        !            98: use Apache::lonunauthorized();
        !            99: use Apache::lonupload();
        !           100: use Apache::lonuploadedacc();
        !           101: use Apache::lonwrapper();
        !           102: use Apache::admannotations();
        !           103: use Apache::admbookmarks();
        !           104: use Apache::style();
        !           105: use Apache::lontex();
        !           106: use Apache::matchresponse();
        !           107: use Apache::outputtags();
        !           108: use Apache::randomlabel();
        !           109: use Apache::rankresponse();
        !           110: use Apache::response();
        !           111: use Apache::run();
        !           112: use Apache::scripttag();
        !           113: use Apache::structuretags();
        !           114: # can't include this one due to the way it does it's BEGIN
        !           115: #use Apache::loncreateuser();
1.1       harris41  116: 1;
1.11    ! albertel  117: __END__
        !           118: 

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