| 1 | #!perl |
1 | #!perl |
| 2 | ################################################################################ |
2 | ################################################################################ |
| 3 | # WeBWorK Online Homework Delivery System |
3 | # WeBWorK Online Homework Delivery System |
| 4 | # Copyright © 2000-2003 The WeBWorK Project, http://openwebwork.sf.net/ |
4 | # Copyright © 2000-2003 The WeBWorK Project, http://openwebwork.sf.net/ |
| 5 | # $CVSHeader: webwork-modperl/conf/global.conf.dist,v 1.118 2005/05/14 01:32:18 dpvc Exp $ |
5 | # $CVSHeader: webwork-modperl/conf/global.conf.dist,v 1.119 2005/05/20 16:34:20 gage 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. |
| … | |
… | |
| 54 | |
54 | |
| 55 | $externalPrograms{latex} = "/usr/local/bin/latex"; |
55 | $externalPrograms{latex} = "/usr/local/bin/latex"; |
| 56 | $externalPrograms{pdflatex} = "/usr/local/bin/pdflatex --shell-escape"; # allows pdflatex to handle .eps files |
56 | $externalPrograms{pdflatex} = "/usr/local/bin/pdflatex --shell-escape"; # allows pdflatex to handle .eps files |
| 57 | $externalPrograms{dvipng} = "/usr/local/bin/dvipng"; |
57 | $externalPrograms{dvipng} = "/usr/local/bin/dvipng"; |
| 58 | $externalPrograms{tth} = "/usr/local/bin/tth"; |
58 | $externalPrograms{tth} = "/usr/local/bin/tth"; |
|
|
59 | |
|
|
60 | $externalPrograms{tar} = "/usr/bin/tar"; |
| 59 | |
61 | |
| 60 | ################################################################################ |
62 | ################################################################################ |
| 61 | # Mail settings |
63 | # Mail settings |
| 62 | ################################################################################ |
64 | ################################################################################ |
| 63 | |
65 | |
| … | |
… | |
| 127 | # Contains log files. |
129 | # Contains log files. |
| 128 | $webworkDirs{logs} = "$webworkDirs{root}/logs"; |
130 | $webworkDirs{logs} = "$webworkDirs{root}/logs"; |
| 129 | |
131 | |
| 130 | # Contains non-web-accessible temporary files, such as TeX working directories. |
132 | # Contains non-web-accessible temporary files, such as TeX working directories. |
| 131 | $webworkDirs{tmp} = "$webworkDirs{root}/tmp"; |
133 | $webworkDirs{tmp} = "$webworkDirs{root}/tmp"; |
|
|
134 | |
|
|
135 | # The (absolute) destinations of symbolic links that are OK for the FileManager to follow. |
|
|
136 | # (any subdirectory of these is a valid target for a symbolic link.) |
|
|
137 | # For example: |
|
|
138 | # $webworkDirs{valid_symlinks} = ["$webworkDirs{courses}/modelCourse/templates","/ww2/common/sets"]; |
|
|
139 | $webworkDirs{valid_symlinks} = []; |
| 132 | |
140 | |
| 133 | ##### The following locations are web-accessible. |
141 | ##### The following locations are web-accessible. |
| 134 | |
142 | |
| 135 | # The root URL (usually /webwork2), set by <Location> in Apache configuration. |
143 | # The root URL (usually /webwork2), set by <Location> in Apache configuration. |
| 136 | $webworkURLs{root} = "$webwork_url"; |
144 | $webworkURLs{root} = "$webwork_url"; |