Mediawiki custom tag Stops page parsing. - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T05:08:12Zhttp://stackoverflow.com/feeds/question/49890http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/49890/mediawiki-custom-tag-stops-page-parsing0Mediawiki custom tag Stops page parsing.Adam Lerman2008-09-08T15:06:23Z2008-09-11T21:21:22Z
<p>I created a few mediawiki custom tags, using the guide found here</p>
<p><a href="http://www.mediawiki.org/wiki/Manual:Tag_extensions" rel="nofollow">http://www.mediawiki.org/wiki/Manual:Tag_extensions</a></p>
<p>I will post my code below, but the problem is after it hits the first custom tag in the page, it calls it, and prints the response, but does not get anything that comes after it in the wikitext. It seems it just stops parsing the page.</p>
<p>Any Ideas?</p>
<pre><code>if ( defined( 'MW_SUPPORTS_PARSERFIRSTCALLINIT' ) ) {
$wgHooks['ParserFirstCallInit'][] = 'tagregister';
} else { // Otherwise do things the old fashioned way
$wgExtensionFunctions[] = 'tagregister';
}
function tagregister(){
global $wgParser;
$wgParser->setHook('tag1','tag1func');
$wgParser->setHook('tag2','tag2func');
return true;
}
function tag1func($input,$params)
{
return "It called me";
}
function tag2func($input,$params)
{
return "It called me -- 2";
}</code></pre>
<p>Update: @<a href="#50460" rel="nofollow">George Mauer </a>-- I have seen that as well, but this does not stop the page from rendering, just the Mediawiki engine from parsing the rest of the wikitext. Its as if hitting the custom function is signalling mediawiki that processing is done. I am in the process of diving into the rabbit hole but was hoping someone else has seen this behaviour.</p>
http://stackoverflow.com/questions/49890/mediawiki-custom-tag-stops-page-parsing/50460#504601Answer by George Mauer for Mediawiki custom tag Stops page parsing.George Mauer2008-09-08T19:16:21Z2008-09-08T19:16:21Z<p>Never used Mediawiki but that sort of problem in my experience is indicative of a php error that occurred but was suppressed either with the @ operator or because php error output to screen is turned off.</p>
<p>I hate to resort to this debugging method but when absolutely and utterly frustrated in php I will just start putting echo statements every few lines (always with a marker so I remember to remove them later), to figure out exactly where the error is coming from. Eventually you'll get to the bottom of the rabbit hole and figure out exactly what the problematic line of code is.</p>
http://stackoverflow.com/questions/49890/mediawiki-custom-tag-stops-page-parsing/53228#532280Answer by Adam Lerman for Mediawiki custom tag Stops page parsing.Adam Lerman2008-09-10T00:34:43Z2008-09-11T21:21:22Z<p>Silly me. </p>
<p>Had to close the tags.</p>
<p>Instead of<code><tag1></code> I had to change it to <code><tag1 /></code> or <code><tag1></tag1></code></p>
<p>Now all works!</p>