Skip to content

Commit 378b9ee

Browse files
authored
Merge pull request #1035 from mgage/WeBWorK-2.15
We b wor k 2.15
2 parents 4924c94 + 45cc153 commit 378b9ee

File tree

9 files changed

+1094
-19
lines changed

9 files changed

+1094
-19
lines changed

PG_VERSION

Lines changed: 0 additions & 5 deletions
This file was deleted.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$WW_VERSION = '2.15'; # beta!!!
1+
$WW_VERSION = '2.15';
22
$WW_COPYRIGHT_YEARS = '1996-2019';
33

44
1;

bin/check_modules.pl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,7 @@
3737
Apache2::ServerUtil
3838
);
3939

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+
4341

4442
my @modulesList = qw(
4543
Array::Utils

clients/sendXMLRPC.pl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,6 @@ BEGIN
306306

307307

308308
use Carp;
309-
#use Crypt::SSLeay; # needed for https
310309
use LWP::Protocol::https;
311310
use Time::HiRes qw/time/;
312311
use MIME::Base64 qw( encode_base64 decode_base64);

conf/defaults.config

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,10 @@
2929
# file, you can put a directive in localOverrides.conf.
3030

3131
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
3736

3837
################################################################################
3938
# site.conf should contain basic information about directories and URLs on

lib/WeBWorK/ContentGenerator/instructorXMLHandler.pm

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ use PGUtil qw(not_null);
3131

3232
our $UNIT_TESTS_ON = 0; # should be called DEBUG?? FIXME
3333

34-
#use Crypt::SSLeay;
3534
#use XMLRPC::Lite;
3635

3736
use strict;

lib/WeBWorK/ContentGenerator/renderViaXMLRPC.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ use warnings;
2727
package WeBWorK::ContentGenerator::renderViaXMLRPC;
2828
use base qw(WeBWorK::ContentGenerator);
2929

30-
#use Crypt::SSLeay;
30+
3131
#use XMLRPC::Lite;
3232
#use MIME::Base64 qw( encode_base64 decode_base64);
3333

lib/WeBWorK/CourseEnvironment.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,10 +226,10 @@ sub new {
226226
}
227227
# # We'll get the pg version here and read it into the safe symbol table
228228
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");
230230
my $PG_version_file_contents = readFile($PG_version_file)//'';
231231
$safe->reval($PG_version_file_contents);
232-
#print STDERR ("\n contents: $PG_version_file_contents");
232+
#print STDERR ("\n contents: $PG_version_file_contents");
233233

234234
no strict 'refs';
235235
my %symbolHash2 = %{$safe->root."::"};

0 commit comments

Comments
 (0)