Annotation of loncom/startup.pl, revision 1.13
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/';
1.13 ! albertel 6: use lib '/usr/lib/perl5/site_perl/5.6.0/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::lonambiguous();
76: use Apache::lonchat();
77: use Apache::lonchatfetch();
78: use Apache::loncommunicate();
79: use Apache::loncoursedata();
80: use Apache::loncreatecourse();
81: use Apache::londefdef();
82: use Apache::londocs();
83: use Apache::lonhtmlcommon();
84: use Apache::lonmsg();
85: use Apache::lonmysql();
86: use Apache::lonpercentage();
87: use Apache::lonpickstudent();
88: use Apache::lonplot();
89: use Apache::lonsearchcat();
90: use Apache::lonsequence();
91: use Apache::lonsimplepage();
92: use Apache::lonspreadsheet();
93: use Apache::lonstudentassessment();
94: use Apache::lonsyllabus();
95: use Apache::lontokacc();
96: use Apache::lonunauthorized();
97: use Apache::lonupload();
98: use Apache::lonuploadedacc();
99: use Apache::lonwrapper();
100: use Apache::admannotations();
101: use Apache::admbookmarks();
102: use Apache::style();
103: use Apache::lontex();
104: use Apache::matchresponse();
105: use Apache::outputtags();
106: use Apache::randomlabel();
107: use Apache::rankresponse();
108: use Apache::response();
109: use Apache::run();
110: use Apache::scripttag();
111: use Apache::structuretags();
112: # can't include this one due to the way it does it's BEGIN
113: #use Apache::loncreateuser();
1.1 harris41 114: 1;
1.11 albertel 115: __END__
116:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>