Skip to content

Commit

Permalink
Merge pull request #1035 from mgage/WeBWorK-2.15
Browse files Browse the repository at this point in the history
We b wor k 2.15
  • Loading branch information
mgage authored Oct 6, 2019
2 parents 4924c94 + 45cc153 commit 378b9ee
Show file tree
Hide file tree
Showing 9 changed files with 1,094 additions and 19 deletions.
5 changes: 0 additions & 5 deletions PG_VERSION

This file was deleted.

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$WW_VERSION = '2.15'; # beta!!!
$WW_VERSION = '2.15';
$WW_COPYRIGHT_YEARS = '1996-2019';

1;
4 changes: 1 addition & 3 deletions bin/check_modules.pl
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@
Apache2::ServerUtil
);

# Crypt::SSLeay was commented out below, but should the not be
# in the array when commented out - remove it.
# For WW 2.15 replace Email::Address with Email::Address::XS


my @modulesList = qw(
Array::Utils
Expand Down
1 change: 0 additions & 1 deletion clients/sendXMLRPC.pl
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,6 @@ BEGIN


use Carp;
#use Crypt::SSLeay; # needed for https
use LWP::Protocol::https;
use Time::HiRes qw/time/;
use MIME::Base64 qw( encode_base64 decode_base64);
Expand Down
9 changes: 4 additions & 5 deletions conf/defaults.config
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,10 @@
# file, you can put a directive in localOverrides.conf.

include("conf/site.conf");
include("VERSION"); # get WW version
#include("PG_VERSION");
# The version of PG is now obtained from pg/VERSION
# using code inside CourseEnvironment.pm
# include can only read files under the webwork2 directory
include("VERSION"); # get WW version
# The version of PG is now obtained from the file pg/VERSION
# using code added to CourseEnvironment.pm
# with this one exception include can only read files under the webwork2 directory

################################################################################
# site.conf should contain basic information about directories and URLs on
Expand Down
1 change: 0 additions & 1 deletion lib/WeBWorK/ContentGenerator/instructorXMLHandler.pm
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ use PGUtil qw(not_null);

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

#use Crypt::SSLeay;
#use XMLRPC::Lite;

use strict;
Expand Down
2 changes: 1 addition & 1 deletion lib/WeBWorK/ContentGenerator/renderViaXMLRPC.pm
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use warnings;
package WeBWorK::ContentGenerator::renderViaXMLRPC;
use base qw(WeBWorK::ContentGenerator);

#use Crypt::SSLeay;

#use XMLRPC::Lite;
#use MIME::Base64 qw( encode_base64 decode_base64);

Expand Down
4 changes: 2 additions & 2 deletions lib/WeBWorK/CourseEnvironment.pm
Original file line number Diff line number Diff line change
Expand Up @@ -226,10 +226,10 @@ sub new {
}
# # We'll get the pg version here and read it into the safe symbol table
if (-r $PG_version_file){
#print STDERR ( "\n\nread PG_version file $PG_version_file\n\n");
#print STDERR ( "\n\nread PG_version file $PG_version_file\n\n");
my $PG_version_file_contents = readFile($PG_version_file)//'';
$safe->reval($PG_version_file_contents);
#print STDERR ("\n contents: $PG_version_file_contents");
#print STDERR ("\n contents: $PG_version_file_contents");

no strict 'refs';
my %symbolHash2 = %{$safe->root."::"};
Expand Down
Loading

0 comments on commit 378b9ee

Please sign in to comment.