| 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.8 2003-01-10 17:28:19 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. |
| … | |
… | |
| 48 | }, |
48 | }, |
| 49 | ); |
49 | ); |
| 50 | |
50 | |
| 51 | %webworkURLs = ( |
51 | %webworkURLs = ( |
| 52 | root => "$webworkURLRoot", |
52 | root => "$webworkURLRoot", |
|
|
53 | home => "http://webwork3/", |
| 53 | htdocs => "/webwork_files", |
54 | htdocs => "/webwork_files", |
| 54 | docs => "http://webhost.math.rochester.edu/webworkdocs/docs", |
55 | docs => "http://webhost.math.rochester.edu/webworkdocs/docs", |
| 55 | oldProf => "/webwork-old/profLogin.pl", |
56 | oldProf => "/webwork-old/profLogin.pl", |
| 56 | ); |
57 | ); |
| 57 | |
58 | |
| … | |
… | |
| 77 | environment => "$courseDirs{root}/course.conf", |
78 | environment => "$courseDirs{root}/course.conf", |
| 78 | ); |
79 | ); |
| 79 | |
80 | |
| 80 | my $courseURLRoot = "$webworkURLs{htdocs}/courses/$courseName"; |
81 | my $courseURLRoot = "$webworkURLs{htdocs}/courses/$courseName"; |
| 81 | %courseURLs = ( |
82 | %courseURLs = ( |
| 82 | base => "$courseURLRoot", # *** # this should be "root"? |
83 | root => "$courseURLRoot", |
| 83 | html => "$courseURLRoot", |
84 | html => "$courseURLRoot", |
| 84 | html_temp => "$courseURLRoot/tmp", |
85 | html_temp => "$courseURLRoot/tmp", |
| 85 | ); |
86 | ); |
| 86 | |
87 | |
| 87 | ################################################################################ |
88 | ################################################################################ |
| … | |
… | |
| 92 | smtpServer => "mail.math.rochester.edu", |
93 | smtpServer => "mail.math.rochester.edu", |
| 93 | smtpSender => "webwork\@math.rochester.edu", |
94 | smtpSender => "webwork\@math.rochester.edu", |
| 94 | ); |
95 | ); |
| 95 | |
96 | |
| 96 | %externalPrograms = ( |
97 | %externalPrograms = ( |
| 97 | mv => "/bin/mv", # *** is this used? probably not... |
|
|
| 98 | tth => "/usr/local/bin/tth", |
98 | tth => "/usr/local/bin/tth", |
| 99 | pdflatex => "/usr/local/bin/pdflatex", |
99 | pdflatex => "/usr/local/bin/pdflatex", |
| 100 | latex => "/usr/local/bin/latex", |
100 | latex => "/usr/local/bin/latex", |
| 101 | dvipng => "/usr/local/bin/dvipng -mode ljfivemp -D600 -Q6 -x1000.5 -bgTransparent", |
101 | dvipng => "/usr/local/bin/dvipng -mode ljfivemp -D600 -Q6 -x1000.5 -bgTransparent", |
| 102 | gif2eps => "$webworkDirs{bin}/gif2eps", |
102 | gif2eps => "$webworkDirs{bin}/gif2eps", |