--- loncom/startup.pl 2004/06/19 00:38:45 1.18 +++ loncom/startup.pl 2024/03/03 06:30:05 1.46 @@ -1,7 +1,8 @@ #!/usr/bin/perl +# $Id: startup.pl,v 1.46 2024/03/03 06:30:05 raeburn Exp $ BEGIN { - eval "use Apache::compat();"; + eval "use Apache2::compat();"; eval "use Apache();"; }; use lib '/home/httpd/lib/perl'; @@ -16,19 +17,25 @@ use Crypt::DES(); use DBI(); use Fcntl qw(:flock); use File::Copy(); +use DateTime(); use GDBM_File(); use HTML::LCParser(); use HTML::TokeParser(); use HTML::TreeBuilder(); use HTML::Entities(); +use Parse::RecDescent(); +use Date::Manip(); use IO::Socket(); use LWP::UserAgent(); use Math::Cephes(); +use Math::Cephes::Matrix qw(mat); use Math::Random(); +use Math::Complex; use Opcode(); use POSIX qw(strftime); use Safe(); use Safe::Hole(); +use LONCAPA; use Apache::lonnet(); use Apache::lonxml(); use Apache::lonhomework(); @@ -47,15 +54,14 @@ use Apache::imageresponse(); use Apache::essayresponse(); use Apache::externalresponse(); use Apache::lonnavmaps(); +use Apache::lonnavdisplay(); use Apache::lontexconvert(); use Apache::randomlylabel(); use Apache::loncommon(); use Apache::lonquickgrades(); use Apache::lonaboutme(); use Apache::lonannounce(); -use Apache::lonassignments(); use Apache::lonbulletin(); -use Apache::londropadd(); use Apache::lonerrorhandler(); use Apache::lonevaluate(); use Apache::lonfeedback(); @@ -86,6 +92,7 @@ use Apache::loncreatecourse(); use Apache::londefdef(); use Apache::londocs(); use Apache::lonhtmlcommon(); +use Apache::lonhtmlgateway(); use Apache::lonmsg(); use Apache::lonmysql(); use Apache::lonpercentage(); @@ -107,7 +114,8 @@ use Apache::lonupload(); use Apache::lonuploadedacc(); use Apache::lonwrapper(); use Apache::admannotations(); -use Apache::admbookmarks(); +use Apache::lonwishlist(); +use Apache::lonwishlistdisplay(); use Apache::style(); use Apache::lontex(); use Apache::matchresponse(); @@ -119,8 +127,43 @@ use Apache::run(); use Apache::scripttag(); use Apache::structuretags(); use Apache::portfolio(); -# can't include this one due to the way it does it's BEGIN -#use Apache::loncreateuser(); +use Apache::bridgetask(); +use Apache::loncreateuser(); +use Apache::switchserver(); +use Apache::lonwhatsnew(); +use Apache::loncoursegroups(); +use Apache::longroupchat(); +use Apache::lonmsgdisplay(); +use Apache::lonmainmenu(); +use Apache::loncss(); +use Apache::lontrackstudent(); +use Apache::lonnotify(); +use Apache::lonrss(); +use Apache::slotrequest(); +use Apache::lonhelper(); +use Apache::lonpickcourse(); +use Apache::longroup(); +use Apache::groupboards(); +use Apache::lonclonecourse(); +use Apache::lonuserutils(); +use Apache::coursecatalog(); +use Apache::courseclassifier(); +use Apache::selfenroll(); +use Apache::createaccount(); +use Apache::lonconfigsettings(); +use Apache::courseprefs(); +use Apache::domainprefs(); +use Apache::lonmodifycourse(); +use Apache::lonblockingmenu(); +use Apache::lonaccesstimes(); +use Apache::lonshibauth(); +use Apache::lonshibacc(); +use Apache::lonpopulate(); +use Apache::lonviewclasslist(); +use Apache::lonviewcoauthors(); +use Apache::daxepage(); +use Apache::daxeopen(); +use Apache::daxesave(); 1; __END__