<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: MediaWiki Fratman Skin</title>
	<atom:link href="http://jasonpearce.com/blog/2006/09/23/mediawiki-fratman-skin/feed/" rel="self" type="application/rss+xml" />
	<link>http://jasonpearce.com/blog/2006/09/23/mediawiki-fratman-skin/</link>
	<description>relatively irrelevant</description>
	<lastBuildDate>Mon, 15 Mar 2010 12:57:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Shedders</title>
		<link>http://jasonpearce.com/blog/2006/09/23/mediawiki-fratman-skin/comment-page-2/#comment-36255</link>
		<dc:creator>Shedders</dc:creator>
		<pubDate>Fri, 22 Jan 2010 11:02:41 +0000</pubDate>
		<guid isPermaLink="false">http://jasonpearce.com/blog/2006/09/23/mediawiki-fratman-skin/#comment-36255</guid>
		<description>&lt;p&gt;Tim, try [if lt IE 7]   &lt;--less than IE7&lt;/p&gt;

&lt;p&gt;After applying various fixes in these replies I&#039;m almost there. Just left with a syntax error on IE...&lt;/p&gt;

&lt;p&gt;Webpage error details
Message: Syntax error
Line: 1
Char: 1
Code: 0
URI: http://www.mydomainishere.co.uk/index.php5?title=-&amp;action=raw&amp;gen=js&amp;useskin=fratman_enhanced&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Tim, try [if lt IE 7]   &lt;&#8211;less than IE7</p>
<p>After applying various fixes in these replies I&#8217;m almost there. Just left with a syntax error on IE&#8230;</p>
<p>Webpage error details<br />
Message: Syntax error<br />
Line: 1<br />
Char: 1<br />
Code: 0<br />
URI: <a href="http://www.mydomainishere.co.uk/index.php5?title=-&amp;action=raw&amp;gen=js&amp;useskin=fratman_enhanced" rel="nofollow">http://www.mydomainishere.co.uk/index.php5?title=-&amp;action=raw&amp;gen=js&amp;useskin=fratman_enhanced</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://jasonpearce.com/blog/2006/09/23/mediawiki-fratman-skin/comment-page-2/#comment-36169</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Thu, 02 Jul 2009 12:59:18 +0000</pubDate>
		<guid isPermaLink="false">http://jasonpearce.com/blog/2006/09/23/mediawiki-fratman-skin/#comment-36169</guid>
		<description>&lt;p&gt;Alas, the above &quot;fix&quot; did not work with IE 6.02x.&lt;/p&gt;

&lt;p&gt;I have windows XP computer with IE 7 and a Win2K computer with IE 6.02x or thereabouts.
The &quot;fix&quot; above only works on the computer with IE 7, so it is no better than just removing the
IE60Fixes.css file as suggested by Hal.&lt;/p&gt;

&lt;p&gt;I guess that &quot;[if IE 6]&quot; may mean only IE 6.0 precisely (?).&lt;/p&gt;

&lt;p&gt;Perhaps I need something like [If IE =&gt; 6 AND &lt; 7]?  I am not sure.&lt;/p&gt;

&lt;p&gt;Nearly there, but not quite.&lt;/p&gt;

&lt;p&gt;Tim&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Alas, the above &#8220;fix&#8221; did not work with IE 6.02x.</p>
<p>I have windows XP computer with IE 7 and a Win2K computer with IE 6.02x or thereabouts.<br />
The &#8220;fix&#8221; above only works on the computer with IE 7, so it is no better than just removing the<br />
IE60Fixes.css file as suggested by Hal.</p>
<p>I guess that &#8220;[if IE 6]&#8221; may mean only IE 6.0 precisely (?).</p>
<p>Perhaps I need something like [If IE =&gt; 6 AND &lt; 7]?  I am not sure.</p>
<p>Nearly there, but not quite.</p>
<p>Tim</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://jasonpearce.com/blog/2006/09/23/mediawiki-fratman-skin/comment-page-2/#comment-36168</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Thu, 02 Jul 2009 03:21:02 +0000</pubDate>
		<guid isPermaLink="false">http://jasonpearce.com/blog/2006/09/23/mediawiki-fratman-skin/#comment-36168</guid>
		<description>&lt;p&gt;Like Hal Jobe and EspTek i find that in IE7 the sidebar is strange, but removing just renaming the IE60Fixes.css solves the problem in 1E7. 
So all I need to do is find the place where the AAIE60Fixes.css is called and have it called only when the browser is IE 6. 
Aha. In fratman_enhanced.php at line 63
There is 
    &lt;!--[if gte IE 6]&gt;@import &quot;text(&#039;stylepath&#039;) ?&gt;/text(&#039;stylename&#039;) ?&gt;/IE60Fixes.css&quot;;&lt;![endif]--&gt;
This means that if the version is greater than 6 then include the IE60Fixes.css. 
According to the site below
http://www.quirksmode.org/css/condcom.html
[if IE 6]
will work for all versions of IE6. So I changed line 63 to
    &lt;!--[if IE 6]&gt;@import &quot;text(&#039;stylepath&#039;) ?&gt;/text(&#039;stylename&#039;) ?&gt;/IE60Fixes.css&quot;;&lt;![endif]--&gt;&lt;/p&gt;

&lt;p&gt;And after a lot of wailing and nashing of teeth (because the CSS was being cached, and I was not refreshing the cashe - be sure to use &quot;Ctrl + F5&quot; to make sure that the CSS as well as the page are refreshed), the above seems to work for IE7 and I presume for IE6 too.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Like Hal Jobe and EspTek i find that in IE7 the sidebar is strange, but removing just renaming the IE60Fixes.css solves the problem in 1E7.<br />
So all I need to do is find the place where the AAIE60Fixes.css is called and have it called only when the browser is IE 6.<br />
Aha. In fratman_enhanced.php at line 63<br />
There is<br />
    <!--[if gte IE 6]&gt;@import "text('stylepath') ?&gt;/text('stylename') ?&gt;/IE60Fixes.css";&lt;![endif]--><br />
This means that if the version is greater than 6 then include the IE60Fixes.css.<br />
According to the site below<br />
<a href="http://www.quirksmode.org/css/condcom.html" rel="nofollow">http://www.quirksmode.org/css/condcom.html</a><br />
[if IE 6]<br />
will work for all versions of IE6. So I changed line 63 to<br />
    <!--[if IE 6]&gt;@import "text('stylepath') ?&gt;/text('stylename') ?&gt;/IE60Fixes.css";&lt;![endif]--></p>
<p>And after a lot of wailing and nashing of teeth (because the CSS was being cached, and I was not refreshing the cashe &#8211; be sure to use &#8220;Ctrl + F5&#8243; to make sure that the CSS as well as the page are refreshed), the above seems to work for IE7 and I presume for IE6 too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jasonpearce</title>
		<link>http://jasonpearce.com/blog/2006/09/23/mediawiki-fratman-skin/comment-page-2/#comment-36144</link>
		<dc:creator>jasonpearce</dc:creator>
		<pubDate>Fri, 15 May 2009 12:50:26 +0000</pubDate>
		<guid isPermaLink="false">http://jasonpearce.com/blog/2006/09/23/mediawiki-fratman-skin/#comment-36144</guid>
		<description>&lt;p&gt;Sorry Jobe. It&#039;s been nearly three years since I developed this skin. Browsers have updated and so has the MediaWiki code base, so it doesn&#039;t surprise me that my FratMan skin is giving you some problems.&lt;/p&gt;

&lt;p&gt;I currently don&#039;t have any upcoming MediaWiki websites to develop. But when I do, I&#039;ll likely develop a new clean skin that works for all A-Grade browsers and will share it to all.&lt;/p&gt;

&lt;p&gt;Sincerely,
Jason Pearce&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Sorry Jobe. It&#8217;s been nearly three years since I developed this skin. Browsers have updated and so has the MediaWiki code base, so it doesn&#8217;t surprise me that my FratMan skin is giving you some problems.</p>
<p>I currently don&#8217;t have any upcoming MediaWiki websites to develop. But when I do, I&#8217;ll likely develop a new clean skin that works for all A-Grade browsers and will share it to all.</p>
<p>Sincerely,<br />
Jason Pearce</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jobe</title>
		<link>http://jasonpearce.com/blog/2006/09/23/mediawiki-fratman-skin/comment-page-2/#comment-36142</link>
		<dc:creator>jobe</dc:creator>
		<pubDate>Thu, 07 May 2009 12:49:13 +0000</pubDate>
		<guid isPermaLink="false">http://jasonpearce.com/blog/2006/09/23/mediawiki-fratman-skin/#comment-36142</guid>
		<description>&lt;p&gt;I had the possibility to test the skin on IE6.0 and it works, so it&#039;s a IE7 problem only... :(&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I had the possibility to test the skin on IE6.0 and it works, so it&#8217;s a IE7 problem only&#8230; :(</p>
]]></content:encoded>
	</item>
</channel>
</rss>
