| 1 | #!perl |
1 | #!perl |
| 2 | ################################################################################ |
2 | ################################################################################ |
| 3 | # WeBWorK mod_perl (c) 1995-2002 WeBWorK Team, Univeristy of Rochester |
3 | # WeBWorK mod_perl (c) 1995-2002 WeBWorK Team, Univeristy of Rochester |
| 4 | # $Id: global.conf.dist,v 1.6 2003-01-08 16:23:51 sh002i Exp $ |
4 | # $Id: global.conf.dist,v 1.7 2003-01-09 19:03:53 sh002i Exp $ |
| 5 | ################################################################################ |
5 | ################################################################################ |
| 6 | |
6 | |
| 7 | # 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 |
| 8 | # 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. |
| 9 | # 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. |
| … | |
… | |
| 77 | environment => "$courseDirs{root}/course.conf", |
77 | environment => "$courseDirs{root}/course.conf", |
| 78 | ); |
78 | ); |
| 79 | |
79 | |
| 80 | my $courseURLRoot = "$webworkURLs{htdocs}/courses/$courseName"; |
80 | my $courseURLRoot = "$webworkURLs{htdocs}/courses/$courseName"; |
| 81 | %courseURLs = ( |
81 | %courseURLs = ( |
| 82 | base => "$courseURLRoot", # *** # this should be "root"? |
82 | root => "$courseURLRoot", |
| 83 | html => "$courseURLRoot", |
83 | html => "$courseURLRoot", |
| 84 | html_temp => "$courseURLRoot/tmp", |
84 | html_temp => "$courseURLRoot/tmp", |
| 85 | ); |
85 | ); |
| 86 | |
86 | |
| 87 | ################################################################################ |
87 | ################################################################################ |
| … | |
… | |
| 92 | smtpServer => "mail.math.rochester.edu", |
92 | smtpServer => "mail.math.rochester.edu", |
| 93 | smtpSender => "webwork\@math.rochester.edu", |
93 | smtpSender => "webwork\@math.rochester.edu", |
| 94 | ); |
94 | ); |
| 95 | |
95 | |
| 96 | %externalPrograms = ( |
96 | %externalPrograms = ( |
| 97 | mv => "/bin/mv", # *** is this used? probably not... |
|
|
| 98 | tth => "/usr/local/bin/tth", |
97 | tth => "/usr/local/bin/tth", |
| 99 | pdflatex => "/usr/local/bin/pdflatex", |
98 | pdflatex => "/usr/local/bin/pdflatex", |
| 100 | latex => "/usr/local/bin/latex", |
99 | latex => "/usr/local/bin/latex", |
| 101 | dvipng => "/usr/local/bin/dvipng -mode ljfivemp -D600 -Q6 -x1000.5 -bgTransparent", |
100 | dvipng => "/usr/local/bin/dvipng -mode ljfivemp -D600 -Q6 -x1000.5 -bgTransparent", |
| 102 | gif2eps => "$webworkDirs{bin}/gif2eps", |
101 | gif2eps => "$webworkDirs{bin}/gif2eps", |