| 1 | #!perl |
1 | #!perl |
| 2 | ################################################################################ |
2 | ################################################################################ |
| 3 | # WeBWorK Online Homework Delivery System |
3 | # WeBWorK Online Homework Delivery System |
| 4 | # Copyright © 2000-2006 The WeBWorK Project, http://openwebwork.sf.net/ |
4 | # Copyright © 2000-2006 The WeBWorK Project, http://openwebwork.sf.net/ |
| 5 | # $CVSHeader: webwork2/conf/global.conf.dist,v 1.178 2006/09/11 20:33:27 sh002i Exp $ |
5 | # $CVSHeader: webwork2/conf/global.conf.dist,v 1.179 2006/10/19 17:35:25 sh002i Exp $ |
| 6 | # |
6 | # |
| 7 | # This program is free software; you can redistribute it and/or modify it under |
7 | # This program is free software; you can redistribute it and/or modify it under |
| 8 | # the terms of either: (a) the GNU General Public License as published by the |
8 | # the terms of either: (a) the GNU General Public License as published by the |
| 9 | # Free Software Foundation; either version 2, or (at your option) any later |
9 | # Free Software Foundation; either version 2, or (at your option) any later |
| 10 | # version, or (b) the "Artistic License" which comes with this package. |
10 | # version, or (b) the "Artistic License" which comes with this package. |
| … | |
… | |
| 153 | # FIXME: should this be here? it's UI, not mail |
153 | # FIXME: should this be here? it's UI, not mail |
| 154 | # FIXME: replace this with the auto-size method that TWiki uses |
154 | # FIXME: replace this with the auto-size method that TWiki uses |
| 155 | $mail{editor_window_rows} = 15; |
155 | $mail{editor_window_rows} = 15; |
| 156 | $mail{editor_window_columns} = 100; |
156 | $mail{editor_window_columns} = 100; |
| 157 | |
157 | |
|
|
158 | # Use this to customize the text of the feedback button. |
|
|
159 | $feedback_button_name = "Email instructor"; |
|
|
160 | |
| 158 | ################################################################################ |
161 | ################################################################################ |
| 159 | # System-wide locations (directories and URLs) |
162 | # System-wide locations (directories and URLs) |
| 160 | ################################################################################ |
163 | ################################################################################ |
| 161 | |
164 | |
| 162 | # The root directory, set by webwork_root variable in Apache configuration. |
165 | # The root directory, set by webwork_root variable in Apache configuration. |
| … | |
… | |
| 270 | # Location of mail-merge templates. |
273 | # Location of mail-merge templates. |
| 271 | $courseDirs{email} = "$courseDirs{templates}/email"; |
274 | $courseDirs{email} = "$courseDirs{templates}/email"; |
| 272 | |
275 | |
| 273 | # Location of temporary editing files. |
276 | # Location of temporary editing files. |
| 274 | $courseDirs{tmpEditFileDir} = "$courseDirs{templates}/tmpEdit"; |
277 | $courseDirs{tmpEditFileDir} = "$courseDirs{templates}/tmpEdit"; |
|
|
278 | |
|
|
279 | # If this is set to a non-empty value (i.e. in course.conf), WeBWorK's usual |
|
|
280 | # email feedback mechanism will be replaced with a link to the given URL. |
|
|
281 | # See also $feedback_button_name, above. |
|
|
282 | $courseURLs{feedbackURL} = ""; |
| 275 | |
283 | |
| 276 | ################################################################################ |
284 | ################################################################################ |
| 277 | # System-wide files |
285 | # System-wide files |
| 278 | ################################################################################ |
286 | ################################################################################ |
| 279 | |
287 | |