- - {{ bibjson.title }} - {% if bibjson.alternative_title %} - - {%- set seal = journal.has_seal() -%} - {%- if seal -%} - - {% endif %} - - {%- endif %} -
-- - - {# this next bit has to be all on one line so that the spacing is correct #} - {% if bibjson.pissn %}{{bibjson.pissn}} (Print){% endif %}{% if bibjson.eissn %}{% if bibjson.pissn %} / {% endif %}{{bibjson.eissn}} (Online){% endif %} - -
- - {% if bibjson.discontinued_date is not none and bibjson.discontinued_date | is_in_the_past %} -Ceased publication on {{ bibjson.discontinued_datestamp.strftime("%d %B %Y") }}
- {% endif %} - - {% if past %} -Continues
- {% for p in past %}
- {% set bibjson = p.bibjson() %}
- {% if bibjson.issns()|length > 0 %}
- {% if p.is_in_doaj() %}
- {{ bibjson.title }}
+{% extends "layouts/toc_base.html" %}
+
+{% block toc_content %}
+ {% set CC_MAP = {
+ "CC BY" : ["https://creativecommons.org/licenses/by/4.0/", ["by"]],
+ "CC BY-NC" : ["https://creativecommons.org/licenses/by-nc/4.0/", ["by", "nc"]],
+ "CC BY-NC-ND" : ["https://creativecommons.org/licenses/by-nc-nd/4.0/", ["by", "nc", "nd"]],
+ "CC BY-NC-SA" : ["https://creativecommons.org/licenses/by-nc-sa/4.0/", ["by", "nc", "sa"]],
+ "CC BY-ND" : ["https://creativecommons.org/licenses/by-nd/4.0/", ["by", "nd"]],
+ "CC BY-SA" : ["https://creativecommons.org/licenses/by-sa/4.0/", ["by", "sa"]],
+ "Public Domain" : ["https://creativecommons.org/publicdomain/zero/1.0/", ["zero"]],
+ } %}
+
+ {% set DEPOSIT_POLICY_MAP = {
+ "Sherpa/Romeo" : "https://v2.sherpa.ac.uk/cgi/search/publication/basic?publication_title-auto=",
+ "Diadorim" : "https://diadorim.ibict.br/simple-search?query=",
+ "Dulcinea" : "https://www.accesoabierto.net/dulcinea/lista/REVISTA/",
+ } %}
+
+ Information on publication charges not available for this journal. The journal charges up to: as {% if bibjson.apc_url %}
+ {% endif %}
+ publication fees{% if bibjson.apc_url %}{% endif %} (article processing charges
+ or APCs)
+ {%- if bibjson.has_other_charges %}
+ and there are
+ {% if bibjson.other_charges_url %}
+
+ other charges
+
+ {%- else %}
+ other charges
+ {%- endif -%}
+ {% endif -%}
+ . There are no publication fees (article processing
+ charges or APCs) to publish with this journal
+ {%- if bibjson.has_other_charges %}
+ but there are
+ {% if bibjson.other_charges_url %}
+
+ other charges
+
+ {% else %}
+ other charges
+ {% endif %}
+ {% endif -%}
+ . Continued by
- {% for f in future %}
- {% set bibjson = f.bibjson() %}
- {% if bibjson.issns()|length > 0 %}
- {% if f.is_in_doaj() %}
- {{ bibjson.title }}
- {% else %}
- {{ bibjson.title }}, ISSN: {{ bibjson.get_preferred_issn() }} (not available in DOAJ)
+ {# Waivers #}
+ {% if bibjson.waiver_url %}
+ There is a waiver
+ policy for these charges. There is no waiver policy for these charges. Information on publication charges not available for this journal. Look up the journal’s: The journal charges up to: as {% if bibjson.apc_url%}{% endif %}publication fees{% if bibjson.apc_url%}{% endif %} (article processing charges or APCs)
- {%- if bibjson.has_other_charges %}
- and there are
- {% if bibjson.other_charges_url %}
- other charges
- {%- else %}
- other charges
- {%- endif -%}
- {% endif -%}
- . There are no publication fees (article processing charges or APCs) to publish with this journal
- {%- if bibjson.has_other_charges %}
- but there are
- {% if bibjson.other_charges_url %}
- other charges
- {% else %}
- other charges
- {% endif %}
- {% endif -%}
- . There is a waiver policy for these charges. There is no waiver policy for these charges. Look up the journal’s:
+ → This journal checks for plagiarism.
+
+ This journal began publishing in open access in {{ oa_start }}.
+
+
+ What does DOAJ define as Open Accesss?
+
+ This journal uses
+ {% for license in bibjson.licenses %}
+ {%- if loop.last and bibjson.licenses|length > 1 -%} or
+ {%- elif not loop.first -%}, {%- endif -%}
+ {% if license.type == "Publisher's own license" %} their
+ publisher’s own
+ {% else %} a {{ license.type }}
+ {%- endif -%}
+ {% endfor %}
+ license.
+
+ {% for license in bibjson.licenses %}
+ {% set ldata = CC_MAP.get(license.type) %}
+
+
+ {% if license.type != "Publisher's own license" %}
+ {% include 'includes/svg/cc.svg' %}
{% endif %}
- {% if bibjson.editorial_review_process or bibjson.editorial_review_url %}
-
- → This journal checks for plagiarism.
-
- This journal began publishing in open access in {{ oa_start }}.
- What does DOAJ define as Open Accesss?
- This journal uses
- {% for license in bibjson.licenses %}
- {%- if loop.last and bibjson.licenses|length > 1 -%} or
- {%- elif not loop.first -%}, {%- endif -%}
- {% if license.type == "Publisher's own license" %} their publisher’s own
- {% else %} a {{ license.type }}
- {%- endif -%}
- {% endfor %}
- license.
-
- {% for license in bibjson.licenses %}
- {% set ldata = CC_MAP.get(license.type) %}
-
-
- {% if license.type != "Publisher's own license" %}
- {% include 'includes/svg/cc.svg' %}
- {% endif %}
- {% for license_option in ldata[1] %}
- {# TODO: how do we display public domain licenses + publishers’ own? #}
- {# TODO: there’s probably a better way to do this #}
- {# RJ Note: I have adjusted this bit of the template to do this slightly better, but until we have journals with multiple lincenses we're not sure how weird it will look #}
- {% if license_option == 'by' %}{% include 'includes/svg/by.svg' %}Attribution{% endif %}
- {% if license_option == 'nc' %}{% include 'includes/svg/nc.svg' %}Non-Commercial{% endif %}
- {% if license_option == 'nd' %}{% include 'includes/svg/nd.svg' %}No Derivatives{% endif %}
- {% if license_option == 'sa' %}{% include 'includes/svg/sa.svg' %}Share Alike{% endif %}
- {% endfor %}
- {% if license.type == 'CC0' %}{% include 'includes/svg/zero.svg' %}Public Domain{% endif %}
- {% if loop.last %}{% else %}
- → Look up their open access statement and their license terms.
-
- The author
- {% if bibjson.author_retains_copyright %}
- retains
- {% else %}
- does not retain
- {% endif %}
- unrestricted copyrights and publishing rights.
-
- → Learn more about their copyright policy.
- Articles digitally archived in:
- → Find out about their archiving policy.
-
- Deposit policy with:
-
+ → Look up their open access statement and their license terms.
+
+ The author
+ {% if bibjson.author_retains_copyright %}
+ retains
+ {% else %}
+ does not retain
{% endif %}
-
- {% if bibjson.pid_scheme %}
- Permanent article identifier:
+ → Learn more about their copyright policy.
+ Articles digitally archived in:
+ → Find out about their archiving policy.
+
+ Deposit policy with:
+ Permanent article identifier:About
+ Publishing with this journal
+
+
+ {% for apc in bibjson.apc %}
+
+ About
- Publishing with this journal
-
-
+ {% if bibjson.aims_scope_url %}
+
- {% for apc in bibjson.apc %}
-
-
- {% if bibjson.aims_scope_url %}
-
Best practice
+ Best practice
-
{% endif %}
-
-
- {% endfor %}
-
- {% for service in bibjson.preservation_summary %}
-
-
- {% if bibjson.preservation_url %}
-
{% endif %}
+
- {% if bibjson.deposit_policy %}
-
- {% for policy in bibjson.deposit_policy %}
- {% set policy_data = DEPOSIT_POLICY_MAP.get(policy) %}
-
-
- {% for identifier in bibjson.pid_scheme %}
-
-
+ {% for service in bibjson.preservation_summary %}
+
+
+ {% if bibjson.preservation_url %}
+ Journal metadata
-
-
- {% if bibjson.publisher_name %}
-
-
- {% for path, code in bibjson.lcc_paths_and_codes() %}
- {% if loop.index0 == 0 %}
+ {% for policy in bibjson.deposit_policy %}
+ {% set policy_data = DEPOSIT_POLICY_MAP.get(policy) %}
+
+ {% for identifier in bibjson.pid_scheme %}
+
+ Journal metadata
+
+
+ {% if bibjson.publisher_name %}
+
+
+ {% for path, code in bibjson.lcc_paths_and_codes() %}
+ {% if loop.index0 == 0 %}
+
+