https://bugzilla.wikimedia.org/show_bug.cgi?id=25984
Bawolff <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Bawolff <[email protected]> 2010-11-18 18:36:58 UTC --- I don't think that'd be possible, since you need db access the moment you have wikitext with {{some template}} in it (to retrieve template). Same with [[link]] (so the parser can figure out if it should be a red link or not). However, with that said, I just tried disabling all caches in my LocalSettings.php (along with db credentials so I know that no db access took place) and I was successfully able to parser a string literal from maintenance/eval.php as long as it didn't have any links or transclusions in it. For reference, the LocalSettings.php I used in my test was: <?php $IP = dirname( __FILE__ ); $path = array( $IP, "$IP/includes", "$IP/languages" ); set_include_path( implode( PATH_SEPARATOR, $path ) . PATH_SEPARATOR . get_include_path() ); require_once( "$IP/includes/DefaultSettings.php" ); $wgReadOnly = true; $wgMessageCacheType = CACHE_NONE; $wgParserCacheType = CACHE_NONE; $wgMainCacheType = CACHE_NONE; $wgLocalisationCacheConf['storeClass'] = 'LCStore_Null'; -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
