<?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>itlivewire dev blog &#187; mediawiki</title>
	<atom:link href="http://itlivewire.com/devblog/category/mediawiki/feed/" rel="self" type="application/rss+xml" />
	<link>http://itlivewire.com/devblog</link>
	<description>Just another web development blog...</description>
	<lastBuildDate>Mon, 16 Apr 2012 12:37:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>mediawiki image link to an article</title>
		<link>http://itlivewire.com/devblog/2010/02/02/mediawiki-image-link-to-an-article/</link>
		<comments>http://itlivewire.com/devblog/2010/02/02/mediawiki-image-link-to-an-article/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 05:01:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[mediawiki]]></category>

		<guid isPermaLink="false">http://itlivewire.com/devblog/?p=317</guid>
		<description><![CDATA[Images on a MediaWiki wiki will by default, link to the description page Here is a work around that when you click an image it will link to an ariticle [[Image:Wiki.png&#124;50px&#124;link=MediaWiki]] Note: The code above will work in mediawiki version 1.14 and above only &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- Here is the workaround for older versions Edit the Common.css [...]]]></description>
			<content:encoded><![CDATA[<p>Images  on a MediaWiki wiki will by default, link to the description page<br />
Here is a work around that when you click an image it will link to an ariticle</p>
<pre class="brush: php;">[[Image:Wiki.png|50px|link=MediaWiki]]</pre>
<p>Note: The code above will work in mediawiki version 1.14 and above only<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
Here is the workaround for older versions<br />
Edit the <strong>Common.css</strong></p>
<pre class="brush: php;">.imagelink_somename a {
  width:100px;
  height:100px;
  display:block;
  text-decoration:none;
  background-image: url(&quot;http://fullurltoimage&quot;)
}</pre>
<p>In your wiki code:</p>
<pre class="brush: php;">&lt;div class=&quot;imagelink_somename&quot;&gt;[[Some link|&amp;nbsp;]]&lt;/div&gt;</pre>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Or try the quick way</p>
<pre class="brush: php;">
&lt;div style=&quot;position: relative; width: {{{width}}}; height: {{{height}}}; overflow: hidden;&quot;&gt;
&lt;div style=&quot;position: absolute; top: 0px; left: 0px; font-size: 100px; overflow: hidden; line-height: 100px; z-index: 3;&quot;&gt;[[{{{link}}}|&amp;nbsp;&amp;nbsp;&amp;nbsp;]]&lt;/div&gt;
&lt;div style=&quot;position: absolute; top: 0px; left: 0px; z-index: 2;&quot;&gt;[[Image:{{{image}}}|{{{width}}}|{{{link}}}]]&lt;/div&gt;
&lt;/div&gt;
</pre>
<p>More workarounds found at mediawiki docs<br />
<a href="http://www.mediawiki.org/wiki/Help:Linked_images#link.3D_Syntax_available_since_version_1.14">http://www.mediawiki.org/wiki/Help:Linked_images#link.3D_Syntax_available_since_version_1.14</a></p>
]]></content:encoded>
			<wfw:commentRss>http://itlivewire.com/devblog/2010/02/02/mediawiki-image-link-to-an-article/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable Lotus Notes notes:// protocol in mediawiki</title>
		<link>http://itlivewire.com/devblog/2010/01/28/enable-lotus-note-notes-protocol-in-mediawiki/</link>
		<comments>http://itlivewire.com/devblog/2010/01/28/enable-lotus-note-notes-protocol-in-mediawiki/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 07:29:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[mediawiki]]></category>
		<category><![CDATA[lotus notes]]></category>

		<guid isPermaLink="false">http://itlivewire.com/devblog/2010/01/28/enable-lotus-note-notes-protocol-in-mediawiki/</guid>
		<description><![CDATA[Edit the LocalSettings.php add the notes:// protocol where you find this line (add it as an array item) $wgUrlProtocols = array( 'http://', 'https://', 'mailto:' ,'notes://');]]></description>
			<content:encoded><![CDATA[<p>Edit the <strong>LocalSettings.php</strong><br />
add the <strong>notes://</strong> protocol<br />
where you find this line (add it as an array item)</p>
<pre class="brush: php;">$wgUrlProtocols = array( 'http://', 'https://', 'mailto:' ,'notes://');</pre>
]]></content:encoded>
			<wfw:commentRss>http://itlivewire.com/devblog/2010/01/28/enable-lotus-note-notes-protocol-in-mediawiki/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

