From 183851b06bd6c52f3cae5375f433da720d410447 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Wed, 11 Oct 2006 18:12:39 +0000 Subject: MediaWiki 1.7.1 wiederhergestellt --- maintenance/archives/patch-math.sql | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 maintenance/archives/patch-math.sql (limited to 'maintenance/archives/patch-math.sql') diff --git a/maintenance/archives/patch-math.sql b/maintenance/archives/patch-math.sql new file mode 100644 index 00000000..aee24a8a --- /dev/null +++ b/maintenance/archives/patch-math.sql @@ -0,0 +1,28 @@ +-- Creates table math used for caching TeX blocks. Needs to be run +-- on old installations when adding TeX support (2002-12-26) +-- Or, TeX can be disabled via $wgUseTeX=false in LocalSettings.php + +-- Note: math table has changed, and this script needs to be run again +-- to create it. (2003-02-02) + +DROP TABLE IF EXISTS /*$wgDBprefix*/math; +CREATE TABLE /*$wgDBprefix*/math ( + -- Binary MD5 hash of the latex fragment, used as an identifier key. + math_inputhash varchar(16) NOT NULL, + + -- Not sure what this is, exactly... + math_outputhash varchar(16) NOT NULL, + + -- texvc reports how well it thinks the HTML conversion worked; + -- if it's a low level the PNG rendering may be preferred. + math_html_conservativeness tinyint(1) NOT NULL, + + -- HTML output from texvc, if any + math_html text, + + -- MathML output from texvc, if any + math_mathml text, + + UNIQUE KEY math_inputhash (math_inputhash) + +) TYPE=InnoDB; -- cgit v1.2.3-54-g00ecf