| … | |
… | |
| 43 | $smtpServer = 'mail.math.rochester.edu'; |
43 | $smtpServer = 'mail.math.rochester.edu'; |
| 44 | |
44 | |
| 45 | # $dirDelim is the delimiter used in pathnames on your system. |
45 | # $dirDelim is the delimiter used in pathnames on your system. |
| 46 | $dirDelim = '/'; |
46 | $dirDelim = '/'; |
| 47 | |
47 | |
|
|
48 | ########################### |
|
|
49 | # Local external programs # |
|
|
50 | ########################### |
|
|
51 | |
|
|
52 | # tth is used by the formatted-text display mode. |
|
|
53 | $externalTTHPath = "/usr/local/bin/tth"; |
|
|
54 | |
|
|
55 | # latex2html is used my the typeset display mode. WeBWorK supports version 96.1 |
|
|
56 | # and version 98.1p1 (or later). Specify either 96.1 or 98.1p1 for |
|
|
57 | # $externalLaTeX2HTMLVersion -- this will effect the syntax used when calling |
|
|
58 | # latex2html. $externalLaTeX2HTMLInit should point to a latex2html init file |
|
|
59 | # that matches the version of latex2html specified. |
|
|
60 | $externalLaTeX2HTMLPath = "/usr/local/bin/latex2html"; |
|
|
61 | $externalLaTeX2HTMLVersion = "98.1p1"; |
|
|
62 | $externalLaTeX2HTMLInit = "${mainDirectory}lib/latex2html.init.98.1"; |
|
|
63 | |
|
|
64 | # latex, dvips, dvipdf, etc. are programs used to generate problem set hard copy |
|
|
65 | # output in various formats (DVI, PostScript, PDF). |
|
|
66 | $externalLatexPath = "/usr/local/bin/latex"; |
|
|
67 | $externalDvipsPath = "/usr/local/bin/dvips"; |
|
|
68 | $externalPs2pdfPath = "/usr/local/bin/ps2pdf"; |
|
|
69 | |
|
|
70 | ##################### |
|
|
71 | # Internal settings # |
|
|
72 | ##################### |
|
|
73 | |
| 48 | # $cgiDebugMode, if enabled, will call the debug wrapper scripts instead of the |
74 | # $cgiDebugMode, if enabled, will call the debug wrapper scripts instead of the |
| 49 | # cgi scripts themselves, allowing for header output, etc. In addition to |
75 | # cgi scripts themselves, allowing for header output, etc. In addition to |
| 50 | # setting $cgiDebugMode =1, you will also need to enable debugging in the |
76 | # setting $cgiDebugMode =1, you will also need to enable debugging in the |
| 51 | # wrapper scripts that you wish to debug, by setting $debug = 1. Wrapper |
77 | # wrapper scripts that you wish to debug, by setting $debug = 1. Wrapper |
| 52 | # scripts are found in the directory referred to by $cgiWebworkURL, which is |
78 | # scripts are found in the directory referred to by $cgiWebworkURL, which is |
| … | |
… | |
| 69 | ## Usually this information is unneccessary, and the file becomes |
95 | ## Usually this information is unneccessary, and the file becomes |
| 70 | ## large very quickly, so this log is ordinarily turned off. However, the |
96 | ## large very quickly, so this log is ordinarily turned off. However, the |
| 71 | ## information it contains might be useful if, for example, a student wants an |
97 | ## information it contains might be useful if, for example, a student wants an |
| 72 | ## extension and claims not to have viewed the correct answers. |
98 | ## extension and claims not to have viewed the correct answers. |
| 73 | $logAccessData = 1; |
99 | $logAccessData = 1; |
| 74 | |
|
|
| 75 | # Local external programs |
|
|
| 76 | |
|
|
| 77 | # tth is used by the formatted-text display mode. |
|
|
| 78 | $externalTTHPath = "/usr/local/bin/tth"; |
|
|
| 79 | |
|
|
| 80 | # latex2html is used my the typeset display mode. WeBWorK supports version 96.1 |
|
|
| 81 | # and version 98.1p1 (or later). Specify either 96.1p1 or 98.1 for |
|
|
| 82 | # $externalLaTeX2HTMLVersion -- this will effect the syntax used when calling |
|
|
| 83 | # latex2html. $externalLaTeX2HTMLInit should point to a latex2html init file |
|
|
| 84 | # that matches the version of latex2html specified. |
|
|
| 85 | $externalLaTeX2HTMLPath = "/usr/local/bin/latex2html"; |
|
|
| 86 | $externalLaTeX2HTMLVersion = "98.1p1"; |
|
|
| 87 | $externalLaTeX2HTMLInit = "${mainDirectory}lib/latex2html.init.98.1"; |
|
|
| 88 | |
|
|
| 89 | # latex, dvips, dvipdf, etc. are programs used to generate problem set hard copy |
|
|
| 90 | # output in various formats (DVI, PostScript, PDF). |
|
|
| 91 | $externalLatexPath = "/usr/local/bin/latex"; |
|
|
| 92 | $externalDvipsPath = "/usr/local/bin/dvips"; |
|
|
| 93 | $externalPs2pdfPath = "/usr/local/bin/ps2pdf"; |
|
|
| 94 | |
100 | |
| 95 | #################################################################################### |
101 | #################################################################################### |
| 96 | ########### There should be no need to customize after this point ################# |
102 | ########### There should be no need to customize after this point ################# |
| 97 | #################################################################################### |
103 | #################################################################################### |
| 98 | |
104 | |