File tree Expand file tree Collapse file tree 9 files changed +1094
-19
lines changed Expand file tree Collapse file tree 9 files changed +1094
-19
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- $WW_VERSION = '2.15'; # beta!!!
1
+ $WW_VERSION = '2.15';
2
2
$WW_COPYRIGHT_YEARS = '1996-2019';
3
3
4
4
1;
Original file line number Diff line number Diff line change 37
37
Apache2::ServerUtil
38
38
) ;
39
39
40
- # Crypt::SSLeay was commented out below, but should the not be
41
- # in the array when commented out - remove it.
42
- # For WW 2.15 replace Email::Address with Email::Address::XS
40
+
43
41
44
42
my @modulesList = qw(
45
43
Array::Utils
Original file line number Diff line number Diff line change @@ -306,7 +306,6 @@ BEGIN
306
306
307
307
308
308
use Carp;
309
- # use Crypt::SSLeay; # needed for https
310
309
use LWP::Protocol::https;
311
310
use Time::HiRes qw/ time/ ;
312
311
use MIME::Base64 qw( encode_base64 decode_base64) ;
Original file line number Diff line number Diff line change 29
29
# file, you can put a directive in localOverrides.conf.
30
30
31
31
include(" conf/site.conf" );
32
- include(" VERSION" ); # get WW version
33
- # include("PG_VERSION");
34
- # The version of PG is now obtained from pg/VERSION
35
- # using code inside CourseEnvironment.pm
36
- # include can only read files under the webwork2 directory
32
+ include(" VERSION" ); # get WW version
33
+ # The version of PG is now obtained from the file pg/VERSION
34
+ # using code added to CourseEnvironment.pm
35
+ # with this one exception include can only read files under the webwork2 directory
37
36
38
37
# ###############################################################################
39
38
# site.conf should contain basic information about directories and URLs on
Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ use PGUtil qw(not_null);
31
31
32
32
our $UNIT_TESTS_ON = 0; # should be called DEBUG?? FIXME
33
33
34
- # use Crypt::SSLeay;
35
34
# use XMLRPC::Lite;
36
35
37
36
use strict;
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ use warnings;
27
27
package WeBWorK::ContentGenerator::renderViaXMLRPC ;
28
28
use base qw( WeBWorK::ContentGenerator) ;
29
29
30
- # use Crypt::SSLeay;
30
+
31
31
# use XMLRPC::Lite;
32
32
# use MIME::Base64 qw( encode_base64 decode_base64);
33
33
Original file line number Diff line number Diff line change @@ -226,10 +226,10 @@ sub new {
226
226
}
227
227
# # We'll get the pg version here and read it into the safe symbol table
228
228
if (-r $PG_version_file ){
229
- # print STDERR ( "\n\nread PG_version file $PG_version_file\n\n");
229
+ # print STDERR ( "\n\nread PG_version file $PG_version_file\n\n");
230
230
my $PG_version_file_contents = readFile($PG_version_file )//' ' ;
231
231
$safe -> reval($PG_version_file_contents );
232
- # print STDERR ("\n contents: $PG_version_file_contents");
232
+ # print STDERR ("\n contents: $PG_version_file_contents");
233
233
234
234
no strict ' refs' ;
235
235
my %symbolHash2 = %{$safe -> root." ::" };
You can’t perform that action at this time.
0 commit comments