Log Message:
-----------
added download_hardcopy_format_pdf permission, set to $guest. This
allows professors to turn off hardcopy altogether by setting all the
download_hardcopy_format_* permissions to undef. Also change the default
permisisonLevel for $guest to -5, to match the permissionLevels for the
practiceUsers in defaultClasslist.lst. (It was supposed to be -5 all
along.)
Modified Files:
--------------
webwork2/conf:
global.conf.dist
Revision Data
-------------
Index: global.conf.dist
===================================================================
RCS file: /webwork/cvs/system/webwork2/conf/global.conf.dist,v
retrieving revision 1.140
retrieving revision 1.141
diff -Lconf/global.conf.dist -Lconf/global.conf.dist -u -r1.140 -r1.141
--- conf/global.conf.dist
+++ conf/global.conf.dist
@@ -481,7 +481,7 @@
# described by the key, the user must have a permission level greater than or
# equal to the value.
-my $guest = -1;
+my $guest = -5;
my $student = 0;
my $proctor = 2;
my $ta = 5;
@@ -549,6 +549,7 @@
download_hardcopy_multiuser => $ta,
download_hardcopy_multiset => $ta,
+ download_hardcopy_format_pdf => $guest,
download_hardcopy_format_tex => $ta,
);
|