| 1 | ################################################################################ |
1 | ################################################################################ |
| 2 | # WeBWorK Online Homework Delivery System |
2 | # WeBWorK Online Homework Delivery System |
| 3 | # Copyright © 2000-2003 The WeBWorK Project, http://openwebwork.sf.net/ |
3 | # Copyright © 2000-2003 The WeBWorK Project, http://openwebwork.sf.net/ |
| 4 | # $CVSHeader: webwork-modperl/lib/WeBWorK/ContentGenerator/Instructor/ProblemSetEditor.pm,v 1.37 2003/12/09 01:12:31 sh002i Exp $ |
4 | # $CVSHeader: webwork-modperl/lib/WeBWorK/ContentGenerator/Instructor/ProblemSetEditor.pm,v 1.38 2003/12/12 02:24:30 gage Exp $ |
| 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. |
| … | |
… | |
| 204 | my $courseName = $ce->{courseName}; |
204 | my $courseName = $ce->{courseName}; |
| 205 | my $set_id = $self->{set}->set_id; |
205 | my $set_id = $self->{set}->set_id; |
| 206 | return $self->pathMacro($args, |
206 | return $self->pathMacro($args, |
| 207 | "Home" => "$root", |
207 | "Home" => "$root", |
| 208 | $courseName => "$root/$courseName", |
208 | $courseName => "$root/$courseName", |
| 209 | 'instructor' => "$root/$courseName/instructor", |
209 | 'Instructor Tools' => "$root/$courseName/instructor", |
| 210 | 'sets' => "$root/$courseName/instructor/sets/", |
210 | 'Set List' => "$root/$courseName/instructor/sets/", |
| 211 | "$set_id" => '', |
211 | "$set_id" => '', |
| 212 | ); |
212 | ); |
| 213 | } |
213 | } |
| 214 | |
214 | |
| 215 | sub title { |
215 | sub title { |