Annotation of loncom/startup.pl, revision 1.21
1.1 harris41 1: #!/usr/bin/perl
2:
1.16 albertel 3: BEGIN {
4: eval "use Apache::compat();";
5: eval "use Apache();";
6: };
1.4 albertel 7: use lib '/home/httpd/lib/perl';
8: #use lib '/usr/lib/perl5/site_perl/5.005/';
1.13 albertel 9: use lib '/usr/lib/perl5/site_perl/5.6.0/i386-linux/';
1.3 www 10: use Apache::Constants qw(:common :http :methods);
11: use CGI::Cookie();
1.5 albertel 12: use CGI qw(-compile standard);
1.3 www 13: use HTTP::Headers();
1.4 albertel 14: use Apache::File();
15: use Crypt::DES();
16: use DBI();
17: use Fcntl qw(:flock);
18: use File::Copy();
19: use GDBM_File();
1.11 albertel 20: use HTML::LCParser();
1.4 albertel 21: use HTML::TokeParser();
22: use HTML::TreeBuilder();
1.5 albertel 23: use HTML::Entities();
1.4 albertel 24: use IO::Socket();
25: use LWP::UserAgent();
1.5 albertel 26: use Math::Cephes();
27: use Math::Random();
1.4 albertel 28: use Opcode();
29: use POSIX qw(strftime);
30: use Safe();
31: use Safe::Hole();
32: use Apache::lonnet();
33: use Apache::lonxml();
34: use Apache::lonhomework();
35: use Apache::lonrep();
36: use Apache::lonuserstate();
37: use Apache::lonacc();
38: use Apache::lonparmset();
39: use Apache::lonauth();
40: use Apache::caparesponse();
41: use Apache::lonstatistics();
1.6 albertel 42: use Apache::grades();
43: use Apache::lonpublisher();
44: use Apache::radiobuttonresponse();
45: use Apache::optionresponse();
46: use Apache::imageresponse();
47: use Apache::essayresponse();
48: use Apache::externalresponse();
1.8 albertel 49: use Apache::lonnavmaps();
1.9 albertel 50: use Apache::lontexconvert();
1.10 albertel 51: use Apache::randomlylabel();
52: use Apache::loncommon();
53: use Apache::lonquickgrades();
54: use Apache::lonaboutme();
55: use Apache::lonannounce();
56: use Apache::lonbulletin();
57: use Apache::londropadd();
58: use Apache::lonerrorhandler();
59: use Apache::lonevaluate();
60: use Apache::lonfeedback();
61: use Apache::lonhelp();
62: use Apache::lonindexer();
63: use Apache::lonlogin();
64: use Apache::lonlogout();
65: use Apache::lonmenu();
66: use Apache::lonmeta();
67: use Apache::lonpageflip();
68: use Apache::lonpage();
69: use Apache::lonpreferences();
70: use Apache::lonprintout();
1.17 matthew 71: use Apache::lonsubmissiontimeanalysis();
72: use Apache::lonstudentsubmissions();
1.10 albertel 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();
1.18 banghart 120: use Apache::portfolio();
1.20 albertel 121: use Apache::bridgetask();
1.11 albertel 122: # can't include this one due to the way it does it's BEGIN
1.19 matthew 123: use Apache::loncreateuser();
1.1 harris41 124: 1;
1.11 albertel 125: __END__
126:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>