|
|
1 | #!perl |
| 1 | ################################################################################ |
2 | ################################################################################ |
| 2 | # WeBWorK mod_perl (c) 1995-2002 WeBWorK Team, Univeristy of Rochester |
3 | # WeBWorK mod_perl (c) 1995-2002 WeBWorK Team, Univeristy of Rochester |
| 3 | # $Id: global.conf,v 1.25 2002-08-22 21:11:52 sh002i Exp $ |
4 | # $Id: global.conf,v 1.26 2002-08-29 19:56:23 sh002i Exp $ |
| 4 | ################################################################################ |
5 | ################################################################################ |
| 5 | |
6 | |
| 6 | # This file is used to set up the default WeBWorK course environment for all |
7 | # This file is used to set up the default WeBWorK course environment for all |
| 7 | # requests. Values may be overwritten by the course.conf for a specific course. |
8 | # requests. Values may be overwritten by the course.conf for a specific course. |
| 8 | # All package variables set in this file are added to the course environment. |
9 | # All package variables set in this file are added to the course environment. |
| … | |
… | |
| 42 | # this hash defines URLs needed by WeBWorK |
43 | # this hash defines URLs needed by WeBWorK |
| 43 | my $webworkURLRoot = "/modperl-sam"; |
44 | my $webworkURLRoot = "/modperl-sam"; |
| 44 | %webworkURLs = ( |
45 | %webworkURLs = ( |
| 45 | root => "$webworkURLRoot", |
46 | root => "$webworkURLRoot", |
| 46 | htdocs => "/webwork_files", |
47 | htdocs => "/webwork_files", |
| 47 | docs => "/webworkDocs", |
48 | docs => "http://webhost.math.rochester.edu/webworkdocs/docs", |
| 48 | ); |
49 | ); |
| 49 | |
50 | |
| 50 | # this hash defines the default locations for course subdirectories |
51 | # this hash defines the default locations for course subdirectories |
| 51 | my $courseRoot = "$webworkDirs{courses}/$courseName"; |
52 | my $courseRoot = "$webworkDirs{courses}/$courseName"; |
| 52 | %courseDirs = ( |
53 | %courseDirs = ( |
| … | |
… | |
| 174 | %externalPrograms = ( |
175 | %externalPrograms = ( |
| 175 | mv => "/bin/mv", |
176 | mv => "/bin/mv", |
| 176 | tth => "/usr/local/bin/tth", |
177 | tth => "/usr/local/bin/tth", |
| 177 | math2img => "$webworkDirs{bin}/math2img", |
178 | math2img => "$webworkDirs{bin}/math2img", |
| 178 | pdflatex => "/usr/local/bin/pdflatex", |
179 | pdflatex => "/usr/local/bin/pdflatex", |
|
|
180 | latex => "/usr/local/bin/latex", |
|
|
181 | dvipng => "/usr/local/bin/dvipng -mode ljfivemp -D600 -Q6 -x1000.5 -bgTransparent", |
| 179 | ); |
182 | ); |