Log Message:
-----------
stop using CGI::Pretty, for speed and output size.
Modified Files:
--------------
webwork2/lib/WeBWorK/ContentGenerator:
CourseAdmin.pm
Feedback.pm
FixDB.pm
Skeleton.pm
webwork2/lib/WeBWorK/ContentGenerator/Instructor:
Compare.pm
Config.pm
SetMaker.pm
Revision Data
-------------
Index: Feedback.pm
===================================================================
RCS file: /webwork/cvs/system/webwork2/lib/WeBWorK/ContentGenerator/Feedback.pm,v
retrieving revision 1.35
retrieving revision 1.36
diff -Llib/WeBWorK/ContentGenerator/Feedback.pm -Llib/WeBWorK/ContentGenerator/Feedback.pm -u -r1.35 -r1.36
--- lib/WeBWorK/ContentGenerator/Feedback.pm
+++ lib/WeBWorK/ContentGenerator/Feedback.pm
@@ -29,7 +29,7 @@
use strict;
use warnings;
use Data::Dumper;
-use CGI::Pretty qw();
+use CGI qw();
use Mail::Sender;
use Text::Wrap qw(wrap);
use WeBWorK::Utils qw/formatDateTime decodeAnswers/;
Index: CourseAdmin.pm
===================================================================
RCS file: /webwork/cvs/system/webwork2/lib/WeBWorK/ContentGenerator/CourseAdmin.pm,v
retrieving revision 1.41
retrieving revision 1.42
diff -Llib/WeBWorK/ContentGenerator/CourseAdmin.pm -Llib/WeBWorK/ContentGenerator/CourseAdmin.pm -u -r1.41 -r1.42
--- lib/WeBWorK/ContentGenerator/CourseAdmin.pm
+++ lib/WeBWorK/ContentGenerator/CourseAdmin.pm
@@ -25,7 +25,7 @@
use strict;
use warnings;
-use CGI::Pretty qw();
+use CGI qw();
use Data::Dumper;
use File::Temp qw/tempfile/;
use WeBWorK::CourseEnvironment;
Index: Skeleton.pm
===================================================================
RCS file: /webwork/cvs/system/webwork2/lib/WeBWorK/ContentGenerator/Skeleton.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -Llib/WeBWorK/ContentGenerator/Skeleton.pm -Llib/WeBWorK/ContentGenerator/Skeleton.pm -u -r1.2 -r1.3
--- lib/WeBWorK/ContentGenerator/Skeleton.pm
+++ lib/WeBWorK/ContentGenerator/Skeleton.pm
@@ -47,7 +47,7 @@
# can use it without a corresponding "use" line. Sample lines are given below:
#
# You'll probably want to generate HTML code:
-#use CGI::Pretty qw();
+#use CGI qw();
#
# You might need some utility functions:
#use WeBWorK::Utils qw(function1 function2);
Index: FixDB.pm
===================================================================
RCS file: /webwork/cvs/system/webwork2/lib/WeBWorK/ContentGenerator/FixDB.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -Llib/WeBWorK/ContentGenerator/FixDB.pm -Llib/WeBWorK/ContentGenerator/FixDB.pm -u -r1.1 -r1.2
--- lib/WeBWorK/ContentGenerator/FixDB.pm
+++ lib/WeBWorK/ContentGenerator/FixDB.pm
@@ -25,7 +25,7 @@
use strict;
use warnings;
-use CGI::Pretty qw();
+use CGI qw();
sub title {
return "Fix Database";
Index: SetMaker.pm
===================================================================
RCS file: /webwork/cvs/system/webwork2/lib/WeBWorK/ContentGenerator/Instructor/SetMaker.pm,v
retrieving revision 1.58
retrieving revision 1.59
diff -Llib/WeBWorK/ContentGenerator/Instructor/SetMaker.pm -Llib/WeBWorK/ContentGenerator/Instructor/SetMaker.pm -u -r1.58 -r1.59
--- lib/WeBWorK/ContentGenerator/Instructor/SetMaker.pm
+++ lib/WeBWorK/ContentGenerator/Instructor/SetMaker.pm
@@ -27,7 +27,7 @@
use strict;
use warnings;
-use CGI::Pretty qw();
+use CGI qw();
use WeBWorK::Debug;
use WeBWorK::Form;
use WeBWorK::Utils qw(readDirectory max sortByName);
Index: Compare.pm
===================================================================
RCS file: /webwork/cvs/system/webwork2/lib/WeBWorK/ContentGenerator/Instructor/Compare.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -Llib/WeBWorK/ContentGenerator/Instructor/Compare.pm -Llib/WeBWorK/ContentGenerator/Instructor/Compare.pm -u -r1.1 -r1.2
--- lib/WeBWorK/ContentGenerator/Instructor/Compare.pm
+++ lib/WeBWorK/ContentGenerator/Instructor/Compare.pm
@@ -32,7 +32,7 @@
use strict;
use warnings;
-use CGI::Pretty qw();
+use CGI qw();
use WeBWorK::Form;
use WeBWorK::Utils qw(readDirectory max);
use WeBWorK::Utils::Tasks qw(renderProblems);
Index: Config.pm
===================================================================
RCS file: /webwork/cvs/system/webwork2/lib/WeBWorK/ContentGenerator/Instructor/Config.pm,v
retrieving revision 1.4
retrieving revision 1.5
diff -Llib/WeBWorK/ContentGenerator/Instructor/Config.pm -Llib/WeBWorK/ContentGenerator/Instructor/Config.pm -u -r1.4 -r1.5
--- lib/WeBWorK/ContentGenerator/Instructor/Config.pm
+++ lib/WeBWorK/ContentGenerator/Instructor/Config.pm
@@ -357,7 +357,7 @@
use strict;
use warnings;
-use CGI::Pretty qw();
+use CGI qw();
use WeBWorK::CourseEnvironment;
# Load the configuration parts defined in Constants.pm
|