<?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: CSS Reviewr</title>
	<atom:link href="http://www.klauskomenda.com/archives/2008/12/20/css-reviewr/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.klauskomenda.com/archives/2008/12/20/css-reviewr/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 25 Jan 2012 00:41:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Si Jobling</title>
		<link>http://www.klauskomenda.com/archives/2008/12/20/css-reviewr/comment-page-1/#comment-15518</link>
		<dc:creator>Si Jobling</dc:creator>
		<pubDate>Sun, 28 Dec 2008 09:14:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.klauskomenda.com/?p=740#comment-15518</guid>
		<description>What a great tool to add to a web developer&#039;s arsenal! I remember you talking about this app back at Yahoo so it&#039;s great to see it come to light after all this time.

I&#039;ll certainly be putting it through the mill and suggesting any feature requests when they arise.

Good work Klaus.</description>
		<content:encoded><![CDATA[<p>What a great tool to add to a web developer&#8217;s arsenal! I remember you talking about this app back at Yahoo so it&#8217;s great to see it come to light after all this time.</p>
<p>I&#8217;ll certainly be putting it through the mill and suggesting any feature requests when they arise.</p>
<p>Good work Klaus.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neil Crosby</title>
		<link>http://www.klauskomenda.com/archives/2008/12/20/css-reviewr/comment-page-1/#comment-15332</link>
		<dc:creator>Neil Crosby</dc:creator>
		<pubDate>Wed, 24 Dec 2008 14:13:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.klauskomenda.com/?p=740#comment-15332</guid>
		<description>Oooh, here&#039;s another one I noticed the reviewr isn&#039;t noticing.  If you have a shorthand rule and a longhand rule that overwrites it, the reviewr isn&#039;t picking up on that and suggesting that you merge them.  The example I saw in some CSS I was looking over was:

p {
    margin: 0;
    margin-top: 5px;
}

The reviewr probably should have suggested merging that into `p { 5px 0 0 0; }`.</description>
		<content:encoded><![CDATA[<p>Oooh, here&#8217;s another one I noticed the reviewr isn&#8217;t noticing.  If you have a shorthand rule and a longhand rule that overwrites it, the reviewr isn&#8217;t picking up on that and suggesting that you merge them.  The example I saw in some CSS I was looking over was:</p>
<p>p {<br />
    margin: 0;<br />
    margin-top: 5px;<br />
}</p>
<p>The reviewr probably should have suggested merging that into `p { 5px 0 0 0; }`.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neil Crosby</title>
		<link>http://www.klauskomenda.com/archives/2008/12/20/css-reviewr/comment-page-1/#comment-15218</link>
		<dc:creator>Neil Crosby</dc:creator>
		<pubDate>Mon, 22 Dec 2008 17:49:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.klauskomenda.com/?p=740#comment-15218</guid>
		<description>It&#039;s really good to see this finally out in the wild, Klaus.

That said, I&#039;ve got a few questions, feature requests and the like.  So, here goes:

   * First off, is there a list somewhere of all the recommendations the tool makes?  Having this list available and browsable would be incredibly valuable in my opinion.
   * Currently the tool doesn&#039;t pick up on repeated semi-colons at the end of CSS rules.  Whilst they aren&#039;t bad per se, they&#039;re a stylistic thing that might be worth picking up on.
   * Slightly more important is the fact that the tool doesn&#039;t pick up on &quot;missing&quot; semi-colons from the end of final CSS rules.  Again, whilst not invalid, these semicolons being missing did cause issues with earlier versions of Safari.
   * When CSSReviewr finds issues with a CSS file, the title of the page changes to &quot;[Invalid]&quot;, which seems a little harsh, since CSSReviewr is checking the style, not the validity of the CSS document.
   * As a feature request, it would be lovely to be able to turn rulesets on and off, in the same way as JSLint allows.  Having this feature would also make the rulesets used by the tool public, which I feel would be an educationally good thing.

Oh, and one more thing - you&#039;ve got a GitHub repo for this - why isn&#039;t the code for the site in it? ;)</description>
		<content:encoded><![CDATA[<p>It&#8217;s really good to see this finally out in the wild, Klaus.</p>
<p>That said, I&#8217;ve got a few questions, feature requests and the like.  So, here goes:</p>
<p>   * First off, is there a list somewhere of all the recommendations the tool makes?  Having this list available and browsable would be incredibly valuable in my opinion.<br />
   * Currently the tool doesn&#8217;t pick up on repeated semi-colons at the end of CSS rules.  Whilst they aren&#8217;t bad per se, they&#8217;re a stylistic thing that might be worth picking up on.<br />
   * Slightly more important is the fact that the tool doesn&#8217;t pick up on &#8220;missing&#8221; semi-colons from the end of final CSS rules.  Again, whilst not invalid, these semicolons being missing did cause issues with earlier versions of Safari.<br />
   * When CSSReviewr finds issues with a CSS file, the title of the page changes to &#8220;[Invalid]&#8220;, which seems a little harsh, since CSSReviewr is checking the style, not the validity of the CSS document.<br />
   * As a feature request, it would be lovely to be able to turn rulesets on and off, in the same way as JSLint allows.  Having this feature would also make the rulesets used by the tool public, which I feel would be an educationally good thing.</p>
<p>Oh, and one more thing &#8211; you&#8217;ve got a GitHub repo for this &#8211; why isn&#8217;t the code for the site in it? <img src='http://www.klauskomenda.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Ward</title>
		<link>http://www.klauskomenda.com/archives/2008/12/20/css-reviewr/comment-page-1/#comment-15136</link>
		<dc:creator>Ben Ward</dc:creator>
		<pubDate>Sat, 20 Dec 2008 22:21:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.klauskomenda.com/?p=740#comment-15136</guid>
		<description>Wowee, this is excellent Klaus! Really, really powerful stuff.

Feature request time:

• Against each of the rules you&#039;re enforcing, it would be great to see citations for the reason behind it. Either a link to an article that justifies it, or a short chunk of expanded text explaining why you should do something a certain way. For example, in the post above you make the point about using &#039;arial&#039; over &#039;Arial&#039;. I didn&#039;t know about that one, and I presume there&#039;s a robustness based reason behind it. Having a quick click to find out about why one syntax is better than another would definitely help the education benefit of this tool.

Great work!

B</description>
		<content:encoded><![CDATA[<p>Wowee, this is excellent Klaus! Really, really powerful stuff.</p>
<p>Feature request time:</p>
<p>• Against each of the rules you&#8217;re enforcing, it would be great to see citations for the reason behind it. Either a link to an article that justifies it, or a short chunk of expanded text explaining why you should do something a certain way. For example, in the post above you make the point about using &#8216;arial&#8217; over &#8216;Arial&#8217;. I didn&#8217;t know about that one, and I presume there&#8217;s a robustness based reason behind it. Having a quick click to find out about why one syntax is better than another would definitely help the education benefit of this tool.</p>
<p>Great work!</p>
<p>B</p>
]]></content:encoded>
	</item>
</channel>
</rss>

