| 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: webwork2/lib/WeBWorK/URLPath.pm,v 1.24 2005/07/14 13:15:24 glarose Exp $ |
4 | # $CVSHeader: webwork-modperl/lib/WeBWorK/URLPath.pm,v 1.25 2005/08/12 02:47:29 sh002i 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. |
| … | |
… | |
| 70 | instructor_add_users /$courseID/instructor/add_users/ |
70 | instructor_add_users /$courseID/instructor/add_users/ |
| 71 | instructor_set_assigner /$courseID/instructor/assigner/ |
71 | instructor_set_assigner /$courseID/instructor/assigner/ |
| 72 | instructor_file_transfer /$courseID/instructor/files/ |
72 | instructor_file_transfer /$courseID/instructor/files/ |
| 73 | instructor_file_manager /$courseID/instructor/file_manager/ |
73 | instructor_file_manager /$courseID/instructor/file_manager/ |
| 74 | instructor_set_maker /$courseID/instructor/setmaker/ |
74 | instructor_set_maker /$courseID/instructor/setmaker/ |
|
|
75 | instructor_config /$courseID/instructor/config/ |
| 75 | instructor_compare /$courseID/instructor/compare/ |
76 | instructor_compare /$courseID/instructor/compare/ |
| 76 | |
77 | |
| 77 | instructor_problem_editor /$courseID/instructor/pgProblemEditor/ |
78 | instructor_problem_editor /$courseID/instructor/pgProblemEditor/ |
| 78 | instructor_problem_editor_withset /$courseID/instructor/pgProblemEditor/$setID/ |
79 | instructor_problem_editor_withset /$courseID/instructor/pgProblemEditor/$setID/ |
| 79 | instructor_problem_editor_withset_withproblem |
80 | instructor_problem_editor_withset_withproblem |
| … | |
… | |
| 235 | name => 'Instructor Tools', |
236 | name => 'Instructor Tools', |
| 236 | parent => 'set_list', |
237 | parent => 'set_list', |
| 237 | kids => [ qw/instructor_user_list instructor_set_list instructor_add_users |
238 | kids => [ qw/instructor_user_list instructor_set_list instructor_add_users |
| 238 | instructor_set_assigner instructor_file_transfer instructor_file_manager |
239 | instructor_set_assigner instructor_file_transfer instructor_file_manager |
| 239 | instructor_problem_editor instructor_set_maker instructor_compare |
240 | instructor_problem_editor instructor_set_maker instructor_compare |
|
|
241 | instructor_config |
| 240 | instructor_scoring instructor_scoring_download instructor_mail_merge |
242 | instructor_scoring instructor_scoring_download instructor_mail_merge |
| 241 | instructor_answer_log instructor_preflight instructor_statistics |
243 | instructor_answer_log instructor_preflight instructor_statistics |
| 242 | instructor_progress |
244 | instructor_progress |
| 243 | / ], |
245 | / ], |
| 244 | match => qr|^instructor/|, |
246 | match => qr|^instructor/|, |
| … | |
… | |
| 324 | kids => [ qw// ], |
326 | kids => [ qw// ], |
| 325 | match => qr|^assigner/|, |
327 | match => qr|^assigner/|, |
| 326 | capture => [ qw// ], |
328 | capture => [ qw// ], |
| 327 | produce => 'assigner/', |
329 | produce => 'assigner/', |
| 328 | display => 'WeBWorK::ContentGenerator::Instructor::Assigner', |
330 | display => 'WeBWorK::ContentGenerator::Instructor::Assigner', |
|
|
331 | }, |
|
|
332 | instructor_config => { |
|
|
333 | name => 'Course Configuration', |
|
|
334 | parent => 'instructor_tools', |
|
|
335 | kids => [ qw// ], |
|
|
336 | match => qr|^config/|, |
|
|
337 | capture => [ qw// ], |
|
|
338 | produce => 'config/', |
|
|
339 | display => 'WeBWorK::ContentGenerator::Instructor::Config', |
| 329 | }, |
340 | }, |
| 330 | instructor_compare => { |
341 | instructor_compare => { |
| 331 | name => 'File Compare', |
342 | name => 'File Compare', |
| 332 | parent => 'instructor_tools', |
343 | parent => 'instructor_tools', |
| 333 | kids => [ qw// ], |
344 | kids => [ qw// ], |