substance / texture

A visual editor for research.
MIT License
1k stars 83 forks source link

Licensing and Copyright #1344

Open fred-atherden opened 5 years ago

fred-atherden commented 5 years ago

Description

License and copyright details for the article.

User Stories

Author

  1. As an author, I want to be able to see the license information for an article so that I can confirm the correct license is being used.

Production staff

  1. As production staff, I want to be able to change the license information for an article so that I can switch the license if required.

But what if . . . ?

Considerations

XML requirements

There is a JATS4R recommendation for this tagging: https://jats4r.org/permissions

Captured in article/front/article-meta/permissions CC-BY-4.0

<permissions>
     <copyright-statement>&#x00A9; 2019, Tobin et al</copyright-statement>
     <copyright-year>2019</copyright-year>
     <copyright-holder>Tobin et al</copyright-holder>
     <ali:free_to_read/>
     <license xlink:href="http://creativecommons.org/licenses/by/4.0/">
          <ali:license_ref>http://creativecommons.org/licenses/by/4.0/</ali:license_ref>
          <license-p>This article is distributed under the terms of the <ext-link ext-link-type="uri" xlink:href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution License</ext-link>, which permits unrestricted use and redistribution provided that the original author and source are credited.</license-p>
     </license>
</permissions>

CC0 licenses have no copyright, and so should be captured in the following way (or similar).

<permissions>
     <ali:free_to_read/>
     <license xlink:href="http://creativecommons.org/publicdomain/zero/1.0/"> 
          <ali:license_ref>http://creativecommons.org/publicdomain/zero/1.0/</ali:license_ref>
          <license-p>This is an open-access article, free of all copyright, and may be freely reproduced, distributed, transmitted, modified, built upon, or otherwise used by anyone for any lawful purpose. The work is made available under the <ext-link ext-link-type="uri" xlink:href="http://creativecommons.org/publicdomain/zero/1.0/">Creative Commons CC0 public domain dedication</ext-link>.
          </license-p>
     </license>
</permissions>

In the event that there are separate licenses for different languages, this should be captured using @xml:lang on the license element (@xml:lang is not allowed on license-p) in the permissions.

<permissions>
    <copyright-statement>Text © 2018 by the authors.</copyright-statement>
    <copyright-year>
        2018</copyright-year>
    <license license-type="open-access" xlink:href="http://creativecommons.org/licenses/by-sa/4.0/" xml:lang="de">
        <license-p>
            <inline-graphic xlink:href="http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/by-sa.svg"/>
            Dieses Werk ist unter der Creative-Commons-Lizenz 4.0 (CC BY-SA 4.0)   veröffentlicht.</license-p>
    </license>
    <license license-type="open-access" xlink:href="http://creativecommons.org/licenses/by-sa/4.0/" xml:lang="en">
        <license-p>
            <inline-graphic xlink:href="http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/by-sa.svg"/>
            This book is published under the Creative Commons License 4.0 (CC BY-SA  4.0).</license-p>
    </license>
</permissions>

Érudit examples: license needs to be optional for Érudit:

<!--  Copyright owned by the authors  -->
<permissions>
  <copyright-statement>Copyright © Helen Fenwick and Gavin Phillipson, 2011</copyright-statement>
  <copyright-year>2011</copyright-year>
  <copyright-holder>Helen Fenwick and Gavin Phillipson</copyright-holder>
</permissions>

<!--  Copyright owned by the journal  -->
<permissions>
  <copyright-statement>Copyright © McGill Law Journal, 2011</copyright-statement>
  <copyright-year>2011</copyright-year>
  <copyright-holder>McGill Law Journal</copyright-holder>
</permissions>

Érudit include the license logo in license-p (where possible):

<!--    Link to the license text and to the license button. Permission with a "license-p" element only    -->
<permissions>
  ...
  ...
  <license xlink:href="https://creativecommons.org/licenses/by/4.0/deed.fr">
    <license-p>
      <media xlink:href="http://licensebuttons.net/l/by/4.0/88x31.png"/>
    </license-p>
 </license>
</permissions>

<!--    Link to the license text and to the license button. Permission with a "ali:license_ref" and a "license-p"    -->
<permissions>
  ...
  ...
  <license>
    <ali:license_ref xmlns:ali="http://www.niso.org/schemas/ali/1.0/">
                https://creativecommons.org/licenses/by/4.0/deed.fr</ali:license_ref>
    <license-p>
      <media  xlink:href="http://licensebuttons.net/l/by/4.0/88x31.png"/>            
    </license-p>
  </license>
</permissions>

Mock ups

Proposal

fred-atherden commented 5 years ago

Note - feedback was not received from SciELO for this ticket.