<?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: Using Your App&#8217;s YUI Components on the Server</title>
	<atom:link href="http://www.yuiblog.com/blog/index.php/2012/04/23/using-your-apps-yui-components-on-the-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.yuiblog.com/blog/2012/04/23/using-your-apps-yui-components-on-the-server/</link>
	<description>The official blog of the YUI Project.</description>
	<lastBuildDate>Fri, 24 May 2013 22:49:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: trung</title>
		<link>http://www.yuiblog.com/blog/2012/04/23/using-your-apps-yui-components-on-the-server/comment-page-1/#comment-643151</link>
		<dc:creator>trung</dc:creator>
		<pubDate>Thu, 20 Sep 2012 03:55:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/2012/04/23/#comment-643151</guid>
		<description><![CDATA[Will this make mojito obsolete?]]></description>
		<content:encoded><![CDATA[<p>Will this make mojito obsolete?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Felipe Gasper</title>
		<link>http://www.yuiblog.com/blog/2012/04/23/using-your-apps-yui-components-on-the-server/comment-page-1/#comment-607448</link>
		<dc:creator>Felipe Gasper</dc:creator>
		<pubDate>Fri, 27 Apr 2012 06:36:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/2012/04/23/#comment-607448</guid>
		<description><![CDATA[I saw it in other requests, too, like this:
http://photosnear.me/photos/3083535/

It’s reliable when I find a photo that errors, but I can’t see a clear pattern for what loads and what doesn’t.]]></description>
		<content:encoded><![CDATA[<p>I saw it in other requests, too, like this:<br />
<a href="http://photosnear.me/photos/3083535/" rel="nofollow">http://photosnear.me/photos/3083535/</a></p>
<p>It’s reliable when I find a photo that errors, but I can’t see a clear pattern for what loads and what doesn’t.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Ferraiuolo</title>
		<link>http://www.yuiblog.com/blog/2012/04/23/using-your-apps-yui-components-on-the-server/comment-page-1/#comment-607396</link>
		<dc:creator>Eric Ferraiuolo</dc:creator>
		<pubDate>Fri, 27 Apr 2012 01:32:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/2012/04/23/#comment-607396</guid>
		<description><![CDATA[@Felipe It must be that the photo doesn&#039;t have the correct derivative for some reason. Did you notice this on other requests as well, or just that one photo?]]></description>
		<content:encoded><![CDATA[<p>@Felipe It must be that the photo doesn&#8217;t have the correct derivative for some reason. Did you notice this on other requests as well, or just that one photo?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Felipe Gasper</title>
		<link>http://www.yuiblog.com/blog/2012/04/23/using-your-apps-yui-components-on-the-server/comment-page-1/#comment-607372</link>
		<dc:creator>Felipe Gasper</dc:creator>
		<pubDate>Thu, 26 Apr 2012 23:45:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/2012/04/23/#comment-607372</guid>
		<description><![CDATA[Eric, parts of this seem not to work?

http://photosnear.me/photos/2194011224/]]></description>
		<content:encoded><![CDATA[<p>Eric, parts of this seem not to work?</p>
<p><a href="http://photosnear.me/photos/2194011224/" rel="nofollow">http://photosnear.me/photos/2194011224/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Ferraiuolo</title>
		<link>http://www.yuiblog.com/blog/2012/04/23/using-your-apps-yui-components-on-the-server/comment-page-1/#comment-606757</link>
		<dc:creator>Eric Ferraiuolo</dc:creator>
		<pubDate>Tue, 24 Apr 2012 15:59:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/2012/04/23/#comment-606757</guid>
		<description><![CDATA[@InSuperposition Currently, &lt;code&gt;Y.App&lt;/code&gt; assumes that it is running on the browser and requires things like &lt;code&gt;window.location&lt;/code&gt;, DOM, and the browser&#039;s history APIs to operate. That said, our goal is to make &lt;code&gt;Y.App&lt;/code&gt; also run on the server by decoupling it from its browser-specific dependencies. The plan is to start with making &lt;code&gt;Y.Router&lt;/code&gt; run on the server, which &lt;code&gt;Y.App&lt;/code&gt; uses.

&lt;code&gt;Y.Router&lt;/code&gt; was inspired by Express.js&#039; routing and Express.js is awesome so that&#039;s why I chose to use it on the server.]]></description>
		<content:encoded><![CDATA[<p>@InSuperposition Currently, <code>Y.App</code> assumes that it is running on the browser and requires things like <code>window.location</code>, DOM, and the browser&#8217;s history APIs to operate. That said, our goal is to make <code>Y.App</code> also run on the server by decoupling it from its browser-specific dependencies. The plan is to start with making <code>Y.Router</code> run on the server, which <code>Y.App</code> uses.</p>
<p><code>Y.Router</code> was inspired by Express.js&#8217; routing and Express.js is awesome so that&#8217;s why I chose to use it on the server.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: InSuperposition</title>
		<link>http://www.yuiblog.com/blog/2012/04/23/using-your-apps-yui-components-on-the-server/comment-page-1/#comment-606745</link>
		<dc:creator>InSuperposition</dc:creator>
		<pubDate>Tue, 24 Apr 2012 15:19:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/2012/04/23/#comment-606745</guid>
		<description><![CDATA[Wow that is very cool!

Was there a specific reason for choosing Express.js on the server instead of YUI App for both client and server? 

I can&#039;t wait to hear more on YUI theatre.]]></description>
		<content:encoded><![CDATA[<p>Wow that is very cool!</p>
<p>Was there a specific reason for choosing Express.js on the server instead of YUI App for both client and server? </p>
<p>I can&#8217;t wait to hear more on YUI theatre.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
