r34283 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r34282‎ | r34283 | r34284 >
Date:00:01, 6 May 2008
Author:brion
Status:old
Tags:
Comment:
* (bug 13770) Use Preprocessor_Hash by default to avoid missing DOM module errors
Modified paths:
  • /trunk/phase3/RELEASE-NOTES (modified) (history)
  • /trunk/phase3/includes/DefaultSettings.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/DefaultSettings.php
@@ -3128,10 +3128,9 @@
31293129 * Parser configuration. Associative array with the following members:
31303130 *
31313131 * class The class name
3132 - * preprocessorClass The preprocessor class, by default it is Preprocessor_DOM
3133 - * but it has a dependency of the dom module of PHP. If you
3134 - * don't have this module, you can use Preprocessor_Hash wich
3135 - * has not this depedency.
 3132+ * preprocessorClass The preprocessor class, by default it is Preprocessor_Hash.
 3133+ * Preprocessor_DOM is also available and better tested, but
 3134+ * it has a dependency of the dom module of PHP.
31363135 * It has no effect with Parser_OldPP parser class.
31373136 *
31383137 *
@@ -3144,7 +3143,7 @@
31453144 */
31463145 $wgParserConf = array(
31473146 'class' => 'Parser',
3148 - 'preprocessorClass' => 'Preprocessor_DOM',
 3147+ 'preprocessorClass' => 'Preprocessor_Hash',
31493148 );
31503149
31513150 /**
Index: trunk/phase3/RELEASE-NOTES
@@ -246,6 +246,7 @@
247247 * (bug 13934) Fixing the link to GNU General Public License Version 2
248248 * Show correct accesskey prefix for Firefox 3 beta (Alt-Shift-, not Alt-)
249249 * (bug 13949) Special:PrefixIndex/AllPages paging links contain invalid XML
 250+* (bug 13770) Use Preprocessor_Hash by default to avoid missing DOM module errors
250251
251252 === API changes in 1.13 ===
252253

Follow-up revisions

RevisionCommit summaryAuthorDate
r34284* (bug 13770) Use Preprocessor_Hash by default to avoid missing DOM module er...brion00:01, 6 May 2008
r39158Fixed incorrect detection of PHP's DOM module (bug 13770)tstarling17:24, 11 August 2008
r39159Backport r39158: fix for bug 13770: incorrect detection of DOM moduletstarling17:33, 11 August 2008
r40419Fix for bug 13770, second attempt. Tested with a conflicting install of both ...tstarling06:19, 4 September 2008
r40422Fix for bug 13770 (backport of r40419)tstarling07:10, 4 September 2008

Status & tagging log