vote up 6 vote down star
3

I'm reviewing some jQuery plugins for distribution with closed source (on the server, anyhow) commercial applications. One thing I'm noticing is that there isn't any standard license that covers all plugins.

After reading through the legal BS of a couple licenses, I'm feeling very glad I didn't go through with getting a law degree.

I'm interested in a concise list of all common software licenses and what requirements they place on code's use in a software project.

By "software licenses" I mean licenses applied to code that is released to the public domain.

Imagine a comparison grid of licenses (MS-PL, GNU 3.0, etc) and restrictions (Include disclaimer, modify source, not for profit, etc), where you can get an idea of what the license says before slogging through the legalese.

flag
Major duplicate: stackoverflow.com/questions/1163199/… and many others. Just look under the licenses tag. – John Saunders Jul 23 at 20:04
1  
I'm looking for a concise list, not fifteen hundred pages with different descriptions of licenses; that's what we have now. – Will Jul 23 at 20:09
That "duplicate" was about something different, but he did have a nice link which is relevant to my interests! – Will Jul 23 at 20:13
Not exactly a duplicate, since "License requirements for commercial program" starts with a table like the one the question asks for. Or maybe not; I'm not clear on what Will wants exactly, and whether the mention of two Open Source licenses means that he's interested only in OS licenses. – David Thornley Jul 23 at 20:14
Not to mention I've studied code that was a lot more abstruse than any OS license. Think of it as Yet Another Odd Programming Language. – David Thornley Jul 23 at 20:15
show 2 more comments

3 Answers

vote up 2 vote down

Looks like the GNU project keeps a list of common software licenses here.

I also found a Wikipedia article that attempts to compare many licenses in a table format.

link|flag
vote up 1 vote down

The 'duplicate' link contained a link to something like I'm talking about:

http://www.codeproject.com/info/Licenses.aspx

Which contains six aspects of some common licenses. This is the best one I've seen so far.

link|flag
vote up 0 vote down

The Gnu project has a list, but it goes way past being concise, and only covers a small subset of Free and pseudo-free licenses. But if you want to know about the interactions between various shackled software licenses, you are on your own in a house of mirrors.

This is actually one of the big problems with software development, particularly closed-source software. Everyone has to come up with their very own custom license. As a result, any company of even moderate size ends up needing a full time professional license tracking person just to ensure they stay legal.

Even stuff labeled "freeware" will often have license line-items prohibiting the kind of use I want to do. Examples have been prohibitions aginst commercial use, military use, or redistribution (eg: to our customer).

This is a secondary benifit to true Free Software use. When I'm looking for a new software tool, I make sure to put "GPL" on the search line. Its license terms are spelled out, well-known, easy to re-acquire if you lose the info, and there's that nice webpage explaining its interactions with other licenses.

link|flag

Your Answer

Get an OpenID
or

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