vote up 9 vote down star

I'm giving serious thought to releasing a programming book i wrote as open source to it's targeted community but i'm confused as to what such licenses give people permission to do. I also want to keep the original copyright.

For example, this is what i would like people to be able to do with my work:

  • Download and read it free of charge.
  • Be able to edit the original source files.
  • To publish any changes they make back to the community as open source.
  • To fork it if they wish (while maintaining the original open source license).

But these are the things i wouldn't like people to do:

  • Monetarise it in any form! (i.e. make any money from it in any form).
  • Keep any changes they make closed, especially translations or forks.

As i am pretty new to any form of open source i would be grateful for any input of ideas and advice.

flag

What you want is copyleft, not open-source. – vartec Apr 10 at 14:30

6 Answers

vote up 18 vote down check

alt text

Creative Commons licenses: http://creativecommons.org/license/

These licenses allow creators to communicate which rights they reserve, and which rights they waive for the benefit of recipients or other creators.

There are several types, namely:

  • Attribution (BY) requires users to attribute a work's original author. All Creative Commons licenses contain this option, but some now-deprecated licenses did not contain this component.
  • Authors can either not restrict modification, or use Share-alike (SA), which is a copyleft requirement that requires that any derived works be licensed under the same license, or No derivatives (ND), which requires that the work not be modified.
  • Non-commercial (NC) requires that the work not be used for commercial purposes.

This one should suite your needs: Creative Commons 3.0 BY-NC-SA.

Though I would personally choose this one instead: Creative Commons 3.0 BY-SA

See also:

  • GNU Free Documentation License (GNU FDL or simply GFDL) - is a copyleft license for free documentation, designed by the Free Software Foundation (FSF) for the GNU Project. It is similar to the GNU General Public License, giving readers the rights to copy, redistribute and modify a work and requires all copies and derivatives to be available under the same license. Copies may also be sold commercially, but, if produced in larger quantities (greater than 100), the original document or source code must be made available to the work's recipient.
  • Open Publication License - is a license open publications created by the Open Content Project, which now recommends using one of the Creative Commons licenses.
link|flag
+1: Creative Commons. – S.Lott Apr 10 at 14:15
+1 Exactly what I was going to post. – mmattax Apr 10 at 14:16
More specifically, it sounds like you want the Creative Commons Attribution-Noncommercial-Share Alike license. – Chris Upchurch Apr 10 at 14:18
BY-NC-SA is the version you want. – James Socol Apr 10 at 14:26
he he i love the way that every 5 minutes i refresh this page and this answer keeps growing! lol! Anyway, Accepted! – Gary Willoughby Apr 10 at 14:46
show 1 more comment
vote up 0 vote down

XQuery Kick Start was published under GFDL.

link|flag
vote up -1 vote down

I think that trying to prevent people monetising it is a bad idea, particularly if you want it's readership to ve as wide as posible. If you look at the succeful FOSS projects (as oposed to books) their success (in terms of numbers of users) has to a fair part been driven by commercial companies who need to make a buck.

link|flag
Point taken, but it just leaves a bad taste in my mouth knowing that people could just download it on day one and make money from what took over a year of my life. I'd rather the whole community benefited from it. – Gary Willoughby Apr 10 at 14:38
If somebody downloads it on day one, and creates a commercial distribution system, then either (a) it will flop, because people will get your book free, or (b) your book will reach many more people than it otherwise would have. Not that I want to push you to a license you don't want, of course. – David Thornley Apr 10 at 14:44
I'm just being bitter! ;o) I would rather it all stayed free of charge. – Gary Willoughby Apr 10 at 14:47
vote up 0 vote down

Bear in mind that neither Free nor Open Source licenses can restrict software to noncommercial uses. In other words, in any OSI- or FSF-approved license, you are free to make as much money as you can, and Richard Stallman encourages this.

(The licenses sometimes restrict certain things that people do do for profit, but don't forbid making money.)

The same applies to keeping changes closed. These licenses may put restrictions on redistributing in closed form, but do not and cannot require the modifier to distribute in the first place.

Therefore, assuming that's what you really want, you don't want an Open Source-type license. You'll probably have better luck with Creative Commons licenses.

link|flag
vote up 2 vote down

I've seen a few free books published under the Open Publication License. (Advanced Linux Programming, for one example.) You'll have to check to see if it fits your specific needs, but it may be helpful to others looking to publish free material online.

link|flag
vote up 4 vote down

Richard Stallman put his book under the GFDL - GNU Free Documentation License, which is similar to CC by SA

link|flag
The GFDL has some issues (en.wikipedia.org/wiki/Gfdl#Criticism_of_the_GFDL/…). – Chris Upchurch Apr 10 at 16:07
As long as you don't use invariant sections, it is mostly Ok. – Zifre Apr 10 at 16:26
There's still the issue of having to reproduce the entire license if you reproduce any part of the work. CC does this a lot better by allowing links to the license rather than the license itself. – Chris Upchurch Apr 10 at 19:41
Yes, that is true. I think one of the problems with CC is that there are many different similar licenses, many of which are not compatible. – Zifre Apr 10 at 21:28

Your Answer

Get an OpenID
or

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