vote up 1 vote down star

Quick Question.

I am doing a conversion of JavaScript code licensed by GPL (and not created by me) into PHP. Does the original GPL stand or can i put any license on the converted code?

I found this on SO, but wondering if it applies.

flag

expanded my answer a bit to suggest that to be nice to the original author you could dual-license your work under the GPL and another license of your choice so that you meet your own requirements while giving back. (Perl is dual licensed that way). – Laurent Apr 8 at 11:22
By the way I've been able to negotiate with authors to allow me to use the code as MIT before, but that's been with small projects of course. – Robert Gould Apr 8 at 12:11

5 Answers

vote up 8 vote down check

This really should never be considered as a legal question. It's really about doing the right thing.

Before looking at the legal side of things, first think common sense and politeness to the original author. Legal aspect should really come as a second thought.

Licensing the work resulting from your "translation" under the GPL would certainly be the best way to handle that.

The JavaScript software you are using as a starting point was "given" to you by its author under the GPL, and the best way to thank him/her for the gift is to give your own contribution under the GPL license.

Now if for some reason the GPL is not possible for you, then you really have two options:

  1. Contact the original author and get his/her approval for your plan and the license you want to use on your own code. The original copyright holder could even allow you to either make a proprietary derivative of this original work or to license it under both GPL and another open-source license of your choice to work-around any GPL restriction you may have.
  2. Do not start from that code, and create your own PHP software independently from the JavaScript implementation but re-using the idea you've learned from reading the JavaScript code. Re-using ideas from GPL code is a valid way to thank the original author whatever license you use.
link|flag
We are working under a rule that we can not use GPL code. And we are working on item #1 :) Very nice answer btw. – Ólafur Waage Apr 8 at 11:11
+1, for adressing both legal and "don't be evil" issues. :) – abababa22 Apr 8 at 11:55
vote up 0 vote down

You embed the GPL into an LGPL application or module, that is not just a wrapper++; This new module will be LGPL and you can cleanly use an LGPL module without spreading out. That's what our License Lawyer told us.

I trust my Lawyer, but that doesn't mean you should blindly trust my Lawyer :)

link|flag
so called "GPL condom" ;-) – vartec Apr 8 at 11:22
Even you shouldn't trust a guy who claims that you can change license in code authored by other people. gnu.org/licenses/gpl-faq.html#GPLWrapper/… – abababa22 Apr 8 at 11:42
I'd rather trust a lawyer, than a freak who puts tin-foil hat on his head – vartec Apr 8 at 11:45
@vartec You seem to have some anger issues. No need to freak out if people disagree with you on internet. :D – abababa22 Apr 8 at 11:53
@abababa22 that's why I said "is not just a wrapper++", a wrapper isn't enough, I specifically was referencing that point – Robert Gould Apr 8 at 11:57
show 6 more comments
vote up 5 vote down

IANAL, but if you are not the original author, then your PHP version will need to be GPL.

To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work.

So porting a js library to php would count as a modification of the original, and then you are bound by the license to release the modified code under GPL.

Copyright may be dumb and apply only to the text, but if you have loaded the original into your computer to view it, you've copied it (at least under UK law, copyright applies to digital copies).

That act of copying was done under license and if you don't keep within terms of the license you are already in breach of copyright, whether or not you make further derivative copies.

link|flag
vote up 1 vote down

Translation won't remove copyright. Think about decompiling binary code of Windows to Pascal for example and then recompiling it. You think Microsoft wouldn't come after you? :)

I think the correct way is to either:

  • Study the code and produce a technical specification of it. Then use this spec to rewrite the code. If you are paranoid, these tasks can be done by different people. (Companies have been known to do this)
  • Or credit the original author and keep the license. (Your code is a derivative work)

These suggestions may not be absolutely correct, but they are suggestions that don't get you into trouble. Before considering anything controversial you should at least read:

http://www.gnu.org/licenses/gpl-faq.html

link|flag
IANAL, but AFAIK in case of software, copyright is limited to automatic translation. – vartec Apr 8 at 10:20
I'm waiting for you to try that with Windows. When Steve Ballmer "f*ing kills you", I'll say "I told you". :) – abababa22 Apr 8 at 10:27
1. why should I? 2. why should US law apply to me? – vartec Apr 8 at 10:39
Things are different in the east bloc of course. Have a nice day now. :) – abababa22 Apr 8 at 10:43
My Q does not specify country, and Iceland is not in the EU :P But the code will be used (or can be) world wide. – Ólafur Waage Apr 8 at 11:10
show 2 more comments
vote up 1 vote down

If you are the original copyright owner, then you can release a copy or a modified work under any license you like. That doesn't change the license of the previously released software of course.

link|flag
I am not the original author or owner. And i am only worried about the converted code. – Ólafur Waage Apr 8 at 9:58
As always I am not a lawyer but it looks like the linked conversation would apply – 1800 INFORMATION Apr 8 at 9:59
1800 INFORMATION, are you sure that GPL doesn't apply to the original copyright owner? I thought that once a work is released under GPL, there's no way out from it, but I may be mistaken. Can you point to some reference? – Joonas Pulakka Apr 8 at 10:07
@mad-j: you are a bit confused. The original author cannot take back the code licensed under GPL, but he/she can license the same code under another license as well... even proprietary terms with big money involved. – Laurent Apr 8 at 11:08
@Laurent: Ok, thanks! I was a bit confused indeed :) – Joonas Pulakka Apr 8 at 11:32
show 1 more comment

Your Answer

Get an OpenID
or

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