artasparks / gpub

GPub: Go Publishing for Glift
MIT License
16 stars 3 forks source link

Should license text be stored separately from copyright.json? #35

Closed dormerod closed 8 years ago

dormerod commented 8 years ago

If your license text is just something like "All rights reserved" then putting it in copyright.json is fine, but I think in many cases publishers are going to need more flexibility than that.

It might be worth looking for an optional file like license.md to make things cleaner, even though it should probably still be displayed on the copyright page. (Note that currently a newline character in copyright.json causes an error, so that could be a new issue depending on how this issue is resolved).

It probably doesn't matter whether someone is using Creative Commons or a more traditional copyright notice, because both approaches often result in a lengthy block of text on the copyright page. I'll comment with some examples below.

dormerod commented 8 years ago

Copyright © 2015 by William Shakespeare

All rights reserved. No part of this publication may be reproduced, distributed, or transmitted in any form or by any means, including photocopying, recording, or other electronic or mechanical methods, without the prior written permission of the publisher, except in the case of brief quotations embodied in critical reviews and certain other noncommercial uses permitted by copyright law. For permission requests, write to the publisher, addressed “Attention: Permissions Coordinator,” at the address below.

dormerod commented 8 years ago

Copyright © 2015 by Charles Dickens

This book is distributed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International license. That means:

You are free to:

Under the following conditions:

This is a human-readable summary of (and not a substitute for) the license, which may be found at: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode When giving credit for this original work, please attribute it to Charles Dickens and link to: https://example.com/

artasparks commented 8 years ago

sounds reasonable, although I think your 2nd example is a little excessive. It should be sufficient to reference the canonical text.

dormerod commented 8 years ago

This is fixed by the changes in pull request #49 and a separate file is not required.