<?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"
	>
<channel>
	<title>Comments on: Down with HTML + Code Markup!</title>
	<atom:link href="http://www.pathf.com/blogs/2008/05/down-with-html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pathf.com/blogs/2008/05/down-with-html/</link>
	<description>Running commentary about agile development, user experience design and Ajax.</description>
	<pubDate>Thu, 08 Jan 2009 18:17:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: tim hj</title>
		<link>http://www.pathf.com/blogs/2008/05/down-with-html/#comment-1766</link>
		<dc:creator>tim hj</dc:creator>
		<pubDate>Thu, 05 Jun 2008 08:27:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/2008/05/down-with-html/#comment-1766</guid>
		<description>Can I ask who or what you were building the $link.'click here' app for? 

It's a long shot but the server logs for one of our sites has been peppered with 
GET /recipes/collections/easy/click%20here  HTTP/1.1
GET /recipes/1266/click%20here HTTP/1.1
GET /page/delicious/click%20here HTTP/1.1
etc. requests the past couple of days and we have no idea what's spawning them.  - half of the requests don't resolve to proper pages...</description>
		<content:encoded><![CDATA[<p>Can I ask who or what you were building the $link.&#8217;click here&#8217; app for? </p>
<p>It&#8217;s a long shot but the server logs for one of our sites has been peppered with<br />
GET /recipes/collections/easy/click%20here  HTTP/1.1<br />
GET /recipes/1266/click%20here HTTP/1.1<br />
GET /page/delicious/click%20here HTTP/1.1<br />
etc. requests the past couple of days and we have no idea what&#8217;s spawning them.  - half of the requests don&#8217;t resolve to proper pages&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shams Mahmood</title>
		<link>http://www.pathf.com/blogs/2008/05/down-with-html/#comment-989</link>
		<dc:creator>Shams Mahmood</dc:creator>
		<pubDate>Sat, 17 May 2008 13:19:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/2008/05/down-with-html/#comment-989</guid>
		<description>&lt;p&gt;You must have a look at the wicket framework. It's one of the reasons I love wicket - separate java code from html. &lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>You must have a look at the wicket framework. It&#8217;s one of the reasons I love wicket - separate java code from html. </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob</title>
		<link>http://www.pathf.com/blogs/2008/05/down-with-html/#comment-988</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Sat, 17 May 2008 06:12:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/2008/05/down-with-html/#comment-988</guid>
		<description>&lt;p&gt;Have a look at Erector: &lt;a href="http://erector.rubyforge.org/" rel="nofollow"&gt;http://erector.rubyforge.org/&lt;/a&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Have a look at Erector: <a href="http://erector.rubyforge.org/" rel="nofollow">http://erector.rubyforge.org/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: makoto kuwata</title>
		<link>http://www.pathf.com/blogs/2008/05/down-with-html/#comment-987</link>
		<dc:creator>makoto kuwata</dc:creator>
		<pubDate>Sat, 17 May 2008 03:45:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/2008/05/down-with-html/#comment-987</guid>
		<description>&lt;p&gt;How about Kwartz?&lt;br /&gt;
Kwartz separates the presentation logic from the HTML template in the same way CSS separates design from HTML.&lt;br /&gt;
As the result, template is pure HTML and it's design is never broken.&lt;br /&gt;
In addition, Kwartz can generate eRuby file from HTML template.&lt;br /&gt;
I think you should try it if you are looking for the best solution.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>How about Kwartz?<br />
Kwartz separates the presentation logic from the HTML template in the same way CSS separates design from HTML.<br />
As the result, template is pure HTML and it&#8217;s design is never broken.<br />
In addition, Kwartz can generate eRuby file from HTML template.<br />
I think you should try it if you are looking for the best solution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesse</title>
		<link>http://www.pathf.com/blogs/2008/05/down-with-html/#comment-986</link>
		<dc:creator>Jesse</dc:creator>
		<pubDate>Sat, 17 May 2008 02:48:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/2008/05/down-with-html/#comment-986</guid>
		<description>&lt;p&gt;Having to use template language syntax between the brackets drives me nuts as well, especially when I see someone drop a whole if statement in there.  I don't use rails anymore but I am currently in the middle of refactoring ALL our front-end code at work (Freemarker) and went from simply creating a css framework to fix some inconsistencies I was noticing (not to mention trim ~1600 lines of rounded corner rules down to about 80 for the entire site) to building a series of macros/helper functions so there's no need to write yet another "Top Photos" module for "new page X".  While I did this all mostly to speed up dev time of new features by introducing a framework of common elements/modules, it will also help avoid introducing bad markup since the "new hire" only needs to call a macro.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Having to use template language syntax between the brackets drives me nuts as well, especially when I see someone drop a whole if statement in there.  I don&#8217;t use rails anymore but I am currently in the middle of refactoring ALL our front-end code at work (Freemarker) and went from simply creating a css framework to fix some inconsistencies I was noticing (not to mention trim ~1600 lines of rounded corner rules down to about 80 for the entire site) to building a series of macros/helper functions so there&#8217;s no need to write yet another &#8220;Top Photos&#8221; module for &#8220;new page X&#8221;.  While I did this all mostly to speed up dev time of new features by introducing a framework of common elements/modules, it will also help avoid introducing bad markup since the &#8220;new hire&#8221; only needs to call a macro.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.pathf.com/blogs/2008/05/down-with-html/#comment-985</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Sat, 17 May 2008 01:37:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/2008/05/down-with-html/#comment-985</guid>
		<description>&lt;p&gt;I tested HAML, Markaby, and Liquid in the book. Markaby is very attractive, but reportedly too slow for a high-traffic system. Liquid is most suited to a case where you need to prevent designers from accessing some functionality. HAML I found kind of opaque and hard to read.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I tested HAML, Markaby, and Liquid in the book. Markaby is very attractive, but reportedly too slow for a high-traffic system. Liquid is most suited to a case where you need to prevent designers from accessing some functionality. HAML I found kind of opaque and hard to read.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://www.pathf.com/blogs/2008/05/down-with-html/#comment-984</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Fri, 16 May 2008 23:21:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/2008/05/down-with-html/#comment-984</guid>
		<description>&lt;p&gt;Have you looked into using HAML instead of ERb? Your div example would look something like&lt;/p&gt;

&lt;p&gt;.thing{:id =&gt; dom_id(@thing)}&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Have you looked into using HAML instead of ERb? Your div example would look something like</p>
<p>.thing{:id => dom_id(@thing)}</p>
]]></content:encoded>
	</item>
</channel>
</rss>
