| 1 | #!perl |
1 | #!perl |
| 2 | ################################################################################ |
2 | ################################################################################ |
| 3 | # WeBWorK Online Homework Delivery System |
3 | # WeBWorK Online Homework Delivery System |
| 4 | # Copyright © 2000-2003 The WeBWorK Project, http://openwebwork.sf.net/ |
4 | # Copyright © 2000-2003 The WeBWorK Project, http://openwebwork.sf.net/ |
| 5 | # $CVSHeader: webwork-modperl/conf/global.conf.dist,v 1.67 2004/05/23 23:17:23 gage Exp $ |
5 | # $CVSHeader: webwork-modperl/conf/global.conf.dist,v 1.68 2004/05/24 01:03:04 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. |
| … | |
… | |
| 75 | equationCache => "/webwork2_files/tmp/equations", |
75 | equationCache => "/webwork2_files/tmp/equations", |
| 76 | docs => "http://webhost.math.rochester.edu/webworkdocs/docs", |
76 | docs => "http://webhost.math.rochester.edu/webworkdocs/docs", |
| 77 | local_help => "/webwork2_files/helpFiles", |
77 | local_help => "/webwork2_files/helpFiles", |
| 78 | oldProf => "/webwork1/profLogin.pl", |
78 | oldProf => "/webwork1/profLogin.pl", |
| 79 | jsMath => "/webwork2_files/jsMath/jsMath.js", |
79 | jsMath => "/webwork2_files/jsMath/jsMath.js", |
|
|
80 | asciimath => "/webwork2_files/ASCIIMathML/ASCIIMathML.js", |
| 80 | ); |
81 | ); |
| 81 | |
82 | |
| 82 | ################################################################################ |
83 | ################################################################################ |
| 83 | # Default course-specific settings |
84 | # Default course-specific settings |
| 84 | ################################################################################ |
85 | ################################################################################ |
| … | |
… | |
| 270 | # PG translation options |
271 | # PG translation options |
| 271 | ################################################################################ |
272 | ################################################################################ |
| 272 | |
273 | |
| 273 | %pg = ( |
274 | %pg = ( |
| 274 | # available display modes |
275 | # available display modes |
| 275 | displayModes => [ qw(plainText formattedText images jsMath) ], |
276 | displayModes => [ qw(plainText formattedText images jsMath asciimath) ], |
| 276 | # pg options |
277 | # pg options |
| 277 | options => { |
278 | options => { |
| 278 | # default translation options |
279 | # default translation options |
| 279 | displayMode => "images", |
280 | displayMode => "images", |
| 280 | showOldAnswers => 1, |
281 | showOldAnswers => 1, |