Annotation of loncom/startup.pl, revision 1.27
1.1 harris41 1: #!/usr/bin/perl
2:
1.16 albertel 3: BEGIN {
1.23 albertel 4: eval "use Apache2::compat();";
1.16 albertel 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.24 albertel 24: use Parse::RecDescent();
25: use Date::Manip();
1.4 albertel 26: use IO::Socket();
27: use LWP::UserAgent();
1.5 albertel 28: use Math::Cephes();
1.22 albertel 29: use Math::Cephes::Matrix qw(mat);
1.5 albertel 30: use Math::Random();
1.22 albertel 31: use Math::Complex;
1.4 albertel 32: use Opcode();
33: use POSIX qw(strftime);
34: use Safe();
35: use Safe::Hole();
1.26 albertel 36: use LONCAPA;
1.4 albertel 37: use Apache::lonnet();
38: use Apache::lonxml();
39: use Apache::lonhomework();
40: use Apache::lonrep();
41: use Apache::lonuserstate();
42: use Apache::lonacc();
43: use Apache::lonparmset();
44: use Apache::lonauth();
45: use Apache::caparesponse();
46: use Apache::lonstatistics();
1.6 albertel 47: use Apache::grades();
48: use Apache::lonpublisher();
49: use Apache::radiobuttonresponse();
50: use Apache::optionresponse();
51: use Apache::imageresponse();
52: use Apache::essayresponse();
53: use Apache::externalresponse();
1.8 albertel 54: use Apache::lonnavmaps();
1.9 albertel 55: use Apache::lontexconvert();
1.10 albertel 56: use Apache::randomlylabel();
57: use Apache::loncommon();
58: use Apache::lonquickgrades();
59: use Apache::lonaboutme();
60: use Apache::lonannounce();
61: use Apache::lonbulletin();
62: use Apache::londropadd();
63: use Apache::lonerrorhandler();
64: use Apache::lonevaluate();
65: use Apache::lonfeedback();
66: use Apache::lonhelp();
67: use Apache::lonindexer();
68: use Apache::lonlogin();
69: use Apache::lonlogout();
70: use Apache::lonmenu();
71: use Apache::lonmeta();
72: use Apache::lonpageflip();
73: use Apache::lonpage();
74: use Apache::lonpreferences();
75: use Apache::lonprintout();
1.17 matthew 76: use Apache::lonsubmissiontimeanalysis();
77: use Apache::lonstudentsubmissions();
1.10 albertel 78: use Apache::lonproblemanalysis();
79: use Apache::lonproblemstatistics();
80: use Apache::lonroles();
1.11 albertel 81: use Apache::lontrans();
82: use Apache::hint();
83: use Apache::inputtags();
84: use Apache::lonambiguous();
85: use Apache::lonchat();
86: use Apache::lonchatfetch();
87: use Apache::loncommunicate();
88: use Apache::loncoursedata();
89: use Apache::loncreatecourse();
90: use Apache::londefdef();
91: use Apache::londocs();
92: use Apache::lonhtmlcommon();
93: use Apache::lonmsg();
94: use Apache::lonmysql();
95: use Apache::lonpercentage();
96: use Apache::lonpickstudent();
97: use Apache::lonplot();
98: use Apache::lonsearchcat();
99: use Apache::lonsequence();
100: use Apache::lonsimplepage();
101: use Apache::lonspreadsheet();
1.14 matthew 102: use Apache::Spreadsheet();
103: use Apache::classcalc();
104: use Apache::studentcalc();
105: use Apache::assesscalc();
1.11 albertel 106: use Apache::lonstudentassessment();
107: use Apache::lonsyllabus();
108: use Apache::lontokacc();
109: use Apache::lonunauthorized();
110: use Apache::lonupload();
111: use Apache::lonuploadedacc();
112: use Apache::lonwrapper();
113: use Apache::admannotations();
114: use Apache::admbookmarks();
115: use Apache::style();
116: use Apache::lontex();
117: use Apache::matchresponse();
118: use Apache::outputtags();
119: use Apache::randomlabel();
120: use Apache::rankresponse();
121: use Apache::response();
122: use Apache::run();
123: use Apache::scripttag();
124: use Apache::structuretags();
1.18 banghart 125: use Apache::portfolio();
1.20 albertel 126: use Apache::bridgetask();
1.19 matthew 127: use Apache::loncreateuser();
1.24 albertel 128: use Apache::switchserver();
1.25 albertel 129: use Apache::lonwhatsnew();
1.26 albertel 130: use Apache::loncoursegroups();
131: use Apache::longroupchat();
132: use Apache::lonmsgdisplay();
133: use Apache::lonmainmenu();
134: use Apache::loncss();
135: use Apache::lontrackstudent();
136: use Apache::lonnotify();
137: use Apache::lonrss();
138: use Apache::slotrequest();
139: use Apache::lonhelper();
140: use Apache::lonpickcourse();
1.27 ! albertel 141: use Apache::longroup();
! 142: use Apache::groupboards();
1.24 albertel 143:
1.1 harris41 144: 1;
1.11 albertel 145: __END__
146:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>