Parent Directory
|
Revision Log
This checks for modules known to be needed by WeBWorK. The list of modules is supplied in the DATA section of the script.
1 #!/usr/bin/perl -w 2 3 print "\n\n\nSearching for modules needed for WeBWorK\n\n"; 4 while (<DATA>) { 5 6 next unless $_ =~/\S/; 7 chomp; 8 eval "use $_" ; 9 if ($@) { 10 print "----------Can't find $_\n"; 11 } else { 12 print "$_ found. \n"; 13 } 14 15 } 16 17 18 19 __END__ 20 21 Apache::Constants 22 Apache::Cookie 23 Apache::Request 24 Carp 25 CGI 26 Data::Dumper 27 Data::UUID 28 Date::Format 29 Date::Parse 30 DBI 31 Digest::MD5 32 Errno 33 File::Copy 34 File::Path 35 File::Temp 36 HTML::Entities 37 Mail::Sender 38 Net::SMTP 39 Opcode 40 Safe 41 SOAP::Lite 42 Text::Wrap 43 Time::HiRes 44 URI::Escape 45 XML::Parser 46 XML::Parser::EasyTree 47 XML::Writer
| aubreyja at gmail dot com | ViewVC Help |
| Powered by ViewVC 1.0.9 |