* (bug 12695) Suppress dvips verbiage from web server error log
authorBrion Vibber <brion@users.mediawiki.org>
Sun, 20 Jan 2008 05:26:02 +0000 (05:26 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Sun, 20 Jan 2008 05:26:02 +0000 (05:26 +0000)
RELEASE-NOTES
math/render.ml

index 2c19b19..620bf87 100644 (file)
@@ -320,6 +320,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
   Have removed read-only checks from the general user permission framework.
 * Creating a site with a name containing '#' is no longer permitted, since the
   name will not work (but $wgSiteName is not checked if manually set).
+* (bug 12695) Suppress dvips verbiage from web server error log
 
 
 == Parser changes in 1.12 ==
index e9a2168..67ecab8 100644 (file)
@@ -1,4 +1,4 @@
-let cmd_dvips tmpprefix = "dvips -R -E " ^ tmpprefix ^ ".dvi -f >" ^ tmpprefix ^ ".ps"
+let cmd_dvips tmpprefix = "dvips -q -R -E " ^ tmpprefix ^ ".dvi -f >" ^ tmpprefix ^ ".ps"
 let cmd_latex tmpprefix = "latex " ^ tmpprefix ^ ".tex >/dev/null"
 (* Putting -transparent white in converts arguments will sort-of give you transperancy *)
 let cmd_convert tmpprefix finalpath = "convert -quality 100 -density 120 " ^ tmpprefix ^ ".ps " ^ finalpath ^ " >/dev/null 2>/dev/null"