Annotation of loncom/startup.pl, revision 1.15
1.1 harris41 1: #!/usr/bin/perl
2:
1.15 ! albertel 3: if ($mod_perl::VERSION > 1.99) {
! 4: use Apache::compat();
! 5: } else {
! 6: 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();
20: use GDBM_File();
1.11 albertel 21: use HTML::LCParser();
1.4 albertel 22: use HTML::TokeParser();
23: use HTML::TreeBuilder();
1.5 albertel 24: use HTML::Entities();
1.4 albertel 25: use IO::Socket();
26: use LWP::UserAgent();
1.5 albertel 27: use Math::Cephes();
28: use Math::Random();
1.4 albertel 29: use Opcode();
30: use POSIX qw(strftime);
31: use Safe();
32: use Safe::Hole();
33: use Apache::lonnet();
34: use Apache::lonxml();
35: use Apache::lonhomework();
36: use Apache::lonrep();
37: use Apache::lonuserstate();
38: use Apache::lonacc();
39: use Apache::lonparmset();
40: use Apache::lonauth();
41: use Apache::caparesponse();
42: use Apache::lonstatistics();
1.6 albertel 43: use Apache::grades();
44: use Apache::lonpublisher();
45: use Apache::radiobuttonresponse();
46: use Apache::optionresponse();
47: use Apache::imageresponse();
48: use Apache::essayresponse();
49: use Apache::externalresponse();
1.8 albertel 50: use Apache::lonnavmaps();
1.9 albertel 51: use Apache::lontexconvert();
1.10 albertel 52: use Apache::randomlylabel();
53: use Apache::loncommon();
54: use Apache::lonquickgrades();
55: use Apache::lonaboutme();
56: use Apache::lonannounce();
57: use Apache::lonassignments();
58: use Apache::lonbulletin();
59: use Apache::londropadd();
60: use Apache::lonerrorhandler();
61: use Apache::lonevaluate();
62: use Apache::lonfeedback();
63: use Apache::lonhelp();
64: use Apache::lonindexer();
65: use Apache::lonlogin();
66: use Apache::lonlogout();
67: use Apache::lonmenu();
68: use Apache::lonmeta();
69: use Apache::lonpageflip();
70: use Apache::lonpage();
71: use Apache::lonpreferences();
72: use Apache::lonprintout();
73: use Apache::lonproblemanalysis();
74: use Apache::lonproblemstatistics();
75: use Apache::lonroles();
1.11 albertel 76: use Apache::lontrans();
77: use Apache::hint();
78: use Apache::inputtags();
79: use Apache::lonambiguous();
80: use Apache::lonchat();
81: use Apache::lonchatfetch();
82: use Apache::loncommunicate();
83: use Apache::loncoursedata();
84: use Apache::loncreatecourse();
85: use Apache::londefdef();
86: use Apache::londocs();
87: use Apache::lonhtmlcommon();
88: use Apache::lonmsg();
89: use Apache::lonmysql();
90: use Apache::lonpercentage();
91: use Apache::lonpickstudent();
92: use Apache::lonplot();
93: use Apache::lonsearchcat();
94: use Apache::lonsequence();
95: use Apache::lonsimplepage();
96: use Apache::lonspreadsheet();
1.14 matthew 97: use Apache::Spreadsheet();
98: use Apache::classcalc();
99: use Apache::studentcalc();
100: use Apache::assesscalc();
1.11 albertel 101: use Apache::lonstudentassessment();
102: use Apache::lonsyllabus();
103: use Apache::lontokacc();
104: use Apache::lonunauthorized();
105: use Apache::lonupload();
106: use Apache::lonuploadedacc();
107: use Apache::lonwrapper();
108: use Apache::admannotations();
109: use Apache::admbookmarks();
110: use Apache::style();
111: use Apache::lontex();
112: use Apache::matchresponse();
113: use Apache::outputtags();
114: use Apache::randomlabel();
115: use Apache::rankresponse();
116: use Apache::response();
117: use Apache::run();
118: use Apache::scripttag();
119: use Apache::structuretags();
120: # can't include this one due to the way it does it's BEGIN
121: #use Apache::loncreateuser();
1.1 harris41 122: 1;
1.11 albertel 123: __END__
124:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>