<?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: Thinking about the difference between frameworks</title>
	<atom:link href="http://ajaxian.com/archives/thinking-about-the-difference-between-frameworks/feed" rel="self" type="application/rss+xml" />
	<link>http://ajaxian.com/archives/thinking-about-the-difference-between-frameworks</link>
	<description>Cleaning up the web with Ajax</description>
	<lastBuildDate>Thu, 17 May 2012 07:43:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: MapDot</title>
		<link>http://ajaxian.com/archives/thinking-about-the-difference-between-frameworks/comment-page-2#comment-268249</link>
		<dc:creator>MapDot</dc:creator>
		<pubDate>Sun, 19 Oct 2008 00:32:51 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4672#comment-268249</guid>
		<description>I recently developed a library called DiXon / JavaScript Client Pages (http://www.codeplex.com/JSClientPages), which allows you to code client-side pages using the paradigm used on the server side; namely with XHTML markup intertwined with embedded code and/or custom tags.

Example (I don&#039;t know if Ajaxian is going to escape my entities - sorry if this comes out unreadable):

PHP-style:
&lt;ul&gt;
&lt;?js for (var i=0;i&lt;employees.length;i++) { ?&gt;
  &lt;li&gt;&lt;span class=&quot;name&quot;&gt;&lt;?js text(employee.firstName + &#039; &#039; + employee.lastName + &#039; (&#039; + employee.title + &#039;)&#039;); ?&gt; &lt;/span&gt; &lt;/li&gt;
&lt;?js } ?&gt;
&lt;/ul&gt;

ASP.NET-syle:
This can also be done with custom XML tags
&lt;ul&gt;
&lt;js:forEach collection=&quot;items&quot; item=&quot;item&quot;&gt;
  &lt;li&gt;
    &lt;span class=&quot;name&quot;&amp;gt&lt;js:output value=&quot;employee.firstName + &#039; &#039; + employee.lastName&quot; /&lt;&lt;/span&gt;
    &lt;js:output value=&quot;employee.title&quot; /&lt;
  &lt;/li&gt;
&lt;/js:forEach&quot;&gt;
&lt;/ul&gt;

The library can be grafted onto any framework. What do y&#039;all think of the concept?</description>
		<content:encoded><![CDATA[<p>I recently developed a library called DiXon / JavaScript Client Pages (<a href="http://www.codeplex.com/JSClientPages" rel="nofollow">http://www.codeplex.com/JSClientPages</a>), which allows you to code client-side pages using the paradigm used on the server side; namely with XHTML markup intertwined with embedded code and/or custom tags.</p>
<p>Example (I don&#8217;t know if Ajaxian is going to escape my entities &#8211; sorry if this comes out unreadable):</p>
<p>PHP-style:<br />
&lt;ul&gt;<br />
&lt;?js for (var i=0;i&lt;employees.length;i++) { ?&gt;<br />
  &lt;li&gt;&lt;span class=&#8221;name&#8221;&gt;&lt;?js text(employee.firstName + &#8216; &#8216; + employee.lastName + &#8216; (&#8216; + employee.title + &#8216;)&#8217;); ?&gt; &lt;/span&gt; &lt;/li&gt;<br />
&lt;?js } ?&gt;<br />
&lt;/ul&gt;</p>
<p>ASP.NET-syle:<br />
This can also be done with custom XML tags<br />
&lt;ul&gt;<br />
&lt;js:forEach collection=&#8221;items&#8221; item=&#8221;item&#8221;&gt;<br />
  &lt;li&gt;<br />
    &lt;span class=&#8221;name&#8221;&amp;gt&lt;js:output value=&#8221;employee.firstName + &#8216; &#8216; + employee.lastName&#8221; /&lt;&lt;/span&gt;<br />
    &lt;js:output value=&#8221;employee.title&#8221; /&lt;<br />
  &lt;/li&gt;<br />
&lt;/js:forEach&#8221;&gt;<br />
&lt;/ul&gt;</p>
<p>The library can be grafted onto any framework. What do y&#8217;all think of the concept?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MapDot</title>
		<link>http://ajaxian.com/archives/thinking-about-the-difference-between-frameworks/comment-page-2#comment-268248</link>
		<dc:creator>MapDot</dc:creator>
		<pubDate>Sun, 19 Oct 2008 00:17:59 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4672#comment-268248</guid>
		<description>Just like any other library-type software that provides reusable components to developers, frameworks that have overlapping functionality each have their strengths and weaknesses. So at the end of the day, it all boils down to a business decision. When choosing between, say, jQuery and Prototype, it all boils down to a business decision. However, the current situation in the world of JavaScript development reminds me of C++, where each library has its own set of collection classes, and sometimes even a string class... But this is inevitable when the language runtime is not bundled with an extensive set of APIs like Java or .NET. Even then, there will be replacements for standard libraries that are better at something specific.

What I find a little interesting is using (and developing) libraries that provide specific functionality without imposing a set of design decisions on the developer with regards to any functionality not provided by the library. For example, Lightbox (http://www.lokeshdhakar.com/projects/lightbox2/) provides pop-ups and only pop-ups, without having its own Ajax library and DOM traversal helpers. Scriptaculous (http://script.aculo.us) provides a layer of animation, and while it uses Prototype, you don&#039;t have to... However, the presence of Prototype might cause problems with the &quot;$&quot; function.</description>
		<content:encoded><![CDATA[<p>Just like any other library-type software that provides reusable components to developers, frameworks that have overlapping functionality each have their strengths and weaknesses. So at the end of the day, it all boils down to a business decision. When choosing between, say, jQuery and Prototype, it all boils down to a business decision. However, the current situation in the world of JavaScript development reminds me of C++, where each library has its own set of collection classes, and sometimes even a string class&#8230; But this is inevitable when the language runtime is not bundled with an extensive set of APIs like Java or .NET. Even then, there will be replacements for standard libraries that are better at something specific.</p>
<p>What I find a little interesting is using (and developing) libraries that provide specific functionality without imposing a set of design decisions on the developer with regards to any functionality not provided by the library. For example, Lightbox (<a href="http://www.lokeshdhakar.com/projects/lightbox2/" rel="nofollow">http://www.lokeshdhakar.com/projects/lightbox2/</a>) provides pop-ups and only pop-ups, without having its own Ajax library and DOM traversal helpers. Scriptaculous (<a href="http://script.aculo.us" rel="nofollow">http://script.aculo.us</a>) provides a layer of animation, and while it uses Prototype, you don&#8217;t have to&#8230; However, the presence of Prototype might cause problems with the &#8220;$&#8221; function.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ericnguyen</title>
		<link>http://ajaxian.com/archives/thinking-about-the-difference-between-frameworks/comment-page-2#comment-268040</link>
		<dc:creator>ericnguyen</dc:creator>
		<pubDate>Thu, 09 Oct 2008 19:59:09 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4672#comment-268040</guid>
		<description>ckendrick FTW.</description>
		<content:encoded><![CDATA[<p>ckendrick FTW.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ckendrick</title>
		<link>http://ajaxian.com/archives/thinking-about-the-difference-between-frameworks/comment-page-2#comment-268026</link>
		<dc:creator>ckendrick</dc:creator>
		<pubDate>Thu, 09 Oct 2008 07:52:15 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4672#comment-268026</guid>
		<description>@Jack Claiming to be &quot;done with&quot; a conversation after taking several parting shots is a child&#039;s game.  Sure, meet me at AjaxWorld if you have something to say, I&#039;m speaking right after day 2&#039;s keynote.  In the meantime, I will correct your public lies.
I have not &quot;created a fake blog to defame Ext JS&quot;.  I assume you are referring to the &lt;a&gt;ExtIsEvil&lt;/a&gt; blog that I linked to earlier, started by &quot;Ext Whistleblower&quot;.  Jack, when you see 400+ hits for a search for &quot;ExtJS bait and switch&quot;, don&#039;t you realize there are hundreds if not thousands of people angry enough to create such a blog?  If I wanted to speak out against you, I could follow the example of many open source luminaries and prominent bloggers and simply speak my mind, publicly condemning your actions as so many others have, without fear of any backlash.
Now who would bother to instead, conceal their identity?  Connect the dots Jack.  It&#039;s &lt;b&gt;one of your own users&lt;/b&gt;.  Like many Ext users caught midway through a project by the Ext license switch, he may strongly deplore your actions, but he has no choice but to continue with Ext for now.  And while he does, obviously he wants the benefit of the support he paid for.
If I ever criticize you or your actions, you will see my name on it, I promise you.  To decide this blog was mine was simply foolish; to accuse me of it, inexcusable.
The rest of your post was a confused mixture of responding to John Resig&#039;s words as though I had said them; strange attempts to claim that the history of Ext is unknowable when in fact you personally &lt;a href=&quot;http://jackslocum.com/blog/2008/04/26/ext-js-license-change-and-personal-attacks/&quot; rel=&quot;nofollow&quot;&gt;explain it right here&lt;/a&gt; (albeit in an unsatisfactory manner); along with an amusing and vague attempt to have the credibility of Linux rub off on Ext because you both use the GPL.
The reality is very simple: SmartClient is real open source, free for use inside commercial, closed source applications, products and frameworks, no special cases.
Ext is not.
See you at AjaxWorld.</description>
		<content:encoded><![CDATA[<p>@Jack Claiming to be &#8220;done with&#8221; a conversation after taking several parting shots is a child&#8217;s game.  Sure, meet me at AjaxWorld if you have something to say, I&#8217;m speaking right after day 2&#8242;s keynote.  In the meantime, I will correct your public lies.<br />
I have not &#8220;created a fake blog to defame Ext JS&#8221;.  I assume you are referring to the <a>ExtIsEvil</a> blog that I linked to earlier, started by &#8220;Ext Whistleblower&#8221;.  Jack, when you see 400+ hits for a search for &#8220;ExtJS bait and switch&#8221;, don&#8217;t you realize there are hundreds if not thousands of people angry enough to create such a blog?  If I wanted to speak out against you, I could follow the example of many open source luminaries and prominent bloggers and simply speak my mind, publicly condemning your actions as so many others have, without fear of any backlash.<br />
Now who would bother to instead, conceal their identity?  Connect the dots Jack.  It&#8217;s <b>one of your own users</b>.  Like many Ext users caught midway through a project by the Ext license switch, he may strongly deplore your actions, but he has no choice but to continue with Ext for now.  And while he does, obviously he wants the benefit of the support he paid for.<br />
If I ever criticize you or your actions, you will see my name on it, I promise you.  To decide this blog was mine was simply foolish; to accuse me of it, inexcusable.<br />
The rest of your post was a confused mixture of responding to John Resig&#8217;s words as though I had said them; strange attempts to claim that the history of Ext is unknowable when in fact you personally <a href="http://jackslocum.com/blog/2008/04/26/ext-js-license-change-and-personal-attacks/" rel="nofollow">explain it right here</a> (albeit in an unsatisfactory manner); along with an amusing and vague attempt to have the credibility of Linux rub off on Ext because you both use the GPL.<br />
The reality is very simple: SmartClient is real open source, free for use inside commercial, closed source applications, products and frameworks, no special cases.<br />
Ext is not.<br />
See you at AjaxWorld.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anewton</title>
		<link>http://ajaxian.com/archives/thinking-about-the-difference-between-frameworks/comment-page-2#comment-268023</link>
		<dc:creator>anewton</dc:creator>
		<pubDate>Thu, 09 Oct 2008 03:46:45 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4672#comment-268023</guid>
		<description>What was this post about again?</description>
		<content:encoded><![CDATA[<p>What was this post about again?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: viper2k</title>
		<link>http://ajaxian.com/archives/thinking-about-the-difference-between-frameworks/comment-page-2#comment-268022</link>
		<dc:creator>viper2k</dc:creator>
		<pubDate>Thu, 09 Oct 2008 03:24:31 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4672#comment-268022</guid>
		<description>correction : The link to Greame Rocher&#039;s blog post is http://graemerocher.blogspot.com/2008/04/choosing-and-oss-license-and-ext-js.html 

Enjoy the Fall :)</description>
		<content:encoded><![CDATA[<p>correction : The link to Greame Rocher&#8217;s blog post is <a href="http://graemerocher.blogspot.com/2008/04/choosing-and-oss-license-and-ext-js.html" rel="nofollow">http://graemerocher.blogspot.com/2008/04/choosing-and-oss-license-and-ext-js.html</a> </p>
<p>Enjoy the Fall :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: viper2k</title>
		<link>http://ajaxian.com/archives/thinking-about-the-difference-between-frameworks/comment-page-2#comment-268021</link>
		<dc:creator>viper2k</dc:creator>
		<pubDate>Thu, 09 Oct 2008 03:16:22 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4672#comment-268021</guid>
		<description>well well, someone is getting defensive. Jack, your actions past and current paint a pretty clear picture of your character so don&#039;t flatter yourself. 

If GPL is the #1 license, why do you have exceptions to allow extensions to be liberally licensed? Worried that Ext will come to a grinding half if all the extensions were also licensed under GPL. Ext is as hypocritical and two-faced as it gets.

And you don&#039;t control who gets to voice an opinion on the Ext shenanigans . It is not limited to Ext users. In your high and mighty mind it may be, but most don&#039;t care a rat about what you think or want.

The facts are plain and simple. Let me jog your memory

Grails founder Graeme Rocher wrote here http://java.dzone.com/news/if-your-open-source-provider-a : 

&quot;The news that Ext-JS has, from one release to the next, changed from a modified LGPL to a GPL based license nearly made me fall off my chair. There have been many poor judged, and ill advised decisions made by software companies over the last few years, but this has got to be up there with the stupidist I&#039;ve seen and I&#039;m not even personally an Ext-JS user.

What they have effectively done is built up a community, taking full advantage of the open source model by accepting user contributions and patches and then turned around and kicked their own community up the backside. It is projects like Ext-JS that give open source a bad name.&quot;

John Resig also wrote here : http://www.reddit.com/r/programming/comments/6jhhs/dont_use_extjs/c040qhr 

&quot;Actually, it is (Ext is Slimy) - since the explicit &quot;if this is a piece of JavaScript code, don&#039;t virally infect the server-side code&quot; clause of GPLv3 wasn&#039;t included. This means that if you ever use server-side code to write out a JavaScript method (e.g. &quot;ext.showModal&quot; or some such) then you immediately have to take on the GPL there, as well. This isn&#039;t just my interpretation, it&#039;s Jack Slocum&#039;s (creator of ExtJS) as well. This is being done very intentionally to keep the appearance of being &#039;open&#039; while, at the same time, making it impossible to actually ever use in a non-Open-Source capacity.&quot;

And even Dion expressed his opinions here : 
http://almaer.com/blog/ext-js-a-reminder-that-you-are-not-alone 

There is no conspiracy theory here. It is not a select group of competitors who are out to get you. Prominent personalities from different spectrums of OSS have all made the same conclusion that you resorted to dirty business. I hope you sleep well with the money you&#039;ve made. The Ext empire is not going to last too long.</description>
		<content:encoded><![CDATA[<p>well well, someone is getting defensive. Jack, your actions past and current paint a pretty clear picture of your character so don&#8217;t flatter yourself. </p>
<p>If GPL is the #1 license, why do you have exceptions to allow extensions to be liberally licensed? Worried that Ext will come to a grinding half if all the extensions were also licensed under GPL. Ext is as hypocritical and two-faced as it gets.</p>
<p>And you don&#8217;t control who gets to voice an opinion on the Ext shenanigans . It is not limited to Ext users. In your high and mighty mind it may be, but most don&#8217;t care a rat about what you think or want.</p>
<p>The facts are plain and simple. Let me jog your memory</p>
<p>Grails founder Graeme Rocher wrote here <a href="http://java.dzone.com/news/if-your-open-source-provider-a" rel="nofollow">http://java.dzone.com/news/if-your-open-source-provider-a</a> : </p>
<p>&#8220;The news that Ext-JS has, from one release to the next, changed from a modified LGPL to a GPL based license nearly made me fall off my chair. There have been many poor judged, and ill advised decisions made by software companies over the last few years, but this has got to be up there with the stupidist I&#8217;ve seen and I&#8217;m not even personally an Ext-JS user.</p>
<p>What they have effectively done is built up a community, taking full advantage of the open source model by accepting user contributions and patches and then turned around and kicked their own community up the backside. It is projects like Ext-JS that give open source a bad name.&#8221;</p>
<p>John Resig also wrote here : <a href="http://www.reddit.com/r/programming/comments/6jhhs/dont_use_extjs/c040qhr" rel="nofollow">http://www.reddit.com/r/programming/comments/6jhhs/dont_use_extjs/c040qhr</a> </p>
<p>&#8220;Actually, it is (Ext is Slimy) &#8211; since the explicit &#8220;if this is a piece of JavaScript code, don&#8217;t virally infect the server-side code&#8221; clause of GPLv3 wasn&#8217;t included. This means that if you ever use server-side code to write out a JavaScript method (e.g. &#8220;ext.showModal&#8221; or some such) then you immediately have to take on the GPL there, as well. This isn&#8217;t just my interpretation, it&#8217;s Jack Slocum&#8217;s (creator of ExtJS) as well. This is being done very intentionally to keep the appearance of being &#8216;open&#8217; while, at the same time, making it impossible to actually ever use in a non-Open-Source capacity.&#8221;</p>
<p>And even Dion expressed his opinions here :<br />
<a href="http://almaer.com/blog/ext-js-a-reminder-that-you-are-not-alone" rel="nofollow">http://almaer.com/blog/ext-js-a-reminder-that-you-are-not-alone</a> </p>
<p>There is no conspiracy theory here. It is not a select group of competitors who are out to get you. Prominent personalities from different spectrums of OSS have all made the same conclusion that you resorted to dirty business. I hope you sleep well with the money you&#8217;ve made. The Ext empire is not going to last too long.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jackslocum</title>
		<link>http://ajaxian.com/archives/thinking-about-the-difference-between-frameworks/comment-page-2#comment-268016</link>
		<dc:creator>jackslocum</dc:creator>
		<pubDate>Thu, 09 Oct 2008 00:21:38 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4672#comment-268016</guid>
		<description>ckendrick, trolling would be every mention of Ext JS on the internet, you are there bashing us. Trolling would be using a licensing discussion of the past (that is no longer valid) and trying to apply it to the present. Trolling would be creating a fake blog attempting to defame Ext JS. 
Even more important though, you have nothing to do with Ext JS - you are neither a commercial or an open source developer using Ext JS.
You do not know the history behind Ext JS and you do not know me. I am requesting you stop trying to act like you do and stop trying to make me out to be some villainous character out to rob everyone. If you knew me or even the history of Ext JS in the slightest you would realize you claims are not true. Ext JS never did anything to you other than give you ideas for how to improve your product.
As for us being a closed source company pretending to be open source, Ext JS has been an open source company since day 1. Whether you think so or not, the GPL license is the #1 open source license in use. We are a member of the FSF. We have spent countless hours and resources speaking with open source legal experts (the same guys who consult with open source giants like MySQL) to create an open source offering that is flexible (see our exceptions) while still meeting our quid pro quo philosophy. 
On the other side, your company has been a closed source company since 2000. You just recently switched the client-side portion of your product to LGPL (the server is still proprietary) and now you think that makes you an open source expert. Considering history, if anyone is trying to use &quot;open source&quot; as a buzzword to sell a product, it would be your company.
As for continuing this discussion, I am done with it. If you want to continue it further, please let me know of any upcoming conference you will be attending and I would be happy to meet you there.</description>
		<content:encoded><![CDATA[<p>ckendrick, trolling would be every mention of Ext JS on the internet, you are there bashing us. Trolling would be using a licensing discussion of the past (that is no longer valid) and trying to apply it to the present. Trolling would be creating a fake blog attempting to defame Ext JS.<br />
Even more important though, you have nothing to do with Ext JS &#8211; you are neither a commercial or an open source developer using Ext JS.<br />
You do not know the history behind Ext JS and you do not know me. I am requesting you stop trying to act like you do and stop trying to make me out to be some villainous character out to rob everyone. If you knew me or even the history of Ext JS in the slightest you would realize you claims are not true. Ext JS never did anything to you other than give you ideas for how to improve your product.<br />
As for us being a closed source company pretending to be open source, Ext JS has been an open source company since day 1. Whether you think so or not, the GPL license is the #1 open source license in use. We are a member of the FSF. We have spent countless hours and resources speaking with open source legal experts (the same guys who consult with open source giants like MySQL) to create an open source offering that is flexible (see our exceptions) while still meeting our quid pro quo philosophy.<br />
On the other side, your company has been a closed source company since 2000. You just recently switched the client-side portion of your product to LGPL (the server is still proprietary) and now you think that makes you an open source expert. Considering history, if anyone is trying to use &#8220;open source&#8221; as a buzzword to sell a product, it would be your company.<br />
As for continuing this discussion, I am done with it. If you want to continue it further, please let me know of any upcoming conference you will be attending and I would be happy to meet you there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ckendrick</title>
		<link>http://ajaxian.com/archives/thinking-about-the-difference-between-frameworks/comment-page-2#comment-268014</link>
		<dc:creator>ckendrick</dc:creator>
		<pubDate>Wed, 08 Oct 2008 23:21:41 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4672#comment-268014</guid>
		<description>@jratcliff You&#039;re right on one thing - John did not actually use the phrase &quot;bait and switch&quot;.  What John said is much, much, much harsher.
&lt;cite&gt;
ExtJS is a giant licensing fail pile masquerading as an open source project in a thinly-veiled attempt to force more people to buy their corporate licenses.
...
They&#039;re using &#039;open source&#039; as a buzzword selling point to lure companies in, befuddle them with confusing viral licensing, and obligate them (through the obvious balking that the corporate lawyers will do) to get them to buy a full, corporate, license. It&#039;s very sneaky, quite disingenuous, and paints a bad picture for open source development as a whole.
&lt;/cite&gt;

From: 
http://www.reddit.com/comments/6gli8/ext_21_released_license_changed_from_lgpl_to_gpl/

Compared to this, &quot;bait and switch&quot; sounds downright mild, so please don&#039;t tell me I&#039;m misrepresenting what he said, I actually &lt;b&gt;toned it down&lt;/b&gt;, if anything.
John&#039;s statements of the past, are, to put it midly, a very plausible reason for him to exclude Ext from slides, and it was valid and informative to refer people to them.  
Here now, in this thread, John points to the GPL license as a sufficient reason for Ext to be excluded.  But that is not in conflict with, and does not change, what he said in the past, nor does it make it invalid to point to John&#039;s former words, especially as John had not explained himself yet, and I didn&#039;t think he was going to.
This is a perfectly ordinary thing to do.  Discussions about technologies and people happen all the time, all over the internet, in which the principals being discussed are unlikely to step in directly, and so people link to their official statements.
You stepped in with a baseless accusation of trolling, clearly false by your own definition, as I did not raise the topic.  I do appreciate that you are no longer slinging such terms around, and that you now instead trying to dig into whatever nuance it was you didn&#039;t like.  But as a baseline of respect, you should retract your &quot;troll&quot; comment, which just isn&#039;t true.
Side note to John: if your intent was to distance yourself from your more heated comments of the past, then sorry for bringing those up again.</description>
		<content:encoded><![CDATA[<p>@jratcliff You&#8217;re right on one thing &#8211; John did not actually use the phrase &#8220;bait and switch&#8221;.  What John said is much, much, much harsher.<br />
<cite><br />
ExtJS is a giant licensing fail pile masquerading as an open source project in a thinly-veiled attempt to force more people to buy their corporate licenses.<br />
&#8230;<br />
They&#8217;re using &#8216;open source&#8217; as a buzzword selling point to lure companies in, befuddle them with confusing viral licensing, and obligate them (through the obvious balking that the corporate lawyers will do) to get them to buy a full, corporate, license. It&#8217;s very sneaky, quite disingenuous, and paints a bad picture for open source development as a whole.<br />
</cite></p>
<p>From:<br />
<a href="http://www.reddit.com/comments/6gli8/ext_21_released_license_changed_from_lgpl_to_gpl/" rel="nofollow">http://www.reddit.com/comments/6gli8/ext_21_released_license_changed_from_lgpl_to_gpl/</a></p>
<p>Compared to this, &#8220;bait and switch&#8221; sounds downright mild, so please don&#8217;t tell me I&#8217;m misrepresenting what he said, I actually <b>toned it down</b>, if anything.<br />
John&#8217;s statements of the past, are, to put it midly, a very plausible reason for him to exclude Ext from slides, and it was valid and informative to refer people to them.<br />
Here now, in this thread, John points to the GPL license as a sufficient reason for Ext to be excluded.  But that is not in conflict with, and does not change, what he said in the past, nor does it make it invalid to point to John&#8217;s former words, especially as John had not explained himself yet, and I didn&#8217;t think he was going to.<br />
This is a perfectly ordinary thing to do.  Discussions about technologies and people happen all the time, all over the internet, in which the principals being discussed are unlikely to step in directly, and so people link to their official statements.<br />
You stepped in with a baseless accusation of trolling, clearly false by your own definition, as I did not raise the topic.  I do appreciate that you are no longer slinging such terms around, and that you now instead trying to dig into whatever nuance it was you didn&#8217;t like.  But as a baseline of respect, you should retract your &#8220;troll&#8221; comment, which just isn&#8217;t true.<br />
Side note to John: if your intent was to distance yourself from your more heated comments of the past, then sorry for bringing those up again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jratcliff</title>
		<link>http://ajaxian.com/archives/thinking-about-the-difference-between-frameworks/comment-page-2#comment-268012</link>
		<dc:creator>jratcliff</dc:creator>
		<pubDate>Wed, 08 Oct 2008 21:02:24 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4672#comment-268012</guid>
		<description>@ckendrick - dude, relax already.  I never said that the link you linked to wasn&#039;t John&#039;s exact words.  The problem is that you are taking these words from John that happened months ago to assert that is why Ext was left off of his slides for his presentation at The Ajax Experience.  So that&#039;s the problem I had with your post to rextasy where you say: &lt;blockquote&gt;By the way, you should really read what Resig and others have said about Ext, because you have just profoundly misrepresented Resig’s reasons for omitting Ext from slides, panels, etc. This is not about quibbles over SVN access, but instead about the LGPL -&gt; GPL bait and switch.&lt;/blockquote&gt; it just comes off as though *John&#039;s* quibbles of not including Ext on his slides are really over a perceived LGPL - GPL bait and switch.  But that&#039;s not what John said.  That&#039;s what you just said.  Also, John, in an earlier post to you, coryn1 and rextasy doesn&#039;t mention anything about a &quot;bait and switch&quot;.  So no where in this discussion thread or the responses to the user who had the question of why Ext wasn&#039;t included in the slides does John say that.  Only you say that but in a way where someone could take it that John did.  So do you get where I&#039;m coming from and why it sounds like you are speaking for John?  Now there&#039;s no question that you have a fantastic Ajax/RIA framework and so does Ext.  I just prefer Ext and took issue with what sounded like FUD being spread.  Understand?  If you didn&#039;t mean it as FUD then say so and let everyone know that the comment is your opinion and not John&#039;s.  If it&#039;s John&#039;s opinion then let him say so, ok?</description>
		<content:encoded><![CDATA[<p>@ckendrick &#8211; dude, relax already.  I never said that the link you linked to wasn&#8217;t John&#8217;s exact words.  The problem is that you are taking these words from John that happened months ago to assert that is why Ext was left off of his slides for his presentation at The Ajax Experience.  So that&#8217;s the problem I had with your post to rextasy where you say:<br />
<blockquote>By the way, you should really read what Resig and others have said about Ext, because you have just profoundly misrepresented Resig’s reasons for omitting Ext from slides, panels, etc. This is not about quibbles over SVN access, but instead about the LGPL -&gt; GPL bait and switch.</p></blockquote>
<p> it just comes off as though *John&#8217;s* quibbles of not including Ext on his slides are really over a perceived LGPL &#8211; GPL bait and switch.  But that&#8217;s not what John said.  That&#8217;s what you just said.  Also, John, in an earlier post to you, coryn1 and rextasy doesn&#8217;t mention anything about a &#8220;bait and switch&#8221;.  So no where in this discussion thread or the responses to the user who had the question of why Ext wasn&#8217;t included in the slides does John say that.  Only you say that but in a way where someone could take it that John did.  So do you get where I&#8217;m coming from and why it sounds like you are speaking for John?  Now there&#8217;s no question that you have a fantastic Ajax/RIA framework and so does Ext.  I just prefer Ext and took issue with what sounded like FUD being spread.  Understand?  If you didn&#8217;t mean it as FUD then say so and let everyone know that the comment is your opinion and not John&#8217;s.  If it&#8217;s John&#8217;s opinion then let him say so, ok?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ckendrick</title>
		<link>http://ajaxian.com/archives/thinking-about-the-difference-between-frameworks/comment-page-2#comment-268010</link>
		<dc:creator>ckendrick</dc:creator>
		<pubDate>Wed, 08 Oct 2008 19:42:46 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4672#comment-268010</guid>
		<description>@jratcliff
You rant at length about putting words in John&#039;s mouth or in Jack&#039;s mouth, which would be a great point, except that what I actually did was &lt;b&gt;link to John&#039;s exact words&lt;/b&gt; posted elsewhere, making your screed completely irrelevant.
You talk again about innocent before proven guilty, but you don&#039;t seem to understand that this is a wholly unrelated concept that comes from criminal law.  People are free to have an opinion and to express it, and they have, using the term &quot;bait and switch&quot; to refer to Ext, all over the web.  That&#039;s what I claimed, and it&#039;s true.
What we have here are 3 people - you, me and Jack - with &quot;skin in the game&quot;.  I&#039;ve been completely forthright about who I am, referring to &quot;my company&quot; and &quot;my product&quot;, because it&#039;s important that people have a chance to evaluate my possible bias for themselves.  For the same reason, I answered direct questions only, with links to sources backing up everything I&#039;ve said.
In contrast, Jack tried to mislead people about SmartClient&#039;s license, and you both inserted name calling into a rational discussion.  
Please don&#039;t try to pretend that by merely answering you I have somehow sunk to your level.  I&#039;m the guy with his signature on an open letter committing to a consistent LGPL license.
Wow, there&#039;s Jack again.  There&#039;s no need to take Jack&#039;s word, my word, or anyone&#039;s word as far as the general opinion on the Ext license change.  Do a few quick searches, be aware of people&#039;s affiliations, look for neutral parties, and draw your own conclusion.</description>
		<content:encoded><![CDATA[<p>@jratcliff<br />
You rant at length about putting words in John&#8217;s mouth or in Jack&#8217;s mouth, which would be a great point, except that what I actually did was <b>link to John&#8217;s exact words</b> posted elsewhere, making your screed completely irrelevant.<br />
You talk again about innocent before proven guilty, but you don&#8217;t seem to understand that this is a wholly unrelated concept that comes from criminal law.  People are free to have an opinion and to express it, and they have, using the term &#8220;bait and switch&#8221; to refer to Ext, all over the web.  That&#8217;s what I claimed, and it&#8217;s true.<br />
What we have here are 3 people &#8211; you, me and Jack &#8211; with &#8220;skin in the game&#8221;.  I&#8217;ve been completely forthright about who I am, referring to &#8220;my company&#8221; and &#8220;my product&#8221;, because it&#8217;s important that people have a chance to evaluate my possible bias for themselves.  For the same reason, I answered direct questions only, with links to sources backing up everything I&#8217;ve said.<br />
In contrast, Jack tried to mislead people about SmartClient&#8217;s license, and you both inserted name calling into a rational discussion.<br />
Please don&#8217;t try to pretend that by merely answering you I have somehow sunk to your level.  I&#8217;m the guy with his signature on an open letter committing to a consistent LGPL license.<br />
Wow, there&#8217;s Jack again.  There&#8217;s no need to take Jack&#8217;s word, my word, or anyone&#8217;s word as far as the general opinion on the Ext license change.  Do a few quick searches, be aware of people&#8217;s affiliations, look for neutral parties, and draw your own conclusion.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jackslocum</title>
		<link>http://ajaxian.com/archives/thinking-about-the-difference-between-frameworks/comment-page-2#comment-268008</link>
		<dc:creator>jackslocum</dc:creator>
		<pubDate>Wed, 08 Oct 2008 18:38:17 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4672#comment-268008</guid>
		<description>andrewwell, your quote is incorrect and the change you made completely changes the meaning. What I said was &quot;there was no conceptual license change&quot; - meaning the concept of how we license Ext never changed. Since version 1.0 we had commercial and open source licenses. The open source license changes have ben explained several times, including a long winded explanation on my blog. If you choose to not believe or to ignore those reasons, that is your choice but your ongoing efforts to convince others there was an insidious motive is where you cross the line and become a troll in my book. 

As for &quot;bait and switch&quot; being the consensus, that is ridiculous. 10 (or even 100) out of 50,000 registered users (and over 200,000 daily visitors) is not a consensus. And the most vociferous people speaking out against Ext aren&#039;t the people who use it - it is people like you who are our competitors and who hope to spread FUD to benefit themselves.</description>
		<content:encoded><![CDATA[<p>andrewwell, your quote is incorrect and the change you made completely changes the meaning. What I said was &#8220;there was no conceptual license change&#8221; &#8211; meaning the concept of how we license Ext never changed. Since version 1.0 we had commercial and open source licenses. The open source license changes have ben explained several times, including a long winded explanation on my blog. If you choose to not believe or to ignore those reasons, that is your choice but your ongoing efforts to convince others there was an insidious motive is where you cross the line and become a troll in my book. </p>
<p>As for &#8220;bait and switch&#8221; being the consensus, that is ridiculous. 10 (or even 100) out of 50,000 registered users (and over 200,000 daily visitors) is not a consensus. And the most vociferous people speaking out against Ext aren&#8217;t the people who use it &#8211; it is people like you who are our competitors and who hope to spread FUD to benefit themselves.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jratcliff</title>
		<link>http://ajaxian.com/archives/thinking-about-the-difference-between-frameworks/comment-page-2#comment-268002</link>
		<dc:creator>jratcliff</dc:creator>
		<pubDate>Wed, 08 Oct 2008 16:36:54 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4672#comment-268002</guid>
		<description>@andrewwell - good point.  I too shouldn&#039;t speak for someone else so my apologies on the posts that I did.  I will say, however, that as far as I know and understand the situation, there was never an intentional &quot;bait and switch&quot; and I&#039;ll go on record as to also say that I (that&#039;s just me talking) don&#039;t see the license change as a bait and switch at all.  I think everyone should just agree to disagree and leave it at that.</description>
		<content:encoded><![CDATA[<p>@andrewwell &#8211; good point.  I too shouldn&#8217;t speak for someone else so my apologies on the posts that I did.  I will say, however, that as far as I know and understand the situation, there was never an intentional &#8220;bait and switch&#8221; and I&#8217;ll go on record as to also say that I (that&#8217;s just me talking) don&#8217;t see the license change as a bait and switch at all.  I think everyone should just agree to disagree and leave it at that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andrewwell</title>
		<link>http://ajaxian.com/archives/thinking-about-the-difference-between-frameworks/comment-page-2#comment-268000</link>
		<dc:creator>andrewwell</dc:creator>
		<pubDate>Wed, 08 Oct 2008 15:38:58 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4672#comment-268000</guid>
		<description>jratcliff - Aren&#039;t you doing the the same thing. Jumping in and speaking for Ext, when someone from their company should be answering these. 

Oh and by the way Jack never replied explaining what he means by “conceptually there was no license change” when it did change. Moving from LGPL -&gt; GPL is not a license change?? Which world does he live in? Just goes to show how the company feels about licensing issues.</description>
		<content:encoded><![CDATA[<p>jratcliff &#8211; Aren&#8217;t you doing the the same thing. Jumping in and speaking for Ext, when someone from their company should be answering these. </p>
<p>Oh and by the way Jack never replied explaining what he means by “conceptually there was no license change” when it did change. Moving from LGPL -&gt; GPL is not a license change?? Which world does he live in? Just goes to show how the company feels about licensing issues.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jratcliff</title>
		<link>http://ajaxian.com/archives/thinking-about-the-difference-between-frameworks/comment-page-2#comment-267999</link>
		<dc:creator>jratcliff</dc:creator>
		<pubDate>Wed, 08 Oct 2008 14:18:25 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4672#comment-267999</guid>
		<description>@viper2k - you&#039;re a very funny guy/gal.  This is twice now that you have made me laugh.  But, to answer your accusation: &quot;No one is getting me to chime in&quot;.  I&#039;m just defending what I perceive to be a wrong.  Is there something wrong with that?  It&#039;s really a no win situation if you think about it.  If no one speaks out against the accusations made against Ext then everyone will just say &quot;see, their guilty, they don&#039;t even bother defending themselves&quot;.  But if someone does go on the defense then they&#039;re just accused as being a &quot;minion&quot;.  Nice.</description>
		<content:encoded><![CDATA[<p>@viper2k &#8211; you&#8217;re a very funny guy/gal.  This is twice now that you have made me laugh.  But, to answer your accusation: &#8220;No one is getting me to chime in&#8221;.  I&#8217;m just defending what I perceive to be a wrong.  Is there something wrong with that?  It&#8217;s really a no win situation if you think about it.  If no one speaks out against the accusations made against Ext then everyone will just say &#8220;see, their guilty, they don&#8217;t even bother defending themselves&#8221;.  But if someone does go on the defense then they&#8217;re just accused as being a &#8220;minion&#8221;.  Nice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jratcliff</title>
		<link>http://ajaxian.com/archives/thinking-about-the-difference-between-frameworks/comment-page-2#comment-267998</link>
		<dc:creator>jratcliff</dc:creator>
		<pubDate>Wed, 08 Oct 2008 14:07:30 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4672#comment-267998</guid>
		<description>@ckendrick - the issue I had with you is that the question coryn1 asked was directed at John and you then decided to answer it yourself and in fact, in a later post, you say to rextasy: &quot;..you have just profoundly misrepresented Resig’s reasons for omitting Ext from slides, panels, etc. This is not about quibbles over SVN access, but instead about the LGPL -&gt; GPL bait and switch.&quot;.  Here, you are now putting words into John&#039;s mouth on why he really omitted Ext from his slides at the conference.  You shouldn&#039;t be asserting this and if this is truly the reason why John left Ext out then let him say so.  Are we to believe that you know what John&#039;s real intent was when he didn&#039;t include Ext in his slides or that you know what Ext/Jack Slocum&#039;s real intent was when they changed their license.  You have the right to to say what &lt;b&gt;YOU&lt;/b&gt; believe but don&#039;t go around putting words into other people&#039;s mouth to help validate what you believe.  Let them speak for themselves.  
As for the &quot;bait and switch&quot; being a consensus.  You are totally omitting all of those who are perfectly fine with the license.  Besides, just because someone is *accussed* of something doesn&#039;t make them guilty.  You and I disagree with the facts and neither of us, despite what you think, can really know the true intentions of what Ext/Jack did since we can&#039;t read minds.  
Now, where can we go from here?  I propose we stop hi-jacking this thread since we are way off-topic now.  Nothing good is coming of this.  Just think how people reading this thread will think.  Charles (ckendrick), you are the CTO and Chief Architect of Isomorphic Software and the architect behind the SmartClient Ajax platform and ExtJS is your competitor.  To jump into this thread and start speaking for John Resig and and Jack Slocum expressing what their intentions on for slides in a conference and a license change to their product just doesn&#039;t look good.  Let these guys speak for themselves.</description>
		<content:encoded><![CDATA[<p>@ckendrick &#8211; the issue I had with you is that the question coryn1 asked was directed at John and you then decided to answer it yourself and in fact, in a later post, you say to rextasy: &#8220;..you have just profoundly misrepresented Resig’s reasons for omitting Ext from slides, panels, etc. This is not about quibbles over SVN access, but instead about the LGPL -&gt; GPL bait and switch.&#8221;.  Here, you are now putting words into John&#8217;s mouth on why he really omitted Ext from his slides at the conference.  You shouldn&#8217;t be asserting this and if this is truly the reason why John left Ext out then let him say so.  Are we to believe that you know what John&#8217;s real intent was when he didn&#8217;t include Ext in his slides or that you know what Ext/Jack Slocum&#8217;s real intent was when they changed their license.  You have the right to to say what <b>YOU</b> believe but don&#8217;t go around putting words into other people&#8217;s mouth to help validate what you believe.  Let them speak for themselves.<br />
As for the &#8220;bait and switch&#8221; being a consensus.  You are totally omitting all of those who are perfectly fine with the license.  Besides, just because someone is *accussed* of something doesn&#8217;t make them guilty.  You and I disagree with the facts and neither of us, despite what you think, can really know the true intentions of what Ext/Jack did since we can&#8217;t read minds.<br />
Now, where can we go from here?  I propose we stop hi-jacking this thread since we are way off-topic now.  Nothing good is coming of this.  Just think how people reading this thread will think.  Charles (ckendrick), you are the CTO and Chief Architect of Isomorphic Software and the architect behind the SmartClient Ajax platform and ExtJS is your competitor.  To jump into this thread and start speaking for John Resig and and Jack Slocum expressing what their intentions on for slides in a conference and a license change to their product just doesn&#8217;t look good.  Let these guys speak for themselves.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: viper2k</title>
		<link>http://ajaxian.com/archives/thinking-about-the-difference-between-frameworks/comment-page-2#comment-267997</link>
		<dc:creator>viper2k</dc:creator>
		<pubDate>Wed, 08 Oct 2008 14:03:35 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4672#comment-267997</guid>
		<description>It&#039;s quite amusing how Jack is getting his minions to chime in. Some of them that have a vocabulary that is limited to &quot;FUD&quot;.</description>
		<content:encoded><![CDATA[<p>It&#8217;s quite amusing how Jack is getting his minions to chime in. Some of them that have a vocabulary that is limited to &#8220;FUD&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ckendrick</title>
		<link>http://ajaxian.com/archives/thinking-about-the-difference-between-frameworks/comment-page-2#comment-267986</link>
		<dc:creator>ckendrick</dc:creator>
		<pubDate>Wed, 08 Oct 2008 05:10:08 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4672#comment-267986</guid>
		<description>@jratcliff  Your accusation of &quot;troll&quot; is baseless: I did not raise the topic of Ext or why John excluded them, coryn1 did - he/she asked a question that I answered accurately with a correct link to the source.

Re: bait and switch: hundreds of people with no financial connection to any competing product have called Ext&#039;s licensing moves a bait and switch or used equivalent terms.  Here&#039;s 400+ pages worth:

http://www.google.com/search?q=extjs+bait+and+switch

The fact that Ext pulled a &quot;bait and switch&quot; is a broadly held, consensus opinion (see above), and it was neither FUD nor even a contentious point for me to mention it.  
I am amazed to see you label this outcry - hundreds of people with legitimate grievances - as &quot;FUD&quot;.  Nice.
You also make the nonsensical claim that it&#039;s not a bait and switch when the &lt;b&gt;perpetrator&lt;/b&gt; says it&#039;s not?  Shall we also ask the thief if it&#039;s theft?  If you&#039;re going to start insulting people, start by being coherant.</description>
		<content:encoded><![CDATA[<p>@jratcliff  Your accusation of &#8220;troll&#8221; is baseless: I did not raise the topic of Ext or why John excluded them, coryn1 did &#8211; he/she asked a question that I answered accurately with a correct link to the source.</p>
<p>Re: bait and switch: hundreds of people with no financial connection to any competing product have called Ext&#8217;s licensing moves a bait and switch or used equivalent terms.  Here&#8217;s 400+ pages worth:</p>
<p><a href="http://www.google.com/search?q=extjs+bait+and+switch" rel="nofollow">http://www.google.com/search?q=extjs+bait+and+switch</a></p>
<p>The fact that Ext pulled a &#8220;bait and switch&#8221; is a broadly held, consensus opinion (see above), and it was neither FUD nor even a contentious point for me to mention it.<br />
I am amazed to see you label this outcry &#8211; hundreds of people with legitimate grievances &#8211; as &#8220;FUD&#8221;.  Nice.<br />
You also make the nonsensical claim that it&#8217;s not a bait and switch when the <b>perpetrator</b> says it&#8217;s not?  Shall we also ask the thief if it&#8217;s theft?  If you&#8217;re going to start insulting people, start by being coherant.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jratcliff</title>
		<link>http://ajaxian.com/archives/thinking-about-the-difference-between-frameworks/comment-page-2#comment-267985</link>
		<dc:creator>jratcliff</dc:creator>
		<pubDate>Wed, 08 Oct 2008 04:11:45 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4672#comment-267985</guid>
		<description>@viper2k - &quot;stop making stupid arguments&quot;, &quot;say whatever nonsense&quot;, &quot;It means Jack-sheet&quot;, &quot;a mancrush&quot;, &quot;rescue of your idol&quot;, &quot;Ext sleazeness&quot; - wow, what can I say?  How old are you, really?  I think it is you that looks extremely silly.  Those comments sure gave me a good laugh. :)


As for my post that you are referencing back in March of 07, Jack Slocum contacted me directly and we discussed my concerns offline and all was/is good.  In fact, that conversation lead to myself and Rich Waters starting Ext.nd.  This is just another example where people like yourself just don&#039;t have all of the facts and then start spreading FUD like this.</description>
		<content:encoded><![CDATA[<p>@viper2k &#8211; &#8220;stop making stupid arguments&#8221;, &#8220;say whatever nonsense&#8221;, &#8220;It means Jack-sheet&#8221;, &#8220;a mancrush&#8221;, &#8220;rescue of your idol&#8221;, &#8220;Ext sleazeness&#8221; &#8211; wow, what can I say?  How old are you, really?  I think it is you that looks extremely silly.  Those comments sure gave me a good laugh. :)</p>
<p>As for my post that you are referencing back in March of 07, Jack Slocum contacted me directly and we discussed my concerns offline and all was/is good.  In fact, that conversation lead to myself and Rich Waters starting Ext.nd.  This is just another example where people like yourself just don&#8217;t have all of the facts and then start spreading FUD like this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: justheatingup</title>
		<link>http://ajaxian.com/archives/thinking-about-the-difference-between-frameworks/comment-page-2#comment-267981</link>
		<dc:creator>justheatingup</dc:creator>
		<pubDate>Wed, 08 Oct 2008 02:17:56 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4672#comment-267981</guid>
		<description>viper2K,  the post you quoted was regarding Ext 1.0 from 2007.  Jack addressed my concerns and resolved that issue within hours.  We still use Ext JS to this day and are very happy with the framework.</description>
		<content:encoded><![CDATA[<p>viper2K,  the post you quoted was regarding Ext 1.0 from 2007.  Jack addressed my concerns and resolved that issue within hours.  We still use Ext JS to this day and are very happy with the framework.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

