From: Chris S. <san...@us...> - 2006-02-06 12:33:23
|
Update of /cvsroot/stack/stack-1-0 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15339 Modified Files: stackConfig.php.dist Log Message: Changes from Maxima 5.9.1 to Maxima 5.9.2 Index: stackConfig.php.dist =================================================================== RCS file: /cvsroot/stack/stack-1-0/stackConfig.php.dist,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** stackConfig.php.dist 27 Nov 2005 11:30:52 -0000 1.7 --- stackConfig.php.dist 6 Feb 2006 12:33:12 -0000 1.8 *************** *** 82,95 **** // MAXIMA if ('win' == $stack_os) { ! // In windows, you should edit the batch scripts/install/stackmaxima.bat ! // and place it in your windows PATH. ! //$stack_cas['command'] = 'stackmaxima'; ! $stack_cas['command'] = $stack_root.'\scripts\install\stackmaxima.bat'; } else { $stack_cas['command'] = 'maxima'; } - $stack_cas['cas'] = 'maxima'; $stack_cas['strict'] = TRUE; // Does this check for words in every entry? $stack_cas['inputDir'] = $stack_root."/scripts/maxima/".$stack_cas['cas']."/"; --- 82,103 ---- // MAXIMA + $stack_cas['cas'] = 'maxima'; + $stack_cas['version'] = '5.9.1'; + + // MAXIMA if ('win' == $stack_os) { ! // This does its best to find your version of Maxima... ! if ('5.9.1' == $stack_cas['version']) { ! $stack_cas['command'] = '"'.$stack_root.'/scripts/install/stackmaxima_5.9.1.bat"'; ! } else if ('5.9.2' == $stack_cas['version']) { ! $stack_cas['command'] = '"'.$stack_root.'/scripts/install/stackmaxima_5.9.2.bat"'; ! } else { ! //$stack_cas['command'] = 'stackmaxima'; ! $stack_cas['command'] = 'maxima'; ! } } else { $stack_cas['command'] = 'maxima'; } $stack_cas['strict'] = TRUE; // Does this check for words in every entry? $stack_cas['inputDir'] = $stack_root."/scripts/maxima/".$stack_cas['cas']."/"; *************** *** 106,109 **** --- 114,118 ---- /***************************************************/ + $maximalocal['MAXIMA_VERSION'] = $stack_cas['version']; // Implementation of images. // Use UNIX slashes in filenames: these get sorted in initmaxima.php, for Windows *************** *** 112,117 **** $maximalocal['URL_BASE'] = $stack_web_url.$stack_tmpdir.'/'; // These are used by the GNUplot "set terminal" command. ! $maximalocal['PLOT_TERMINAL'] = 'png'; // Either 'png' or 'gif' ! $maximalocal['PLOT_TERM_OPT'] = 'transparent size 450,300'; // Windows --- 121,126 ---- $maximalocal['URL_BASE'] = $stack_web_url.$stack_tmpdir.'/'; // These are used by the GNUplot "set terminal" command. ! $maximalocal['plot_terminal'] = 'png'; // Either 'png' or 'gif' ! $maximalocal['plot_term_opt'] = 'transparent size 450,300'; // Windows |