Log Message:
-----------
Formatting change for readability
Modified Files:
--------------
webwork-modperl/conf:
webwork.apache-config.dist
Revision Data
-------------
Index: webwork.apache-config.dist
===================================================================
RCS file: /webwork/cvs/system/webwork-modperl/conf/webwork.apache-config.dist,v
retrieving revision 1.9
retrieving revision 1.10
diff -Lconf/webwork.apache-config.dist -Lconf/webwork.apache-config.dist -u -r1.9 -r1.10
--- conf/webwork.apache-config.dist
+++ conf/webwork.apache-config.dist
@@ -44,6 +44,15 @@
my $webwork_courses_dir = $ce->{webwork_courses_dir};
eval "use lib '$pg_dir/lib'"; die $@ if $@;
+##########################################
+# allows Webservice access to WeBWorK
+##########################################
+
+# eval "use WebworkWebservice";die $@ if $@; #FIXME, is there another way to initialize this?
+# eval "use RQP"; die $@ if $@;
+
+##########################################
+
$WeBWorK::SeedCE{webwork_dir} = $webwork_dir;
# Between the line below and the "EOF" line are the three configuration stanzas
@@ -68,6 +77,7 @@
# Define the location that is handled by the Apache::WeBWorK module, and tell
# Perl where to find the libraries Apache::WeBWorK needs to run.
#
+
<Location $webwork_url>
SetHandler perl-script
PerlHandler Apache::WeBWorK
@@ -105,7 +115,7 @@
$PerlConfig .= <<EOF;
-# XMLRPC installation
+########## XMLRPC installation ##########
#
#<Location /mod_xmlrpc>
# SetHandler perl-script
@@ -116,7 +126,7 @@
# Allow from All
#</Location>
-# RQP installation
+########## RQP installation ##########
#
##<Location /rqp>
## SetHandler perl-script
|