ext license - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T01:41:31Zhttp://stackoverflow.com/feeds/question/494591http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/494591/ext-license1ext licenseken2009-01-30T05:48:25Z2009-02-27T14:00:59Z
<p>Which of the licensing options for <A HREF="http://extjs.com/" rel="nofollow">the Ext JS library</A> will apply if I use it in our in-house company CMS?</p>
http://stackoverflow.com/questions/494591/ext-license/494637#4946371Answer by Charles Duffy for ext licenseCharles Duffy2009-01-30T06:16:45Z2009-01-30T06:16:45Z<p>The GPLv3 will apply unless you buy a commercial license. That is to say, unless you buy a commercial license, your company needs to agree to distribute the software to anyone to whom you distribute a copy of any part (ie. by sending it over to their browser) and otherwise comply with the terms of the GNU GPLv3.</p>
<p>Now, if this is only going to be used by employees of your company, and you don't mind giving your employees copies of your internal-only software (and, potentially, permission to personally redistribute the same), you may not mind being bound by the GPLv3. Ask your lawyer for their opinion as to whether letting employees use the software when acting as agents of the company requires licensing them a copy which they can redistribute when not acting as agents of the company -- my personal interpretation is that it doesn't, but I'm not a lawyer, cannot give legal advice, am not giving legal advice, and may well be wrong anyhow.</p>
<p>Bottom line: if you license your software under the GPLv3 and comply with that license, you're fine deriving from Ext; the GPL doesn't require you to distribute your source to anyone you haven't distributed any portion of the derived work to, so if it's truly in-house and never leaked (even via third-party folks downloading copies of the javascript files into their web browser), you may well be OK -- but find out what your management and legal council are comfortable with!</p>
<p>Now, if you (or your corporate lawyer) isn't comfortable with that (and not being comfortable with that would not be particularly surprising!), you can buy a commercial license. They're <A HREF="http://extjs.com/store/extjs/" rel="nofollow">pretty reasonably priced</A>, especially if you're buying them on a per-developer basis for only a small number of people.</p>
http://stackoverflow.com/questions/494591/ext-license/494639#4946390Answer by Thomas J for ext licenseThomas J2009-01-30T06:17:31Z2009-01-30T06:17:31Z<p>According to the official license information, if you are going to derive a commercial advantage from your CMS, you are required to purchase the appropriate number of commercial licenses, unless you distribute your source code with a GPL license. In other words, you are not required to purchase commercial licenses for Ext even if you make a profit on your CMS, as long as you make your source code available under a GPL license.</p>
<p><a href="http://extjs.com/products/license.php" rel="nofollow">http://extjs.com/products/license.php</a>
<a href="http://extjs.com/company/dual.php" rel="nofollow">http://extjs.com/company/dual.php</a></p>
http://stackoverflow.com/questions/494591/ext-license/594868#5948681Answer by Erlend Halvorsen for ext licenseErlend Halvorsen2009-02-27T14:00:59Z2009-02-27T14:00:59Z<p>Take a look at this quote from <a href="http://planet.mysql.com/entry/?id=11940" rel="nofollow">Planet MySQL - GPL and Javascript</a>:</p>
<blockquote>
<p>[...] The whole story becomes a bit more
complicated when GPL is applied to a
javascript library. When users are
using the library, they will download
HTML, CSS images and the javascript
library. The first thing to realize is
that you are distributing the code. It
was on your server and now it on the
computer of the user. This gives any
user the right to look at the
javascript code and reuse it for
another project. This means that you
can’t obfuscate the javascript code
and people can copy/paste it for there
own use. This probably how you
currently look at javascript anyway.
But how about the HTML, CSS and
images, can that be publicly used? No
it can’t. Those items aren’t code as
defined in the GPL license, it should
be considered data. Therefor GPL
doesn’t ally to that part of the
application.</p>
<p>A web application will probably not
only have client side code, it will
also have a part on the server in the
form as PHP (or JSP, or Ruby, or ..)
scripts. The big question is, do we
need to release that part as well
(under GPL license). Although we as
developers think of the client and
server part being 2 parts of the same
application, GPL does not. When using
AJAX, the client code is interacting
with the server. However you can
compare it to any other client/server
application. This may be interpreted
as 2 applications between which data
is transfered, therefor both may have
different license. This is called the
‘ASP loophole’ and is as an error by
some. When GPLv3 was drawn up, a clear
decision was made to not close this
loophole.</p>
</blockquote>
<p>As with regards to whether or not internal usage constitutes distribution, this is from the <a href="http://www.gnu.org/licenses/gpl-faq.html#InternalDistribution" rel="nofollow">GPL FAQ</a>:</p>
<blockquote>
<p>Is making and using multiple copies within one organization or company "distribution"? No, in that case the organization is just making the copies for itself. As a consequence, a company or other organization can develop a modified version and install that version through its own facilities, without giving the staff permission to release that modified version to outsiders. However, when the organization transfers copies to other organizations or individuals, that is distribution. In particular, providing copies to contractors for use off-site is distribution. </p>
</blockquote>
<p>So IANAL, but I'd say you'd be pretty safe to use a GPL'd javascript library for internal systems, and even if you start exposing it to the rest of the world, the only restriction that applies is that if you use GPL'ed javascript libraries in your front end code, you'd have to make unobfuscated versions of your javascript files available. If you only use ExtJS for the admin area (and the admin area is only accessed by your employees) you'd still be clear of the distribution clause of GPL, the way I understand it.</p>
<p>Interestingly, there's another version of GPL called <a href="http://en.wikipedia.org/wiki/Affero%5FGeneral%5FPublic%5FLicense" rel="nofollow">AGPL</a>, which tries to close this "loophole".</p>