vote up 3 vote down star

Does GPL require to open source the (commercial) web application?

Please, give the expanded answer, not just "Yes"/"No" but why.

flag

67% accept rate
5  
If the answer to this question impacts the operation of your business at all, you really should consult with a lawyer and not a bunch of programmers. – Scott W Sep 28 at 17:17

4 Answers

vote up 10 vote down check

No. The GPL is about distribution of code. With a web app you don't distribute your code.

But there are GPL variants, like the Affero GPL, that do apply to web apps, so be careful.

link|flag
But how does one define distribute? If the client is hosting their solution with me, that isn't distributed, but what if they wish to host their application on their own server? If the app is written in javascript, you're technically deploying code to your user's browsers, aren't you? – notJim Sep 28 at 17:27
1  
If they host it on their own server that is distribution. If they are downloading javascript then they have the source to the javascript anyway, – mgb Sep 28 at 17:28
thax a lot for warning about Affero GPL. – Alex S Sep 28 at 17:29
1  
@mgb: The JS file you send may not be considered "source" according to the GPL. Plus, if you add your own JS which you don't intend to make GPL (despite it being available for anyone to download) incorporating that JS file with the GPL'ed JS file may constitute a derived work. So there are some nuamces to GPL Javascript. – Mr. Shiny and New Sep 29 at 18:46
1  
Mr. Shiny and New makes a good point that distributing code to someone is not the same thing as making it GPL. I fear I have many questions remaining... – notJim Sep 29 at 23:09
show 3 more comments
vote up 0 vote down

Copyright prevents you from distributing the code or the binaries. The GPL grants you additional privileges to distribute the code or binaries as long as you follow the GPL's restrictions. If you are not distributing the code, the GPL doesn't matter. If you distribute it, it matters.

Note: I'm sure Javascript is a case where people are misinterpreting the GPL. You are distributing the Javascript code, by most definitions, however the Javascript can be said to be part of a derived work (the page) which may not be GPL (not to mention your own Javascript code, which you may not intend to GPL). IMO you should avoid Javascript that's GPL unless you're making an all-GPL project.

link|flag
vote up 0 vote down

No. Some drafts of GPLv3 did have such a requirement, but this was eventually removed. See also: OSS Watch: GPL v3 - What's New?

link|flag
vote up -2 vote down

I'm pretty sure it doesn't.

link|flag
2  
I'm pretty sure that isn't very helpful. – notJim Sep 29 at 3:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.