<?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: Cross-Domain Data with Rack and Rails</title>
	<atom:link href="http://www.engineyard.com/blog/2009/cross-domain-data-with-rack-and-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.engineyard.com/blog/2009/cross-domain-data-with-rack-and-rails/</link>
	<description></description>
	<lastBuildDate>Wed, 08 Feb 2012 12:12:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Stulseple</title>
		<link>http://www.engineyard.com/blog/2009/cross-domain-data-with-rack-and-rails/comment-page-1/#comment-4661</link>
		<dc:creator>Stulseple</dc:creator>
		<pubDate>Thu, 02 Jul 2009 17:55:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.engineyard.com/blog/?p=1111#comment-4661</guid>
		<description>Your blog is so interesting! I have subscribed on rss and I will read it regullary/</description>
		<content:encoded><![CDATA[<p>Your blog is so interesting! I have subscribed on rss and I will read it regullary/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Crosby</title>
		<link>http://www.engineyard.com/blog/2009/cross-domain-data-with-rack-and-rails/comment-page-1/#comment-1377</link>
		<dc:creator>Jon Crosby</dc:creator>
		<pubDate>Tue, 09 Jun 2009 18:34:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.engineyard.com/blog/?p=1111#comment-1377</guid>
		<description>Neil, one example might be displaying a widget on your blog that contains your latest 5 status updates on Twitter. Another might be a public transit site that embeds arrival and departure times for various services (trains, buses, etc.). These are cases where read-only data hosted on other sites (sites that use CSSHttpRequest) might be valuable. </description>
		<content:encoded><![CDATA[<p>Neil, one example might be displaying a widget on your blog that contains your latest 5 status updates on Twitter. Another might be a public transit site that embeds arrival and departure times for various services (trains, buses, etc.). These are cases where read-only data hosted on other sites (sites that use CSSHttpRequest) might be valuable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NeilCauldwell</title>
		<link>http://www.engineyard.com/blog/2009/cross-domain-data-with-rack-and-rails/comment-page-1/#comment-389</link>
		<dc:creator>NeilCauldwell</dc:creator>
		<pubDate>Wed, 03 Jun 2009 07:56:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.engineyard.com/blog/?p=1111#comment-389</guid>
		<description>Right, thanks Jon. I&#039;m still a little fuzzy on this - your point about the &#039;second use case&#039; (getting a message) has thrown me as I thought that your example was getting &#039;Hello Rails&#039; - but this question could clear things up; what would you see as a good use case for CSSHttpRequest from UI perspective? </description>
		<content:encoded><![CDATA[<p>Right, thanks Jon. I&#039;m still a little fuzzy on this &#8211; your point about the &#039;second use case&#039; (getting a message) has thrown me as I thought that your example was getting &#039;Hello Rails&#039; &#8211; but this question could clear things up; what would you see as a good use case for CSSHttpRequest from UI perspective?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Crosby</title>
		<link>http://www.engineyard.com/blog/2009/cross-domain-data-with-rack-and-rails/comment-page-1/#comment-382</link>
		<dc:creator>Jon Crosby</dc:creator>
		<pubDate>Tue, 02 Jun 2009 18:35:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.engineyard.com/blog/?p=1111#comment-382</guid>
		<description>Neil, CSSHttpRequest does not cover those use cases. It provides read-only data so posting would need to happen independently. For the second use case (getting a message), it requires a new HTTP request. </description>
		<content:encoded><![CDATA[<p>Neil, CSSHttpRequest does not cover those use cases. It provides read-only data so posting would need to happen independently. For the second use case (getting a message), it requires a new HTTP request.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NeilCauldwell</title>
		<link>http://www.engineyard.com/blog/2009/cross-domain-data-with-rack-and-rails/comment-page-1/#comment-353</link>
		<dc:creator>NeilCauldwell</dc:creator>
		<pubDate>Sun, 31 May 2009 07:05:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.engineyard.com/blog/?p=1111#comment-353</guid>
		<description>Does this enable a client to paste a widget in to their views (an email collection form, perhaps), to post data to the widget provider (i.e. emails post to another domain), and for widget provider to return a message to be rendered in the DOM via CSS, without another http request or redirect? </description>
		<content:encoded><![CDATA[<p>Does this enable a client to paste a widget in to their views (an email collection form, perhaps), to post data to the widget provider (i.e. emails post to another domain), and for widget provider to return a message to be rendered in the DOM via CSS, without another http request or redirect?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randy Reddig</title>
		<link>http://www.engineyard.com/blog/2009/cross-domain-data-with-rack-and-rails/comment-page-1/#comment-345</link>
		<dc:creator>Randy Reddig</dc:creator>
		<pubDate>Fri, 29 May 2009 15:47:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.engineyard.com/blog/?p=1111#comment-345</guid>
		<description>Hi, I created CSSHttpRequest. It implements a guard against expression evaluation in IE by specifically making the stylesheet target media=print. 
 
I suppose it&#8217;s possible, however unlikely, to construct a scenario where untrusted code might be evaluated. It would require the user to print a page at the instant a CHR transport iframe containing malicious CSS is present on the page. </description>
		<content:encoded><![CDATA[<p>Hi, I created CSSHttpRequest. It implements a guard against expression evaluation in IE by specifically making the stylesheet target media=print.</p>
<p>I suppose it&rsquo;s possible, however unlikely, to construct a scenario where untrusted code might be evaluated. It would require the user to print a page at the instant a CHR transport iframe containing malicious CSS is present on the page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Double Shot #463 &#171; A Fresh Cup</title>
		<link>http://www.engineyard.com/blog/2009/cross-domain-data-with-rack-and-rails/comment-page-1/#comment-340</link>
		<dc:creator>Double Shot #463 &#171; A Fresh Cup</dc:creator>
		<pubDate>Fri, 29 May 2009 10:49:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.engineyard.com/blog/?p=1111#comment-340</guid>
		<description>[...] Cross-Domain Data with Rack and Rails &#8211; Encoding data into CSS rules to get around cross-domain security policies is certainly one of the nastier perversions of web standards I&#8217;ve seen lately. [...]</description>
		<content:encoded><![CDATA[<p>[...] Cross-Domain Data with Rack and Rails &#8211; Encoding data into CSS rules to get around cross-domain security policies is certainly one of the nastier perversions of web standards I&#8217;ve seen lately. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Crosby</title>
		<link>http://www.engineyard.com/blog/2009/cross-domain-data-with-rack-and-rails/comment-page-1/#comment-338</link>
		<dc:creator>Jon Crosby</dc:creator>
		<pubDate>Fri, 29 May 2009 05:02:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.engineyard.com/blog/?p=1111#comment-338</guid>
		<description>ActsAsFlinn, the difference between JSON-P and AJACSS is that the later is just read-only data. </description>
		<content:encoded><![CDATA[<p>ActsAsFlinn, the difference between JSON-P and AJACSS is that the later is just read-only data.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Crosby</title>
		<link>http://www.engineyard.com/blog/2009/cross-domain-data-with-rack-and-rails/comment-page-1/#comment-337</link>
		<dc:creator>Jon Crosby</dc:creator>
		<pubDate>Fri, 29 May 2009 04:58:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.engineyard.com/blog/?p=1111#comment-337</guid>
		<description>Dr Nic, I should have explained more clearly in the original post. The encoding is done on the side of the data provider so that all clients can access it without needing to set up their own proxies. </description>
		<content:encoded><![CDATA[<p>Dr Nic, I should have explained more clearly in the original post. The encoding is done on the side of the data provider so that all clients can access it without needing to set up their own proxies.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ActsAsFlinn</title>
		<link>http://www.engineyard.com/blog/2009/cross-domain-data-with-rack-and-rails/comment-page-1/#comment-336</link>
		<dc:creator>ActsAsFlinn</dc:creator>
		<pubDate>Fri, 29 May 2009 01:22:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.engineyard.com/blog/?p=1111#comment-336</guid>
		<description>I don&#039;t see the objection to JSON-P.  I&#039;m not going to trust a partner more if they are using AJACSS over JSON-P.  If I don&#039;t trust partner I&#039;m not going to embed their service data on my pages.  There are old precedents for providing features/widgets/ads via external javascript includes. 
 
Also, isn&#039;t IE6 susceptible to XSS attack via CSS? 
 
One thing is certain browsers need to provide a cross-domain non-eval&#039;d data source mechanism.  Why wasn&#039;t this addressed in HTML5?  Seems like a bigger issue than web sockets. </description>
		<content:encoded><![CDATA[<p>I don&#039;t see the objection to JSON-P.  I&#039;m not going to trust a partner more if they are using AJACSS over JSON-P.  If I don&#039;t trust partner I&#039;m not going to embed their service data on my pages.  There are old precedents for providing features/widgets/ads via external javascript includes. </p>
<p>Also, isn&#039;t IE6 susceptible to XSS attack via CSS? </p>
<p>One thing is certain browsers need to provide a cross-domain non-eval&#039;d data source mechanism.  Why wasn&#039;t this addressed in HTML5?  Seems like a bigger issue than web sockets.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

