<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:atom="http://www.w3.org/2005/Atom"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    >

<channel>
    <title>kjcoop.org &#187; media wiki</title>
    <atom:link href="http://kjcoop.org/tag/media-wiki/feed/" rel="self" type="application/rss+xml" />
    <link>http://kjcoop.org</link>
    <description></description>
    <lastBuildDate>Fri, 13 Aug 2010 02:21:34 +0000</lastBuildDate>
    <generator>http://wordpress.org/?v=2.9</generator>
    <language>en</language>
    <sy:updatePeriod>hourly</sy:updatePeriod>
    <sy:updateFrequency>1</sy:updateFrequency>
            <item>
        <title>Changing the title on MediaWiki&#8217;s main page</title>
        <link>http://kjcoop.org/2009/11/19/changing-the-title-on-mediawikis-main-page/</link>
        <comments>http://kjcoop.org/2009/11/19/changing-the-title-on-mediawikis-main-page/#comments</comments>
        <pubDate>Thu, 19 Nov 2009 01:56:59 +0000</pubDate>
        <dc:creator>KJ Coop</dc:creator>
        		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[media wiki]]></category>
		<category><![CDATA[nerdery]]></category>

        <guid isPermaLink="false">http://kjcoop.org/?p=1051</guid>
        <content:encoded><![CDATA[<p><a href="http://www.mediawiki.org/wiki/MediaWiki">MediaWiki</a> is the free software that powers Wikipedia, as well as several lesser-known wikis. I downloaded it yesterday, and I found changing its appearance more challenging than I had anticipated. </p>
<p>By default, a page is titled with a big headline stating the name of the entry, <a href="http://en.wikipedia.org/wiki/Propylene_glycol_alginate">such as propylene glycol alginate on this page</a>. Accordingly, the main page has a big &#8220;Main Page&#8221; headline. There doesn&#8217;t seem to be an easy way to change that to a more relevant string, but I was able to do so using the following steps: Assuming you&#8217;re using the default theme Monobook, open the file skins/MonoBook.php. In version 1.15.1 (and probably other recent versions) the relevant line is on 118:<br />
<code>&lt;h1 id="firstHeading" class="firstHeading"&gt;&lt;?php $this-&gt;data['displaytitle']!=''?$this-&gt;html('title'):$this-&gt;text('title') ?&gt;&lt;/h1&gt;</code></p>
<p>data['displaytitle'] will be blank on the main page, but I don&#8217;t know if it&#8217;s blank on other contexts also, so in order to be certain, I added a second condition to check against and linebreaks for increased readability:<br />
<code>&lt;h1 id="firstHeading" class="firstHeading"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;?php<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if ($this-&gt;data['displaytitle'] != '') {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$this-&gt;html('title');<br />
&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// It's the main page; put desired<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// welcome message here.<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} elseif ($this-&gt;data['title'] == 'Main Page') {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo 'Welcome to this wiki!';<br />
&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// displaytitle is blank but it's not the<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// main page; I have no idea if this<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// condition will ever be met.<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} else {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$this-&gt;text('title');<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;?&gt;<br />
&lt;/h1&gt;<br />
</code></p>
]]></content:encoded>
        <wfw:commentRss>http://kjcoop.org/2009/11/19/changing-the-title-on-mediawikis-main-page/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>
        </item>
    </channel>
</rss>
