| 1 | ################################################################################ |
1 | ################################################################################ |
| 2 | # WeBWorK Online Homework Delivery System |
2 | # WeBWorK Online Homework Delivery System |
| 3 | # Copyright © 2000-2007 The WeBWorK Project, http://openwebwork.sf.net/ |
3 | # Copyright © 2000-2007 The WeBWorK Project, http://openwebwork.sf.net/ |
| 4 | # $CVSHeader: webwork2/lib/WeBWorK/ContentGenerator/Instructor/SetMaker.pm,v 1.77 2007/01/03 22:47:30 dpvc Exp $ |
4 | # $CVSHeader$ |
| 5 | # |
5 | # |
| 6 | # This program is free software; you can redistribute it and/or modify it under |
6 | # This program is free software; you can redistribute it and/or modify it under |
| 7 | # the terms of either: (a) the GNU General Public License as published by the |
7 | # the terms of either: (a) the GNU General Public License as published by the |
| 8 | # Free Software Foundation; either version 2, or (at your option) any later |
8 | # Free Software Foundation; either version 2, or (at your option) any later |
| 9 | # version, or (b) the "Artistic License" which comes with this package. |
9 | # version, or (b) the "Artistic License" which comes with this package. |
| … | |
… | |
| 68 | |
68 | |
| 69 | ## for additional problib buttons |
69 | ## for additional problib buttons |
| 70 | my %problib; ## filled in in global.conf |
70 | my %problib; ## filled in in global.conf |
| 71 | my %ignoredir = ( |
71 | my %ignoredir = ( |
| 72 | '.' => 1, '..' => 1, 'Library' => 1, 'CVS' => 1, 'tmpEdit' => 1, |
72 | '.' => 1, '..' => 1, 'Library' => 1, 'CVS' => 1, 'tmpEdit' => 1, |
| 73 | 'headers' => 1, 'macros' => 1, 'email' => 1, |
73 | 'headers' => 1, 'macros' => 1, 'email' => 1, '.svn' => 1, |
| 74 | ); |
74 | ); |
| 75 | |
75 | |
| 76 | sub prepare_activity_entry { |
76 | sub prepare_activity_entry { |
| 77 | my $self=shift; |
77 | my $self=shift; |
| 78 | my $r = $self->r; |
78 | my $r = $self->r; |