Annotation of loncom/startup.pl, revision 1.10

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();
                     17: use HTML::TokeParser();
                     18: use HTML::TreeBuilder();
1.5       albertel   19: use HTML::Entities();
1.4       albertel   20: use IO::Socket();
                     21: use LWP::UserAgent();
1.5       albertel   22: use Math::Cephes();
                     23: use Math::Random();
1.4       albertel   24: use Opcode();
                     25: use POSIX qw(strftime);
                     26: use Safe();
                     27: use Safe::Hole();
                     28: use Apache::lonnet();
                     29: use Apache::lonxml();
                     30: use Apache::lonhomework();
                     31: use Apache::lonrep();
                     32: use Apache::lonuserstate();
                     33: use Apache::lonacc();
                     34: use Apache::lonparmset();
                     35: use Apache::lonauth();
                     36: use Apache::caparesponse();
                     37: use Apache::lonstatistics();
1.6       albertel   38: use Apache::grades();
                     39: use Apache::lonpublisher();
                     40: use Apache::radiobuttonresponse();
                     41: use Apache::optionresponse();
                     42: use Apache::imageresponse();
                     43: use Apache::essayresponse();
                     44: use Apache::externalresponse();
1.8       albertel   45: use Apache::lonnavmaps();
1.9       albertel   46: use Apache::lontexconvert();
1.10    ! albertel   47: use Apache::randomlylabel();
        !            48: use Apache::loncommon();
        !            49: use Apache::lonquickgrades();
        !            50: use Apache::lonaboutme();
        !            51: use Apache::lonannounce();
        !            52: use Apache::lonassignments();
        !            53: use Apache::lonbulletin();
        !            54: use Apache::londropadd();
        !            55: use Apache::lonerrorhandler();
        !            56: use Apache::lonevaluate();
        !            57: use Apache::lonfeedback();
        !            58: use Apache::lonhelp();
        !            59: use Apache::lonindexer();
        !            60: use Apache::lonlogin();
        !            61: use Apache::lonlogout();
        !            62: use Apache::lonmenu();
        !            63: use Apache::lonmeta();
        !            64: use Apache::lonpageflip();
        !            65: use Apache::lonpage();
        !            66: use Apache::lonpreferences();
        !            67: use Apache::lonprintout();
        !            68: use Apache::lonproblemanalysis();
        !            69: use Apache::lonproblemstatistics();
        !            70: use Apache::lonroles();
1.1       harris41   71: 1;

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