Annotation of loncom/startup.pl, revision 1.8
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::caparesponse();
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();
! 47: use Apache::tth();
1.1 harris41 48: 1;
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>