| 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.189.2.2 2007/08/09 23:29:10 sh002i Exp $ |
5 | # $CVSHeader: webwork2/conf/global.conf.dist,v 1.189.2.3 2007/08/10 01:33:23 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. |
| … | |
… | |
| 52 | $externalPrograms{mv} = "/bin/mv"; |
52 | $externalPrograms{mv} = "/bin/mv"; |
| 53 | $externalPrograms{cp} = "/bin/cp"; |
53 | $externalPrograms{cp} = "/bin/cp"; |
| 54 | $externalPrograms{rm} = "/bin/rm"; |
54 | $externalPrograms{rm} = "/bin/rm"; |
| 55 | $externalPrograms{mkdir} = "/bin/mkdir"; |
55 | $externalPrograms{mkdir} = "/bin/mkdir"; |
| 56 | $externalPrograms{tar} = "/bin/tar"; |
56 | $externalPrograms{tar} = "/bin/tar"; |
| 57 | $externalPrograms{gzip} = "/usr/bin/gzip"; |
57 | $externalPrograms{gzip} = "/bin/gzip"; |
| 58 | |
58 | |
| 59 | # equation rendering/hardcopy utiltiies |
59 | # equation rendering/hardcopy utiltiies |
| 60 | $externalPrograms{latex} = "/usr/bin/latex"; |
60 | $externalPrograms{latex} = "/usr/bin/latex"; |
| 61 | $externalPrograms{pdflatex} = "/usr/bin/pdflatex --shell-escape"; |
61 | $externalPrograms{pdflatex} = "/usr/bin/pdflatex --shell-escape"; |
| 62 | $externalPrograms{dvipng} = "/usr/bin/dvipng"; |
62 | $externalPrograms{dvipng} = "/usr/bin/dvipng"; |
| … | |
… | |
| 230 | |
230 | |
| 231 | # URL of WeBWorK Bugzilla database. |
231 | # URL of WeBWorK Bugzilla database. |
| 232 | $webworkURLs{bugReporter} = "http://bugs.webwork.rochester.edu/"; |
232 | $webworkURLs{bugReporter} = "http://bugs.webwork.rochester.edu/"; |
| 233 | |
233 | |
| 234 | # Location of CSS |
234 | # Location of CSS |
| 235 | #$webworkURLs{stylesheet} = "$webworkURLs{htdocs}/css/ur.css"; |
|
|
| 236 | $webworkURLs{stylesheet} = "$webworkURLs{htdocs}/css/${defaultTheme}.css"; |
235 | $webworkURLs{stylesheet} = "$webworkURLs{htdocs}/css/${defaultTheme}.css"; |
| 237 | |
236 | |
| 238 | # Location of jsMath script, used for the jsMath display mode. |
237 | # Location of jsMath script, used for the jsMath display mode. |
| 239 | $webworkURLs{jsMath} = "$webworkURLs{htdocs}/jsMath/jsMath-ww.js"; |
238 | $webworkURLs{jsMath} = "$webworkURLs{htdocs}/jsMath/jsMath-ww.js"; |
| 240 | |
239 | |