<?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: Open Source in the Cloud</title>
	<atom:link href="http://www.linuxloop.com/news/2008/07/16/open-source-in-the-cloud/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.linuxloop.com/news/2008/07/16/open-source-in-the-cloud/</link>
	<description>Keeping you in the loop with up-to-date Linux news.</description>
	<pubDate>Tue, 02 Dec 2008 23:22:39 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: David Claughton</title>
		<link>http://www.linuxloop.com/news/2008/07/16/open-source-in-the-cloud/#comment-9441</link>
		<dc:creator>David Claughton</dc:creator>
		<pubDate>Fri, 18 Jul 2008 20:29:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxloop.com/news/?p=365#comment-9441</guid>
		<description>Well, IANAL, but the CPAL section 3 is headed "Distribution Obligations" and although it talks about "making available" executables and source code, I suspect it would be easy for someone to make the case that this is only talking about distribution and not remote access.</description>
		<content:encoded><![CDATA[<p>Well, IANAL, but the CPAL section 3 is headed &#8220;Distribution Obligations&#8221; and although it talks about &#8220;making available&#8221; executables and source code, I suspect it would be easy for someone to make the case that this is only talking about distribution and not remote access.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tara Kelly</title>
		<link>http://www.linuxloop.com/news/2008/07/16/open-source-in-the-cloud/#comment-9417</link>
		<dc:creator>Tara Kelly</dc:creator>
		<pubDate>Fri, 18 Jul 2008 14:06:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxloop.com/news/?p=365#comment-9417</guid>
		<description>As far as I know, the AGPL addresses the issue of code availability for web-services.</description>
		<content:encoded><![CDATA[<p>As far as I know, the AGPL addresses the issue of code availability for web-services.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: InTheLoop</title>
		<link>http://www.linuxloop.com/news/2008/07/16/open-source-in-the-cloud/#comment-9370</link>
		<dc:creator>InTheLoop</dc:creator>
		<pubDate>Fri, 18 Jul 2008 00:50:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxloop.com/news/?p=365#comment-9370</guid>
		<description>David Claughton - That is really interested. I assume that you are talking mostly about the GPL in this case. I know Reddit choose the Common Public Attribution License (which they say is a modified version of the Mozilla license. Any idea if that has the same issue?

Source for Reddit license info:
http://blog.reddit.com/2008/06/reddit-goes-open-source.html</description>
		<content:encoded><![CDATA[<p>David Claughton - That is really interested. I assume that you are talking mostly about the GPL in this case. I know Reddit choose the Common Public Attribution License (which they say is a modified version of the Mozilla license. Any idea if that has the same issue?</p>
<p>Source for Reddit license info:<br />
<a href="http://blog.reddit.com/2008/06/reddit-goes-open-source.html" rel="nofollow">http://blog.reddit.com/2008/06/reddit-goes-open-source.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Claughton</title>
		<link>http://www.linuxloop.com/news/2008/07/16/open-source-in-the-cloud/#comment-9356</link>
		<dc:creator>David Claughton</dc:creator>
		<pubDate>Thu, 17 Jul 2008 20:37:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxloop.com/news/?p=365#comment-9356</guid>
		<description>&#62; anything based on, for example, the Reddit code must be released back as open-source, assuming the original code was released under a GPL-like license that requires this

Yes, but there's a problem wrt web-based apps - you only need to make the source to your changes available if you distribute the application - but putting it on a web server and allowing remote access is not considered the same as distribution.

As cloud computing becomes more popular this is potentially going to become a hot issue.</description>
		<content:encoded><![CDATA[<p>&gt; anything based on, for example, the Reddit code must be released back as open-source, assuming the original code was released under a GPL-like license that requires this</p>
<p>Yes, but there&#8217;s a problem wrt web-based apps - you only need to make the source to your changes available if you distribute the application - but putting it on a web server and allowing remote access is not considered the same as distribution.</p>
<p>As cloud computing becomes more popular this is potentially going to become a hot issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tara Kelly</title>
		<link>http://www.linuxloop.com/news/2008/07/16/open-source-in-the-cloud/#comment-9338</link>
		<dc:creator>Tara Kelly</dc:creator>
		<pubDate>Thu, 17 Jul 2008 15:35:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxloop.com/news/?p=365#comment-9338</guid>
		<description>&#62; "Done correctly, it should be completely possible to encrypt the data before it leaves the client’s computer"

Yes. The pattern is called Host-Proof Hosting (http://ajaxpatterns.org/Host-Proof_Hosting). It requires that all data is encrypted before leaving the browser. The encryption key should never be sent to the server.

Since the encryption happens in client-side Javascript, all the code is actually present in the browser and can be reviewed, and the calls to the server can be watched in the DOM in real-time. That said, the code review would need to be done every single time the application was loaded so as to make sure that nothing had changed in the meantime.

There's an ongoing discussion about this right now, and if/how we can overcome it.

For anyone looking to build their own HPH application, we've just released a MIT/LGPL library here: http://code.google.com/p/passpack/</description>
		<content:encoded><![CDATA[<p>&gt; &#8220;Done correctly, it should be completely possible to encrypt the data before it leaves the client’s computer&#8221;</p>
<p>Yes. The pattern is called Host-Proof Hosting (http://ajaxpatterns.org/Host-Proof_Hosting). It requires that all data is encrypted before leaving the browser. The encryption key should never be sent to the server.</p>
<p>Since the encryption happens in client-side Javascript, all the code is actually present in the browser and can be reviewed, and the calls to the server can be watched in the DOM in real-time. That said, the code review would need to be done every single time the application was loaded so as to make sure that nothing had changed in the meantime.</p>
<p>There&#8217;s an ongoing discussion about this right now, and if/how we can overcome it.</p>
<p>For anyone looking to build their own HPH application, we&#8217;ve just released a MIT/LGPL library here: <a href="http://code.google.com/p/passpack/" rel="nofollow">http://code.google.com/p/passpack/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
