From 351d56efc6171155a05e58a577086f5d0861ec41 Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Tue, 27 Aug 2024 20:06:41 +0200 Subject: [PATCH 01/55] Changes for Docker --- Dockerfile | 8 +++++ en/statements/index.html | 67 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 75 insertions(+) create mode 100644 Dockerfile create mode 100644 en/statements/index.html diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..1afc0e5e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM ruby:3.3.4-bullseye AS build +COPY . /app +WORKDIR /app +RUN bundle install \ + && jekyll build + +FROM nginx:1.19.2-alpine AS final +COPY --from=build /app/_site /usr/share/nginx/html \ No newline at end of file diff --git a/en/statements/index.html b/en/statements/index.html new file mode 100644 index 00000000..2ccec1fd --- /dev/null +++ b/en/statements/index.html @@ -0,0 +1,67 @@ + + + + + + + Page Redirection + + + If you are not redirected automatically, please click the link to continue to + /en/. + + From 3961f2fad32ca86c6532dfbfd3f24b6794b611b0 Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Wed, 28 Aug 2024 09:52:50 +0200 Subject: [PATCH 02/55] Changes for k8s deployment --- k8s/base/deployment.yaml | 31 +++++++++++++++++++ k8s/base/kustomization.yaml | 8 +++++ .../cloud/deployment_patch.yaml.template | 22 +++++++++++++ k8s/overlays/cloud/hpa.yaml.template | 21 +++++++++++++ k8s/overlays/cloud/ingress.yaml.template | 23 ++++++++++++++ k8s/overlays/cloud/kustomization.yaml | 13 ++++++++ k8s/overlays/cloud/service.yaml | 10 ++++++ k8s/overlays/dev/deployment_patch.yaml | 11 +++++++ k8s/overlays/dev/kustomization.yaml | 11 +++++++ k8s/overlays/dev/nodeport.yaml | 10 ++++++ 10 files changed, 160 insertions(+) create mode 100644 k8s/base/deployment.yaml create mode 100644 k8s/base/kustomization.yaml create mode 100644 k8s/overlays/cloud/deployment_patch.yaml.template create mode 100644 k8s/overlays/cloud/hpa.yaml.template create mode 100644 k8s/overlays/cloud/ingress.yaml.template create mode 100644 k8s/overlays/cloud/kustomization.yaml create mode 100644 k8s/overlays/cloud/service.yaml create mode 100644 k8s/overlays/dev/deployment_patch.yaml create mode 100644 k8s/overlays/dev/kustomization.yaml create mode 100644 k8s/overlays/dev/nodeport.yaml diff --git a/k8s/base/deployment.yaml b/k8s/base/deployment.yaml new file mode 100644 index 00000000..f5dc25a7 --- /dev/null +++ b/k8s/base/deployment.yaml @@ -0,0 +1,31 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: rights-app-website-deployment +spec: + # selector.matchLabels is provided via Kustomize + template: + spec: + containers: + - name: rights-app-website + image: europeana/rights-app-website + ports: + - containerPort: 4000 +# livenessProbe: +# httpGet: +# port: 8080 +# path: /actuator/health/liveness +# httpHeaders: +# - name: Accept +# value: application/json +# initialDelaySeconds: 90 +# periodSeconds: 60 +# readinessProbe: +# httpGet: +# port: 8080 +# path: /actuator/health/readiness +# httpHeaders: +# - name: Accept +# value: application/json +# initialDelaySeconds: 60 +# periodSeconds: 60 diff --git a/k8s/base/kustomization.yaml b/k8s/base/kustomization.yaml new file mode 100644 index 00000000..aa1754ef --- /dev/null +++ b/k8s/base/kustomization.yaml @@ -0,0 +1,8 @@ +resources: + - deployment.yaml + +labels: + - includeSelectors: true + pairs: + app: rights-app-website + diff --git a/k8s/overlays/cloud/deployment_patch.yaml.template b/k8s/overlays/cloud/deployment_patch.yaml.template new file mode 100644 index 00000000..df5f276e --- /dev/null +++ b/k8s/overlays/cloud/deployment_patch.yaml.template @@ -0,0 +1,22 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: rights-app-website-deployment +spec: + replicas: ${MIN_REPLICAS} + template: + metadata: + annotations: + fluentd/include: '${COLLECT_LOGS}' + fluentd/multiline: 'true' + spec: + containers: + - name: rights-app-website + imagePullPolicy: Always + resources: + requests: + memory: "${MEMORY_REQUEST}M" + cpu: "${CPU_REQUEST}m" + limits: + memory: "${MEMORY_LIMIT}M" + cpu: "${CPU_LIMIT}m" diff --git a/k8s/overlays/cloud/hpa.yaml.template b/k8s/overlays/cloud/hpa.yaml.template new file mode 100644 index 00000000..19908999 --- /dev/null +++ b/k8s/overlays/cloud/hpa.yaml.template @@ -0,0 +1,21 @@ +apiVersion: autoscaling/v2 +kind: HorizontalPodAutoscaler +metadata: + name: rights-app-website-hpa +spec: + maxReplicas: ${MAX_REPLICAS} + minReplicas: ${MIN_REPLICAS} + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: rights-app-website-deployment + behavior: + scaleDown: + stabilizationWindowSeconds: 600 + metrics: + - type: Resource + resource: + name: cpu + target: + type: Utilization + averageUtilization: 75 diff --git a/k8s/overlays/cloud/ingress.yaml.template b/k8s/overlays/cloud/ingress.yaml.template new file mode 100644 index 00000000..8e1d1059 --- /dev/null +++ b/k8s/overlays/cloud/ingress.yaml.template @@ -0,0 +1,23 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: rights-app-website-ingress + annotations: + ${K8S_INGRESS_ANNOTATIONS} +spec: + ingressClassName: public-iks-k8s-nginx + tls: + - hosts: + - ${K8S_HOSTNAME} + secretName: ${K8S_SECRETNAME} + rules: + - host: ${K8S_HOSTNAME} + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: rights-app-website-service + port: + number: 80 diff --git a/k8s/overlays/cloud/kustomization.yaml b/k8s/overlays/cloud/kustomization.yaml new file mode 100644 index 00000000..6402468a --- /dev/null +++ b/k8s/overlays/cloud/kustomization.yaml @@ -0,0 +1,13 @@ +resources: + - ../../base + - service.yaml + - ingress.yaml + - hpa.yaml + +patches: + - path: deployment_patch.yaml + +labels: + - includeSelectors: true + pairs: + app: rights-app-website diff --git a/k8s/overlays/cloud/service.yaml b/k8s/overlays/cloud/service.yaml new file mode 100644 index 00000000..3121d73c --- /dev/null +++ b/k8s/overlays/cloud/service.yaml @@ -0,0 +1,10 @@ +apiVersion: v1 +kind: Service +metadata: + name: rights-app-website-service +spec: + # selector provided via kustomize + ports: + - name: http + port: 80 + targetPort: 4000 diff --git a/k8s/overlays/dev/deployment_patch.yaml b/k8s/overlays/dev/deployment_patch.yaml new file mode 100644 index 00000000..f01b23d3 --- /dev/null +++ b/k8s/overlays/dev/deployment_patch.yaml @@ -0,0 +1,11 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: rights-app-website-deployment +spec: + template: + spec: + containers: + - name: rights-app-website + # required to use local image + imagePullPolicy: Never diff --git a/k8s/overlays/dev/kustomization.yaml b/k8s/overlays/dev/kustomization.yaml new file mode 100644 index 00000000..b954d30c --- /dev/null +++ b/k8s/overlays/dev/kustomization.yaml @@ -0,0 +1,11 @@ +resources: + - ../../base + - nodeport.yaml + +patches: + - path: deployment_patch.yaml + +labels: + - includeSelectors: true + pairs: + app: rights-app-website diff --git a/k8s/overlays/dev/nodeport.yaml b/k8s/overlays/dev/nodeport.yaml new file mode 100644 index 00000000..93c6afbe --- /dev/null +++ b/k8s/overlays/dev/nodeport.yaml @@ -0,0 +1,10 @@ +apiVersion: v1 +kind: Service +metadata: + name: rights-app-website-nodeport +spec: + type: NodePort + ports: + - port: 8080 + nodePort: 31000 + # selector provided via kustomize From 4623a79ca56af59fa96da9a31667f808bea313de Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Wed, 28 Aug 2024 09:55:33 +0200 Subject: [PATCH 03/55] Changes for k8s deployment --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1afc0e5e..0140f6f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,9 @@ FROM ruby:3.3.4-bullseye AS build COPY . /app WORKDIR /app +EXPOSE 4000 RUN bundle install \ && jekyll build FROM nginx:1.19.2-alpine AS final -COPY --from=build /app/_site /usr/share/nginx/html \ No newline at end of file +COPY --from=build /app/_site /usr/share/nginx/html From c97ed63bd2fdd78eb5d722e09c939bb5307cefe4 Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Wed, 28 Aug 2024 11:17:31 +0200 Subject: [PATCH 04/55] Changes for k8s deployment --- Dockerfile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0140f6f7..d6f6e9c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,13 @@ FROM ruby:3.3.4-bullseye AS build + +RUN gem install jekyll bundler COPY . /app WORKDIR /app EXPOSE 4000 -RUN bundle install \ - && jekyll build +RUN bundle install && jekyll build + +CMD ["jekyll", "serve", "--host", "0.0.0.0"] + +#FROM nginx:1.19.2-alpine AS final +#COPY --from=build /app/_site /usr/share/nginx/html -FROM nginx:1.19.2-alpine AS final -COPY --from=build /app/_site /usr/share/nginx/html From 6593ae57344d5df07df9c10c287c3511fcd04be8 Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Wed, 28 Aug 2024 16:36:13 +0200 Subject: [PATCH 05/55] Changes for missing resources like css images etc --- _config.yml | 1 + _environment.yml | 2 ++ _includes/nav.html | 4 +-- _layouts/default.html | 24 +++++++------ en/statement.hbs | 2 +- en/statements/index.html | 76 +++++++++++++++++++++------------------- 6 files changed, 58 insertions(+), 51 deletions(-) create mode 100644 _environment.yml diff --git a/_config.yml b/_config.yml index 3252a3b6..fb54bd63 100755 --- a/_config.yml +++ b/_config.yml @@ -1,6 +1,7 @@ name: rightsstatements.org url: //rightsstatements.org canonical_url: //rightsstatements.org +app_url : markdown: kramdown kramdown: parse_block_html: true diff --git a/_environment.yml b/_environment.yml new file mode 100644 index 00000000..314b9899 --- /dev/null +++ b/_environment.yml @@ -0,0 +1,2 @@ +app_url : http://localhost:9000 +url: http://localhost:4000 diff --git a/_includes/nav.html b/_includes/nav.html index 1d14d9df..4362744f 100644 --- a/_includes/nav.html +++ b/_includes/nav.html @@ -3,8 +3,8 @@
  • - - Rights Statements + + Rights Statements

  • diff --git a/_layouts/default.html b/_layouts/default.html index 4ea9e3d1..b77104fc 100755 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,3 +1,5 @@ +--- +--- @@ -12,15 +14,15 @@ {% else %} {% endif %} - - - - - + + + + + - + {% include cookies.html %} {% if site.google_analytics %}{% include analytics.html %}{% endif %} @@ -56,10 +58,10 @@ - - - - - + + + + + diff --git a/en/statement.hbs b/en/statement.hbs index 02051189..5e78332a 100644 --- a/en/statement.hbs +++ b/en/statement.hbs @@ -11,7 +11,7 @@ {% raw %}{{data.prefLabel.[@value]}}{% endraw %} | Rights Statements {% include cookies.html %} - + {% if site.google_analytics %}{% include analytics.html %}{% endif %} diff --git a/en/statements/index.html b/en/statements/index.html index 2ccec1fd..31ad831e 100644 --- a/en/statements/index.html +++ b/en/statements/index.html @@ -1,3 +1,5 @@ +--- +--- @@ -6,62 +8,62 @@ Page Redirection If you are not redirected automatically, please click the link to continue to - /en/. + /en/. From 929b7d088ca951fc140dafd1f6b08c54abe442a9 Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Wed, 28 Aug 2024 19:16:00 +0200 Subject: [PATCH 06/55] Changes for missing resources like css images etc --- Dockerfile | 2 +- _config.yml | 6 +++--- _environment.yml | 1 + _includes/collection.html | 4 +++- _includes/slider.html | 2 +- de/statements/vocab.md | 6 +++--- en/statement.hbs | 3 ++- en/statements/vocab.md | 6 +++--- es/statements/vocab.md | 6 +++--- et/statements/vocab.md | 6 +++--- fi/statements/vocab.md | 6 +++--- fr/statements/vocab.md | 6 +++--- pl/statements/vocab.md | 6 +++--- 13 files changed, 32 insertions(+), 28 deletions(-) diff --git a/Dockerfile b/Dockerfile index d6f6e9c4..ad198109 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ WORKDIR /app EXPOSE 4000 RUN bundle install && jekyll build -CMD ["jekyll", "serve", "--host", "0.0.0.0"] +CMD ["jekyll", "serve", "-c","_config.yml,_environment.yml","--host", "0.0.0.0"] #FROM nginx:1.19.2-alpine AS final #COPY --from=build /app/_site /usr/share/nginx/html diff --git a/_config.yml b/_config.yml index fb54bd63..07200572 100755 --- a/_config.yml +++ b/_config.yml @@ -1,6 +1,6 @@ -name: rightsstatements.org -url: //rightsstatements.org -canonical_url: //rightsstatements.org +name: rightsstatements-website +url: +canonical_url: app_url : markdown: kramdown kramdown: diff --git a/_environment.yml b/_environment.yml index 314b9899..04558b90 100644 --- a/_environment.yml +++ b/_environment.yml @@ -1,2 +1,3 @@ app_url : http://localhost:9000 url: http://localhost:4000 +canonical_url: http://localhost:9000 diff --git a/_includes/collection.html b/_includes/collection.html index 921b3af2..6ee7be0f 100644 --- a/_includes/collection.html +++ b/_includes/collection.html @@ -6,7 +6,9 @@
    - + + +
    diff --git a/_includes/slider.html b/_includes/slider.html index dc6d0394..790b8465 100755 --- a/_includes/slider.html +++ b/_includes/slider.html @@ -4,7 +4,7 @@ {% for slide in site.data.slides %}
  • - +
    diff --git a/de/statements/vocab.md b/de/statements/vocab.md index 825ae2dc..8a069f50 100644 --- a/de/statements/vocab.md +++ b/de/statements/vocab.md @@ -20,7 +20,7 @@ Die Rechtehinweise wurden speziell für die Bedürfnisse der Kulturerbeeinrichtu

    Urheberrechtsschutz

    - +

    Hinweise für Werke die urheberrechtlich geschützt sind

    @@ -29,7 +29,7 @@ Die Rechtehinweise wurden speziell für die Bedürfnisse der Kulturerbeeinrichtu

    Kein Urheberrechtsschutz

    - +

    Hinweise für Werke die nicht urheberrechtlich geschützt sind

    @@ -38,7 +38,7 @@ Die Rechtehinweise wurden speziell für die Bedürfnisse der Kulturerbeeinrichtu

    Andere

    - +

    Hinweise für Werke die nicht urheberrechtlich geschützt sind

    diff --git a/en/statement.hbs b/en/statement.hbs index 5e78332a..a127b54c 100644 --- a/en/statement.hbs +++ b/en/statement.hbs @@ -28,7 +28,8 @@
    - +{{!-- --}} +
    diff --git a/en/statements/vocab.md b/en/statements/vocab.md index d3820949..0aa74f4b 100644 --- a/en/statements/vocab.md +++ b/en/statements/vocab.md @@ -21,7 +21,7 @@ The rights statements have been specifically developed for the needs of cultural

    In Copyright

    - +

    Statements for works that are in copyright

    @@ -30,7 +30,7 @@ The rights statements have been specifically developed for the needs of cultural

    No Copyright

    - +

    Statements for works that are not in copyright

    @@ -39,7 +39,7 @@ The rights statements have been specifically developed for the needs of cultural

    Other

    - +

    Statements for works where the copyright status is unclear

    diff --git a/es/statements/vocab.md b/es/statements/vocab.md index 459863f7..d2cff68f 100644 --- a/es/statements/vocab.md +++ b/es/statements/vocab.md @@ -20,7 +20,7 @@ Estas declaraciones de derechos han sido específicamente desarrolladas para las

    Protegido por derecho de autor

    - +

    Declaraciones para obras que están protegidas por derecho de autor

    @@ -29,7 +29,7 @@ Estas declaraciones de derechos han sido específicamente desarrolladas para las

    Sin derecho de autor

    - +

    Declaraciones para obras que no están protegidas por derecho de autor

    @@ -38,7 +38,7 @@ Estas declaraciones de derechos han sido específicamente desarrolladas para las

    Otras

    - +

    Declaraciones para obras cuyo estado de derecho de autor es poco claro

    diff --git a/et/statements/vocab.md b/et/statements/vocab.md index 92406137..9dbc4574 100644 --- a/et/statements/vocab.md +++ b/et/statements/vocab.md @@ -20,7 +20,7 @@ Autoriõigusliku seisundi deklaratsioonide väljatöötamisel on lähtutud mälu

    Kehtiv autoriõigus

    - +

    Deklaratsioonid teostele, millele kehtib autoriõigus

    @@ -29,7 +29,7 @@ Autoriõigusliku seisundi deklaratsioonide väljatöötamisel on lähtutud mälu

    Autoriõigus ei kehti

    - +

    Deklaratsioonid teostele, millele ei kehti autoriõigus

    @@ -38,7 +38,7 @@ Autoriõigusliku seisundi deklaratsioonide väljatöötamisel on lähtutud mälu

    Muu

    - +

    Deklaratsioonid teostele, mille autoriõiguslik seisund on ebaselge

    diff --git a/fi/statements/vocab.md b/fi/statements/vocab.md index 61d9f2d1..1870abed 100644 --- a/fi/statements/vocab.md +++ b/fi/statements/vocab.md @@ -21,7 +21,7 @@ Käyttöoikeuskuvaukset on suunniteltu erityisesti kulttuuriperintölaitosten ja

    Tekijänoikeuden piirissä

    - +

    Kuvaukset tekijänoikeuden suojaamille teoksille

    @@ -30,7 +30,7 @@ Käyttöoikeuskuvaukset on suunniteltu erityisesti kulttuuriperintölaitosten ja

    Ei tekijänoikeutta

    - +

    Kuvaukset teoksille, joita tekijänoikeus ei suojaa

    @@ -39,7 +39,7 @@ Käyttöoikeuskuvaukset on suunniteltu erityisesti kulttuuriperintölaitosten ja

    Muut

    - +

    Kuvaukset teoksille, joiden tekijänoikeudellinen status on epäselvä

    diff --git a/fr/statements/vocab.md b/fr/statements/vocab.md index 285cb4ca..011fc812 100644 --- a/fr/statements/vocab.md +++ b/fr/statements/vocab.md @@ -20,7 +20,7 @@ Les déclarations des droits sont spécifiquement élaborées pour répondre aux

    PROTECTION PAR LE DROIT D'AUTEUR

    - +

    Déclarations destinées aux œuvres protégées par le droit d'auteur

    @@ -29,7 +29,7 @@ Les déclarations des droits sont spécifiquement élaborées pour répondre aux

    ABSENCE DE PROTECTION PAR LE DROIT D'AUTEUR

    - +

    Déclarations destinées aux œuvres non protégées par le droit d'auteur

    @@ -38,7 +38,7 @@ Les déclarations des droits sont spécifiquement élaborées pour répondre aux

    AUTRES

    - +

    Déclarations destinées aux œuvres dont le statut en matière de droit d'auteur n'est pas clair.

    diff --git a/pl/statements/vocab.md b/pl/statements/vocab.md index b5a4f5c2..eba9c6b4 100644 --- a/pl/statements/vocab.md +++ b/pl/statements/vocab.md @@ -20,7 +20,7 @@ Oświadczenia prawne zostały opracowane wyłącznie na potrzeby instytucji dzie

    Objęty Pełną Ochroną Prawnoautorską

    - +

    Oświadczenia dla utworów, które są objęte pełną ochroną prawnoautorską

    @@ -29,7 +29,7 @@ Oświadczenia prawne zostały opracowane wyłącznie na potrzeby instytucji dzie

    Nie Objęty Ochroną Autorskich Praw Majątkowych

    - +

    Oświadczenia dla utworów, które nie są objęte ochroną autorskich praw majątkowych

    @@ -38,7 +38,7 @@ Oświadczenia prawne zostały opracowane wyłącznie na potrzeby instytucji dzie

    Pozostałe

    - +

    Oświadczenia dla utworów z niejasnym statusem prawnoautorskim

    From 98be40826a7a8a5fbc46df35cc86082aa03b8e66 Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Wed, 28 Aug 2024 20:38:11 +0200 Subject: [PATCH 07/55] Changes for missing resources like css images etc --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ad198109..ef262fb3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,9 +4,10 @@ RUN gem install jekyll bundler COPY . /app WORKDIR /app EXPOSE 4000 -RUN bundle install && jekyll build +ENV JEKYLL_ENV=production +RUN bundle install && bundle exec jekyll build -CMD ["jekyll", "serve", "-c","_config.yml,_environment.yml","--host", "0.0.0.0"] +CMD ["bundle", "exec","jekyll", "serve", "-c","_config.yml,_environment.yml","--host","0.0.0.0"] #FROM nginx:1.19.2-alpine AS final #COPY --from=build /app/_site /usr/share/nginx/html From b8269bbfeac311da30eec664515745efbdb5f35a Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Wed, 28 Aug 2024 22:09:18 +0200 Subject: [PATCH 08/55] Changes for missing resources like css images etc --- _environment.yml => _environment.template.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename _environment.yml => _environment.template.yml (100%) diff --git a/_environment.yml b/_environment.template.yml similarity index 100% rename from _environment.yml rename to _environment.template.yml From 9e35151599b3bb63b71f6c3ab7244cba50b28c70 Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Thu, 29 Aug 2024 09:55:27 +0200 Subject: [PATCH 09/55] Changes for missing resources like css images etc --- _includes/collection.html | 6 ++++-- _includes/nav.html | 8 ++++---- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/_includes/collection.html b/_includes/collection.html index 6ee7be0f..b8246b8b 100644 --- a/_includes/collection.html +++ b/_includes/collection.html @@ -1,3 +1,5 @@ +--- +---
    {% raw %} {{#resource "{% endraw %}http://rightsstatements.org/vocab/{{ include.collection_id }}/{{ site.rights_data_version }}/{% raw %}" data.[@graph]}} @@ -6,13 +8,13 @@
    -

    {% raw %}{{ prefLabel.[@value] }}

    +

    {% raw %}{{ prefLabel.[@value] }}

    {{ scopeNote.[@value] }}

    URI: {{a [@id] }}

    diff --git a/_includes/nav.html b/_includes/nav.html index 4362744f..bf4101b9 100644 --- a/_includes/nav.html +++ b/_includes/nav.html @@ -29,20 +29,20 @@

    {% if item.path contains "//" %} {% capture href %}{{ item.path }}{% endcapture %} {% else %} - {% capture href %}{{ site.baseurl }}/{{ page.lang }}{{ item.path }}{% endcapture %} + {% capture href %}{{ site.url }}/{{ page.lang }}{{ item.path }}{% endcapture %} {% endif %} {% if item.children and site.default_language == page.lang %}
  • {{ label }} From e284cd577c8eb76528daa7c7963fb9f7fe7f0e4b Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Tue, 3 Sep 2024 09:56:46 +0200 Subject: [PATCH 10/55] Changes for fixing hardcoded urls --- _includes/collection.html | 32 ++++++++++++++------------------ 1 file changed, 14 insertions(+), 18 deletions(-) diff --git a/_includes/collection.html b/_includes/collection.html index b8246b8b..07d5e67a 100644 --- a/_includes/collection.html +++ b/_includes/collection.html @@ -1,26 +1,22 @@ ---- ----
    -{% raw %} - {{#resource "{% endraw %}http://rightsstatements.org/vocab/{{ include.collection_id }}/{{ site.rights_data_version }}/{% raw %}" data.[@graph]}} + {% raw %} + {{#resource "{% endraw %}{{site.app_url}}/vocab/{{ include.collection_id }}/{{ site.rights_data_version }}/{% raw %}" data.[@graph]}} {{#property member data.[@graph] sort="prefLabel asc"}} -
    -
    -
    -
    - - - -
    -
    -
    -

    {% raw %}{{ prefLabel.[@value] }}

    -

    {{ scopeNote.[@value] }}

    -

    URI: {{a [@id] }}

    +
    +
    +
    +
    +
    +
    +

    {% raw %}{{ prefLabel.[@value] }}

    +

    {{ scopeNote.[@value] }}

    +

    URI: {{a [@id] }}

    +
    +
    {{/property}} {{/resource}} -{% endraw %} + {% endraw %}
    From 320be476dc19c8b55bbce0799c3c28cd7f8b3cc1 Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Tue, 3 Sep 2024 12:29:03 +0200 Subject: [PATCH 11/55] Changes for fixing hardcoded urls --- _includes/nav.html | 4 +-- en/_posts/2018-06-08-translations.md | 5 +-- .../2018-12-21-where-statements-apply.md | 28 +++++++-------- ...-05-24-what-are-rights-statements-about.md | 4 +-- ...2019-05-28-rightsstatements-in-wikidata.md | 2 +- .../2019-07-30-french-polish-translations.md | 6 ++-- en/_posts/2020-02-28-2019-annual-report.md | 4 +-- en/documentation/changelog.md | 14 ++++---- en/documentation/faq.md | 6 ++-- en/documentation/translations.md | 34 +++++++++---------- en/documentation/usage_guidelines.md | 24 ++++++------- en/get_involved.md | 7 ++-- 12 files changed, 71 insertions(+), 67 deletions(-) diff --git a/_includes/nav.html b/_includes/nav.html index bf4101b9..d5e7bc0f 100644 --- a/_includes/nav.html +++ b/_includes/nav.html @@ -34,7 +34,7 @@

    {% if item.children and site.default_language == page.lang %}
  • {{ label }} diff --git a/en/_posts/2018-06-08-translations.md b/en/_posts/2018-06-08-translations.md index f9df1780..9a38413c 100644 --- a/en/_posts/2018-06-08-translations.md +++ b/en/_posts/2018-06-08-translations.md @@ -7,12 +7,13 @@ date: 2018-06-08 12:00:00 Welcome to the rightsstatements.org blog! We will use this blog to share information about the development of rightsstatements.org and about the resources that can help you implementing our rights statements. -We're happy to start with the great news that the official translations of all 12 statements into [German](http://rightsstatements.org/page/1.0/?language=de) and [Estonian](http://rightsstatements.org/page/1.0/?language=et) are now published and available for everyone to use. +We're happy to start with the great news that the official translations of all 12 statements into [German]({{site.app_url}}/page/1.0/?language=de) and [Estonian]({{site.app_url}}/page/1.0/?language=et) are now published and available for everyone to use. We'd like to thank [Ellen Euler](https://pro.europeana.eu/person/ellen-euler) and [Ilja Braun](http://www.iljabraun.de/) for being the first volunteer and working with us to develop the German translation, and [Vahur Pruik](https://pro.europeana.eu/person/vahur-puik) and [Tanel Pern](https://www.etis.ee/CV/Tanel_Pern/est) for their work delivering the Estonian translation. We would also like to thank everyone else who contributed to these translations via the public review or otherwise. -Using the translated version of the statements don't require any extra work. If your browser language is set to German or Estonian, you will automatically see the statements in your chosen language. Alternatively you can browse the [German](http://rightsstatements.org/de/) and [Estonian](http://rightsstatements.org/et/) pages. +Using the translated version of the statements don't require any extra work. If your browser language is set to German or Estonian, you will automatically see the statements in your chosen language. Alternatively you can browse the [German]({{site.app_url}}/de/) and [Estonian]({{site.app_url}}/et/) pages. ### Upcoming translations We currently have Portuguese, Spanish, Finnish, Swedish, Finland Swedish and Polish translations of the statements underway. All official translations are undertaken by volunteers following our [translations policy](http://rightsstatements.org/en/documentation/translations.html). Once an application has progressed through the quality control steps laid out in the policy, the translations are published on rightsstatements.org. If you are interested in providing an official translation, please contact us at [info@rightsstatements.org](mailto:info@rightsstatements.org). + diff --git a/en/_posts/2018-12-21-where-statements-apply.md b/en/_posts/2018-12-21-where-statements-apply.md index f23caff1..306ff3e0 100644 --- a/en/_posts/2018-12-21-where-statements-apply.md +++ b/en/_posts/2018-12-21-where-statements-apply.md @@ -7,9 +7,9 @@ date: "2018-12-21 09:00:00 -0700" One of the most frequently asked questions about the rightsstatements.org statements is if they apply to _original works_ (i.e. a painting) or the _digital objects_ (i.e. a specific digital representation of the painting in the form of an image file). -Our statements have been purposively designed so that they can be applied to _digital objects_ to make it easier for users of the _digital objects_ to determine the copyright and reuse status. This design process and principles are documented in the [right statements white paper](https://rightsstatements.org/en/documentation/rights-statements-white-paper/). The primary use case would be a cultural heritage institution that displays a rights statement next to a _digital object_ on its website. In this scenario the statement indicates the copyright and reuse information of that _digital object_. +Our statements have been purposively designed so that they can be applied to _digital objects_ to make it easier for users of the _digital objects_ to determine the copyright and reuse status. This design process and principles are documented in the [right statements white paper]({{site.app_url}}/en/documentation/rights-statements-white-paper/). The primary use case would be a cultural heritage institution that displays a rights statement next to a _digital object_ on its website. In this scenario the statement indicates the copyright and reuse information of that _digital object_. -In addition most of our statements can also be used to indicate the copyright status of _original works_. For example a website may want to use the [In Copyright statement](https://rightsstatements.org/vocab/InC/1.0/) to indicate that a book is in copyright without providing access to a specific digital representation of the book. +In addition most of our statements can also be used to indicate the copyright status of _original works_. For example a website may want to use the [In Copyright statement]({{site.app_url}}/vocab/InC/1.0/) to indicate that a book is in copyright without providing access to a specific digital representation of the book. Most often the _digital object_ and the _original work_ will have the same copyright status. However it is worth worth bearing in mind the realities of the digitisation process. In many jurisdictions, additional copyrights, permissions and restrictions that affect the status of the _digital object_ can be created during as a result of acquisition or the process of digitising an _original work_. As a matter of policy and practice we strongly believe that digitisation should not create a new layer of restrictions, and to the extent that restrictions are created, those should be waived. In situations where such additional rights or restrictions do exist, this should be reflected by rights statements that are applied at the level of the _digital object_. @@ -19,33 +19,33 @@ This means that as our statements have been designed to reflect the status of a The following three statements refer to the copyright status of both the _digital object_ and the _original work_: -* [In Copyright](https://rightsstatements.org/vocab/InC/1.0/) -* [In Copyright - EU Orphan Work](https://rightsstatements.org/vocab/InC-OW-EU/1.0/) -* [In Copyright - Rights-holder(s) Unlocatable or Unidentifiable](https://rightsstatements.org/vocab/InC-RUU/1.0/) +* [In Copyright]({{site.app_url}}/vocab/InC/1.0/) +* [In Copyright - EU Orphan Work]({{site.app_url}}/vocab/InC-OW-EU/1.0/) +* [In Copyright - Rights-holder(s) Unlocatable or Unidentifiable]({{site.app_url}}/vocab/InC-RUU/1.0/) The remaining two statements describe additional permissions on top of the copyright status, which apply only to the _digital object_. -* [In Copyright - Educational Use Permitted](https://rightsstatements.org/vocab/InC-EDU/1.0/) -* [In Copyright - Non-Commercial Use Permitted](https://rightsstatements.org/vocab/InC-NC/1.0/) +* [In Copyright - Educational Use Permitted]({{site.app_url}}/vocab/InC-EDU/1.0/) +* [In Copyright - Non-Commercial Use Permitted]({{site.app_url}}/vocab/InC-NC/1.0/) As such, these statements can be used to indicate re-use conditions of _digital objects_ but should not be used for _original works_ (instead the [Creative Commons licenses](https://www.creativecommons.org/) should be used for granting permissions to use copyrighted _works_). ### Rights statements for objects that are not in copyright -In this category the [No Copyright - United States](https://rightsstatements.org/vocab/NoC-US/1.0/) refers to the copyright status of both the _original work_ and its _digital object_. Unlike other statement in this category, no additional restrictions on reuse are expressed beyond its Public Domain status. It is also distinct because this public domain status depends on the physical location of the user of the _digital object_. +In this category the [No Copyright - United States]({{site.app_url}}/vocab/NoC-US/1.0/) refers to the copyright status of both the _original work_ and its _digital object_. Unlike other statement in this category, no additional restrictions on reuse are expressed beyond its Public Domain status. It is also distinct because this public domain status depends on the physical location of the user of the _digital object_. The remaining three statements indicate the status of the _digital object_ only. Each of these statements identifies restrictions or explicit permission that are different from the original out of copyright work. -* [No Copyright - Contractual Restrictions](https://rightsstatements.org/vocab/NoC-CR/1.0/) -* [No Copyright - Non-Commercial Use](https://rightsstatements.org/vocab/NoC-NC/1.0/) -* [No Copyright - Other Known Legal Restrictions](https://rightsstatements.org/vocab/NoC-OKLR/1.0/) +* [No Copyright - Contractual Restrictions]({{site.app_url}}/vocab/NoC-CR/1.0/) +* [No Copyright - Non-Commercial Use]({{site.app_url}}/vocab/NoC-NC/1.0/) +* [No Copyright - Other Known Legal Restrictions]({{site.app_url}}/vocab/NoC-OKLR/1.0/) ### Other rights statements All three statements in this category can be used for the _original work_ and _digital copies_ as the rights status is identical for both. -* [Copyright Not Evaluated](https://rightsstatements.org/vocab/CNE/1.0/) -* [Copyright Undetermined](https://rightsstatements.org/vocab/UND/1.0/) -* [No Known Copyright](https://rightsstatements.org/vocab/NKC/1.0/) +* [Copyright Not Evaluated]({{site.app_url}}/vocab/CNE/1.0/) +* [Copyright Undetermined]({{site.app_url}}/vocab/UND/1.0/) +* [No Known Copyright]({{site.app_url}}/vocab/NKC/1.0/) In the new year we will publish a follow up post that will dive deeper into the technical details of how our statements can be applied to the different layers discussed in this post. diff --git a/en/_posts/2019-05-24-what-are-rights-statements-about.md b/en/_posts/2019-05-24-what-are-rights-statements-about.md index 6b49e542..0366ff1a 100644 --- a/en/_posts/2019-05-24-what-are-rights-statements-about.md +++ b/en/_posts/2019-05-24-what-are-rights-statements-about.md @@ -6,9 +6,9 @@ date: 2019-05-24 12:00:00 --- _Richard J. Urban, Ph.D., Digital Asset Manager & Strategist, [Corning Museum Of Glass](https://www.cmog.org/)_ -The [previous post](https://rightsstatements.org/en/2018/12/where-statements-apply.html) discussed how the rights statements provided by RightsStatements.org may apply to different kinds of _digital_ or _original_ works. While these rights statements were designed primarily for use in the context of digitization of material culture (for example, Europeana and DPLA), this post outlines the complexities of the relationships between an original artifact and its digital surrogate. +The [previous post]({{site.app_url}}/en/2018/12/where-statements-apply.html) discussed how the rights statements provided by RightsStatements.org may apply to different kinds of _digital_ or _original_ works. While these rights statements were designed primarily for use in the context of digitization of material culture (for example, Europeana and DPLA), this post outlines the complexities of the relationships between an original artifact and its digital surrogate. -In the [_Requirements for the Technical Infrastructure for Standardized International Rights Statements_](https://rightsstatements.org/files/180117requirements_for_the_technical_infrastructure_for_standardized_international_rights_statements_v1.2.1.pdf) the RightsStatements.org Technical Working Group has outlined an answer to the question of what a rights statement is "about" by providing examples of how statements may be used within specific metadata standards. Each of these standards and best practices have different ways of resolving the "aboutness" of statements. +In the [_Requirements for the Technical Infrastructure for Standardized International Rights Statements_]({{site.app_url}}/files/180117requirements_for_the_technical_infrastructure_for_standardized_international_rights_statements_v1.2.1.pdf) the RightsStatements.org Technical Working Group has outlined an answer to the question of what a rights statement is "about" by providing examples of how statements may be used within specific metadata standards. Each of these standards and best practices have different ways of resolving the "aboutness" of statements. In order to provide a technical infrastructure for the rights statements, the Technical Working Group choose to model the statements as a Simple Knowledge Organization ([SKOS](https://www.w3.org/2004/02/skos/)) vocabulary. SKOS is commonly used for representing knowledge organization structures, such as thesauri, taxonomies, and subject headings. We felt that the purpose of the rights statements was to perform a similar function within the information systems provided by DPLA and Europeana. Just as the "subject" of a book requires analysis by a cataloger, we felt the myriad ways cultural heritage organizations expressed rights over cultural resources could be classified by a well organized vocabulary of terms. The purpose of the statements was not to provide a legally binding license. Rather, a rights statement represents a judgment about a complex and interwoven legal state-of-affairs in order to facilitate finding, identifying, and obtaining cultural resources online. diff --git a/en/_posts/2019-05-28-rightsstatements-in-wikidata.md b/en/_posts/2019-05-28-rightsstatements-in-wikidata.md index 3e4d7e15..fc17fcd4 100644 --- a/en/_posts/2019-05-28-rightsstatements-in-wikidata.md +++ b/en/_posts/2019-05-28-rightsstatements-in-wikidata.md @@ -14,7 +14,7 @@ _Liam is the Europeana Foundation's Wikimedia community liaison, and was the wor Many followers of RightsStatements.org may be familiar with [Wikidata](https://www.wikidata.org/). The six year old repository of metadata that is increasingly becoming a hub of structured information. Representing topics even more diverse than the famously wide-ranging _Wikipedia_, it currently contains more than 55 million _Items_, all CC0 licensed, and utilises more than [5,000](https://tools.wmflabs.org/hay/propbrowse/) _Properties_ to describe them - and is growing rapidly. -_RightsStatement_ has now been added as a structured metadata concept in its own right. Consistent with the open-access and “anyone can edit” methodology, this addition was preceded by a proposal by a community member, the customary [discussion process](https://www.wikidata.org/wiki/Wikidata:Property_proposal/rights_statement) until consensus was reached, and a [post on this blog](https://rightsstatements.org/en/2018/12/where-statements-apply.html) responding to specific questions raised during the debate. +_RightsStatement_ has now been added as a structured metadata concept in its own right. Consistent with the open-access and “anyone can edit” methodology, this addition was preceded by a proposal by a community member, the customary [discussion process](https://www.wikidata.org/wiki/Wikidata:Property_proposal/rights_statement) until consensus was reached, and a [post on this blog]({{site.app_url}}/en/2018/12/where-statements-apply.html) responding to specific questions raised during the debate. This means that for a Wikidata _item_ which represents an individual creative work, it is now possible to make the claim, “RightsStatement status according to source website” alongside the relevant Statement, with a URL reference to the source. diff --git a/en/_posts/2019-07-30-french-polish-translations.md b/en/_posts/2019-07-30-french-polish-translations.md index f3246198..45bf5930 100644 --- a/en/_posts/2019-07-30-french-polish-translations.md +++ b/en/_posts/2019-07-30-french-polish-translations.md @@ -5,8 +5,8 @@ filename: french-polish-translations date: "2019-07-30 09:00:00 -0700" --- -Adding to a growing suit of multilingual statements, our statements are now published in [French](https://rightsstatements.org/page/1.0/?language=fr) and [Polish](https://rightsstatements.org/page/1.0/?language=pl) and are available for everyone to use. +Adding to a growing suit of multilingual statements, our statements are now published in [French]({{site.app_url}}/page/1.0/?language=fr) and [Polish]({{site.app_url}}/page/1.0/?language=pl) and are available for everyone to use. -We'd like to thank our partners in Poland, and the tri-partite effort to develop the French translations by partners from Luxembourg, France and Canada. We'd also like to thank everyone else who contributed to these translations, through the development of them or the public consultation. +We'd like to thank our partners in Poland, and the tri-partite effort to develop the French translations by partners from Luxembourg, France and Canada. We'd also like to thank everyone else who contributed to these translations, through the development of them or the public consultation. -If you want to view the statements in any of the seven official languages, you can access them [here](https://rightsstatements.org/en/documentation/translations.html). If your browser is set to a language that the statement has been translated into, you will automatically see the translation. If no translation has been published in the language of your browser, or your browser is set to English, you will automatically see the English language statements. +If you want to view the statements in any of the seven official languages, you can access them [here]({{site.app_url}}/en/documentation/translations.html). If your browser is set to a language that the statement has been translated into, you will automatically see the translation. If no translation has been published in the language of your browser, or your browser is set to English, you will automatically see the English language statements. diff --git a/en/_posts/2020-02-28-2019-annual-report.md b/en/_posts/2020-02-28-2019-annual-report.md index ae50146d..d86f133f 100644 --- a/en/_posts/2020-02-28-2019-annual-report.md +++ b/en/_posts/2020-02-28-2019-annual-report.md @@ -6,7 +6,7 @@ filename: 2019-annual-report --- *Ariadna Matas, Junior Policy Advisor, Europeana Foundation* -In 2019, institutions such as the National Library of Scotland launched their collections site using rights statements; libraries in the US tweeted about the rights statements and creating flow-[](http://z.umn.edu/rightsreview)[charts](http://z.umn.edu/rightsreview) on how to use them in their legislation to promote their use; the National Library of New Zealand joined the consortium and are contributing to the work around expressing indigenous culture and intellectual property; the [Hindi translation](https://rightsstatements.org/page/1.0/?language=hi) of the rights statements (translation number 9!) was launched at an international symposium in Delhi. +In 2019, institutions such as the National Library of Scotland launched their collections site using rights statements; libraries in the US tweeted about the rights statements and creating flow-[](http://z.umn.edu/rightsreview)[charts](http://z.umn.edu/rightsreview) on how to use them in their legislation to promote their use; the National Library of New Zealand joined the consortium and are contributing to the work around expressing indigenous culture and intellectual property; the [Hindi translation]({{site.app_url}}/page/1.0/?language=hi) of the rights statements (translation number 9!) was launched at an international symposium in Delhi. 2019 has been about consolidation. Our core actions have made the operation of the consortium stronger, and ready to take on new challenges. With the start of the new year, we take a look back at 2019 and tell you about the consortium’s achievements throughout the year and plans for 2020. @@ -20,7 +20,7 @@ More translations are underway, and with that, hopefully an intention to start u ## Progress as a Consortium -In order to better support the development and implementation of the statements, we also work to ensure the sustainability and efficiency of the consortium, and we are very proud of the [progress we have made throughout 2019](https://rightsstatements.org/en/2019/08/work-plan.html). +In order to better support the development and implementation of the statements, we also work to ensure the sustainability and efficiency of the consortium, and we are very proud of the [progress we have made throughout 2019]({{site.app_url}}/en/2019/08/work-plan.html). To start off with, there were a few changes in people; both Working Groups welcomed new members and said goodbye to a few. The Statements Working Group appointed Jessica Coates, Copyright Law and Policy Advisor for the Australian Library Copyright Committee (ALCC) as Vice Chair. Julia Fallon, Senior Policy Advisor for Europeana Foundation took over as Chair of the Consortium from Paul Keller. We would like to thank Paul, who will stay on the Steering Committee, for his steady hand guiding the consortium through the past two years! diff --git a/en/documentation/changelog.md b/en/documentation/changelog.md index dfd1d6ac..b16c0ada 100644 --- a/en/documentation/changelog.md +++ b/en/documentation/changelog.md @@ -14,7 +14,7 @@ This page contains an overview of all changes made to the rights statements publ #### 2020-05-27 -Added Dutch translation of [version 1.0 of the rights statements](https://rightsstatements.org/page/1.0/?language=nl), and the [home page](https://rightsstatements.org/nl/). +Added Dutch translation of [version 1.0 of the rights statements]({{site.app_url}}/page/1.0/?language=nl), and the [home page]({{site.app_url}}/nl/). #### 2020-05-05 @@ -22,19 +22,19 @@ Minor changse to the white paper ["Requirements for the Technical Infrastructure #### 2020-02-06 -Added Lithuanian translation of [version 1.0 of the rights statements](https://rightsstatements.org/page/1.0/?language=lt), and the [home page](https://rightsstatements.org/lt/). +Added Lithuanian translation of [version 1.0 of the rights statements]({{site.app_url}}/page/1.0/?language=lt), and the [home page]({{site.app_url}}/lt/). #### 2019-12-03 -Added Hindi translation of [version 1.0 of the rights statements](https://rightsstatements.org/page/1.0/?language=hi), and the [home page](https://rightsstatements.org/hi/). +Added Hindi translation of [version 1.0 of the rights statements]({{site.app_url}}/page/1.0/?language=hi), and the [home page]({{site.app_url}}/hi/). ### 2018-06-08 -Added Estonian translation of [version 1.0 the rights statements](http://rightsstatements.org/page/1.0/?language=et), and the [home page](http://rightsstatements.org/et/). See the [translation document](/files/180606RS_1.0_translation_EE_approved.pdf) for a documentation of the translation process. +Added Estonian translation of [version 1.0 the rights statements]({{site.app_url}}/page/1.0/?language=et), and the [home page]({{site.app_url}}/et/). See the [translation document](/files/180606RS_1.0_translation_EE_approved.pdf) for a documentation of the translation process. ### 2018-06-05 -Added German translation of [version 1.0 the rights statements](http://rightsstatements.org/page/1.0/?language=de), and the [home page](http://rightsstatements.org/de/). See the [translation document](/files/180531RS_1.0_translation_DE_approved.pdf) for a documentation of the translation process. +Added German translation of [version 1.0 the rights statements]({{site.app_url}}/page/1.0/?language=de), and the [home page]({{site.app_url}}/de/). See the [translation document](/files/180531RS_1.0_translation_DE_approved.pdf) for a documentation of the translation process. ### 2018-05-31 @@ -54,10 +54,10 @@ Release of the latest revision of the white paper ["Requirements for the Technic ### 2016-06-14 -Addition of the [Copyright Undetermined](http://rightsstatements.org/vocab/UND/1.0/) statement. See the [proposal for implementation of a new rights statement](/files/160611proposal_for_implementation_UND.pdf) for more information. +Addition of the [Copyright Undetermined]({{site.app_url}}/vocab/UND/1.0/) statement. See the [proposal for implementation of a new rights statement](/files/160611proposal_for_implementation_UND.pdf) for more information. ### 2016-04-14 Initial launch of version 1.0 of the 11 rights statements as described in the white paper "[Recommendations for Standardized International Rights Statements](/files/160208recommendations_for_standardized_international_rights_statements_v1.1.pdf)." -
  • \ No newline at end of file +
    diff --git a/en/documentation/faq.md b/en/documentation/faq.md index 87fa0c21..9d028915 100644 --- a/en/documentation/faq.md +++ b/en/documentation/faq.md @@ -36,7 +36,7 @@ lang: en - How can I use these statements? - In most cases you will be using these statements as part of the process of publishing via an aggregation platform such as Europeana or the DPLA. If this is the case you should apply the rights statements in line with the metadata guidelines of the platform you are working with.

    If you are using the statements in order to label digital objects that you publish on your own website or application you should follow our [guidelines for applying the rights statements](http://rightsstatements.org/en/documentation/usage_guidelines.html). + In most cases you will be using these statements as part of the process of publishing via an aggregation platform such as Europeana or the DPLA. If this is the case you should apply the rights statements in line with the metadata guidelines of the platform you are working with.

    If you are using the statements in order to label digital objects that you publish on your own website or application you should follow our [guidelines for applying the rights statements]({{site.app_url}}/en/documentation/usage_guidelines.html). - I feel that none of the statements covers the copyright status of digital objects that I want to make available @@ -56,10 +56,10 @@ lang: en - Why are there different versions of the URIs of the statements? - The rights statements are identified by a single statement URI which takes the form `http://rightsstatements.org/vocab/[id]/[version]/`. Additionally, we offer representations of the statements in both human readable (HTML) and machine readable (RDF) formats. These representations each have their own URL, allowing them to be referenced directly where appropriate. The human readable webpage is at `http://rightsstatements.org/page/[id]/[version]/`, while the machine readable data is at `http://rightsstatements.org/data/[id]/[version]/`.

    When a web browser accesses a statement URI (`/vocab/`) it will be redirected to the URI of the webpage. When applying the rights statements to a digital object, always use the statement URI (`http://rightsstatements.org/vocab/[id]/[version]/`). This ensures consistent use in data, and that the rights information contained in the statements can be accessed by both human users and machine clients. Developers interested further implementation details should consult the [technical documentation](http://rightsstatements.org/en/documentation/). + The rights statements are identified by a single statement URI which takes the form `{{site.app_url}}/vocab/[id]/[version]/`. Additionally, we offer representations of the statements in both human readable (HTML) and machine readable (RDF) formats. These representations each have their own URL, allowing them to be referenced directly where appropriate. The human readable webpage is at `{{site.app_url}}/page/[id]/[version]/`, while the machine readable data is at `{{site.app_url}}/data/[id]/[version]/`.

    When a web browser accesses a statement URI (`/vocab/`) it will be redirected to the URI of the webpage. When applying the rights statements to a digital object, always use the statement URI (`{{site.app_url}}/vocab/[id]/[version]/`). This ensures consistent use in data, and that the rights information contained in the statements can be accessed by both human users and machine clients. Developers interested further implementation details should consult the [technical documentation]({{site.app_url}}/en/documentation/). - Will the rights statements be translated into other languages? - The rights statements and the underlying infrastructure have been designed with internationalisation support in mind. At the moment the rights statements are only available in English. Please refer to the [translations page](/en/documentation/translations.html) to learn more about ongoing translations and our translation policy. If you are interested in helping with a translation please [get in touch with us](http://rightsstatements.org/en/get_involved.html). + The rights statements and the underlying infrastructure have been designed with internationalisation support in mind. At the moment the rights statements are only available in English. Please refer to the [translations page](/en/documentation/translations.html) to learn more about ongoing translations and our translation policy. If you are interested in helping with a translation please [get in touch with us]({{site.app_url}}/en/get_involved.html).
    diff --git a/en/documentation/translations.md b/en/documentation/translations.md index b0418b2e..9a513988 100644 --- a/en/documentation/translations.md +++ b/en/documentation/translations.md @@ -15,36 +15,36 @@ The rights statements and underlying infrastructure of rightsstatements.org have The rights statements have been translated into the following languages: -* [Estonian](http://rightsstatements.org/page/1.0/?language=et) - Translation partner: [Wikimedia Eesti](https://ee.wikimedia.org/wiki/Esileht), reviewed by [Estonian Photographic Heritage Society](http://fotoparand.org.ee/wp/eng/) -* [Finnish](http://rightsstatements.org/page/1.0/?language=fi) - Translation partner: [IDE](http://ide.fi/english/index.php?file=kop1.php) and The Prime Minister's Office's translations services, reviewed by [HH Partners](https://www.hhpartners.fi/en/) -* [French](http://rightsstatements.org/page/1.0/?language=fr) - Translation partner: [Bibliothèque nationale de Luxembourg](http://bnl.lu) and [Musée national d'histoire et d'art Luxembourg](http://mnha.lu), reviewed by [Bibliothèque nationale de France](http://bnf.fr) -* [German](http://rightsstatements.org/page/1.0/?language=de) - Translation partner: Prof. [Ellen Euler](https://www.fh-potsdam.de/studieren/fachbereiche/informationswissenschaften/personen/lehrende/detailansicht/person-action/ellen-euler/show/Person/), reviewed by [Ilja Braun](http://iljabraun.de/) -* [Polish](http://rightsstatements.org/page/1.0/?language=pl) – Translation partner: [Poznań Supercomputing and Networking Center](http://www.man.poznan.pl/online/en/), reviewed by [Polish Society of Authors and Composers](https://www.zaiks.org.pl/) (ZAIKS) and [National Film Archive – Audiovisual Institute](http://www.fina.gov.pl/) (FINA) -* [Spanish](http://rightsstatements.org/page/1.0/?language=es) - Translation partner: [Museo del Cine Pablo Ducrós Hicken](http://museodelcineba.org/), reviewed by [Safe Creative](https://www.safecreative.org/) -* [Hindi ](https://rightsstatements.org/page/1.0/?language=hi)- Translation partner: [National Digital Library of India](https://ndl.iitkgp.ac.in/) and [Indian Institute of Technology Kharagpur](http://www.iitkgp.ac.in/) of India, reviewed by [Mahatma Gandhi International Hindi University, Wardha](http://www.hindivishwa.org/Default.aspx) of India -* [Lithuanian](https://rightsstatements.org/lt/) - Translation partners: the [National Library of Lithuania](https://www.lnb.lt/) and the [Professional Law Partnership iLaw](http://en.ilawfirm.lt/), reviewed by the [Baltic Audiovisual Archives Council](http://www.baacouncil.org/) (BAAC). -* [Dutch](https://rightsstatements.org/nl/) - Translation Partner: [PACKED Centre of Expertise in Digital Heritage](https://www.packed.be/en/). Reviewed by [IP Squared.com](https://ip-squared.com/) and [Beeld end Geluid](https://www.beeldengeluid.nl/en/knowledge/experts/maarten-brinkerink). -* [Italian](https://rightsstatements.org/it/) - Translation partner Marina Cotugno, [Juliafoto](https://www.juliafoto.it/about-us/). Review by Antonella De Robbio, Coordinator of [Gruppo di studio Open Access e Pubblico Dominio (GOAPD)](https://www.aib.it/struttura/commissioni-e-gruppi/gruppo-studio-open-access-pubblico-dominio/) at the Associazione Italiana Biblioteche*,* and Andrea Zanni, [MLOL](https://medialibrary.it/home/cover.aspx). -* [Croatian](https://rightsstatements.org/hr/) - Translation partner: [National and University Library in Zagreb](https://www.nsk.hr/en/). Review by [Croatian State Intellectual Property Office](https://www.dziv.hr/en/). -* [Catalan](https://rightsstatements.org/ca/) - Translation partner: [Legalment](https://www.legalment.net/). Review by Brigit Nonó, [Universitat de Girona - Biblioteca](https://www.udg.edu/ca/estructura/serveis/servei?ID=81), and Ariadna Matas, [Europeana Foundation](http://europeana.eu/) +* [Estonian]({{site.app_url}}/page/1.0/?language=et) - Translation partner: [Wikimedia Eesti](https://ee.wikimedia.org/wiki/Esileht), reviewed by [Estonian Photographic Heritage Society](http://fotoparand.org.ee/wp/eng/) +* [Finnish]({{site.app_url}}/page/1.0/?language=fi) - Translation partner: [IDE](http://ide.fi/english/index.php?file=kop1.php) and The Prime Minister's Office's translations services, reviewed by [HH Partners](https://www.hhpartners.fi/en/) +* [French]({{site.app_url}}/page/1.0/?language=fr) - Translation partner: [Bibliothèque nationale de Luxembourg](http://bnl.lu) and [Musée national d'histoire et d'art Luxembourg](http://mnha.lu), reviewed by [Bibliothèque nationale de France](http://bnf.fr) +* [German]({{site.app_url}}/page/1.0/?language=de) - Translation partner: Prof. [Ellen Euler](https://www.fh-potsdam.de/studieren/fachbereiche/informationswissenschaften/personen/lehrende/detailansicht/person-action/ellen-euler/show/Person/), reviewed by [Ilja Braun](http://iljabraun.de/) +* [Polish]({{site.app_url}}/page/1.0/?language=pl) – Translation partner: [Poznań Supercomputing and Networking Center](http://www.man.poznan.pl/online/en/), reviewed by [Polish Society of Authors and Composers](https://www.zaiks.org.pl/) (ZAIKS) and [National Film Archive – Audiovisual Institute](http://www.fina.gov.pl/) (FINA) +* [Spanish]({{site.app_url}}/page/1.0/?language=es) - Translation partner: [Museo del Cine Pablo Ducrós Hicken](http://museodelcineba.org/), reviewed by [Safe Creative](https://www.safecreative.org/) +* [Hindi ]({{site.app_url}}/page/1.0/?language=hi)- Translation partner: [National Digital Library of India](https://ndl.iitkgp.ac.in/) and [Indian Institute of Technology Kharagpur](http://www.iitkgp.ac.in/) of India, reviewed by [Mahatma Gandhi International Hindi University, Wardha](http://www.hindivishwa.org/Default.aspx) of India +* [Lithuanian]({{site.app_url}}/lt/) - Translation partners: the [National Library of Lithuania](https://www.lnb.lt/) and the [Professional Law Partnership iLaw](http://en.ilawfirm.lt/), reviewed by the [Baltic Audiovisual Archives Council](http://www.baacouncil.org/) (BAAC). +* [Dutch]({{site.app_url}}/nl/) - Translation Partner: [PACKED Centre of Expertise in Digital Heritage](https://www.packed.be/en/). Reviewed by [IP Squared.com](https://ip-squared.com/) and [Beeld end Geluid](https://www.beeldengeluid.nl/en/knowledge/experts/maarten-brinkerink). +* [Italian]({{site.app_url}}/it/) - Translation partner Marina Cotugno, [Juliafoto](https://www.juliafoto.it/about-us/). Review by Antonella De Robbio, Coordinator of [Gruppo di studio Open Access e Pubblico Dominio (GOAPD)](https://www.aib.it/struttura/commissioni-e-gruppi/gruppo-studio-open-access-pubblico-dominio/) at the Associazione Italiana Biblioteche*,* and Andrea Zanni, [MLOL](https://medialibrary.it/home/cover.aspx). +* [Croatian]({{site.app_url}}/hr/) - Translation partner: [National and University Library in Zagreb](https://www.nsk.hr/en/). Review by [Croatian State Intellectual Property Office](https://www.dziv.hr/en/). +* [Catalan]({{site.app_url}}/ca/) - Translation partner: [Legalment](https://www.legalment.net/). Review by Brigit Nonó, [Universitat de Girona - Biblioteca](https://www.udg.edu/ca/estructura/serveis/servei?ID=81), and Ariadna Matas, [Europeana Foundation](http://europeana.eu/) ## Translations under public review As described in our [translation policy](/en/documentation/translation-policy/), every draft translation is published for a public comment period of 4 -weeks. If you wish to review a draft translation, please contact us at [info@rightsstatements.org](mailto:info@rightsstatements.org) indicating the language that you wish to review. +weeks. If you wish to review a draft translation, please contact us at [info@rightsstatements.org](mailto:info@rightsstatements.org) indicating the language that you wish to review. -We will give you access to the system we use for this purpose so that you can complete your revision. The feedback from the public comment period will be addressed by the translation partner together with the reviewer(s). +We will give you access to the system we use for this purpose so that you can complete your revision. The feedback from the public comment period will be addressed by the translation partner together with the reviewer(s). ## Ongoing translation efforts There are currently 5 translation efforts underway: -* **Portuguese** - Translation partner: [Instituto Moreira Salles](https://ims.com.br/), translator [Creative Commons Brazil](https://br.creativecommons.org/). Review by [Creative Commons Portugal](http://creativecommons.pt/). +* **Portuguese** - Translation partner: [Instituto Moreira Salles](https://ims.com.br/), translator [Creative Commons Brazil](https://br.creativecommons.org/). Review by [Creative Commons Portugal](http://creativecommons.pt/). * **Finland Swedish** - Translation partner: [IDE](http://ide.fi/english/index.php?file=kop1.php) and The Prime Minister's Office's translations services. Review by [HH Partners](https://www.hhpartners.fi/en/) [*under review by RightsStatements.org*] * **Swedish** - Translation partner: [Digisam](http://www.digisam.se/?lang=en), Swedish National Heritage Board. Review by the [Swedish Intellectual Property Office](www.prv.se/In-English/). * **Bangla** - Translation partner [National Digital Library of India](https://ndl.iitkgp.ac.in/) (NDLI) and [Indian Institute of Technology Kharagpur](http://www.iitkgp.ac.in/) of India. Review by [Jadavpur University](http://www.jaduniv.edu.in/) of India -* **Serbian** - Translation partner [Wikimedia Serbia](http://wikimedia.rs/). Translation by Nevenka Antic, [Creative Commons Serbia](http://creativecommons.org.rs/). Review by the [National Library of Serbia](https://www.nb.rs/?change_lang=en). +* **Serbian** - Translation partner [Wikimedia Serbia](http://wikimedia.rs/). Translation by Nevenka Antic, [Creative Commons Serbia](http://creativecommons.org.rs/). Review by the [National Library of Serbia](https://www.nb.rs/?change_lang=en). Applications from new translation partners should be sent to [info@rightsstatements.org](mailto:info@rightsstatements.org). -
  • \ No newline at end of file +
    diff --git a/en/documentation/usage_guidelines.md b/en/documentation/usage_guidelines.md index 49b63421..506e8654 100644 --- a/en/documentation/usage_guidelines.md +++ b/en/documentation/usage_guidelines.md @@ -26,35 +26,35 @@ In the online environment the rights statements should be used by linking to the 1) Using the button provided by RightsStatements.org and linking the button image to the rights statement URI:
    - + In Copyright - Educational Use Permitted
    -This can be done by using the following bit of code (using the example of the [In Copyright - Educational Use Permitted](https://rightsstatements.org/vocab/InC-EDU/1.0/") statement): +This can be done by using the following bit of code (using the example of the [In Copyright - Educational Use Permitted]({{site.app_url}}/vocab/InC-EDU/1.0/") statement): - + In Copyright - Educational Use Permitted + src="{{site.app_url}}/files/buttons/InC-EDU.dark-white-interior.png"/>
    2) Using an image of the category icon followed by the full name of the rights statement and linking the full name of the rights statement to the URI of the rights statement.
    -In Copyright - Educational Use Permitted - + In Copyright - Educational Use Permitted
    -This can be done by using the following bit of code (using the example of the [In Copyright - Educational Use Permitted](https://rightsstatements.org/vocab/InC-EDU/1.0/") statement): +This can be done by using the following bit of code (using the example of the [In Copyright - Educational Use Permitted]({{site.app_url}}/vocab/InC-EDU/1.0/") statement): - In Copyright - Educational Use Permitted - + In Copyright - Educational Use Permitted @@ -62,10 +62,10 @@ This can be done by using the following bit of code (using the example of the [I 3) Using the full name of the rights statement as a link to the URI of the rights statement.
    -In Copyright - Educational Use Permitted +In Copyright - Educational Use Permitted
    - + In Copyright - Educational Use Permitted diff --git a/en/get_involved.md b/en/get_involved.md index 4f811725..5bac0251 100644 --- a/en/get_involved.md +++ b/en/get_involved.md @@ -12,14 +12,17 @@ RightsStatements.org is run by a consortium consisting of [Europeana](http://eur ### Find out how to use the rights statement in your organisation -- check out our [documentation](http://rightsstatements.org/en/documentation/) +- check out our [documentation] ### Interested in developing the statements in your native language? -- read about our [translations](http://rightsstatements.org/en/documentation/translations.html) and get in touch +- read about our [translations] and get in touch ### Keep up to date on the latest news - follow us on [Twitter](https://twitter.com/rightsstmts) If you're interested in finding out more information about membership of the consortium or the working groups, or have any other questions please [contact us](mailto:info@rightsstatements.org). + +[documentation]: {{site.url}}/en/documentation/ +[translations]: {{site.url}}/en/documentation/translations.html From 3e9066a7b116cc5a5d4f0dac74f030d5c45868c9 Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Wed, 4 Sep 2024 00:38:20 +0200 Subject: [PATCH 12/55] Changes for fixing hardcoded urls --- _includes/collection.html | 2 +- en/about.md | 35 ++++++++++++++++++----------------- en/documentation/index.md | 4 ++-- 3 files changed, 21 insertions(+), 20 deletions(-) diff --git a/_includes/collection.html b/_includes/collection.html index 07d5e67a..f0969377 100644 --- a/_includes/collection.html +++ b/_includes/collection.html @@ -1,6 +1,6 @@
    {% raw %} - {{#resource "{% endraw %}{{site.app_url}}/vocab/{{ include.collection_id }}/{{ site.rights_data_version }}/{% raw %}" data.[@graph]}} + {{#resource "{% endraw %}http://rightsstatements.org/vocab/{{ include.collection_id }}/{{ site.rights_data_version }}/{% raw %}" data.[@graph]}} {{#property member data.[@graph] sort="prefLabel asc"}}
    diff --git a/en/about.md b/en/about.md index f57aba8d..edb4ea52 100644 --- a/en/about.md +++ b/en/about.md @@ -28,24 +28,24 @@ The rightsstatements.org consortium is a member based organisation - currently c
    @@ -54,7 +54,7 @@ The development of the consortium is overseen by a Steering Committee. The deve The Steering Committee made up of 11 representatives of the members, and includes the co-chairs of the working groups. Seats on the Committee, including the chair and vice chair, are fixed for two years, renewable consecutively once. The Committee meets bi-monthly, and holds one in-person meeting annually. -The first annual meeting of the Steering Committee was held in September 2017, at the offices of Europeana Foundation, The Hague, Netherlands. The minutes of that meeting are publicly [available here](https://docs.google.com/document/d/1FHgxm9YF4ZWBtcDRjfBvcm8SG984cS1bVhPLpmTXQ28/). +The first annual meeting of the Steering Committee was held in September 2017, at the offices of Europeana Foundation, The Hague, Netherlands. The minutes of that meeting are publicly [available here](https://docs.google.com/document/d/1FHgxm9YF4ZWBtcDRjfBvcm8SG984cS1bVhPLpmTXQ28/). Chair: Julia Fallon, Europeana Foundation @@ -78,21 +78,21 @@ Coordinator: Ariadna Matas, Europeana Foundation The Consortium Steering Committee prepares annual work plans to structure its work and steps towards achieving its objectives: -[Work Plan for 2019](https://rightsstatements.org/files/190812_workplan.pdf) +[Work Plan for 2019]({{site.url}}/files/190812_workplan.pdf) -[Work Plan for 2020](https://rightsstatements.org/files/rights-statements-2020-work-plan.pdf) +[Work Plan for 2020]({{site.url}}/files/rights-statements-2020-work-plan.pdf) -[Work Plan for 2021](https://rightsstatements.org/files/rights-statements-2021-work-plan.pdf) +[Work Plan for 2021]({{site.url}}/files/rights-statements-2021-work-plan.pdf) ## Working Groups -Two working groups take forward the basic principles and technical infrastructure that was developed by DPLA and Europeana-based working groups. Each group is led by two co-chairs, and is comprised of individuals with knowledge and expertise in their respective fields. Members of the working group have a dual role of represent the members of the consortium as well as the needs of cultural heritage organisations. +Two working groups take forward the basic principles and technical infrastructure that was developed by DPLA and Europeana-based working groups. Each group is led by two co-chairs, and is comprised of individuals with knowledge and expertise in their respective fields. Members of the working group have a dual role of represent the members of the consortium as well as the needs of cultural heritage organisations. There are currently two active working groups. The International Rights Statements Working Group and the Technical Working Group. ### International Rights Statements Working Group -The task of the International Rights Statements Working Group is to steward the development of the rights statements offered by RightsStatements.org. Its main purpose is to ensure that the rights statements address the needs of cultural heritage institutions and aggregation platforms while ensuring that the conform to the design principles identified in the white paper "[Recommendations for Standardized International Rights Statements](/en/documentation/rights-statements-white-paper/)". +The task of the International Rights Statements Working Group is to steward the development of the rights statements offered by RightsStatements.org. Its main purpose is to ensure that the rights statements address the needs of cultural heritage institutions and aggregation platforms while ensuring that the conform to the design principles identified in the white paper "[Recommendations for Standardized International Rights Statements]({{site.url}}/en/documentation/rights-statements-white-paper/)". The International Rights Statements Working Group is chaired by Greg Cram (Associate Director of Copyright & Intellectual Property, New York Public Library) and co-chaired by Jessica Coates (Executive Officer, Australian Digital Alliance), and has the following members: @@ -101,7 +101,7 @@ The International Rights Statements Working Group is chaired by Greg Cram (Assoc * Julia Fallon, Community and Partner Engagement Manager Europeana Foundation; * David Hansen, Assistant Clinical Professor & Faculty Research Librarian, UNC School of Law; * Paul Keller, independent policy advisor; -* Kim Gutchlag, Manager Collection Development and Description, National Library of New Zealand; +* Kim Gutchlag, Manager Collection Development and Description, National Library of New Zealand; * Dave Hansen, Associate University Librarian for Research, Collections and Scholarly Communication; * Melissa Levine, Lead Copyright Officer, University of Michigan Library; * Sarah Severson, Digital Initiatives Project Librarian, University of Alberta Library; @@ -110,7 +110,7 @@ The International Rights Statements Working Group is chaired by Greg Cram (Assoc ### Technical Working Group -The task of Technical Working Group is to develop and maintain the technical infrastructure and data model that powers the rights statements offered by RightsStatements.org, as defined in the white paper "[Requirements for the Technical Infrastructure for Standardized International Rights Statements](/en/documentation/technical-white-paper/)". +The task of Technical Working Group is to develop and maintain the technical infrastructure and data model that powers the rights statements offered by RightsStatements.org, as defined in the white paper "[Requirements for the Technical Infrastructure for Standardized International Rights Statements]({{site.url}}/en/documentation/technical-white-paper/)". The Technical Working Group is chaired by Mark Matienzo (Stanford University Libraries) and Antoine Isaac (Europeana) and has the following members: @@ -130,9 +130,10 @@ RightsStatements.org has been realized with the support from:
    -[![The John S. and James L. Knight Foundation](/files/images/knight-logo.jpg)](http://www.knightfoundation.org/) +[![The John S. and James L. Knight Foundation]({{site.url}}/files/images/knight-logo.jpg)](http://www.knightfoundation.org/)
    -[![Co-Financed by the European Union - Connecting Europe Facility](/files/images/cef-logo.svg)](https://ec.europa.eu/inea/en/connecting-europe-facility) +[![Co-Financed by the European Union - Connecting Europe Facility]({{site.url}}/files/images/cef-logo.svg)](https://ec.europa.eu/inea/en/connecting-europe-facility) +
    +
    -
    \ No newline at end of file diff --git a/en/documentation/index.md b/en/documentation/index.md index 4d2c4bde..460b15c7 100644 --- a/en/documentation/index.md +++ b/en/documentation/index.md @@ -13,9 +13,9 @@ Our rights statements have been specifically designed to be used by cultural her
    ## White Papers & Policies -You can find more information about the rights statements and about the technical architecture of RightsStatements.org in our White Papers. The white paper ["Recommendations for Standardized International Rights Statements"](/en/documentation/rights-statements-white-paper/) outlines the design principle behind our rights statements and provides detailed information about each individual Rights Statement. The ["Requirements for the Technical Infrastructure for Standardized International Rights Statements"](/en/documentation/technical-white-paper/) white paper describes the technical underpinnings of our Rights Statements. +You can find more information about the rights statements and about the technical architecture of RightsStatements.org in our White Papers. The white paper ["Recommendations for Standardized International Rights Statements"]({{site.url}}/en/documentation/rights-statements-white-paper/) outlines the design principle behind our rights statements and provides detailed information about each individual Rights Statement. The ["Requirements for the Technical Infrastructure for Standardized International Rights Statements"]({{site.url}}/en/documentation/technical-white-paper/) white paper describes the technical underpinnings of our Rights Statements. -Changes to the published rights statements are governed by our [editorial policy](/en/documentation/editorial-policy/). Our [translation policy](/en/documentation/translation-policy/) outlines the process for creating [official translations](/en/documentation/translations.html) of our rights statements. +Changes to the published rights statements are governed by our [editorial policy]({{site.url}}/en/documentation/editorial-policy/). Our [translation policy]({{site.url}}/en/documentation/translation-policy/) outlines the process for creating [official translations]({{site.url}}/en/documentation/translations.html) of our rights statements.
    ## Use by cultural heritage institutions From 2e350b96ed1380b8954a4918ae0da367cfadf68d Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Wed, 4 Sep 2024 09:45:57 +0200 Subject: [PATCH 13/55] Changes for fixing hardcoded urls --- _includes/collection.html | 3 ++- en/_posts/2018-06-08-translations.md | 4 ++-- en/_posts/2018-12-21-where-statements-apply.md | 2 +- en/_posts/2019-05-24-what-are-rights-statements-about.md | 8 ++++---- en/_posts/2019-05-28-rightsstatements-in-wikidata.md | 2 +- en/_posts/2019-07-30-french-polish-translations.md | 2 +- en/_posts/2019-08-14-work-plan.md | 2 +- ...atements-in-india-a-report-on-the-national-workshop.md | 8 ++++---- 8 files changed, 16 insertions(+), 15 deletions(-) diff --git a/_includes/collection.html b/_includes/collection.html index f0969377..7b057fad 100644 --- a/_includes/collection.html +++ b/_includes/collection.html @@ -12,7 +12,8 @@
    diff --git a/en/_posts/2018-06-08-translations.md b/en/_posts/2018-06-08-translations.md index 9a38413c..ad5e3865 100644 --- a/en/_posts/2018-06-08-translations.md +++ b/en/_posts/2018-06-08-translations.md @@ -11,9 +11,9 @@ We're happy to start with the great news that the official translations of all 1 We'd like to thank [Ellen Euler](https://pro.europeana.eu/person/ellen-euler) and [Ilja Braun](http://www.iljabraun.de/) for being the first volunteer and working with us to develop the German translation, and [Vahur Pruik](https://pro.europeana.eu/person/vahur-puik) and [Tanel Pern](https://www.etis.ee/CV/Tanel_Pern/est) for their work delivering the Estonian translation. We would also like to thank everyone else who contributed to these translations via the public review or otherwise. -Using the translated version of the statements don't require any extra work. If your browser language is set to German or Estonian, you will automatically see the statements in your chosen language. Alternatively you can browse the [German]({{site.app_url}}/de/) and [Estonian]({{site.app_url}}/et/) pages. +Using the translated version of the statements don't require any extra work. If your browser language is set to German or Estonian, you will automatically see the statements in your chosen language. Alternatively you can browse the [German]({{site.url}}/de/) and [Estonian]({{site.url}}/et/) pages. ### Upcoming translations -We currently have Portuguese, Spanish, Finnish, Swedish, Finland Swedish and Polish translations of the statements underway. All official translations are undertaken by volunteers following our [translations policy](http://rightsstatements.org/en/documentation/translations.html). Once an application has progressed through the quality control steps laid out in the policy, the translations are published on rightsstatements.org. If you are interested in providing an official translation, please contact us at [info@rightsstatements.org](mailto:info@rightsstatements.org). +We currently have Portuguese, Spanish, Finnish, Swedish, Finland Swedish and Polish translations of the statements underway. All official translations are undertaken by volunteers following our [translations policy]({{site.url}}/en/documentation/translations.html). Once an application has progressed through the quality control steps laid out in the policy, the translations are published on rightsstatements.org. If you are interested in providing an official translation, please contact us at [info@rightsstatements.org](mailto:info@rightsstatements.org). diff --git a/en/_posts/2018-12-21-where-statements-apply.md b/en/_posts/2018-12-21-where-statements-apply.md index 306ff3e0..60ba1482 100644 --- a/en/_posts/2018-12-21-where-statements-apply.md +++ b/en/_posts/2018-12-21-where-statements-apply.md @@ -7,7 +7,7 @@ date: "2018-12-21 09:00:00 -0700" One of the most frequently asked questions about the rightsstatements.org statements is if they apply to _original works_ (i.e. a painting) or the _digital objects_ (i.e. a specific digital representation of the painting in the form of an image file). -Our statements have been purposively designed so that they can be applied to _digital objects_ to make it easier for users of the _digital objects_ to determine the copyright and reuse status. This design process and principles are documented in the [right statements white paper]({{site.app_url}}/en/documentation/rights-statements-white-paper/). The primary use case would be a cultural heritage institution that displays a rights statement next to a _digital object_ on its website. In this scenario the statement indicates the copyright and reuse information of that _digital object_. +Our statements have been purposively designed so that they can be applied to _digital objects_ to make it easier for users of the _digital objects_ to determine the copyright and reuse status. This design process and principles are documented in the [right statements white paper]({{site.url}}/en/documentation/rights-statements-white-paper/). The primary use case would be a cultural heritage institution that displays a rights statement next to a _digital object_ on its website. In this scenario the statement indicates the copyright and reuse information of that _digital object_. In addition most of our statements can also be used to indicate the copyright status of _original works_. For example a website may want to use the [In Copyright statement]({{site.app_url}}/vocab/InC/1.0/) to indicate that a book is in copyright without providing access to a specific digital representation of the book. diff --git a/en/_posts/2019-05-24-what-are-rights-statements-about.md b/en/_posts/2019-05-24-what-are-rights-statements-about.md index 0366ff1a..9cba1159 100644 --- a/en/_posts/2019-05-24-what-are-rights-statements-about.md +++ b/en/_posts/2019-05-24-what-are-rights-statements-about.md @@ -6,9 +6,9 @@ date: 2019-05-24 12:00:00 --- _Richard J. Urban, Ph.D., Digital Asset Manager & Strategist, [Corning Museum Of Glass](https://www.cmog.org/)_ -The [previous post]({{site.app_url}}/en/2018/12/where-statements-apply.html) discussed how the rights statements provided by RightsStatements.org may apply to different kinds of _digital_ or _original_ works. While these rights statements were designed primarily for use in the context of digitization of material culture (for example, Europeana and DPLA), this post outlines the complexities of the relationships between an original artifact and its digital surrogate. +The [previous post]({{site.url}}/en/2018/12/where-statements-apply.html) discussed how the rights statements provided by RightsStatements.org may apply to different kinds of _digital_ or _original_ works. While these rights statements were designed primarily for use in the context of digitization of material culture (for example, Europeana and DPLA), this post outlines the complexities of the relationships between an original artifact and its digital surrogate. -In the [_Requirements for the Technical Infrastructure for Standardized International Rights Statements_]({{site.app_url}}/files/180117requirements_for_the_technical_infrastructure_for_standardized_international_rights_statements_v1.2.1.pdf) the RightsStatements.org Technical Working Group has outlined an answer to the question of what a rights statement is "about" by providing examples of how statements may be used within specific metadata standards. Each of these standards and best practices have different ways of resolving the "aboutness" of statements. +In the [_Requirements for the Technical Infrastructure for Standardized International Rights Statements_]({{site.url}}/files/180117requirements_for_the_technical_infrastructure_for_standardized_international_rights_statements_v1.2.1.pdf) the RightsStatements.org Technical Working Group has outlined an answer to the question of what a rights statement is "about" by providing examples of how statements may be used within specific metadata standards. Each of these standards and best practices have different ways of resolving the "aboutness" of statements. In order to provide a technical infrastructure for the rights statements, the Technical Working Group choose to model the statements as a Simple Knowledge Organization ([SKOS](https://www.w3.org/2004/02/skos/)) vocabulary. SKOS is commonly used for representing knowledge organization structures, such as thesauri, taxonomies, and subject headings. We felt that the purpose of the rights statements was to perform a similar function within the information systems provided by DPLA and Europeana. Just as the "subject" of a book requires analysis by a cataloger, we felt the myriad ways cultural heritage organizations expressed rights over cultural resources could be classified by a well organized vocabulary of terms. The purpose of the statements was not to provide a legally binding license. Rather, a rights statement represents a judgment about a complex and interwoven legal state-of-affairs in order to facilitate finding, identifying, and obtaining cultural resources online. @@ -18,7 +18,7 @@ Further, our Technical Working Group has declared each rights statement to also However, this does not directly answer what a rights statement is about. If we understand metadata to make assertions about _resources_ ("Anything can be a resource, including physical things, documents, abstract concepts..."), a property like dc:rights can be used to describe any identified resource. So for a simple Dublin Core example of an In Copyright resource: -Figure 1: The grammar of a Dublin Core rights statement. +Figure 1: The grammar of a Dublin Core rights statement. _Figure 1: The grammar of a Dublin Core rights statement._ @@ -26,7 +26,7 @@ It is the responsibility of your metadata model to define what kinds of resource For example, both Europeana and DPLA use fairly general-purpose metadata properties for expressing rights (dc:rights or its specialization edm:rights, for more details see specifications of the [Europeana Data Model](https://pro.europeana.eu/edm-documentation) and the [DPLA Metadata Application Profile](https://dp.la/info/map)). Their metadata models allow many elements to be attributed to resources that represent the original work (edm:ProvidedCHO or dpla:SourceResource) or belong to the level of digital representations (edm:WebResource, ore:Aggregation). But when using a rights statement in the context of an Europeana Data Model (EDM) metadata, the edm:rights property expects the subject of an assertion to be an edm:WebResource or an Aggregation of such resources. In this context, the rights statement will thus always be _about_ the rights status of a digital representation. (Because DPLA's Metadata Application Profile is based on EDM, it also associates edm:rights with a edm:WebResource). -Figure 2: In Copyright rights statement classification of a Europeana WebResource. +Figure 2: In Copyright rights statement classification of a Europeana WebResource. _Figure 2: In Copyright rights statement classification of a Europeana WebResource._ diff --git a/en/_posts/2019-05-28-rightsstatements-in-wikidata.md b/en/_posts/2019-05-28-rightsstatements-in-wikidata.md index fc17fcd4..bfb91137 100644 --- a/en/_posts/2019-05-28-rightsstatements-in-wikidata.md +++ b/en/_posts/2019-05-28-rightsstatements-in-wikidata.md @@ -14,7 +14,7 @@ _Liam is the Europeana Foundation's Wikimedia community liaison, and was the wor Many followers of RightsStatements.org may be familiar with [Wikidata](https://www.wikidata.org/). The six year old repository of metadata that is increasingly becoming a hub of structured information. Representing topics even more diverse than the famously wide-ranging _Wikipedia_, it currently contains more than 55 million _Items_, all CC0 licensed, and utilises more than [5,000](https://tools.wmflabs.org/hay/propbrowse/) _Properties_ to describe them - and is growing rapidly. -_RightsStatement_ has now been added as a structured metadata concept in its own right. Consistent with the open-access and “anyone can edit” methodology, this addition was preceded by a proposal by a community member, the customary [discussion process](https://www.wikidata.org/wiki/Wikidata:Property_proposal/rights_statement) until consensus was reached, and a [post on this blog]({{site.app_url}}/en/2018/12/where-statements-apply.html) responding to specific questions raised during the debate. +_RightsStatement_ has now been added as a structured metadata concept in its own right. Consistent with the open-access and “anyone can edit” methodology, this addition was preceded by a proposal by a community member, the customary [discussion process](https://www.wikidata.org/wiki/Wikidata:Property_proposal/rights_statement) until consensus was reached, and a [post on this blog]({{site.url}}/en/2018/12/where-statements-apply.html) responding to specific questions raised during the debate. This means that for a Wikidata _item_ which represents an individual creative work, it is now possible to make the claim, “RightsStatement status according to source website” alongside the relevant Statement, with a URL reference to the source. diff --git a/en/_posts/2019-07-30-french-polish-translations.md b/en/_posts/2019-07-30-french-polish-translations.md index 45bf5930..5a65af9f 100644 --- a/en/_posts/2019-07-30-french-polish-translations.md +++ b/en/_posts/2019-07-30-french-polish-translations.md @@ -9,4 +9,4 @@ Adding to a growing suit of multilingual statements, our statements are now publ We'd like to thank our partners in Poland, and the tri-partite effort to develop the French translations by partners from Luxembourg, France and Canada. We'd also like to thank everyone else who contributed to these translations, through the development of them or the public consultation. -If you want to view the statements in any of the seven official languages, you can access them [here]({{site.app_url}}/en/documentation/translations.html). If your browser is set to a language that the statement has been translated into, you will automatically see the translation. If no translation has been published in the language of your browser, or your browser is set to English, you will automatically see the English language statements. +If you want to view the statements in any of the seven official languages, you can access them [here]({{site.url}}/en/documentation/translations.html). If your browser is set to a language that the statement has been translated into, you will automatically see the translation. If no translation has been published in the language of your browser, or your browser is set to English, you will automatically see the English language statements. diff --git a/en/_posts/2019-08-14-work-plan.md b/en/_posts/2019-08-14-work-plan.md index be72f516..f984c363 100644 --- a/en/_posts/2019-08-14-work-plan.md +++ b/en/_posts/2019-08-14-work-plan.md @@ -10,7 +10,7 @@ _Julia Fallon, Senior Policy Advisor, Europeana Foundation_ Guided by our experiences so far, we know that we are not short of challenges to meet. However we also understand that despite good intentions in previous years, our own structures and resources cannot meet these ambitions. So we’ve scaled back and focused our priorities in 2019 on the most significant challenges for us to meet. Each challenge is led by a member of the consortium and we have set clearly defined targets to help us monitor and transparently demonstrate our progress towards these. -You can read the [plan for 2019 here](/files/190812_workplan.pdf), and below find an update on our progress towards these objectives midway through the year. +You can read the [plan for 2019 here]({{site.url}}/files/190812_workplan.pdf), and below find an update on our progress towards these objectives midway through the year. 1. **Increasing the efficiency & effectiveness of the translation management process** [graphthinking GmbH](http://graphthinking.com/) were contracted to develop the translations management process and the publishing workflow for the website. As our existing maintenance partner, and a member of our technical working group they are ideally positioned to support this work. In the new process, translators will be able to edit the descriptions of rights statements in their language using a dedicated localization software ([Transifex](https://www.transifex.com/)), which will automatically feed into our data infrastructure. The process is developed and is undergoing final tests before being rolled out to translation partners. diff --git a/en/_posts/2020-03-18-adopting-the-rights-statements-in-india-a-report-on-the-national-workshop.md b/en/_posts/2020-03-18-adopting-the-rights-statements-in-india-a-report-on-the-national-workshop.md index 481589ec..303afc58 100644 --- a/en/_posts/2020-03-18-adopting-the-rights-statements-in-india-a-report-on-the-national-workshop.md +++ b/en/_posts/2020-03-18-adopting-the-rights-statements-in-india-a-report-on-the-national-workshop.md @@ -32,13 +32,13 @@ In the summary session Prof. Prabuddha Ganguli presented a plan forward. The key The following flowchart that was produced at the end of the session summarizes the general understanding of a combined rights clearance and rights labelling approach: -![Rights Statements Flowchart](/files/rs.org-flowchart.png "Rights Statements Flowchart") +![Rights Statements Flowchart]({{site.url}}/files/rs.org-flowchart.png "Rights Statements Flowchart") ## National Workshop The public workshop on the afternoon of the 7th and on the 8th of September was the first opportunity for many attendees to learn about Rights Statements and ask questions about the value of making rights status determinations. Attendees of several cultural heritage organizations from across India joined the attendees of the pre-workshop brainstorming session. Students from the law school also sat in to listen to the conversation. After opening the meeting, Prof. Partha Pratim Das spelled out the objectives of the workshop. The stated goal was to learn more about Rights Statements, determine if they would work within the Indian context, and understand why using standardized statements helps users. -![National Workshop ](/files/national-workshop-ndli.jpeg "National Workshop") +![National Workshop ]({{site.url}}/files/national-workshop-ndli.jpeg "National Workshop") Profs. Prabuddha Ganguli and Shreya Matilal presented their findings on the Rights Statements and their fitment for purpose in India. After walking the attendees through some basic copyright fundamentals, there were many questions about copyright law generally. The volume and intensity of the questions underscored the need for simple, clear summaries of and best practices for copyright. There was a lot of interest in better understanding the exceptions and limitations in Indian law that cultural heritage organizations could rely on to make their collections more broadly available to the public. @@ -46,7 +46,7 @@ Paul Keller and Greg Cram rehashed their presentation, incorporating feedback fr On the second day, representatives from cultural heritage institutions shared information about their organization, their collection, and whether they would be willing to adopt adding a rights statement to their digitized objects. Most institutions expressed their intention to adopt rights labeling. Some institutions identified hurdles to adoption, such as training for those working on digital projects or lack of technical infrastructure to support a rights determination field. -![National Workshop](/files/national-workshop-ndli-2.jpeg "National Workshop") +![National Workshop]({{site.url}}/files/national-workshop-ndli-2.jpeg "National Workshop") Professors Ganguli and Das then discussed what the next steps were to be for NDLI and the participants. Professor Ganguli offered to create a handbook of copyright for librarians and archivists. In addition to the handbook, the professors suggested creating a set of regional meetings to spread the word about rightsstatements.org and the benefits to adoption. @@ -56,4 +56,4 @@ When talking with participants after the session closed, it appeared their knowl However, the implementation of the statements cannot be seen as a purely technical issue that can be addressed separately from rights evaluation. From the perspective of the GLAMs participating in the Workshop it seems that rights evaluation is a more ugent topic than rights labelling. -The discussions during both the workshop and the brainstorm were strikingly similar to discussions that have taken place at DPLA and Europeana at earlier stages of these projects. As with European and American cultural heritage institutions, Indian institutions expressed a need and desire for copyright education to provide the basis for adoption of right labeling. \ No newline at end of file +The discussions during both the workshop and the brainstorm were strikingly similar to discussions that have taken place at DPLA and Europeana at earlier stages of these projects. As with European and American cultural heritage institutions, Indian institutions expressed a need and desire for copyright education to provide the basis for adoption of right labeling. From 97adc88177c60e18b7b64686a7396495733827bd Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Wed, 4 Sep 2024 11:00:55 +0200 Subject: [PATCH 14/55] Changes for fixing hardcoded urls --- ca/statements/index.html | 17 ++++++++++ de/statements/index.html | 17 ++++++++++ en/documentation/faq.md | 2 +- en/index.md | 2 +- es/statements/index.html | 17 ++++++++++ et/statements/index.html | 17 ++++++++++ fi/statements/index.html | 17 ++++++++++ fr/statements/index.html | 69 ++++++++++++++++++++++++++++++++++++++++ hi/statements/index.html | 17 ++++++++++ hr/statements/index.html | 17 ++++++++++ it/statements/index.html | 17 ++++++++++ lt/statements/index.html | 17 ++++++++++ nl/statements/index.html | 17 ++++++++++ pl/statements/index.html | 17 ++++++++++ 14 files changed, 258 insertions(+), 2 deletions(-) create mode 100644 ca/statements/index.html create mode 100644 de/statements/index.html create mode 100644 es/statements/index.html create mode 100644 et/statements/index.html create mode 100644 fi/statements/index.html create mode 100644 fr/statements/index.html create mode 100644 hi/statements/index.html create mode 100644 hr/statements/index.html create mode 100644 it/statements/index.html create mode 100644 lt/statements/index.html create mode 100644 nl/statements/index.html create mode 100644 pl/statements/index.html diff --git a/ca/statements/index.html b/ca/statements/index.html new file mode 100644 index 00000000..3cac27a1 --- /dev/null +++ b/ca/statements/index.html @@ -0,0 +1,17 @@ +--- +--- + + + + + + + Page Redirection + + +If you are not redirected automatically, please click the link to continue to +/ca/. + + diff --git a/de/statements/index.html b/de/statements/index.html new file mode 100644 index 00000000..0d31a446 --- /dev/null +++ b/de/statements/index.html @@ -0,0 +1,17 @@ +--- +--- + + + + + + + Page Redirection + + + If you are not redirected automatically, please click the link to continue to + /de/. + + diff --git a/en/documentation/faq.md b/en/documentation/faq.md index 9d028915..1b4d431c 100644 --- a/en/documentation/faq.md +++ b/en/documentation/faq.md @@ -22,7 +22,7 @@ lang: en - Who came up with these statements and why? - RightsStatements.org is a joint initiative of [Europeana](http://www.europeana.edu/) and the [Digital Public Library of America](http://dp.la/) (DPLA). They build on a set of rights statements that Europeana has developed as part of the [Europeana Licensing Framework](http://pro.europeana.eu/page/europeana-licensing-framework). In order to ensure that the rights information on both Europeana and the DPLA is interoperable both institutions have taken the initiative to develop a set of rights statements that is independent of a particular platform. We hope that this will allow similar projects around the globe to adopt these rights statements so that they become a global standard for interoperable rights information. + RightsStatements.org is a joint initiative of [Europeana](https://www.europeana.eu/) and the [Digital Public Library of America](http://dp.la/) (DPLA). They build on a set of rights statements that Europeana has developed as part of the [Europeana Licensing Framework](http://pro.europeana.eu/page/europeana-licensing-framework). In order to ensure that the rights information on both Europeana and the DPLA is interoperable both institutions have taken the initiative to develop a set of rights statements that is independent of a particular platform. We hope that this will allow similar projects around the globe to adopt these rights statements so that they become a global standard for interoperable rights information. ## For cultural heritage institutions diff --git a/en/index.md b/en/index.md index 8a17f53e..dcc13c29 100644 --- a/en/index.md +++ b/en/index.md @@ -8,5 +8,5 @@ filename: index
    # For cultural heritage institutions -RightsStatements.org provides a set of standardized rights statements that can be used to communicate the copyright and re-use status of digital objects to the public. Our rights statements are supported by major aggregation platforms such as the Digital Public Library of America and Europeana. The rights statements have been designed with both human users and machine users (such as search engines) in mind and make use of semantic web technology. Learn more about how you can use our rights statements [here](/en/documentation#use-by-cultural-heritage-institutions). +RightsStatements.org provides a set of standardized rights statements that can be used to communicate the copyright and re-use status of digital objects to the public. Our rights statements are supported by major aggregation platforms such as the Digital Public Library of America and Europeana. The rights statements have been designed with both human users and machine users (such as search engines) in mind and make use of semantic web technology. Learn more about how you can use our rights statements [here]({{site.url}}/en/documentation#use-by-cultural-heritage-institutions).
    diff --git a/es/statements/index.html b/es/statements/index.html new file mode 100644 index 00000000..1f0510ed --- /dev/null +++ b/es/statements/index.html @@ -0,0 +1,17 @@ +--- +--- + + + + + + + Page Redirection + + +If you are not redirected automatically, please click the link to continue to +/es/. + + diff --git a/et/statements/index.html b/et/statements/index.html new file mode 100644 index 00000000..bad7d6bf --- /dev/null +++ b/et/statements/index.html @@ -0,0 +1,17 @@ +--- +--- + + + + + + + Page Redirection + + +If you are not redirected automatically, please click the link to continue to +/et/. + + diff --git a/fi/statements/index.html b/fi/statements/index.html new file mode 100644 index 00000000..a200696a --- /dev/null +++ b/fi/statements/index.html @@ -0,0 +1,17 @@ +--- +--- + + + + + + + Page Redirection + + +If you are not redirected automatically, please click the link to continue to +/fi/. + + diff --git a/fr/statements/index.html b/fr/statements/index.html new file mode 100644 index 00000000..9a323571 --- /dev/null +++ b/fr/statements/index.html @@ -0,0 +1,69 @@ +--- +--- + + + + + + + Page Redirection + + + If you are not redirected automatically, please click the link to continue to + /fr/. + + diff --git a/hi/statements/index.html b/hi/statements/index.html new file mode 100644 index 00000000..4fbe76ce --- /dev/null +++ b/hi/statements/index.html @@ -0,0 +1,17 @@ +--- +--- + + + + + + + Page Redirection + + +If you are not redirected automatically, please click the link to continue to +/hi/. + + diff --git a/hr/statements/index.html b/hr/statements/index.html new file mode 100644 index 00000000..c29d286c --- /dev/null +++ b/hr/statements/index.html @@ -0,0 +1,17 @@ +--- +--- + + + + + + + Page Redirection + + +If you are not redirected automatically, please click the link to continue to +/hr/. + + diff --git a/it/statements/index.html b/it/statements/index.html new file mode 100644 index 00000000..1576069e --- /dev/null +++ b/it/statements/index.html @@ -0,0 +1,17 @@ +--- +--- + + + + + + + Page Redirection + + +If you are not redirected automatically, please click the link to continue to +/it/. + + diff --git a/lt/statements/index.html b/lt/statements/index.html new file mode 100644 index 00000000..0ca0ef86 --- /dev/null +++ b/lt/statements/index.html @@ -0,0 +1,17 @@ +--- +--- + + + + + + + Page Redirection + + +If you are not redirected automatically, please click the link to continue to +/lt/. + + diff --git a/nl/statements/index.html b/nl/statements/index.html new file mode 100644 index 00000000..d4d3c1a8 --- /dev/null +++ b/nl/statements/index.html @@ -0,0 +1,17 @@ +--- +--- + + + + + + + Page Redirection + + +If you are not redirected automatically, please click the link to continue to +/nl/. + + diff --git a/pl/statements/index.html b/pl/statements/index.html new file mode 100644 index 00000000..8e91d469 --- /dev/null +++ b/pl/statements/index.html @@ -0,0 +1,17 @@ +--- +--- + + + + + + + Page Redirection + + +If you are not redirected automatically, please click the link to continue to +/pl/. + + From d48cefde1d14696181a9cabe4f8cc8dd0758586b Mon Sep 17 00:00:00 2001 From: Hugo Manguinhas Date: Wed, 4 Sep 2024 11:03:40 +0200 Subject: [PATCH 15/55] Update faq.md --- en/documentation/faq.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/documentation/faq.md b/en/documentation/faq.md index 1b4d431c..ca12db1f 100644 --- a/en/documentation/faq.md +++ b/en/documentation/faq.md @@ -28,7 +28,7 @@ lang: en - Why should I use these statements? - You should use these rights statements to communicate copyright and re-use information about digital objects that you make available online. Using our rights statements ensures that rights information is machine readable. Using our rights statements also means that your rights information is communicated in a standardized way that will be familiar to users of platforms such as the [DPLA](https://dp.la/) and [Europeana](http://www.europeana.eu/). If you want to make your content available via Europeana or the DPLA your content will contain standardized rights statements identifiable using URIs (for more details please consult the policies of these platforms).

    Please keep in mind that these rights statements are meant to be used in addition to the licenses and legal tools provided by Creative Commons. If you want to license digital objects for which you hold the rights for use by the public, you should consider using one of the [Creative Commons licenses](https://creativecommons.org/licenses/). And if you make available works that are in the worldwide public domain you should use the [Public Domain Mark](https://creativecommons.org/publicdomain/mark/1.0/). + You should use these rights statements to communicate copyright and re-use information about digital objects that you make available online. Using our rights statements ensures that rights information is machine readable. Using our rights statements also means that your rights information is communicated in a standardized way that will be familiar to users of platforms such as the [DPLA](https://dp.la/) and [Europeana](https://www.europeana.eu/). If you want to make your content available via Europeana or the DPLA your content will contain standardized rights statements identifiable using URIs (for more details please consult the policies of these platforms).

    Please keep in mind that these rights statements are meant to be used in addition to the licenses and legal tools provided by Creative Commons. If you want to license digital objects for which you hold the rights for use by the public, you should consider using one of the [Creative Commons licenses](https://creativecommons.org/licenses/). And if you make available works that are in the worldwide public domain you should use the [Public Domain Mark](https://creativecommons.org/publicdomain/mark/1.0/). - Do they replace existing rights information? @@ -36,7 +36,7 @@ lang: en - How can I use these statements? - In most cases you will be using these statements as part of the process of publishing via an aggregation platform such as Europeana or the DPLA. If this is the case you should apply the rights statements in line with the metadata guidelines of the platform you are working with.

    If you are using the statements in order to label digital objects that you publish on your own website or application you should follow our [guidelines for applying the rights statements]({{site.app_url}}/en/documentation/usage_guidelines.html). + In most cases you will be using these statements as part of the process of publishing via an aggregation platform such as Europeana or the DPLA. If this is the case you should apply the rights statements in line with the metadata guidelines of the platform you are working with.

    If you are using the statements in order to label digital objects that you publish on your own website or application you should follow our [guidelines for applying the rights statements]({{site.url}}/en/documentation/usage_guidelines.html). - I feel that none of the statements covers the copyright status of digital objects that I want to make available From 19bdcf9972d76f6a609e7e76daa38981d486d2e1 Mon Sep 17 00:00:00 2001 From: Hugo Manguinhas Date: Wed, 4 Sep 2024 11:04:54 +0200 Subject: [PATCH 16/55] Update faq.md --- en/documentation/faq.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/documentation/faq.md b/en/documentation/faq.md index ca12db1f..c7a71661 100644 --- a/en/documentation/faq.md +++ b/en/documentation/faq.md @@ -56,10 +56,10 @@ lang: en - Why are there different versions of the URIs of the statements? - The rights statements are identified by a single statement URI which takes the form `{{site.app_url}}/vocab/[id]/[version]/`. Additionally, we offer representations of the statements in both human readable (HTML) and machine readable (RDF) formats. These representations each have their own URL, allowing them to be referenced directly where appropriate. The human readable webpage is at `{{site.app_url}}/page/[id]/[version]/`, while the machine readable data is at `{{site.app_url}}/data/[id]/[version]/`.

    When a web browser accesses a statement URI (`/vocab/`) it will be redirected to the URI of the webpage. When applying the rights statements to a digital object, always use the statement URI (`{{site.app_url}}/vocab/[id]/[version]/`). This ensures consistent use in data, and that the rights information contained in the statements can be accessed by both human users and machine clients. Developers interested further implementation details should consult the [technical documentation]({{site.app_url}}/en/documentation/). + The rights statements are identified by a single statement URI which takes the form `{{site.app_url}}/vocab/[id]/[version]/`. Additionally, we offer representations of the statements in both human readable (HTML) and machine readable (RDF) formats. These representations each have their own URL, allowing them to be referenced directly where appropriate. The human readable webpage is at `{{site.app_url}}/page/[id]/[version]/`, while the machine readable data is at `{{site.app_url}}/data/[id]/[version]/`.

    When a web browser accesses a statement URI (`/vocab/`) it will be redirected to the URI of the webpage. When applying the rights statements to a digital object, always use the statement URI (`{{site.app_url}}/vocab/[id]/[version]/`). This ensures consistent use in data, and that the rights information contained in the statements can be accessed by both human users and machine clients. Developers interested further implementation details should consult the [technical documentation]({{site.url}}/en/documentation/). - Will the rights statements be translated into other languages? - The rights statements and the underlying infrastructure have been designed with internationalisation support in mind. At the moment the rights statements are only available in English. Please refer to the [translations page](/en/documentation/translations.html) to learn more about ongoing translations and our translation policy. If you are interested in helping with a translation please [get in touch with us]({{site.app_url}}/en/get_involved.html). + The rights statements and the underlying infrastructure have been designed with internationalisation support in mind. At the moment the rights statements are only available in English. Please refer to the [translations page](/en/documentation/translations.html) to learn more about ongoing translations and our translation policy. If you are interested in helping with a translation please [get in touch with us]({{site.url}}/en/get_involved.html).
    From c685c156890dda78b458d8cc8d0c4b51a4629a5f Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Wed, 4 Sep 2024 11:09:48 +0200 Subject: [PATCH 17/55] Changes for fixing hardcoded urls --- README.md | 2 +- ca/index.md | 4 ++-- ca/statements/vocab.md | 2 +- de/index.md | 2 +- de/statements/vocab.md | 2 +- en/documentation/changelog.md | 18 +++++++++--------- en/documentation/faq.md | 2 +- en/documentation/translations.md | 4 ++-- en/statements/vocab.md | 2 +- es/index.md | 2 +- es/statements/vocab.md | 2 +- et/index.md | 2 +- et/statements/vocab.md | 2 +- fi/index.md | 2 +- fi/statements/vocab.md | 2 +- hi/index.md | 2 +- hi/statements/vocab.md | 2 +- hr/index.md | 2 +- hr/statements/vocab.md | 2 +- it/index.md | 2 +- it/statements/vocab.md | 4 ++-- lt/index.md | 2 +- lt/statements/vocab.md | 2 +- nl/index.md | 2 +- nl/statements/vocab.md | 2 +- pl/index.md | 2 +- pl/statements/vocab.md | 2 +- 27 files changed, 38 insertions(+), 38 deletions(-) diff --git a/README.md b/README.md index 0c9e9971..9d513a33 100644 --- a/README.md +++ b/README.md @@ -75,5 +75,5 @@ New images can be added by pressing the button in the editor. Other files must be added as markdown. ``` -[PDF](/files/160611proposal_for_implementation_UND.pdf) +[PDF]({{site.url}}/files/160611proposal_for_implementation_UND.pdf) ``` diff --git a/ca/index.md b/ca/index.md index 62ae50ad..066a4d19 100644 --- a/ca/index.md +++ b/ca/index.md @@ -7,5 +7,5 @@ lang: ca
    # Per a institucions patrimonials -Rightsstatements.org proporciona un conjunt de declaracions de drets estandarditzades que poden ser utilitzades per a informar al públic del dret d’autor i de les possibilitats de reutilització d’objectes digitals. Les nostres declaracions de drets tenen el suport d’algunes de les principals plataformes d'agregació de continguts, com la Biblioteca Pública Digital d'Amèrica (Digital Public Library of America) i Europeana. Les declaracions de drets s’han elaborat preveient la seva utilització per part de persones i pensant també en els ordinadors (per exemple en els motors de cerca), i fan ús de la tecnologia semàntica digital. Podeu trobar més informació sobre com fer servir les declaracions de drets [aquí](/en/documentation#use-by-cultural-heritage-institutions). -
    +Rightsstatements.org proporciona un conjunt de declaracions de drets estandarditzades que poden ser utilitzades per a informar al públic del dret d’autor i de les possibilitats de reutilització d’objectes digitals. Les nostres declaracions de drets tenen el suport d’algunes de les principals plataformes d'agregació de continguts, com la Biblioteca Pública Digital d'Amèrica (Digital Public Library of America) i Europeana. Les declaracions de drets s’han elaborat preveient la seva utilització per part de persones i pensant també en els ordinadors (per exemple en els motors de cerca), i fan ús de la tecnologia semàntica digital. Podeu trobar més informació sobre com fer servir les declaracions de drets [aquí]({{site.url}}/en/documentation#use-by-cultural-heritage-institutions). +
    diff --git a/ca/statements/vocab.md b/ca/statements/vocab.md index 12bfa267..e30d1e75 100644 --- a/ca/statements/vocab.md +++ b/ca/statements/vocab.md @@ -45,7 +45,7 @@ Les declaracions de drets han estat elaborades per atendre les necessitats espec
  • -

    Les declaracions de drets es divideixen en tres categories: declaracions per a obres protegides pel dret d’autor, declaracions per a les obres no protegides pel dret d’autor i declaracions per a les obres en relació a les quals no és clar el règim de protecció pel dret d’autor. Les declaracions proporcionen al públic informació general i fàcilment comprensible sobre les condicions dels objectes digitals des del punt de vista del dret d'autor, i les possibilitats de reutilització. Excepte en el cas de les dues declaracions relatives als objectes el règim de protecció dels quals no és clar, aquestes declaracions només haurien de ser utilitzades un cop s’hagi determinat el règim de protecció de l’obra pel dret d’autor. Trobareu informació complementària sobre les modalitats d’utilització de les declaracions de drets a la [secció de documentació](/en/documentation).

    +

    Les declaracions de drets es divideixen en tres categories: declaracions per a obres protegides pel dret d’autor, declaracions per a les obres no protegides pel dret d’autor i declaracions per a les obres en relació a les quals no és clar el règim de protecció pel dret d’autor. Les declaracions proporcionen al públic informació general i fàcilment comprensible sobre les condicions dels objectes digitals des del punt de vista del dret d'autor, i les possibilitats de reutilització. Excepte en el cas de les dues declaracions relatives als objectes el règim de protecció dels quals no és clar, aquestes declaracions només haurien de ser utilitzades un cop s’hagi determinat el règim de protecció de l’obra pel dret d’autor. Trobareu informació complementària sobre les modalitats d’utilització de les declaracions de drets a la [secció de documentació]({{site.url}}/en/documentation).

    diff --git a/de/index.md b/de/index.md index edfe5da3..b0efb361 100644 --- a/de/index.md +++ b/de/index.md @@ -7,5 +7,5 @@ lang: de
    # Für Kulturerbeeinrichtungen -RightsStatements.org stellt ein Set standardisierter Rechtehinweise zur Verfügung, die genutzt werden können, um den Urheberrechts- und Weiterverwendungs-Status digitaler Objekte mitzuteilen. Unsere Rechtehinweise werden von bedeutenden Plattformbetreibern wie z.B. der Digital Public Library of America (DPLA) und Europeana unterstützt und anerkannt. Die Rechtehinweise wurden sowohl im Hinblick auf natürliche Personen als auch (Such-) Maschinen entwickelt und nutzen semantische Webtechnologien. Erfahren Sie [hier](/en/documentation#use-by-cultural-heritage-institutions) mehr darüber, wie Sie unsere Rechtehinweise nutzen können. +RightsStatements.org stellt ein Set standardisierter Rechtehinweise zur Verfügung, die genutzt werden können, um den Urheberrechts- und Weiterverwendungs-Status digitaler Objekte mitzuteilen. Unsere Rechtehinweise werden von bedeutenden Plattformbetreibern wie z.B. der Digital Public Library of America (DPLA) und Europeana unterstützt und anerkannt. Die Rechtehinweise wurden sowohl im Hinblick auf natürliche Personen als auch (Such-) Maschinen entwickelt und nutzen semantische Webtechnologien. Erfahren Sie [hier]({{site.url}}/en/documentation#use-by-cultural-heritage-institutions) mehr darüber, wie Sie unsere Rechtehinweise nutzen können.
    diff --git a/de/statements/vocab.md b/de/statements/vocab.md index 8a069f50..4573e439 100644 --- a/de/statements/vocab.md +++ b/de/statements/vocab.md @@ -46,7 +46,7 @@ Die Rechtehinweise wurden speziell für die Bedürfnisse der Kulturerbeeinrichtu

    Es gibt drei unterschiedliche Kategorien von Rechtehinweisen: -Hinweise für Werke, die urheberrechtlich geschützt sind, Hinweise für Werke, die nicht urheberrechtlich geschützt sind, und Hinweise für Werke, deren Urheberrechtsschutz unklar ist. Die Hinweise versorgen Nutzer mit einfach zu verstehenden Informationen über den Urheberrechtsschutz und Weiterverwendungs-Status der digitalen Objekte. Mit Ausnahme der beiden Hinweise für digitale Objekte, deren Urheberrechtsschutz unklar ist, sollten diese Hinweise erst verwendet werden, wenn der Urheberrechtsschutz des Werkes einwandfrei festgestellt wurde. Weitergehende Informationen darüber, wie die Rechtehinweise angewandt werden, finden Sie in [der Dokumentation](/en/documentation).

    +Hinweise für Werke, die urheberrechtlich geschützt sind, Hinweise für Werke, die nicht urheberrechtlich geschützt sind, und Hinweise für Werke, deren Urheberrechtsschutz unklar ist. Die Hinweise versorgen Nutzer mit einfach zu verstehenden Informationen über den Urheberrechtsschutz und Weiterverwendungs-Status der digitalen Objekte. Mit Ausnahme der beiden Hinweise für digitale Objekte, deren Urheberrechtsschutz unklar ist, sollten diese Hinweise erst verwendet werden, wenn der Urheberrechtsschutz des Werkes einwandfrei festgestellt wurde. Weitergehende Informationen darüber, wie die Rechtehinweise angewandt werden, finden Sie in [der Dokumentation]({{site.url}}/en/documentation).

    diff --git a/en/documentation/changelog.md b/en/documentation/changelog.md index b16c0ada..53c5b848 100644 --- a/en/documentation/changelog.md +++ b/en/documentation/changelog.md @@ -18,7 +18,7 @@ Added Dutch translation of [version 1.0 of the rights statements]({{site.app_url #### 2020-05-05 -Minor changse to the white paper ["Requirements for the Technical Infrastructure for Standardized International Rights Statements"](/files/170106requirements_for_the_technical_infrastructure_for_standardized_international_rights_statements_v1.2.pdf). +Minor changse to the white paper ["Requirements for the Technical Infrastructure for Standardized International Rights Statements"]({{site.url}}/files/170106requirements_for_the_technical_infrastructure_for_standardized_international_rights_statements_v1.2.pdf). #### 2020-02-06 @@ -30,34 +30,34 @@ Added Hindi translation of [version 1.0 of the rights statements]({{site.app_url ### 2018-06-08 -Added Estonian translation of [version 1.0 the rights statements]({{site.app_url}}/page/1.0/?language=et), and the [home page]({{site.app_url}}/et/). See the [translation document](/files/180606RS_1.0_translation_EE_approved.pdf) for a documentation of the translation process. +Added Estonian translation of [version 1.0 the rights statements]({{site.app_url}}/page/1.0/?language=et), and the [home page]({{site.app_url}}/et/). See the [translation document]({{site.url}}/files/180606RS_1.0_translation_EE_approved.pdf) for a documentation of the translation process. ### 2018-06-05 -Added German translation of [version 1.0 the rights statements]({{site.app_url}}/page/1.0/?language=de), and the [home page]({{site.app_url}}/de/). See the [translation document](/files/180531RS_1.0_translation_DE_approved.pdf) for a documentation of the translation process. +Added German translation of [version 1.0 the rights statements]({{site.app_url}}/page/1.0/?language=de), and the [home page]({{site.app_url}}/de/). See the [translation document]({{site.url}}/files/180531RS_1.0_translation_DE_approved.pdf) for a documentation of the translation process. ### 2018-05-31 -Minor changes to the 1.0 version of the rights statements as detailed in the [Recommendations for minor changes to the 1.0 version of the rights statements (May 2018)](/files/180524minor_changes_to_v1.0.pdf). These changes have been reflected in an [updated version of the Recommendations for Standardized International Rights Statements white paper](/files/180531recommendations_for_standardized_international_rights_statements_v1.2.2.pdf). +Minor changes to the 1.0 version of the rights statements as detailed in the [Recommendations for minor changes to the 1.0 version of the rights statements (May 2018)]({{site.url}}/files/180524minor_changes_to_v1.0.pdf). These changes have been reflected in an [updated version of the Recommendations for Standardized International Rights Statements white paper]({{site.url}}/files/180531recommendations_for_standardized_international_rights_statements_v1.2.2.pdf). ### 2017-11-20 -Minor changes to the 1.0 version of the rights statements as detailed in the [Recommendations for minor changes to the 1.0 version of the rights statements](/files/170907recommendations_for_minor_update.pdf). These changes have been reflected in an updated version of the [Recommendations for Standardized International Rights Statements](/files/171116recommendations_for_standardized_international_rights_statements_v1.2.pdf) white paper. +Minor changes to the 1.0 version of the rights statements as detailed in the [Recommendations for minor changes to the 1.0 version of the rights statements]({{site.url}}/files/170907recommendations_for_minor_update.pdf). These changes have been reflected in an updated version of the [Recommendations for Standardized International Rights Statements]({{site.url}}/files/171116recommendations_for_standardized_international_rights_statements_v1.2.pdf) white paper. ### 2017-06-29 -Release of the [Translation Policy](/en/documentation/translation-policy/) and [Editoral Policy](/en/documentation/editorial-policy) for rightsstatements.org. +Release of the [Translation Policy]({{site.url}}/en/documentation/translation-policy/) and [Editoral Policy]({{site.url}}/en/documentation/editorial-policy) for rightsstatements.org. ### 2017-01-06 -Release of the latest revision of the white paper ["Requirements for the Technical Infrastructure for Standardized International Rights Statements"](/files/170106requirements_for_the_technical_infrastructure_for_standardized_international_rights_statements_v1.2.pdf). +Release of the latest revision of the white paper ["Requirements for the Technical Infrastructure for Standardized International Rights Statements"]({{site.url}}/files/170106requirements_for_the_technical_infrastructure_for_standardized_international_rights_statements_v1.2.pdf). ### 2016-06-14 -Addition of the [Copyright Undetermined]({{site.app_url}}/vocab/UND/1.0/) statement. See the [proposal for implementation of a new rights statement](/files/160611proposal_for_implementation_UND.pdf) for more information. +Addition of the [Copyright Undetermined]({{site.app_url}}/vocab/UND/1.0/) statement. See the [proposal for implementation of a new rights statement]({{site.url}}/files/160611proposal_for_implementation_UND.pdf) for more information. ### 2016-04-14 -Initial launch of version 1.0 of the 11 rights statements as described in the white paper "[Recommendations for Standardized International Rights Statements](/files/160208recommendations_for_standardized_international_rights_statements_v1.1.pdf)." +Initial launch of version 1.0 of the 11 rights statements as described in the white paper "[Recommendations for Standardized International Rights Statements]({{site.url}}/files/160208recommendations_for_standardized_international_rights_statements_v1.1.pdf)." diff --git a/en/documentation/faq.md b/en/documentation/faq.md index ca12db1f..0928bfb2 100644 --- a/en/documentation/faq.md +++ b/en/documentation/faq.md @@ -60,6 +60,6 @@ lang: en - Will the rights statements be translated into other languages? - The rights statements and the underlying infrastructure have been designed with internationalisation support in mind. At the moment the rights statements are only available in English. Please refer to the [translations page](/en/documentation/translations.html) to learn more about ongoing translations and our translation policy. If you are interested in helping with a translation please [get in touch with us]({{site.app_url}}/en/get_involved.html). + The rights statements and the underlying infrastructure have been designed with internationalisation support in mind. At the moment the rights statements are only available in English. Please refer to the [translations page]({{site.url}}/en/documentation/translations.html) to learn more about ongoing translations and our translation policy. If you are interested in helping with a translation please [get in touch with us]({{site.app_url}}/en/get_involved.html). diff --git a/en/documentation/translations.md b/en/documentation/translations.md index 9a513988..c2ec5cb4 100644 --- a/en/documentation/translations.md +++ b/en/documentation/translations.md @@ -7,7 +7,7 @@ filename: translations --- # Translations of the rights statements -The rights statements and underlying infrastructure of rightsstatements.org have been designed to work internationally in many languages. At the moment our rights statements are only available in English. If you are interested in working with us on translating the rights statements please contact us at [info@rightsstatements.org](mailto:info@rightsstatements.org). Translations of the rights statements need to be produced in line with our [translation policy](/en/documentation/translation-policy/) which you can find on our [Documentation](/en/documentation/) page. +The rights statements and underlying infrastructure of rightsstatements.org have been designed to work internationally in many languages. At the moment our rights statements are only available in English. If you are interested in working with us on translating the rights statements please contact us at [info@rightsstatements.org](mailto:info@rightsstatements.org). Translations of the rights statements need to be produced in line with our [translation policy]({{site.url}}/en/documentation/translation-policy/) which you can find on our [Documentation]({{site.url}}/en/documentation/) page.
    @@ -30,7 +30,7 @@ The rights statements have been translated into the following languages: ## Translations under public review -As described in our [translation policy](/en/documentation/translation-policy/), every draft translation is published for a public comment period of 4 +As described in our [translation policy]({{site.url}}/en/documentation/translation-policy/), every draft translation is published for a public comment period of 4 weeks. If you wish to review a draft translation, please contact us at [info@rightsstatements.org](mailto:info@rightsstatements.org) indicating the language that you wish to review. We will give you access to the system we use for this purpose so that you can complete your revision. The feedback from the public comment period will be addressed by the translation partner together with the reviewer(s). diff --git a/en/statements/vocab.md b/en/statements/vocab.md index 0aa74f4b..37902fcc 100644 --- a/en/statements/vocab.md +++ b/en/statements/vocab.md @@ -46,7 +46,7 @@ The rights statements have been specifically developed for the needs of cultural
    -

    The rights statements fall in three categories: Statements for works that are in copyright, statements for works that are not in copyright and statements for works where the copyright status is unclear. The statements provide end users with easy to understand high level information about the copyright and re-use status of digital objects. With the exception of the two statements for objects with an unclear copyright status, these statements should only be applied after the copyright status of a work has been established. You can find more information about how to apply the rights statements in the [documentation section](/en/documentation).

    +

    The rights statements fall in three categories: Statements for works that are in copyright, statements for works that are not in copyright and statements for works where the copyright status is unclear. The statements provide end users with easy to understand high level information about the copyright and re-use status of digital objects. With the exception of the two statements for objects with an unclear copyright status, these statements should only be applied after the copyright status of a work has been established. You can find more information about how to apply the rights statements in the [documentation section]({{site.url}}/en/documentation).

    diff --git a/es/index.md b/es/index.md index ba7321e8..12df7149 100644 --- a/es/index.md +++ b/es/index.md @@ -7,5 +7,5 @@ lang: es
    # Para instituciones culturales patrimoniales -RightsStatements.org provee un conjunto estandarizado de declaraciones de derechos que pueden ser utilizadas para comunicar al público el estado de derecho de autor y de reutilización de objetos digitales. Nuestras declaraciones de derechos están respaldadas por importantes plataformas de agregación como la Digital Public Library of America (la Biblioteca Pública Digital de América) y Europeana. Las declaraciones de derechos han sido diseñadas teniendo en cuenta tanto a los usuarios humanos como a las computadoras (como los motores de búsqueda) y utilizan tecnologías de la web semántica. [Aprenda más sobre cómo se pueden utilizar las declaraciones de derechos aquí.](/en/documentation/) +RightsStatements.org provee un conjunto estandarizado de declaraciones de derechos que pueden ser utilizadas para comunicar al público el estado de derecho de autor y de reutilización de objetos digitales. Nuestras declaraciones de derechos están respaldadas por importantes plataformas de agregación como la Digital Public Library of America (la Biblioteca Pública Digital de América) y Europeana. Las declaraciones de derechos han sido diseñadas teniendo en cuenta tanto a los usuarios humanos como a las computadoras (como los motores de búsqueda) y utilizan tecnologías de la web semántica. [Aprenda más sobre cómo se pueden utilizar las declaraciones de derechos aquí.]({{site.url}}/en/documentation/)
    diff --git a/es/statements/vocab.md b/es/statements/vocab.md index d2cff68f..a3dcd35c 100644 --- a/es/statements/vocab.md +++ b/es/statements/vocab.md @@ -45,7 +45,7 @@ Estas declaraciones de derechos han sido específicamente desarrolladas para las
    -

    Estas declaraciones de derechos caen bajo tres categorías: declaraciones para obras que están protegidas por derecho de autor, declaraciones para obras que no están protegidas por derecho de autor y declaraciones para obras cuyo estado de derecho de autor no es claro. Estas declaraciones proveen a los usuarios finales con información de alto nivel y fácil de entender sobre el estado del derecho de autor y de reutilización de los objetos digitales. Con la excepción de las dos declaraciones para objetos con un estado de derecho de autor poco claro, estas declaraciones solamente deberían ser aplicadas luego de que el estado de derecho de autor de una obra ha sido determinado. Puede encontrar más información sobre cómo aplicar las declaraciones de derechos en la [sección de documentación](/en/documentation).

    +

    Estas declaraciones de derechos caen bajo tres categorías: declaraciones para obras que están protegidas por derecho de autor, declaraciones para obras que no están protegidas por derecho de autor y declaraciones para obras cuyo estado de derecho de autor no es claro. Estas declaraciones proveen a los usuarios finales con información de alto nivel y fácil de entender sobre el estado del derecho de autor y de reutilización de los objetos digitales. Con la excepción de las dos declaraciones para objetos con un estado de derecho de autor poco claro, estas declaraciones solamente deberían ser aplicadas luego de que el estado de derecho de autor de una obra ha sido determinado. Puede encontrar más información sobre cómo aplicar las declaraciones de derechos en la [sección de documentación]({{site.url}}/en/documentation).

    diff --git a/et/index.md b/et/index.md index 877523ee..893809a9 100644 --- a/et/index.md +++ b/et/index.md @@ -7,5 +7,5 @@ lang: et
    # Mäluasutustele -Rightsstatements.org koduleht sisaldab standardiseeritud autoriõigusliku seisundi deklaratsioone, mida on võimalik kasutada avalikkuse teavitamiseks digitaalsete objektide autoriõiguslikust seisundist ja taaskasutusõigustest. Deklaratsioonide kasutamist toetavad mitmed suured veebiväravad, nagu Ameerika digitaalraamatukogu (DPLA) ja Europeana. Deklaratsioonide koostamisel on lähtutud nii inim- kui ka masinkasutajate (nagu otsingumootorid) huvidest ning rakendatud semantilise veebi tehnoloogiat. [Täiendavat infot deklaratsioonide kasutamise kohta leiab dokumentatsioonilehelt.](/en/documentation/) +Rightsstatements.org koduleht sisaldab standardiseeritud autoriõigusliku seisundi deklaratsioone, mida on võimalik kasutada avalikkuse teavitamiseks digitaalsete objektide autoriõiguslikust seisundist ja taaskasutusõigustest. Deklaratsioonide kasutamist toetavad mitmed suured veebiväravad, nagu Ameerika digitaalraamatukogu (DPLA) ja Europeana. Deklaratsioonide koostamisel on lähtutud nii inim- kui ka masinkasutajate (nagu otsingumootorid) huvidest ning rakendatud semantilise veebi tehnoloogiat. [Täiendavat infot deklaratsioonide kasutamise kohta leiab dokumentatsioonilehelt.]({{site.url}}/en/documentation/)
    diff --git a/et/statements/vocab.md b/et/statements/vocab.md index 9dbc4574..8bd4ee6f 100644 --- a/et/statements/vocab.md +++ b/et/statements/vocab.md @@ -45,7 +45,7 @@ Autoriõigusliku seisundi deklaratsioonide väljatöötamisel on lähtutud mälu
    -

    Autoriõigusliku seisundi deklaratsioonid jagunevad kolme kategooriasse: deklaratsioonid teostele, millele kehtib autoriõigus; deklaratsioonid teostele, millele ei kehti autoriõigus; deklaratsioonid teostele, mille autoriõiguslik seisund on ebaselge. Deklaratsioonid annavad kergesti loetavat kõrgtaseme informatsiooni digitaalsete objektide autoriõigusliku seisundi ja taaskasutussõiguste kohta. Kõigil juhtudel peale kahe deklaratsiooni, mis puudutavad ebaselge autoriõigusliku seisundiga objekte võib teose deklaratsiooniga märgistada alles pärast selle autoriõigusliku seisundi tuvastamist. Rohkem informatsiooni objektide autoriõigusliku seisundi deklaratsioonidega märgistamise kohta leiab [dokumentatsioonilehelt](/en/documentation).

    +

    Autoriõigusliku seisundi deklaratsioonid jagunevad kolme kategooriasse: deklaratsioonid teostele, millele kehtib autoriõigus; deklaratsioonid teostele, millele ei kehti autoriõigus; deklaratsioonid teostele, mille autoriõiguslik seisund on ebaselge. Deklaratsioonid annavad kergesti loetavat kõrgtaseme informatsiooni digitaalsete objektide autoriõigusliku seisundi ja taaskasutussõiguste kohta. Kõigil juhtudel peale kahe deklaratsiooni, mis puudutavad ebaselge autoriõigusliku seisundiga objekte võib teose deklaratsiooniga märgistada alles pärast selle autoriõigusliku seisundi tuvastamist. Rohkem informatsiooni objektide autoriõigusliku seisundi deklaratsioonidega märgistamise kohta leiab [dokumentatsioonilehelt]({{site.url}}/en/documentation).

    diff --git a/fi/index.md b/fi/index.md index 2d6a0fc0..8a401d9b 100644 --- a/fi/index.md +++ b/fi/index.md @@ -7,5 +7,5 @@ lang: fi
    # Kulttuuriperintölaitoksille -RightsStatements.org tarjoaa valikoiman vakiomuotoisia käyttöoikeuskuvauksia, joilla voidaan kertoa yleisölle digitaalisten objektien tekijänoikeudellisesta ja uudelleenkäyttöä koskevasta tilanteesta. Merkittävät digitaalisen aineiston alustat, kuten Digital Public Library of America ja Europeana, tukevat käyttöoikeuskuvauksiamme. Käyttöoikeuskuvaukset on suunniteltu sekä ihmisten että koneiden (kuten hakukoneiden) käyttöön, ja ne hyödyntävät semanttista verkkoteknologiaa. [Lisätietoa](/en/documentation/) käyttöoikeuskuvausten käytöstä. +RightsStatements.org tarjoaa valikoiman vakiomuotoisia käyttöoikeuskuvauksia, joilla voidaan kertoa yleisölle digitaalisten objektien tekijänoikeudellisesta ja uudelleenkäyttöä koskevasta tilanteesta. Merkittävät digitaalisen aineiston alustat, kuten Digital Public Library of America ja Europeana, tukevat käyttöoikeuskuvauksiamme. Käyttöoikeuskuvaukset on suunniteltu sekä ihmisten että koneiden (kuten hakukoneiden) käyttöön, ja ne hyödyntävät semanttista verkkoteknologiaa. [Lisätietoa]({{site.url}}/en/documentation/) käyttöoikeuskuvausten käytöstä.
    diff --git a/fi/statements/vocab.md b/fi/statements/vocab.md index 1870abed..0b1ab51d 100644 --- a/fi/statements/vocab.md +++ b/fi/statements/vocab.md @@ -46,7 +46,7 @@ Käyttöoikeuskuvaukset on suunniteltu erityisesti kulttuuriperintölaitosten ja
    -

    Käyttöoikeuskuvauksia on kolmenlaisille teoksille: tekijänoikeuden suojaamille, tekijänoikeudellisen suojan ulkopuolelle jääville sekä teoksille, joiden tekijänoikeudellinen status on epäselvä. Käyttöoikeuskuvaukset tarjoavat loppukäyttäjälle helposti ymmärrettävää ja korkealaatuista tietoa digitaalisten objektien tekijänoikeudellisesta ja uudelleenkäyttöä koskevasta tilanteesta. Käyttöoikeuskuvauksia tulisi käyttää vain silloin kun teoksen tekijänoikeudellinen status on kyetty määrittämään, poikkeuksena kaksi käyttöoikeuskuvausta, jotka koskevat teoksia, joiden tekijänoikeusstatus on epäselvä. Käyttöoikeuskuvauksien soveltamisesta löydät lisätietoa [dokumentaatio-osiosta](/en/documentation).

    +

    Käyttöoikeuskuvauksia on kolmenlaisille teoksille: tekijänoikeuden suojaamille, tekijänoikeudellisen suojan ulkopuolelle jääville sekä teoksille, joiden tekijänoikeudellinen status on epäselvä. Käyttöoikeuskuvaukset tarjoavat loppukäyttäjälle helposti ymmärrettävää ja korkealaatuista tietoa digitaalisten objektien tekijänoikeudellisesta ja uudelleenkäyttöä koskevasta tilanteesta. Käyttöoikeuskuvauksia tulisi käyttää vain silloin kun teoksen tekijänoikeudellinen status on kyetty määrittämään, poikkeuksena kaksi käyttöoikeuskuvausta, jotka koskevat teoksia, joiden tekijänoikeusstatus on epäselvä. Käyttöoikeuskuvauksien soveltamisesta löydät lisätietoa [dokumentaatio-osiosta]({{site.url}}/en/documentation).

    diff --git a/hi/index.md b/hi/index.md index 9c3f81d7..ff189827 100644 --- a/hi/index.md +++ b/hi/index.md @@ -7,5 +7,5 @@ lang: hi
    # सांस्कृतिक विरासत संगठनों के लिए -राइट्सस्टेटमैंट.ऑर्ग (RightsStatements.org) मानकीकृत न्‍यायसंगत कथनों का एक सेट प्रदान करता है जिसका उपयोग जनसाधारण को डिजिटल सामग्री की प्रतिलिप्यधिकार (कॉपीराइट) एवं पुन: उपयोग की स्थिति को स्पष्ट करने के लिए किया जा सकता है। हमारे न्यायसंगत कथन प्रमुख समूह प्लेटफार्मों जैसे डिजिटल पब्लिक लाइब्रेरी ऑफ अमेरिका और यूरोपिआना द्वारा समर्थित हैं। न्यायसंगत कथन मानव उपयोगकर्ताओं और मशीन उपयोगकर्ताओं (जैसे खोज इंजन) दोनों को ध्यान में रखते हुए डिजाइन किए गए हैं और अर्थपूर्ण वेब तकनीक का उपयोग करते हैं। [यहां जानें कि आप हमारे अधिकारों के विवरण का उपयोग कैसे कर सकते हैं।](/en/documentation#use-by-cultural-heritage-institutions) +राइट्सस्टेटमैंट.ऑर्ग (RightsStatements.org) मानकीकृत न्‍यायसंगत कथनों का एक सेट प्रदान करता है जिसका उपयोग जनसाधारण को डिजिटल सामग्री की प्रतिलिप्यधिकार (कॉपीराइट) एवं पुन: उपयोग की स्थिति को स्पष्ट करने के लिए किया जा सकता है। हमारे न्यायसंगत कथन प्रमुख समूह प्लेटफार्मों जैसे डिजिटल पब्लिक लाइब्रेरी ऑफ अमेरिका और यूरोपिआना द्वारा समर्थित हैं। न्यायसंगत कथन मानव उपयोगकर्ताओं और मशीन उपयोगकर्ताओं (जैसे खोज इंजन) दोनों को ध्यान में रखते हुए डिजाइन किए गए हैं और अर्थपूर्ण वेब तकनीक का उपयोग करते हैं। [यहां जानें कि आप हमारे अधिकारों के विवरण का उपयोग कैसे कर सकते हैं।]({{site.url}}/en/documentation#use-by-cultural-heritage-institutions)
    diff --git a/hi/statements/vocab.md b/hi/statements/vocab.md index 426e1b28..5266e893 100644 --- a/hi/statements/vocab.md +++ b/hi/statements/vocab.md @@ -44,7 +44,7 @@ lang: hi
    -

    न्‍यायसंगत कथन तीन श्रेणियों के अंतर्गत आते हैं : उन कार्यों के लिए कथन जो प्रतिलिप्यधिकार (कॉपीराइट) में हैं, उन कार्यों के लिए कथन जो प्रतिलिप्यधिकार (कॉपीराइट) में नहीं हैं और उन कार्यों के लिए कथन जहां प्रतिलिप्यधिकार (कॉपीराइट) स्थिति स्पष्ट नहीं है। ये कथन अन्‍य प्रयोक्ता को डिजिटल स्थिति के विषय में आसानी से समझ में आने वाली उच्च स्तरीय जानकारी प्रदान करते हैं। अस्पष्ट प्रतिलिप्यधिकार (कॉपीराइट) स्थिति वाली सामग्री के लिए दो कथनों के अपवाद के साथ, ये कथन केवल तभी प्रयोग में लाए जाने चाहिए जब किसी कार्य के प्रतिलिप्यधिकार (कॉपीराइट) की स्थिति स्थापित कर ली जाती है। आप [दस्तावेज खंड](/en/documentation) में न्यायसंगत कथनों के प्रयोग के बारे में अधिक जानकारी प्राप्त कर सकते हैं।

    +

    न्‍यायसंगत कथन तीन श्रेणियों के अंतर्गत आते हैं : उन कार्यों के लिए कथन जो प्रतिलिप्यधिकार (कॉपीराइट) में हैं, उन कार्यों के लिए कथन जो प्रतिलिप्यधिकार (कॉपीराइट) में नहीं हैं और उन कार्यों के लिए कथन जहां प्रतिलिप्यधिकार (कॉपीराइट) स्थिति स्पष्ट नहीं है। ये कथन अन्‍य प्रयोक्ता को डिजिटल स्थिति के विषय में आसानी से समझ में आने वाली उच्च स्तरीय जानकारी प्रदान करते हैं। अस्पष्ट प्रतिलिप्यधिकार (कॉपीराइट) स्थिति वाली सामग्री के लिए दो कथनों के अपवाद के साथ, ये कथन केवल तभी प्रयोग में लाए जाने चाहिए जब किसी कार्य के प्रतिलिप्यधिकार (कॉपीराइट) की स्थिति स्थापित कर ली जाती है। आप [दस्तावेज खंड]({{site.url}}/en/documentation) में न्यायसंगत कथनों के प्रयोग के बारे में अधिक जानकारी प्राप्त कर सकते हैं।

    diff --git a/hr/index.md b/hr/index.md index 0ec1018d..d7313e56 100644 --- a/hr/index.md +++ b/hr/index.md @@ -7,5 +7,5 @@ lang: hr
    # Za baštinske ustanove -RightsStatements.org pruža skup standardiziranih izjava o pravima koje se mogu koristiti za informiranje javnosti o statusu autorskog prava i mogućnostima ponovnog korištenja digitalnih objekata. Naše izjave o pravima podržavaju najveće platforme za okupljanje podataka kao što su Digitalna javna knjižnica Amerike i Europeana. Izjave o pravima izrađene su na način da ih mogu koristiti i ljudi i strojevi (poput tražilica) i koriste tehnologiju semantičkog weba. Više o tome kako možete koristiti naše izjave o pravima pronađite [ovdje](/en/documentation#use-by-cultural-heritage-institutions). +RightsStatements.org pruža skup standardiziranih izjava o pravima koje se mogu koristiti za informiranje javnosti o statusu autorskog prava i mogućnostima ponovnog korištenja digitalnih objekata. Naše izjave o pravima podržavaju najveće platforme za okupljanje podataka kao što su Digitalna javna knjižnica Amerike i Europeana. Izjave o pravima izrađene su na način da ih mogu koristiti i ljudi i strojevi (poput tražilica) i koriste tehnologiju semantičkog weba. Više o tome kako možete koristiti naše izjave o pravima pronađite [ovdje]({{site.url}}/en/documentation#use-by-cultural-heritage-institutions).
    diff --git a/hr/statements/vocab.md b/hr/statements/vocab.md index 6406b44d..d580643d 100644 --- a/hr/statements/vocab.md +++ b/hr/statements/vocab.md @@ -45,7 +45,7 @@ Izjave o pravima posebno su razvijene za potrebe baštinskih ustanova i mrežnih
    -

    Izjave o pravima podijeljene su u tri kategorije: Izjave za djela koja su zaštićena autorskim pravom, izjave za djela koja nisu zaštićena autorskim pravom i izjave za djela čiji je status autorskog prava nejasan. Izjave pružaju krajnjim korisnicima lako razumljive visokovrijedne informacije o statusu autorskog prava i mogućnosti ponovnog korištenja digitalnih objekata. S iznimkom dviju izjava za objekte s nejasnim statusom autorskog prava, ove izjave treba primijeniti tek nakon što se utvrdi status autorskog prava djela. Više informacija o tome kako primijeniti izjave o pravima možete pronaći u [odjeljku dokumentacija](/en/documentation).

    +

    Izjave o pravima podijeljene su u tri kategorije: Izjave za djela koja su zaštićena autorskim pravom, izjave za djela koja nisu zaštićena autorskim pravom i izjave za djela čiji je status autorskog prava nejasan. Izjave pružaju krajnjim korisnicima lako razumljive visokovrijedne informacije o statusu autorskog prava i mogućnosti ponovnog korištenja digitalnih objekata. S iznimkom dviju izjava za objekte s nejasnim statusom autorskog prava, ove izjave treba primijeniti tek nakon što se utvrdi status autorskog prava djela. Više informacija o tome kako primijeniti izjave o pravima možete pronaći u [odjeljku dokumentacija]({{site.url}}/en/documentation).

    diff --git a/it/index.md b/it/index.md index 5125dcec..e9166713 100644 --- a/it/index.md +++ b/it/index.md @@ -7,5 +7,5 @@ lang: it
    # Per le istituzioni culturali -RightsStatements.org fornisce una serie di dichiarazioni di diritti standardizzate che possono essere utilizzate per comunicare al pubblico se vi è tutela accordata dal diritto d'autore e le possibilità di riuso degli oggetti digitali. Le nostre dichiarazioni di diritti sono supportate da importanti piattaforme di aggregazione come la Digital Public Library of America ed Europeana. Le dichiarazioni di diritti sono state progettate tenendo conto sia degli utenti umani che degli utenti macchina (come i motori di ricerca) e fanno uso della tecnologia del web semantico. Per saperne di più su come è possibile utilizzare le nostre dichiarazioni di diritti [qui](/en/documentation#use-by-cultural-heritage-institutions) +RightsStatements.org fornisce una serie di dichiarazioni di diritti standardizzate che possono essere utilizzate per comunicare al pubblico se vi è tutela accordata dal diritto d'autore e le possibilità di riuso degli oggetti digitali. Le nostre dichiarazioni di diritti sono supportate da importanti piattaforme di aggregazione come la Digital Public Library of America ed Europeana. Le dichiarazioni di diritti sono state progettate tenendo conto sia degli utenti umani che degli utenti macchina (come i motori di ricerca) e fanno uso della tecnologia del web semantico. Per saperne di più su come è possibile utilizzare le nostre dichiarazioni di diritti [qui]({{site.url}}/en/documentation#use-by-cultural-heritage-institutions)
    diff --git a/it/statements/vocab.md b/it/statements/vocab.md index 14998267..d5989fba 100644 --- a/it/statements/vocab.md +++ b/it/statements/vocab.md @@ -13,7 +13,7 @@ RightsStatements.org al momento fornisce 12 diverse dichiarazioni di diritti che Le dichiarazioni di diritti sono state sviluppate appositamente per i bisogni delle istituzioni culturali e delle piattaforme di aggregazione per il patrimonio culturale online e non sono destinate ad essere utilizzate dai singoli per concedere in licenza le proprie creazioni. (Gli utenti che sono alla ricerca di uno strumento per concedere in licenza le proprie opere sono invitati a considerare una delle [licenze Creative Commons](https://creativecommons.org/licenses/){:target="_blank"}).
    -## Tre categorie di dichiarazioni di diritti +## Tre categorie di dichiarazioni di diritti
    @@ -45,7 +45,7 @@ Le dichiarazioni di diritti sono state sviluppate appositamente per i bisogni de
    -

    Le dichiarazioni di diritti rientrano in tre categorie: dichiarazioni per opere che sono protette dal diritto d'autore, dichiarazioni per opere che non sono protette dal diritto d'autore e dichiarazioni per opere il cui diritto d'autore è incerto. Le dichiarazioni forniscono agli utenti finali informazioni di alto livello e di facile comprensione sul diritto d'autore e sulle possibilità di riuso degli oggetti digitali. Ad eccezione delle due dichiarazioni per gli oggetti con diritto d'autore incerto, queste dichiarazioni dovrebbero essere applicate solo dopo aver stabilito il diritto d'autore di un'opera. Maggiori informazioni su come applicare le dichiarazioni di diritti sono disponibili nella [sezione documentazione](/en/documentation).

    +

    Le dichiarazioni di diritti rientrano in tre categorie: dichiarazioni per opere che sono protette dal diritto d'autore, dichiarazioni per opere che non sono protette dal diritto d'autore e dichiarazioni per opere il cui diritto d'autore è incerto. Le dichiarazioni forniscono agli utenti finali informazioni di alto livello e di facile comprensione sul diritto d'autore e sulle possibilità di riuso degli oggetti digitali. Ad eccezione delle due dichiarazioni per gli oggetti con diritto d'autore incerto, queste dichiarazioni dovrebbero essere applicate solo dopo aver stabilito il diritto d'autore di un'opera. Maggiori informazioni su come applicare le dichiarazioni di diritti sono disponibili nella [sezione documentazione]({{site.url}}/en/documentation).

    diff --git a/lt/index.md b/lt/index.md index 0424b05d..00e17556 100644 --- a/lt/index.md +++ b/lt/index.md @@ -7,5 +7,5 @@ lang: lt
    # Atminties Institucijoms -RightsStatements.org pateikiamos standartizuotos teisių pareikštys, kurios gali būti panaudotos siekiant informuoti visuomenę apie skaitmeniniams objektams taikomą autorių teisių režimą ir galimus jų pakartotinio panaudojimo būdus. Mūsų teisių pareikštis taiko ir naudoja didžiosios duomenų kaupimo platformos, tokios kaip Amerikos Skaitmeninė Viešoji Biblioteka ir Europeana. Teisių pareikštys sukurtos siekiant leisti jomis naudotis ir žmonėms, ir kompiuterinėms sistemoms (pavyzdžiui, paieškos varikliams), jos išnaudoja semantines žiniatinklio technologijas. [Čia](/en/documentation#use-by-cultural-heritage-institutions) galite daugiau sužinoti, kaip naudoti mūsų teisių pareikštis. +RightsStatements.org pateikiamos standartizuotos teisių pareikštys, kurios gali būti panaudotos siekiant informuoti visuomenę apie skaitmeniniams objektams taikomą autorių teisių režimą ir galimus jų pakartotinio panaudojimo būdus. Mūsų teisių pareikštis taiko ir naudoja didžiosios duomenų kaupimo platformos, tokios kaip Amerikos Skaitmeninė Viešoji Biblioteka ir Europeana. Teisių pareikštys sukurtos siekiant leisti jomis naudotis ir žmonėms, ir kompiuterinėms sistemoms (pavyzdžiui, paieškos varikliams), jos išnaudoja semantines žiniatinklio technologijas. [Čia]({{site.url}}/en/documentation#use-by-cultural-heritage-institutions) galite daugiau sužinoti, kaip naudoti mūsų teisių pareikštis.
    diff --git a/lt/statements/vocab.md b/lt/statements/vocab.md index 1614f9c7..37267893 100644 --- a/lt/statements/vocab.md +++ b/lt/statements/vocab.md @@ -45,7 +45,7 @@ Teisių pareikštys sukurtos specialiai atminties institucijų ir internetinių
    -

    Teisių pareikštys gali būti suskirstytos į tris kategorijas: Pareikštys autorių teisių saugomiems objektams, Pareikštys objektams, kurių autorių teisės nesaugo ir Pareikštys objektams, kurių autorių teisių būsena yra neaiški. Pareikštyse pateikiama naudotojui lengvai suprantama informacija apie skaitmeninius objektus saugančių autorių teisių rėžimą ir galimybes juos panaudoti pakartotinai. Išskyrus dvi pareikštis, specialiai skirtas ženklinti objektus, kurių autorių teisių būsena nėra žinoma, pareikštys turėtų būti taikomos tik po to, kai identifikuojamos objektą saugančios autorinės teisės. Daugiau informacijos apie tai, kaip taikyti teisių pareikštis, galite rasti skyriuje [„Dokumentai“](/en/documentation).

    +

    Teisių pareikštys gali būti suskirstytos į tris kategorijas: Pareikštys autorių teisių saugomiems objektams, Pareikštys objektams, kurių autorių teisės nesaugo ir Pareikštys objektams, kurių autorių teisių būsena yra neaiški. Pareikštyse pateikiama naudotojui lengvai suprantama informacija apie skaitmeninius objektus saugančių autorių teisių rėžimą ir galimybes juos panaudoti pakartotinai. Išskyrus dvi pareikštis, specialiai skirtas ženklinti objektus, kurių autorių teisių būsena nėra žinoma, pareikštys turėtų būti taikomos tik po to, kai identifikuojamos objektą saugančios autorinės teisės. Daugiau informacijos apie tai, kaip taikyti teisių pareikštis, galite rasti skyriuje [„Dokumentai“]({{site.url}}/en/documentation).

    diff --git a/nl/index.md b/nl/index.md index 21e5ae29..c42693e2 100644 --- a/nl/index.md +++ b/nl/index.md @@ -7,5 +7,5 @@ lang: nl
    # Voor erfgoedinstellingen -RightsStatements.org biedt een reeks gestandaardiseerde rechtenverklaringen die kunnen gebruikt worden om de auteursrechtelijke en hergebruikstatus van digitale objecten aan het publiek te communiceren. Onze rechtenverklaringen worden ondersteund door belangrijke aggregatieplatformen zoals de Digital Public Library of America en Europeana. De rechtenverklaringen zijn ontworpen met zowel menselijke als machinale gebruikers (zoals zoekmachines) in gedachten en maken gebruik van semantische webtechnologie. Meer informatie over hoe je onze rechtenverklaringen kan gebruiken [hier](/en/documentation#use-by-cultural-heritage-institutions). +RightsStatements.org biedt een reeks gestandaardiseerde rechtenverklaringen die kunnen gebruikt worden om de auteursrechtelijke en hergebruikstatus van digitale objecten aan het publiek te communiceren. Onze rechtenverklaringen worden ondersteund door belangrijke aggregatieplatformen zoals de Digital Public Library of America en Europeana. De rechtenverklaringen zijn ontworpen met zowel menselijke als machinale gebruikers (zoals zoekmachines) in gedachten en maken gebruik van semantische webtechnologie. Meer informatie over hoe je onze rechtenverklaringen kan gebruiken [hier]({{site.url}}/en/documentation#use-by-cultural-heritage-institutions).
    diff --git a/nl/statements/vocab.md b/nl/statements/vocab.md index 1b05e7d2..3893d2f1 100644 --- a/nl/statements/vocab.md +++ b/nl/statements/vocab.md @@ -45,7 +45,7 @@ De rechtenverklaringen zijn specifiek ontwikkeld voor de behoeften van erfgoedin
    -

    De rechtenverklaringen omvatten drie categorieën: verklaringen voor werken waarop auteursrechten rusten, verklaringen voor werken waarop geen auteursrechten rusten en verklaringen voor werken waarvan de auteursrechtelijke status niet duidelijk is. De verklaringen bieden eindgebruikers eenvoudig te begrijpen informatie op hoog niveau over de auteursrechtelijke en hergebruikstatus van digitale objecten. Met uitzondering van de twee verklaringen voor objecten met een niet duidelijke auteursrechtelijke status, mogen deze verklaringen alleen worden toegepast nadat de auteursrechtelijke status van een werk is vastgesteld. Meer informatie over het toepassen van de rechtenverklaringen vind je in de [documentatie sectie](/en/documentation).

    +

    De rechtenverklaringen omvatten drie categorieën: verklaringen voor werken waarop auteursrechten rusten, verklaringen voor werken waarop geen auteursrechten rusten en verklaringen voor werken waarvan de auteursrechtelijke status niet duidelijk is. De verklaringen bieden eindgebruikers eenvoudig te begrijpen informatie op hoog niveau over de auteursrechtelijke en hergebruikstatus van digitale objecten. Met uitzondering van de twee verklaringen voor objecten met een niet duidelijke auteursrechtelijke status, mogen deze verklaringen alleen worden toegepast nadat de auteursrechtelijke status van een werk is vastgesteld. Meer informatie over het toepassen van de rechtenverklaringen vind je in de [documentatie sectie]({{site.url}}/en/documentation).

    diff --git a/pl/index.md b/pl/index.md index 6b05845a..298e0fa8 100644 --- a/pl/index.md +++ b/pl/index.md @@ -7,5 +7,5 @@ lang: pl
    # Dla Instytucji Dziedzictwa -RightsStatements.org oferuje zbiór ustandaryzowanych oświadczeń prawnych, które można wykorzystywać w celu zakomunikowania odbiorcom statusu obiektów cyfrowych w kontekście majątkowych praw autorskich i możliwości ponownego ich wykorzystania. Nasze oświadczenia prawne są wspierane przez główne platformy agregujące dane, takie jak Digital Public Library of America oraz Europeana. Oświadczenia prawne zostały zaprojektowane zarówno z myślą o użytkownikach, jaki i zautomatyzowanych usługach (takich jak wyszukiwarki), z wykorzystaniem technologii semantycznych. Więcej na temat tego, jak można wykorzystać nasze oświadczenia prawne znajduje się [tutaj](/en/documentation#use-by-cultural-heritage-institutions). +RightsStatements.org oferuje zbiór ustandaryzowanych oświadczeń prawnych, które można wykorzystywać w celu zakomunikowania odbiorcom statusu obiektów cyfrowych w kontekście majątkowych praw autorskich i możliwości ponownego ich wykorzystania. Nasze oświadczenia prawne są wspierane przez główne platformy agregujące dane, takie jak Digital Public Library of America oraz Europeana. Oświadczenia prawne zostały zaprojektowane zarówno z myślą o użytkownikach, jaki i zautomatyzowanych usługach (takich jak wyszukiwarki), z wykorzystaniem technologii semantycznych. Więcej na temat tego, jak można wykorzystać nasze oświadczenia prawne znajduje się [tutaj]({{site.url}}/en/documentation#use-by-cultural-heritage-institutions).
    diff --git a/pl/statements/vocab.md b/pl/statements/vocab.md index eba9c6b4..69e7b9a5 100644 --- a/pl/statements/vocab.md +++ b/pl/statements/vocab.md @@ -45,7 +45,7 @@ Oświadczenia prawne zostały opracowane wyłącznie na potrzeby instytucji dzie
    -

    Oświadczenia prawne dzielą się na trzy kategorie: oświadczenia dla utworów, które są objęte pełną ochroną prawnoautorską, oświadczenia dla utworów które takiej pełnej ochrony nie posiadają oraz oświadczenia dla utworów, których status prawnoautorski jest niejasny. Oświadczenia ułatwiają użytkownikom zrozumienie ogólnych informacji związanych ze statusem obiektów cyfrowych w kontekście majątkowych praw autorskich i możliwości ponownego wykorzystania tych obiektów. Za wyjątkiem dwóch oświadczeń dla obiektów o niejasnym statusie prawnoautorskim, oświadczenia powinny być stosowane wyłącznie po określeniu takiego statusu. Więcej informacji na temat zasad stosowania oświadczeń prawnych można znaleźć w sekcji z [dokumentacją](/en/documentation).

    +

    Oświadczenia prawne dzielą się na trzy kategorie: oświadczenia dla utworów, które są objęte pełną ochroną prawnoautorską, oświadczenia dla utworów które takiej pełnej ochrony nie posiadają oraz oświadczenia dla utworów, których status prawnoautorski jest niejasny. Oświadczenia ułatwiają użytkownikom zrozumienie ogólnych informacji związanych ze statusem obiektów cyfrowych w kontekście majątkowych praw autorskich i możliwości ponownego wykorzystania tych obiektów. Za wyjątkiem dwóch oświadczeń dla obiektów o niejasnym statusie prawnoautorskim, oświadczenia powinny być stosowane wyłącznie po określeniu takiego statusu. Więcej informacji na temat zasad stosowania oświadczeń prawnych można znaleźć w sekcji z [dokumentacją]({{site.url}}/en/documentation).

    From c47e99db35126918520def6df5207ef8fc3e05d2 Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Wed, 4 Sep 2024 11:23:29 +0200 Subject: [PATCH 18/55] Changes for fixing hardcoded urls --- en/statement.hbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/statement.hbs b/en/statement.hbs index a127b54c..feb048eb 100644 --- a/en/statement.hbs +++ b/en/statement.hbs @@ -11,7 +11,7 @@ {% raw %}{{data.prefLabel.[@value]}}{% endraw %} | Rights Statements {% include cookies.html %} - + {% if site.google_analytics %}{% include analytics.html %}{% endif %} From 22a64eaa34a82cfea88bf009749ccae17906d0f7 Mon Sep 17 00:00:00 2001 From: Hugo Manguinhas Date: Wed, 4 Sep 2024 11:37:31 +0200 Subject: [PATCH 19/55] Update usage_guidelines.md --- en/documentation/usage_guidelines.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/en/documentation/usage_guidelines.md b/en/documentation/usage_guidelines.md index 506e8654..9b8d7b3d 100644 --- a/en/documentation/usage_guidelines.md +++ b/en/documentation/usage_guidelines.md @@ -26,35 +26,35 @@ In the online environment the rights statements should be used by linking to the 1) Using the button provided by RightsStatements.org and linking the button image to the rights statement URI:
    - + In Copyright - Educational Use Permitted
    -This can be done by using the following bit of code (using the example of the [In Copyright - Educational Use Permitted]({{site.app_url}}/vocab/InC-EDU/1.0/") statement): +This can be done by using the following bit of code (using the example of the [In Copyright - Educational Use Permitted]({{site.url}}/vocab/InC-EDU/1.0/") statement): - + In Copyright - Educational Use Permitted + src="{{site.url}}/files/buttons/InC-EDU.dark-white-interior.png"/>
    2) Using an image of the category icon followed by the full name of the rights statement and linking the full name of the rights statement to the URI of the rights statement.
    -In Copyright - Educational Use Permitted - + In Copyright - Educational Use Permitted
    -This can be done by using the following bit of code (using the example of the [In Copyright - Educational Use Permitted]({{site.app_url}}/vocab/InC-EDU/1.0/") statement): +This can be done by using the following bit of code (using the example of the [In Copyright - Educational Use Permitted]({{site.url}}/vocab/InC-EDU/1.0/") statement): - In Copyright - Educational Use Permitted - + In Copyright - Educational Use Permitted @@ -62,10 +62,10 @@ This can be done by using the following bit of code (using the example of the [I 3) Using the full name of the rights statement as a link to the URI of the rights statement.
    -In Copyright - Educational Use Permitted +In Copyright - Educational Use Permitted
    - + In Copyright - Educational Use Permitted From a10509d4330b6589747be95b545208f726f42f38 Mon Sep 17 00:00:00 2001 From: Hugo Manguinhas Date: Wed, 4 Sep 2024 11:43:45 +0200 Subject: [PATCH 20/55] Update usage_guidelines.md --- en/documentation/usage_guidelines.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/en/documentation/usage_guidelines.md b/en/documentation/usage_guidelines.md index 9b8d7b3d..e1c21002 100644 --- a/en/documentation/usage_guidelines.md +++ b/en/documentation/usage_guidelines.md @@ -26,35 +26,35 @@ In the online environment the rights statements should be used by linking to the 1) Using the button provided by RightsStatements.org and linking the button image to the rights statement URI:
    - + In Copyright - Educational Use Permitted
    This can be done by using the following bit of code (using the example of the [In Copyright - Educational Use Permitted]({{site.url}}/vocab/InC-EDU/1.0/") statement): - + In Copyright - Educational Use Permitted + src="https://rightsstatements.org/files/buttons/InC-EDU.dark-white-interior.png"/>
    2) Using an image of the category icon followed by the full name of the rights statement and linking the full name of the rights statement to the URI of the rights statement.
    -In Copyright - Educational Use Permitted - + In Copyright - Educational Use Permitted
    This can be done by using the following bit of code (using the example of the [In Copyright - Educational Use Permitted]({{site.url}}/vocab/InC-EDU/1.0/") statement): - In Copyright - Educational Use Permitted - + In Copyright - Educational Use Permitted @@ -62,7 +62,7 @@ This can be done by using the following bit of code (using the example of the [I 3) Using the full name of the rights statement as a link to the URI of the rights statement.
    -In Copyright - Educational Use Permitted +In Copyright - Educational Use Permitted
    From 943407a7c0eebbc4dcf799f6a9e90da61c1eebb0 Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Wed, 4 Sep 2024 11:44:12 +0200 Subject: [PATCH 21/55] Changes for fixing hardcoded urls --- _includes/collection.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/collection.html b/_includes/collection.html index 7b057fad..f29ae3d2 100644 --- a/_includes/collection.html +++ b/_includes/collection.html @@ -13,7 +13,7 @@

    {% raw %}{{ prefLabel.[@value] }}

    {{ scopeNote.[@value] }}

    -

    URI: {{ site.app_url }}/page/{% raw %}{{ identifier }}/{% endraw %}{{ site.rights_data_version }}/?language={{ page.lang }}{% raw %}

    +

    URI: {{ site.app_url }}/vocab/{% raw %}{{ identifier }}/{% endraw %}{{ site.rights_data_version }}/{% raw %}

    From 1e4349d136b7f254a4f2e1055367db15c1e74311 Mon Sep 17 00:00:00 2001 From: Hugo Manguinhas Date: Wed, 4 Sep 2024 11:49:16 +0200 Subject: [PATCH 22/55] Update usage_guidelines.md --- en/documentation/usage_guidelines.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/en/documentation/usage_guidelines.md b/en/documentation/usage_guidelines.md index e1c21002..fc91becb 100644 --- a/en/documentation/usage_guidelines.md +++ b/en/documentation/usage_guidelines.md @@ -26,13 +26,13 @@ In the online environment the rights statements should be used by linking to the 1) Using the button provided by RightsStatements.org and linking the button image to the rights statement URI:
    - + In Copyright - Educational Use Permitted
    -This can be done by using the following bit of code (using the example of the [In Copyright - Educational Use Permitted]({{site.url}}/vocab/InC-EDU/1.0/") statement): +This can be done by using the following bit of code (using the example of the [In Copyright - Educational Use Permitted]({{site.app_url}}/vocab/InC-EDU/1.0/") statement): In Copyright - Educational Use Permitted -In Copyright - Educational Use Permitted In Copyright - Educational Use Permitted -This can be done by using the following bit of code (using the example of the [In Copyright - Educational Use Permitted]({{site.url}}/vocab/InC-EDU/1.0/") statement): +This can be done by using the following bit of code (using the example of the [In Copyright - Educational Use Permitted]({{site.app_url}}/vocab/InC-EDU/1.0/) statement): In Copyright - Educational Use Permitted @@ -62,7 +62,7 @@ This can be done by using the following bit of code (using the example of the [I 3) Using the full name of the rights statement as a link to the URI of the rights statement.
    -In Copyright - Educational Use Permitted +In Copyright - Educational Use Permitted
    From fc8c0cbaada28d445665d0adccce0529cd3bdaac Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Wed, 4 Sep 2024 12:00:25 +0200 Subject: [PATCH 23/55] Changes for fixing hardcoded urls --- _includes/collection.html | 4 ++-- en/_posts/2020-02-28-2019-annual-report.md | 2 +- en/documentation/changelog.md | 6 +++--- en/documentation/faq.md | 2 +- en/documentation/translations.md | 10 +++++----- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/_includes/collection.html b/_includes/collection.html index f29ae3d2..7288b501 100644 --- a/_includes/collection.html +++ b/_includes/collection.html @@ -12,8 +12,8 @@ diff --git a/en/_posts/2020-02-28-2019-annual-report.md b/en/_posts/2020-02-28-2019-annual-report.md index d86f133f..1cf9acc0 100644 --- a/en/_posts/2020-02-28-2019-annual-report.md +++ b/en/_posts/2020-02-28-2019-annual-report.md @@ -20,7 +20,7 @@ More translations are underway, and with that, hopefully an intention to start u ## Progress as a Consortium -In order to better support the development and implementation of the statements, we also work to ensure the sustainability and efficiency of the consortium, and we are very proud of the [progress we have made throughout 2019]({{site.app_url}}/en/2019/08/work-plan.html). +In order to better support the development and implementation of the statements, we also work to ensure the sustainability and efficiency of the consortium, and we are very proud of the [progress we have made throughout 2019]({{site.url}}/en/2019/08/work-plan.html). To start off with, there were a few changes in people; both Working Groups welcomed new members and said goodbye to a few. The Statements Working Group appointed Jessica Coates, Copyright Law and Policy Advisor for the Australian Library Copyright Committee (ALCC) as Vice Chair. Julia Fallon, Senior Policy Advisor for Europeana Foundation took over as Chair of the Consortium from Paul Keller. We would like to thank Paul, who will stay on the Steering Committee, for his steady hand guiding the consortium through the past two years! diff --git a/en/documentation/changelog.md b/en/documentation/changelog.md index 53c5b848..6acaa2c4 100644 --- a/en/documentation/changelog.md +++ b/en/documentation/changelog.md @@ -26,15 +26,15 @@ Added Lithuanian translation of [version 1.0 of the rights statements]({{site.ap #### 2019-12-03 -Added Hindi translation of [version 1.0 of the rights statements]({{site.app_url}}/page/1.0/?language=hi), and the [home page]({{site.app_url}}/hi/). +Added Hindi translation of [version 1.0 of the rights statements]({{site.app_url}}/page/1.0/?language=hi), and the [home page]({{site.url}}/hi/). ### 2018-06-08 -Added Estonian translation of [version 1.0 the rights statements]({{site.app_url}}/page/1.0/?language=et), and the [home page]({{site.app_url}}/et/). See the [translation document]({{site.url}}/files/180606RS_1.0_translation_EE_approved.pdf) for a documentation of the translation process. +Added Estonian translation of [version 1.0 the rights statements]({{site.app_url}}/page/1.0/?language=et), and the [home page]({{site.url}}/et/). See the [translation document]({{site.url}}/files/180606RS_1.0_translation_EE_approved.pdf) for a documentation of the translation process. ### 2018-06-05 -Added German translation of [version 1.0 the rights statements]({{site.app_url}}/page/1.0/?language=de), and the [home page]({{site.app_url}}/de/). See the [translation document]({{site.url}}/files/180531RS_1.0_translation_DE_approved.pdf) for a documentation of the translation process. +Added German translation of [version 1.0 the rights statements]({{site.app_url}}/page/1.0/?language=de), and the [home page]({{site.url}}/de/). See the [translation document]({{site.url}}/files/180531RS_1.0_translation_DE_approved.pdf) for a documentation of the translation process. ### 2018-05-31 diff --git a/en/documentation/faq.md b/en/documentation/faq.md index a9d90462..38ee5372 100644 --- a/en/documentation/faq.md +++ b/en/documentation/faq.md @@ -56,7 +56,7 @@ lang: en - Why are there different versions of the URIs of the statements? - The rights statements are identified by a single statement URI which takes the form `{{site.app_url}}/vocab/[id]/[version]/`. Additionally, we offer representations of the statements in both human readable (HTML) and machine readable (RDF) formats. These representations each have their own URL, allowing them to be referenced directly where appropriate. The human readable webpage is at `{{site.app_url}}/page/[id]/[version]/`, while the machine readable data is at `{{site.app_url}}/data/[id]/[version]/`.

    When a web browser accesses a statement URI (`/vocab/`) it will be redirected to the URI of the webpage. When applying the rights statements to a digital object, always use the statement URI (`{{site.app_url}}/vocab/[id]/[version]/`). This ensures consistent use in data, and that the rights information contained in the statements can be accessed by both human users and machine clients. Developers interested further implementation details should consult the [technical documentation]({{site.app_url}}/en/documentation/). + The rights statements are identified by a single statement URI which takes the form `{{site.app_url}}/vocab/[id]/[version]/`. Additionally, we offer representations of the statements in both human readable (HTML) and machine readable (RDF) formats. These representations each have their own URL, allowing them to be referenced directly where appropriate. The human readable webpage is at `{{site.app_url}}/page/[id]/[version]/`, while the machine readable data is at `{{site.app_url}}/data/[id]/[version]/`.

    When a web browser accesses a statement URI (`/vocab/`) it will be redirected to the URI of the webpage. When applying the rights statements to a digital object, always use the statement URI (`{{site.app_url}}/vocab/[id]/[version]/`). This ensures consistent use in data, and that the rights information contained in the statements can be accessed by both human users and machine clients. Developers interested further implementation details should consult the [technical documentation]({{site.url}}/en/documentation/). - Will the rights statements be translated into other languages? diff --git a/en/documentation/translations.md b/en/documentation/translations.md index c2ec5cb4..540b2016 100644 --- a/en/documentation/translations.md +++ b/en/documentation/translations.md @@ -22,11 +22,11 @@ The rights statements have been translated into the following languages: * [Polish]({{site.app_url}}/page/1.0/?language=pl) – Translation partner: [Poznań Supercomputing and Networking Center](http://www.man.poznan.pl/online/en/), reviewed by [Polish Society of Authors and Composers](https://www.zaiks.org.pl/) (ZAIKS) and [National Film Archive – Audiovisual Institute](http://www.fina.gov.pl/) (FINA) * [Spanish]({{site.app_url}}/page/1.0/?language=es) - Translation partner: [Museo del Cine Pablo Ducrós Hicken](http://museodelcineba.org/), reviewed by [Safe Creative](https://www.safecreative.org/) * [Hindi ]({{site.app_url}}/page/1.0/?language=hi)- Translation partner: [National Digital Library of India](https://ndl.iitkgp.ac.in/) and [Indian Institute of Technology Kharagpur](http://www.iitkgp.ac.in/) of India, reviewed by [Mahatma Gandhi International Hindi University, Wardha](http://www.hindivishwa.org/Default.aspx) of India -* [Lithuanian]({{site.app_url}}/lt/) - Translation partners: the [National Library of Lithuania](https://www.lnb.lt/) and the [Professional Law Partnership iLaw](http://en.ilawfirm.lt/), reviewed by the [Baltic Audiovisual Archives Council](http://www.baacouncil.org/) (BAAC). -* [Dutch]({{site.app_url}}/nl/) - Translation Partner: [PACKED Centre of Expertise in Digital Heritage](https://www.packed.be/en/). Reviewed by [IP Squared.com](https://ip-squared.com/) and [Beeld end Geluid](https://www.beeldengeluid.nl/en/knowledge/experts/maarten-brinkerink). -* [Italian]({{site.app_url}}/it/) - Translation partner Marina Cotugno, [Juliafoto](https://www.juliafoto.it/about-us/). Review by Antonella De Robbio, Coordinator of [Gruppo di studio Open Access e Pubblico Dominio (GOAPD)](https://www.aib.it/struttura/commissioni-e-gruppi/gruppo-studio-open-access-pubblico-dominio/) at the Associazione Italiana Biblioteche*,* and Andrea Zanni, [MLOL](https://medialibrary.it/home/cover.aspx). -* [Croatian]({{site.app_url}}/hr/) - Translation partner: [National and University Library in Zagreb](https://www.nsk.hr/en/). Review by [Croatian State Intellectual Property Office](https://www.dziv.hr/en/). -* [Catalan]({{site.app_url}}/ca/) - Translation partner: [Legalment](https://www.legalment.net/). Review by Brigit Nonó, [Universitat de Girona - Biblioteca](https://www.udg.edu/ca/estructura/serveis/servei?ID=81), and Ariadna Matas, [Europeana Foundation](http://europeana.eu/) +* [Lithuanian]({{site.app_url}}/page/1.0/?language=lt) - Translation partners: the [National Library of Lithuania](https://www.lnb.lt/) and the [Professional Law Partnership iLaw](http://en.ilawfirm.lt/), reviewed by the [Baltic Audiovisual Archives Council](http://www.baacouncil.org/) (BAAC). +* [Dutch]({{site.app_url}}/page/1.0/?language=nl) - Translation Partner: [PACKED Centre of Expertise in Digital Heritage](https://www.packed.be/en/). Reviewed by [IP Squared.com](https://ip-squared.com/) and [Beeld end Geluid](https://www.beeldengeluid.nl/en/knowledge/experts/maarten-brinkerink). +* [Italian]({{site.app_url}}/page/1.0/?language=it) - Translation partner Marina Cotugno, [Juliafoto](https://www.juliafoto.it/about-us/). Review by Antonella De Robbio, Coordinator of [Gruppo di studio Open Access e Pubblico Dominio (GOAPD)](https://www.aib.it/struttura/commissioni-e-gruppi/gruppo-studio-open-access-pubblico-dominio/) at the Associazione Italiana Biblioteche*,* and Andrea Zanni, [MLOL](https://medialibrary.it/home/cover.aspx). +* [Croatian]({{site.app_url}}/page/1.0/?language=hr) - Translation partner: [National and University Library in Zagreb](https://www.nsk.hr/en/). Review by [Croatian State Intellectual Property Office](https://www.dziv.hr/en/). +* [Catalan]({{site.url}}/page/1.0/?language=) - Translation partner: [Legalment](https://www.legalment.net/). Review by Brigit Nonó, [Universitat de Girona - Biblioteca](https://www.udg.edu/ca/estructura/serveis/servei?ID=81), and Ariadna Matas, [Europeana Foundation](http://europeana.eu/) ## Translations under public review From f66e6684f2dcd5e006f8ade94f7d33880701cfbc Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Wed, 4 Sep 2024 12:09:32 +0200 Subject: [PATCH 24/55] Changes for fixing hardcoded urls --- ca/statements/index.html | 2 +- de/statements/index.html | 2 +- es/statements/index.html | 2 +- et/statements/index.html | 2 +- fi/statements/index.html | 2 +- hi/statements/index.html | 2 +- hr/statements/index.html | 2 +- it/statements/index.html | 2 +- lt/statements/index.html | 2 +- nl/statements/index.html | 2 +- pl/statements/index.html | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/ca/statements/index.html b/ca/statements/index.html index 3cac27a1..aa5c6d78 100644 --- a/ca/statements/index.html +++ b/ca/statements/index.html @@ -6,7 +6,7 @@ Page Redirection diff --git a/de/statements/index.html b/de/statements/index.html index 0d31a446..399c200d 100644 --- a/de/statements/index.html +++ b/de/statements/index.html @@ -6,7 +6,7 @@ Page Redirection diff --git a/es/statements/index.html b/es/statements/index.html index 1f0510ed..f27f4116 100644 --- a/es/statements/index.html +++ b/es/statements/index.html @@ -6,7 +6,7 @@ Page Redirection diff --git a/et/statements/index.html b/et/statements/index.html index bad7d6bf..350f9add 100644 --- a/et/statements/index.html +++ b/et/statements/index.html @@ -6,7 +6,7 @@ Page Redirection diff --git a/fi/statements/index.html b/fi/statements/index.html index a200696a..76b99bfc 100644 --- a/fi/statements/index.html +++ b/fi/statements/index.html @@ -6,7 +6,7 @@ Page Redirection diff --git a/hi/statements/index.html b/hi/statements/index.html index 4fbe76ce..dd7571ff 100644 --- a/hi/statements/index.html +++ b/hi/statements/index.html @@ -6,7 +6,7 @@ Page Redirection diff --git a/hr/statements/index.html b/hr/statements/index.html index c29d286c..6c7f2f58 100644 --- a/hr/statements/index.html +++ b/hr/statements/index.html @@ -6,7 +6,7 @@ Page Redirection diff --git a/it/statements/index.html b/it/statements/index.html index 1576069e..856c851f 100644 --- a/it/statements/index.html +++ b/it/statements/index.html @@ -6,7 +6,7 @@ Page Redirection diff --git a/lt/statements/index.html b/lt/statements/index.html index 0ca0ef86..221524d5 100644 --- a/lt/statements/index.html +++ b/lt/statements/index.html @@ -6,7 +6,7 @@ Page Redirection diff --git a/nl/statements/index.html b/nl/statements/index.html index d4d3c1a8..3616d3e3 100644 --- a/nl/statements/index.html +++ b/nl/statements/index.html @@ -6,7 +6,7 @@ Page Redirection diff --git a/pl/statements/index.html b/pl/statements/index.html index 8e91d469..fecc78ad 100644 --- a/pl/statements/index.html +++ b/pl/statements/index.html @@ -6,7 +6,7 @@ Page Redirection From 18a8fe2dd7436b1aa8241d39f62348b730810697 Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Wed, 4 Sep 2024 12:13:18 +0200 Subject: [PATCH 25/55] Changes for fixing hardcoded urls --- index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 89b47a49..190cfa97 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ - + Page Redirection If you are not redirected automatically, please click the link to continue to - {{ site.baseurl }}/{{ site.default_language }}/. + {{ site.url }}/{{ site.default_language }}/. From 4dfcd06ebd81ff582ac373baf1a16c5cf902da53 Mon Sep 17 00:00:00 2001 From: Hugo Manguinhas Date: Wed, 4 Sep 2024 12:30:27 +0200 Subject: [PATCH 26/55] Update en.yml --- _data/i18n/en.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_data/i18n/en.yml b/_data/i18n/en.yml index df3709ad..b964b47d 100644 --- a/_data/i18n/en.yml +++ b/_data/i18n/en.yml @@ -3,8 +3,8 @@ more_info: More info (English) slide-1.jpg: title: Mt. Mitchell Station, Mt. Mitchell, N.C. header: RightsStatements.org provides 12 standardized rights statements for online cultural heritage. - about: Our rights statements make it easy to see if and how online cultural heritage works can be reused. Find out more about our statements here. + about: Our rights statements make it easy to see if and how online cultural heritage works can be reused. Find out more about our statements here. slide-2.jpg: title: Postcard from Vienna (Luigi Meula) CC-BY-SA header: RightsStatements.org provides 12 standardized rights statements for online cultural heritage. - about: Our rights statements make it easy to see if and how online cultural heritage works can be reused. Find out more about our statements here. + about: Our rights statements make it easy to see if and how online cultural heritage works can be reused. Find out more about our statements here. From fa28d2d2cc7841a5cf8cb904d603c248c7e0c383 Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Wed, 4 Sep 2024 12:36:00 +0200 Subject: [PATCH 27/55] Changes for fixing hardcoded urls --- _data/i18n/ca.yml | 4 ++-- _data/i18n/de.yml | 4 ++-- _data/i18n/en.yml | 4 ++-- _data/i18n/es.yml | 4 ++-- _data/i18n/et.yml | 4 ++-- _data/i18n/fi.yml | 4 ++-- _data/i18n/fr.yml | 4 ++-- _data/i18n/hr.yml | 4 ++-- _data/i18n/it.yml | 4 ++-- _data/i18n/nl.yml | 4 ++-- _data/i18n/pl.yml | 4 ++-- _data/i18n/sv-FI.yml | 4 ++-- 12 files changed, 24 insertions(+), 24 deletions(-) diff --git a/_data/i18n/ca.yml b/_data/i18n/ca.yml index 8461a6b2..f903c0d6 100644 --- a/_data/i18n/ca.yml +++ b/_data/i18n/ca.yml @@ -3,8 +3,8 @@ more_info: Més informació (en anglès) slide-1.jpg: title: "Mt. Mitchell Station, Mt. Mitchell, N.C." header: Rightsstatements.org proporciona 12 declaracions de drets estandarditzades pel patrimoni cultural en línia. - about: "Les nostres declaracions de drets fan que sigui fàcil d'entendre si es poden reutilitzar, i de quina manera, obres del patrimoni cultural en línia. Podeu trobar més informació sobre les declaracions de drets aquí." + about: "Les nostres declaracions de drets fan que sigui fàcil d'entendre si es poden reutilitzar, i de quina manera, obres del patrimoni cultural en línia. Podeu trobar més informació sobre les declaracions de drets aquí." slide-2.jpg: title: "Postcard from Vienna (Luigi Meula) CC-BY-SA" header: Rightsstatements.org facilita 12 declaracions de drets estandarditzades pel patrimoni cultural en línia. - about: "Les nostres declaracions de drets fan que sigui fàcil d'entendre si es poden reutilitzar, i de quina manera, obres del patrimoni cultural en línia. Podeu trobar més informació sobre les declaracions de drets aquí. " + about: "Les nostres declaracions de drets fan que sigui fàcil d'entendre si es poden reutilitzar, i de quina manera, obres del patrimoni cultural en línia. Podeu trobar més informació sobre les declaracions de drets aquí. " diff --git a/_data/i18n/de.yml b/_data/i18n/de.yml index f1f206f1..2835db7d 100644 --- a/_data/i18n/de.yml +++ b/_data/i18n/de.yml @@ -3,8 +3,8 @@ more_info: Mehr Informationen (Englisch) slide-1.jpg: title: "Mt. Mitchell Station, Mt. Mitchell, N.C." header: RightsStatements.org bietet 12 standardisierte Rechtehinweise für das online verfügbare Kulturerbe. - about: "Unsere Rechtehinweise vereinfachen es zu erkennen, ob und wie online verfügbares Kulturerbe genutzt werden kann. Erfahren Sie hier mehr über unsere Rechtehinweise." + about: "Unsere Rechtehinweise vereinfachen es zu erkennen, ob und wie online verfügbares Kulturerbe genutzt werden kann. Erfahren Sie hier mehr über unsere Rechtehinweise." slide-2.jpg: title: "Postcard from Vienna (Luigi Meula) CC-BY-SA" header: RightsStatements.org bietet 12 standardisierte Rechtehinweise für das online verfügbare Kulturerbe. - about: "Unsere Rechtehinweise vereinfachen es zu erkennen, ob und wie online verfügbares Kulturerbe genutzt werden kann. Erfahren Sie hier mehr über unsere Rechtehinweise." + about: "Unsere Rechtehinweise vereinfachen es zu erkennen, ob und wie online verfügbares Kulturerbe genutzt werden kann. Erfahren Sie hier mehr über unsere Rechtehinweise." diff --git a/_data/i18n/en.yml b/_data/i18n/en.yml index df3709ad..b964b47d 100644 --- a/_data/i18n/en.yml +++ b/_data/i18n/en.yml @@ -3,8 +3,8 @@ more_info: More info (English) slide-1.jpg: title: Mt. Mitchell Station, Mt. Mitchell, N.C. header: RightsStatements.org provides 12 standardized rights statements for online cultural heritage. - about: Our rights statements make it easy to see if and how online cultural heritage works can be reused. Find out more about our statements here. + about: Our rights statements make it easy to see if and how online cultural heritage works can be reused. Find out more about our statements here. slide-2.jpg: title: Postcard from Vienna (Luigi Meula) CC-BY-SA header: RightsStatements.org provides 12 standardized rights statements for online cultural heritage. - about: Our rights statements make it easy to see if and how online cultural heritage works can be reused. Find out more about our statements here. + about: Our rights statements make it easy to see if and how online cultural heritage works can be reused. Find out more about our statements here. diff --git a/_data/i18n/es.yml b/_data/i18n/es.yml index 32f13752..9bb22543 100644 --- a/_data/i18n/es.yml +++ b/_data/i18n/es.yml @@ -3,8 +3,8 @@ more_info: Más información (inglés) slide-1.jpg: title: "Mt. Mitchell Station, Mt. Mitchell, N.C." header: RightsStatements.org provee doce declaraciones de derechos estandarizadas para el patrimonio cultural en línea. - about: Nuestras declaraciones de derechos facilitan ver si y cómo las obras patrimoniales digitales pueden ser reutilizadas. Encuentre más sobre nuestras declaraciones aquí. + about: Nuestras declaraciones de derechos facilitan ver si y cómo las obras patrimoniales digitales pueden ser reutilizadas. Encuentre más sobre nuestras declaraciones aquí. slide-2.jpg: title: "Postcard from Vienna (Luigi Meula) CC-BY-SA" header: RightsStatements.org provee doce declaraciones de derechos estandarizadas para el patrimonio cultural en línea. - about: Nuestras declaraciones de derechos facilitan ver si y cómo las obras patrimoniales digitales pueden ser reutilizadas. Encuentre más sobre nuestras declaraciones aquí. + about: Nuestras declaraciones de derechos facilitan ver si y cómo las obras patrimoniales digitales pueden ser reutilizadas. Encuentre más sobre nuestras declaraciones aquí. diff --git a/_data/i18n/et.yml b/_data/i18n/et.yml index 7e7f53de..8eea1a9a 100644 --- a/_data/i18n/et.yml +++ b/_data/i18n/et.yml @@ -3,8 +3,8 @@ more_info: Rohkem infot (inglise keeles) slide-1.jpg: title: "Mt. Mitchell Station, Mt. Mitchell, N.C." header: RightsStatements.org koduleht sisaldab kaksteist digitaalse kultuuripärandi kasutusõigusi kirjeldavat standardiseeritud autoriõigusliku seisundi deklaratsiooni. - about: "Autoriõigusliku seisundi deklaratsioonid võimaldavad kiiresti hinnata, kas ja kuidas on digitaalset kultuuripärandit lubatud taaskasutada. Täiendavat infot deklaratsioonide kohta leiab dokumentatsioonilehelt." + about: "Autoriõigusliku seisundi deklaratsioonid võimaldavad kiiresti hinnata, kas ja kuidas on digitaalset kultuuripärandit lubatud taaskasutada. Täiendavat infot deklaratsioonide kohta leiab dokumentatsioonilehelt." slide-2.jpg: title: "Postcard from Vienna (Luigi Meula) CC-BY-SA" header: RightsStatements.org koduleht sisaldab kaksteist digitaalse kultuuripärandi kasutusõigusi kirjeldavat standardiseeritud autoriõigusliku seisundi deklaratsiooni. - about: "Autoriõigusliku seisundi deklaratsioonid võimaldavad kiiresti hinnata, kas ja kuidas on digitaalset kultuuripärandit lubatud taaskasutada. Täiendavat infot deklaratsioonide kohta leiab dokumentatsioonilehelt." + about: "Autoriõigusliku seisundi deklaratsioonid võimaldavad kiiresti hinnata, kas ja kuidas on digitaalset kultuuripärandit lubatud taaskasutada. Täiendavat infot deklaratsioonide kohta leiab dokumentatsioonilehelt." diff --git a/_data/i18n/fi.yml b/_data/i18n/fi.yml index 694edd7c..a87c2e95 100644 --- a/_data/i18n/fi.yml +++ b/_data/i18n/fi.yml @@ -3,8 +3,8 @@ more_info: Lisätietoa (englisi) slide-1.jpg: title: "Mt. Mitchell Station, Mt. Mitchell, N.C." header: RightsStatements.org tarjoaa 12 vakiomuotoista käyttöoikeuskuvausta verkossa olevalle kulttuuriperinnölle. - about: "Käyttöoikeuskuvauksistamme selviää helposti, onko verkossa olevien kulttuuriperintöteosten uudelleenkäyttö sallittua ja miten niitä voi käyttää uudelleen. Lisätietoa käyttöoikeuskuvauksista." + about: "Käyttöoikeuskuvauksistamme selviää helposti, onko verkossa olevien kulttuuriperintöteosten uudelleenkäyttö sallittua ja miten niitä voi käyttää uudelleen. Lisätietoa käyttöoikeuskuvauksista." slide-2.jpg: title: "Postcard from Vienna (Luigi Meula) CC-BY-SA" header: RightsStatements.org tarjoaa 12 vakiomuotoista käyttöoikeuskuvausta verkossa olevalle kulttuuriperinnölle. - about: "Käyttöoikeuskuvauksistamme selviää helposti, onko verkossa olevien kulttuuriperintöteosten uudelleenkäyttö sallittua ja miten niitä voi käyttää uudelleen. Lisätietoa käyttöoikeuskuvauksista." + about: "Käyttöoikeuskuvauksistamme selviää helposti, onko verkossa olevien kulttuuriperintöteosten uudelleenkäyttö sallittua ja miten niitä voi käyttää uudelleen. Lisätietoa käyttöoikeuskuvauksista." diff --git a/_data/i18n/fr.yml b/_data/i18n/fr.yml index 402d847e..618ca5cd 100644 --- a/_data/i18n/fr.yml +++ b/_data/i18n/fr.yml @@ -3,8 +3,8 @@ more_info: Informations supplémentaires (anglais) slide-1.jpg: title: "Mt. Mitchell Station, Mt. Mitchell, N.C." header: RightsStatements.org propose douze déclarations des droits standardisées pour le patrimoine culturel disponible en ligne. - about: Nos déclarations des droits permettent de déterminer plus facilement si et comment le patrimoine culturel disponible en ligne peut être réutilisé. Vous trouverez ici de plus amples informations sur nos déclarations des droits. + about: Nos déclarations des droits permettent de déterminer plus facilement si et comment le patrimoine culturel disponible en ligne peut être réutilisé. Vous trouverez ici de plus amples informations sur nos déclarations des droits. slide-2.jpg: title: "Postcard from Vienna (Luigi Meula) CC-BY-SA" header: RightsStatements.org propose douze déclarations des droits standardisées pour le patrimoine culturel disponible en ligne. - about: Nos déclarations des droits permettent de déterminer plus facilement si et comment le patrimoine culturel disponible en ligne peut être réutilisé. Vous trouverez ici de plus amples informations sur nos déclarations des droits. + about: Nos déclarations des droits permettent de déterminer plus facilement si et comment le patrimoine culturel disponible en ligne peut être réutilisé. Vous trouverez ici de plus amples informations sur nos déclarations des droits. diff --git a/_data/i18n/hr.yml b/_data/i18n/hr.yml index bd99012f..07043213 100644 --- a/_data/i18n/hr.yml +++ b/_data/i18n/hr.yml @@ -3,8 +3,8 @@ more_info: Više informacija (engleski) slide-1.jpg: title: "Mt. Mitchell Station, Mt. Mitchell, N.C." header: RightsStatements.org pruža 12 standardiziranih izjava o pravima za kulturnu baštinu na mreži. - about: Naše izjave o pravima pružaju lako razumljive informacije o tome može li se i na koji način ponovno koristiti kulturna baština na mreži. Saznajte više o našim izjavama ovdje. + about: Naše izjave o pravima pružaju lako razumljive informacije o tome može li se i na koji način ponovno koristiti kulturna baština na mreži. Saznajte više o našim izjavama ovdje. slide-2.jpg: title: "Razglednica iz Beča (Luigi Meula) CC-BY-SA" header: RightsStatements.org pruža 12 standardiziranih izjava o pravima za kulturnu baštinu na mreži. - about: Naše izjave o pravima pružaju lako razumljive informacije o tome može li se i na koji način ponovno koristiti kulturna baština na mreži. Saznajte više o našim izjavama ovdje. + about: Naše izjave o pravima pružaju lako razumljive informacije o tome može li se i na koji način ponovno koristiti kulturna baština na mreži. Saznajte više o našim izjavama ovdje. diff --git a/_data/i18n/it.yml b/_data/i18n/it.yml index 39d7547c..43fbea1b 100644 --- a/_data/i18n/it.yml +++ b/_data/i18n/it.yml @@ -3,8 +3,8 @@ more_info: Maggiori informazioni (Inglese) slide-1.jpg: title: "Mt. Mitchell Station, Mt. Mitchell, N.C." header: RightsStatements.org fornisce 12 dichiarazioni di diritti standardizzate per il patrimonio culturale online. - about: Le nostre dichiarazioni di diritti semplificano la comprensione di come e in quali casi le opere che appartengono al patrimonio culturale e che vengono messe a disposizione online possono essere riutilizzate. Per saperne di più sulle nostre dichiarazioni qui. + about: Le nostre dichiarazioni di diritti semplificano la comprensione di come e in quali casi le opere che appartengono al patrimonio culturale e che vengono messe a disposizione online possono essere riutilizzate. Per saperne di più sulle nostre dichiarazioni qui. slide-2.jpg: title: "Cartolina da Vienna (Luigi Meula) CC-BY-SA" header: RightsStatements.org fornisce 12 dichiarazioni di diritti standardizzate per il patrimonio culturale online. - about: Le nostre dichiarazioni di diritti semplificano la comprensione di come e in quali casi le opere che appartengono al patrimonio culturale e che vengono messe a disposizione online possono essere riutilizzate. Per saperne di più sulle nostre dichiarazioni qui. + about: Le nostre dichiarazioni di diritti semplificano la comprensione di come e in quali casi le opere che appartengono al patrimonio culturale e che vengono messe a disposizione online possono essere riutilizzate. Per saperne di più sulle nostre dichiarazioni qui. diff --git a/_data/i18n/nl.yml b/_data/i18n/nl.yml index d77b0025..b934818c 100644 --- a/_data/i18n/nl.yml +++ b/_data/i18n/nl.yml @@ -3,8 +3,8 @@ more_info: Meer info (Engels) slide-1.jpg: title: "Mt. Mitchell Station, Mt. Mitchell, N.C." header: RightsStatements.org biedt 12 gestandaardiseerde rechtenverklaringen voor online cultureel erfgoed. - about: Onze rechtenverklaringen maken het gemakkelijk om te zien of en hoe online cultureel erfgoed kan worden hergebruikt. Lees hier meer over onze verklaringen. + about: Onze rechtenverklaringen maken het gemakkelijk om te zien of en hoe online cultureel erfgoed kan worden hergebruikt. Lees hier meer over onze verklaringen. slide-2.jpg: title: "Postkaart uit Wenen (Luigi Meula) CC BY-SA" header: RightsStatements.org biedt 12 gestandaardiseerde rechtenverklaringen voor online cultureel erfgoed. - about: Onze rechtenverklaringen maken het gemakkelijk om te zien of en hoe online cultureel erfgoed kan worden hergebruikt. Lees hier meer over onze verklaringen. + about: Onze rechtenverklaringen maken het gemakkelijk om te zien of en hoe online cultureel erfgoed kan worden hergebruikt. Lees hier meer over onze verklaringen. diff --git a/_data/i18n/pl.yml b/_data/i18n/pl.yml index 1c5d2971..069642d2 100644 --- a/_data/i18n/pl.yml +++ b/_data/i18n/pl.yml @@ -3,8 +3,8 @@ more_info: Więcej informacji (angielski) slide-1.jpg: title: "Mt. Mitchell Station, Mt. Mitchell, N.C." header: RightsStatements.org oferuje 12 ustandaryzowanych oświadczeń prawnych stworzonych pod kątem udostępniania dziedzictwa kulturowego on-line - about: Nasze oświadczenia prawne ułatwiają ocenę czy i w jaki sposób utwory należące do dziedzictwa kulturowego mogą być wykorzystywane. Więcej na temat oświadczeń prawnych możesz dowiedzieć się tutaj. + about: Nasze oświadczenia prawne ułatwiają ocenę czy i w jaki sposób utwory należące do dziedzictwa kulturowego mogą być wykorzystywane. Więcej na temat oświadczeń prawnych możesz dowiedzieć się tutaj. slide-2.jpg: title: "Postcard from Vienna (Luigi Meula) CC-BY-SA" header: RightsStatements.org oferuje 12 ustandaryzowanych oświadczeń prawnych stworzonych pod kątem udostępniania dziedzictwa kulturowego on-line - about: Nasze oświadczenia prawne ułatwiają ocenę czy i w jaki sposób utwory należące do dziedzictwa kulturowego mogą być wykorzystywane. Więcej na temat oświadczeń prawnych możesz dowiedzieć się tutaj. + about: Nasze oświadczenia prawne ułatwiają ocenę czy i w jaki sposób utwory należące do dziedzictwa kulturowego mogą być wykorzystywane. Więcej na temat oświadczeń prawnych możesz dowiedzieć się tutaj. diff --git a/_data/i18n/sv-FI.yml b/_data/i18n/sv-FI.yml index 032182f7..b6ea78e1 100644 --- a/_data/i18n/sv-FI.yml +++ b/_data/i18n/sv-FI.yml @@ -3,8 +3,8 @@ more_info: Mer information (engelska) slide-1.jpg: title: Mt. Mitchell Station, Mt. Mitchell, N.C. header: RightsStatements.org erbjuder 12 standardiserade nyttjanderättsbeskrivningar för kulturarv på nätet. - about: Våra nyttjanderättsbeskrivningar gör det enkelt att se om och hur kulturarvsverk på nätet får återanvändas. Läs mer om nyttjanderättsbeskrivningarna här. + about: Våra nyttjanderättsbeskrivningar gör det enkelt att se om och hur kulturarvsverk på nätet får återanvändas. Läs mer om nyttjanderättsbeskrivningarna här. slide-2.jpg: title: Postcard from Vienna (Luigi Meula) CC-BY-SA header: RightsStatements.org erbjuder 12 standardiserade nyttjanderättsbeskrivningar för kulturarv på nätet. - about: Våra nyttjanderättsbeskrivningar gör det enkelt att se om och hur kulturarvsverk på nätet får återanvändas. Läs mer om nyttjanderättsbeskrivningarna här + about: Våra nyttjanderättsbeskrivningar gör det enkelt att se om och hur kulturarvsverk på nätet får återanvändas. Läs mer om nyttjanderättsbeskrivningarna här From 961d2c721fec12df16b14fb1d5c9aa91dd437b7d Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Wed, 4 Sep 2024 12:47:12 +0200 Subject: [PATCH 28/55] Changes for fixing hardcoded urls --- _data/i18n/ca.yml | 4 +-- _data/i18n/de.yml | 4 +-- _data/i18n/et.yml | 4 +-- _data/i18n/fi.yml | 4 +-- ca/statements/index.html | 2 +- de/statements/index.html | 2 +- es/statements/index.html | 2 +- fi/statements/index.html | 2 +- fr/statements/index.html | 78 +++++++--------------------------------- hi/statements/index.html | 2 +- hr/statements/index.html | 2 +- it/statements/index.html | 2 +- lt/statements/index.html | 2 +- nl/statements/index.html | 2 +- pl/statements/index.html | 2 +- 15 files changed, 31 insertions(+), 83 deletions(-) diff --git a/_data/i18n/ca.yml b/_data/i18n/ca.yml index f903c0d6..118e170f 100644 --- a/_data/i18n/ca.yml +++ b/_data/i18n/ca.yml @@ -3,8 +3,8 @@ more_info: Més informació (en anglès) slide-1.jpg: title: "Mt. Mitchell Station, Mt. Mitchell, N.C." header: Rightsstatements.org proporciona 12 declaracions de drets estandarditzades pel patrimoni cultural en línia. - about: "Les nostres declaracions de drets fan que sigui fàcil d'entendre si es poden reutilitzar, i de quina manera, obres del patrimoni cultural en línia. Podeu trobar més informació sobre les declaracions de drets aquí." + about: Les nostres declaracions de drets fan que sigui fàcil d'entendre si es poden reutilitzar, i de quina manera, obres del patrimoni cultural en línia. Podeu trobar més informació sobre les declaracions de drets aquí. slide-2.jpg: title: "Postcard from Vienna (Luigi Meula) CC-BY-SA" header: Rightsstatements.org facilita 12 declaracions de drets estandarditzades pel patrimoni cultural en línia. - about: "Les nostres declaracions de drets fan que sigui fàcil d'entendre si es poden reutilitzar, i de quina manera, obres del patrimoni cultural en línia. Podeu trobar més informació sobre les declaracions de drets aquí. " + about: Les nostres declaracions de drets fan que sigui fàcil d'entendre si es poden reutilitzar, i de quina manera, obres del patrimoni cultural en línia. Podeu trobar més informació sobre les declaracions de drets aquí. diff --git a/_data/i18n/de.yml b/_data/i18n/de.yml index 2835db7d..39d29e74 100644 --- a/_data/i18n/de.yml +++ b/_data/i18n/de.yml @@ -3,8 +3,8 @@ more_info: Mehr Informationen (Englisch) slide-1.jpg: title: "Mt. Mitchell Station, Mt. Mitchell, N.C." header: RightsStatements.org bietet 12 standardisierte Rechtehinweise für das online verfügbare Kulturerbe. - about: "Unsere Rechtehinweise vereinfachen es zu erkennen, ob und wie online verfügbares Kulturerbe genutzt werden kann. Erfahren Sie hier mehr über unsere Rechtehinweise." + about: Unsere Rechtehinweise vereinfachen es zu erkennen, ob und wie online verfügbares Kulturerbe genutzt werden kann. Erfahren Sie hier mehr über unsere Rechtehinweise. slide-2.jpg: title: "Postcard from Vienna (Luigi Meula) CC-BY-SA" header: RightsStatements.org bietet 12 standardisierte Rechtehinweise für das online verfügbare Kulturerbe. - about: "Unsere Rechtehinweise vereinfachen es zu erkennen, ob und wie online verfügbares Kulturerbe genutzt werden kann. Erfahren Sie hier mehr über unsere Rechtehinweise." + about: Unsere Rechtehinweise vereinfachen es zu erkennen, ob und wie online verfügbares Kulturerbe genutzt werden kann. Erfahren Sie hier mehr über unsere Rechtehinweise. diff --git a/_data/i18n/et.yml b/_data/i18n/et.yml index 8eea1a9a..2906e017 100644 --- a/_data/i18n/et.yml +++ b/_data/i18n/et.yml @@ -3,8 +3,8 @@ more_info: Rohkem infot (inglise keeles) slide-1.jpg: title: "Mt. Mitchell Station, Mt. Mitchell, N.C." header: RightsStatements.org koduleht sisaldab kaksteist digitaalse kultuuripärandi kasutusõigusi kirjeldavat standardiseeritud autoriõigusliku seisundi deklaratsiooni. - about: "Autoriõigusliku seisundi deklaratsioonid võimaldavad kiiresti hinnata, kas ja kuidas on digitaalset kultuuripärandit lubatud taaskasutada. Täiendavat infot deklaratsioonide kohta leiab dokumentatsioonilehelt." + about: Autoriõigusliku seisundi deklaratsioonid võimaldavad kiiresti hinnata, kas ja kuidas on digitaalset kultuuripärandit lubatud taaskasutada. Täiendavat infot deklaratsioonide kohta leiab dokumentatsioonilehelt. slide-2.jpg: title: "Postcard from Vienna (Luigi Meula) CC-BY-SA" header: RightsStatements.org koduleht sisaldab kaksteist digitaalse kultuuripärandi kasutusõigusi kirjeldavat standardiseeritud autoriõigusliku seisundi deklaratsiooni. - about: "Autoriõigusliku seisundi deklaratsioonid võimaldavad kiiresti hinnata, kas ja kuidas on digitaalset kultuuripärandit lubatud taaskasutada. Täiendavat infot deklaratsioonide kohta leiab dokumentatsioonilehelt." + about: Autoriõigusliku seisundi deklaratsioonid võimaldavad kiiresti hinnata, kas ja kuidas on digitaalset kultuuripärandit lubatud taaskasutada. Täiendavat infot deklaratsioonide kohta leiab dokumentatsioonilehelt. diff --git a/_data/i18n/fi.yml b/_data/i18n/fi.yml index a87c2e95..87f5c45e 100644 --- a/_data/i18n/fi.yml +++ b/_data/i18n/fi.yml @@ -3,8 +3,8 @@ more_info: Lisätietoa (englisi) slide-1.jpg: title: "Mt. Mitchell Station, Mt. Mitchell, N.C." header: RightsStatements.org tarjoaa 12 vakiomuotoista käyttöoikeuskuvausta verkossa olevalle kulttuuriperinnölle. - about: "Käyttöoikeuskuvauksistamme selviää helposti, onko verkossa olevien kulttuuriperintöteosten uudelleenkäyttö sallittua ja miten niitä voi käyttää uudelleen. Lisätietoa käyttöoikeuskuvauksista." + about: Käyttöoikeuskuvauksistamme selviää helposti, onko verkossa olevien kulttuuriperintöteosten uudelleenkäyttö sallittua ja miten niitä voi käyttää uudelleen. Lisätietoa käyttöoikeuskuvauksista. slide-2.jpg: title: "Postcard from Vienna (Luigi Meula) CC-BY-SA" header: RightsStatements.org tarjoaa 12 vakiomuotoista käyttöoikeuskuvausta verkossa olevalle kulttuuriperinnölle. - about: "Käyttöoikeuskuvauksistamme selviää helposti, onko verkossa olevien kulttuuriperintöteosten uudelleenkäyttö sallittua ja miten niitä voi käyttää uudelleen. Lisätietoa käyttöoikeuskuvauksista." + about: Käyttöoikeuskuvauksistamme selviää helposti, onko verkossa olevien kulttuuriperintöteosten uudelleenkäyttö sallittua ja miten niitä voi käyttää uudelleen. Lisätietoa käyttöoikeuskuvauksista. diff --git a/ca/statements/index.html b/ca/statements/index.html index aa5c6d78..b003a728 100644 --- a/ca/statements/index.html +++ b/ca/statements/index.html @@ -6,7 +6,7 @@ Page Redirection diff --git a/de/statements/index.html b/de/statements/index.html index 399c200d..e240e091 100644 --- a/de/statements/index.html +++ b/de/statements/index.html @@ -6,7 +6,7 @@ Page Redirection diff --git a/es/statements/index.html b/es/statements/index.html index f27f4116..2f1a997b 100644 --- a/es/statements/index.html +++ b/es/statements/index.html @@ -6,7 +6,7 @@ Page Redirection diff --git a/fi/statements/index.html b/fi/statements/index.html index 76b99bfc..39859ab7 100644 --- a/fi/statements/index.html +++ b/fi/statements/index.html @@ -6,7 +6,7 @@ Page Redirection diff --git a/fr/statements/index.html b/fr/statements/index.html index 9a323571..ffd89a40 100644 --- a/fr/statements/index.html +++ b/fr/statements/index.html @@ -1,69 +1,17 @@ --- --- - - - - - - Page Redirection - - - If you are not redirected automatically, please click the link to continue to - /fr/. - + + + + + + Page Redirection + + +If you are not redirected automatically, please click the link to continue to +/fr/. + diff --git a/hi/statements/index.html b/hi/statements/index.html index dd7571ff..50b54ac3 100644 --- a/hi/statements/index.html +++ b/hi/statements/index.html @@ -6,7 +6,7 @@ Page Redirection diff --git a/hr/statements/index.html b/hr/statements/index.html index 6c7f2f58..75102f45 100644 --- a/hr/statements/index.html +++ b/hr/statements/index.html @@ -6,7 +6,7 @@ Page Redirection diff --git a/it/statements/index.html b/it/statements/index.html index 856c851f..6ea8a7a9 100644 --- a/it/statements/index.html +++ b/it/statements/index.html @@ -6,7 +6,7 @@ Page Redirection diff --git a/lt/statements/index.html b/lt/statements/index.html index 221524d5..152089de 100644 --- a/lt/statements/index.html +++ b/lt/statements/index.html @@ -6,7 +6,7 @@ Page Redirection diff --git a/nl/statements/index.html b/nl/statements/index.html index 3616d3e3..bb5f4dc7 100644 --- a/nl/statements/index.html +++ b/nl/statements/index.html @@ -6,7 +6,7 @@ Page Redirection diff --git a/pl/statements/index.html b/pl/statements/index.html index fecc78ad..247e7ac3 100644 --- a/pl/statements/index.html +++ b/pl/statements/index.html @@ -6,7 +6,7 @@ Page Redirection From 1caf4450da4caf0aaf77a648d7e75a6ac080374f Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Thu, 19 Sep 2024 08:04:42 +0200 Subject: [PATCH 29/55] Changes for fixing hardcoded urls --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index ef262fb3..d07d0854 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,7 @@ EXPOSE 4000 ENV JEKYLL_ENV=production RUN bundle install && bundle exec jekyll build +CMD ["bundle", "exec","jekyll", "build", "-c","_config.yml,_environment.yml"] CMD ["bundle", "exec","jekyll", "serve", "-c","_config.yml,_environment.yml","--host","0.0.0.0"] #FROM nginx:1.19.2-alpine AS final From 661f689339a14412fcd8825eea10dbd6d29381be Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Thu, 26 Sep 2024 16:18:13 +0200 Subject: [PATCH 30/55] Changes for liveness and readiness probe --- k8s/base/deployment.yaml | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/k8s/base/deployment.yaml b/k8s/base/deployment.yaml index f5dc25a7..d279d74a 100644 --- a/k8s/base/deployment.yaml +++ b/k8s/base/deployment.yaml @@ -11,21 +11,21 @@ spec: image: europeana/rights-app-website ports: - containerPort: 4000 -# livenessProbe: -# httpGet: -# port: 8080 -# path: /actuator/health/liveness -# httpHeaders: -# - name: Accept -# value: application/json -# initialDelaySeconds: 90 -# periodSeconds: 60 -# readinessProbe: -# httpGet: -# port: 8080 -# path: /actuator/health/readiness -# httpHeaders: -# - name: Accept -# value: application/json -# initialDelaySeconds: 60 -# periodSeconds: 60 + livenessProbe: + httpGet: + port: 4000 + path: /en/ + httpHeaders: + - name: Accept + value: application/json + initialDelaySeconds: 10 + periodSeconds: 10 + readinessProbe: + httpGet: + port: 4000 + path: /en/ + httpHeaders: + - name: Accept + value: application/json + initialDelaySeconds: 10 + periodSeconds: 10 From ac72847d6fcb6cf3c272081632f277bac3279a55 Mon Sep 17 00:00:00 2001 From: Hugo Manguinhas Date: Tue, 8 Oct 2024 10:11:28 +0200 Subject: [PATCH 31/55] Update translations.md Fixed Catalan link --- en/documentation/translations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/documentation/translations.md b/en/documentation/translations.md index 540b2016..c379c93e 100644 --- a/en/documentation/translations.md +++ b/en/documentation/translations.md @@ -26,7 +26,7 @@ The rights statements have been translated into the following languages: * [Dutch]({{site.app_url}}/page/1.0/?language=nl) - Translation Partner: [PACKED Centre of Expertise in Digital Heritage](https://www.packed.be/en/). Reviewed by [IP Squared.com](https://ip-squared.com/) and [Beeld end Geluid](https://www.beeldengeluid.nl/en/knowledge/experts/maarten-brinkerink). * [Italian]({{site.app_url}}/page/1.0/?language=it) - Translation partner Marina Cotugno, [Juliafoto](https://www.juliafoto.it/about-us/). Review by Antonella De Robbio, Coordinator of [Gruppo di studio Open Access e Pubblico Dominio (GOAPD)](https://www.aib.it/struttura/commissioni-e-gruppi/gruppo-studio-open-access-pubblico-dominio/) at the Associazione Italiana Biblioteche*,* and Andrea Zanni, [MLOL](https://medialibrary.it/home/cover.aspx). * [Croatian]({{site.app_url}}/page/1.0/?language=hr) - Translation partner: [National and University Library in Zagreb](https://www.nsk.hr/en/). Review by [Croatian State Intellectual Property Office](https://www.dziv.hr/en/). -* [Catalan]({{site.url}}/page/1.0/?language=) - Translation partner: [Legalment](https://www.legalment.net/). Review by Brigit Nonó, [Universitat de Girona - Biblioteca](https://www.udg.edu/ca/estructura/serveis/servei?ID=81), and Ariadna Matas, [Europeana Foundation](http://europeana.eu/) +* [Catalan]({{site.url}}/page/1.0/?language=ca) - Translation partner: [Legalment](https://www.legalment.net/). Review by Brigit Nonó, [Universitat de Girona - Biblioteca](https://www.udg.edu/ca/estructura/serveis/servei?ID=81), and Ariadna Matas, [Europeana Foundation](http://europeana.eu/) ## Translations under public review From bf17ba6e98d5b3a0eb8122d293ed5638a67c3f7b Mon Sep 17 00:00:00 2001 From: Shweta Nazare <128600182+nshweta90@users.noreply.github.com> Date: Tue, 8 Oct 2024 11:15:20 +0200 Subject: [PATCH 32/55] Update _config.yml --- _config.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/_config.yml b/_config.yml index 07200572..83c2d122 100755 --- a/_config.yml +++ b/_config.yml @@ -1,7 +1,4 @@ name: rightsstatements-website -url: -canonical_url: -app_url : markdown: kramdown kramdown: parse_block_html: true From 7d0dfbb35e506ea6b380b42af59e64b33948764a Mon Sep 17 00:00:00 2001 From: Shweta Nazare <128600182+nshweta90@users.noreply.github.com> Date: Tue, 8 Oct 2024 11:54:16 +0200 Subject: [PATCH 33/55] Update _config.yml --- _config.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/_config.yml b/_config.yml index 83c2d122..21f292d2 100755 --- a/_config.yml +++ b/_config.yml @@ -1,4 +1,8 @@ name: rightsstatements-website +app_url : https://rightsstatements.org +url: https://rightsstatements.org +canonical_url: https://rightsstatements.org +cookie_domain: rightsstatements.org markdown: kramdown kramdown: parse_block_html: true From 54bf4885ae3424d4abc6b15f6ee5e0d6472c3357 Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Fri, 25 Oct 2024 10:17:38 +0200 Subject: [PATCH 34/55] Changes for matomo analytics --- _config.yml | 2 +- _includes/analytics.html | 27 +++++++++++++++------------ _layouts/default.html | 2 +- en/statement.hbs | 2 +- 4 files changed, 18 insertions(+), 15 deletions(-) diff --git a/_config.yml b/_config.yml index 21f292d2..a1257f19 100755 --- a/_config.yml +++ b/_config.yml @@ -103,4 +103,4 @@ white_paper_rs_version: 180531recommendations_for_standardized_international_rig policy_editorial_version: 170612rs_editorial_policy.pdf policy_translation_version: 170612rs_translation_policy.pdf font_css_url: https://cloud.typography.com/7197296/6463212/css/fonts.css -cookie_domain: rightsstatements.github.io +matomo_analytics : true diff --git a/_includes/analytics.html b/_includes/analytics.html index 76198bcb..3a670bf7 100644 --- a/_includes/analytics.html +++ b/_includes/analytics.html @@ -1,12 +1,15 @@ - + + + diff --git a/_layouts/default.html b/_layouts/default.html index b77104fc..8c715e02 100755 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -24,7 +24,7 @@ {% include cookies.html %} - {% if site.google_analytics %}{% include analytics.html %}{% endif %} + {% if site.matomo_analytics %}{% include analytics.html %}{% endif %} {% include nav.html %} diff --git a/en/statement.hbs b/en/statement.hbs index feb048eb..7919529c 100644 --- a/en/statement.hbs +++ b/en/statement.hbs @@ -13,7 +13,7 @@ {% include cookies.html %} - {% if site.google_analytics %}{% include analytics.html %}{% endif %} + {% if site.matomo_analytics %}{% include analytics.html %}{% endif %} {% raw %} From 5a1dd9e511189ee0c16d103b2806800d13a572d2 Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Fri, 25 Oct 2024 11:31:04 +0200 Subject: [PATCH 35/55] Changes for removing duplication of config properties --- _config.yml | 9 +++++---- _environment.template.yml | 1 + 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/_config.yml b/_config.yml index a1257f19..b777928c 100755 --- a/_config.yml +++ b/_config.yml @@ -1,8 +1,9 @@ name: rightsstatements-website -app_url : https://rightsstatements.org -url: https://rightsstatements.org -canonical_url: https://rightsstatements.org -cookie_domain: rightsstatements.org +#Below 4 properties defined as part of jenkins config in environemnt.yml file as they are environment specific +#app_url : https://rightsstatements.org +#url: https://rightsstatements.org +#canonical_url: https://rightsstatements.org +#cookie_domain: rightsstatements.org markdown: kramdown kramdown: parse_block_html: true diff --git a/_environment.template.yml b/_environment.template.yml index 04558b90..51231803 100644 --- a/_environment.template.yml +++ b/_environment.template.yml @@ -1,3 +1,4 @@ app_url : http://localhost:9000 url: http://localhost:4000 canonical_url: http://localhost:9000 +cookie_domain: rightsstatements.org From a8e4f16f7ed0cd4f8809ea0aa43240fa6ac8626f Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Tue, 29 Oct 2024 17:32:25 +0100 Subject: [PATCH 36/55] Changes for removing duplication of config properties --- _config.yml | 4 ++-- _environment.template.yml | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/_config.yml b/_config.yml index b777928c..b8c4cb07 100755 --- a/_config.yml +++ b/_config.yml @@ -1,9 +1,10 @@ name: rightsstatements-website -#Below 4 properties defined as part of jenkins config in environemnt.yml file as they are environment specific +#Below commented properties defined as part of jenkins config in environemnt.yml file as they are environment specific #app_url : https://rightsstatements.org #url: https://rightsstatements.org #canonical_url: https://rightsstatements.org #cookie_domain: rightsstatements.org +#matomo_analytics : true markdown: kramdown kramdown: parse_block_html: true @@ -104,4 +105,3 @@ white_paper_rs_version: 180531recommendations_for_standardized_international_rig policy_editorial_version: 170612rs_editorial_policy.pdf policy_translation_version: 170612rs_translation_policy.pdf font_css_url: https://cloud.typography.com/7197296/6463212/css/fonts.css -matomo_analytics : true diff --git a/_environment.template.yml b/_environment.template.yml index 51231803..fc32948f 100644 --- a/_environment.template.yml +++ b/_environment.template.yml @@ -2,3 +2,4 @@ app_url : http://localhost:9000 url: http://localhost:4000 canonical_url: http://localhost:9000 cookie_domain: rightsstatements.org +matomo_analytics : false From e34fd9132eccdf8fa71aea38a6ec8421599a27db Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Tue, 28 Jan 2025 12:26:33 +0100 Subject: [PATCH 37/55] Changes for robot.txt and sitemap.xml --- robots.txt | 5 ++ sitemap.xml | 214 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 219 insertions(+) create mode 100644 robots.txt create mode 100644 sitemap.xml diff --git a/robots.txt b/robots.txt new file mode 100644 index 00000000..993e654d --- /dev/null +++ b/robots.txt @@ -0,0 +1,5 @@ +Sitemap: https://rightsstatements.org/sitemap.xml + +User-agent: * +Disallow: /data/ +Crawl-delay: 10 diff --git a/sitemap.xml b/sitemap.xml new file mode 100644 index 00000000..fffe3558 --- /dev/null +++ b/sitemap.xml @@ -0,0 +1,214 @@ + + + https://rightsstatements.org/en/about.html + https://rightsstatements.org/en/documentation/ + https://rightsstatements.org/en/documentation/faq.html + https://rightsstatements.org/en/documentation/assets.html + https://rightsstatements.org/en/documentation/usage_guidelines.html + https://rightsstatements.org/en/documentation/changelog.html + https://rightsstatements.org/en/get_involved.html + https://rightsstatements.org/en/blog/ + https://rightsstatements.org/en/documentation/translations.html + + + https://rightsstatements.org/en/documentation/editorial-policy + https://rightsstatements.org/en/documentation/translation-policy + https://rightsstatements.org/en/documentation/rights-statements-white-paper + + + + https://rightsstatements.org/en/ + https://rightsstatements.org/page/1.0/?language=en + https://rightsstatements.org/page/InC/1.0/?language=en + https://rightsstatements.org/page/InC-OW-EU/1.0/?language=en + https://rightsstatements.org/page/InC-RUU/1.0/?language=en + https://rightsstatements.org/page/InC-NC/1.0/?language=en + https://rightsstatements.org/page/InC-EDU/1.0/?language=en + https://rightsstatements.org/page/NoC-US/1.0/?language=en + https://rightsstatements.org/page/NoC-OKLR/1.0/?language=en + https://rightsstatements.org/page/NoC-CR/1.0/?language=en + https://rightsstatements.org/page/NoC-NC/1.0/?language=en + https://rightsstatements.org/page/UND/1.0/?language=en + https://rightsstatements.org/page/CNE/1.0/?language=en + https://rightsstatements.org/page/NKC/1.0/?language=en + + https://rightsstatements.org/ca/ + https://rightsstatements.org/page/1.0/?language=ca + https://rightsstatements.org/page/InC/1.0/?language=ca + https://rightsstatements.org/page/InC-OW-EU/1.0/?language=ca + https://rightsstatements.org/page/InC-RUU/1.0/?language=ca + https://rightsstatements.org/page/InC-NC/1.0/?language=ca + https://rightsstatements.org/page/InC-EDU/1.0/?language=ca + https://rightsstatements.org/page/NoC-US/1.0/?language=ca + https://rightsstatements.org/page/NoC-OKLR/1.0/?language=ca + https://rightsstatements.org/page/NoC-CR/1.0/?language=ca + https://rightsstatements.org/page/NoC-NC/1.0/?language=ca + https://rightsstatements.org/page/UND/1.0/?language=ca + https://rightsstatements.org/page/CNE/1.0/?language=ca + https://rightsstatements.org/page/NKC/1.0/?language=ca + + https://rightsstatements.org/de/ + https://rightsstatements.org/page/1.0/?language=de + https://rightsstatements.org/page/InC/1.0/?language=de + https://rightsstatements.org/page/InC-OW-EU/1.0/?language=de + https://rightsstatements.org/page/InC-RUU/1.0/?language=de + https://rightsstatements.org/page/InC-NC/1.0/?language=de + https://rightsstatements.org/page/InC-EDU/1.0/?language=de + https://rightsstatements.org/page/NoC-US/1.0/?language=de + https://rightsstatements.org/page/NoC-OKLR/1.0/?language=de + https://rightsstatements.org/page/NoC-CR/1.0/?language=de + https://rightsstatements.org/page/NoC-NC/1.0/?language=de + https://rightsstatements.org/page/UND/1.0/?language=de + https://rightsstatements.org/page/CNE/1.0/?language=de + https://rightsstatements.org/page/NKC/1.0/?language=de + + https://rightsstatements.org/es/ + https://rightsstatements.org/page/1.0/?language=es + https://rightsstatements.org/page/InC/1.0/?language=es + https://rightsstatements.org/page/InC-OW-EU/1.0/?language=es + https://rightsstatements.org/page/InC-RUU/1.0/?language=es + https://rightsstatements.org/page/InC-NC/1.0/?language=es + https://rightsstatements.org/page/InC-EDU/1.0/?language=es + https://rightsstatements.org/page/NoC-US/1.0/?language=es + https://rightsstatements.org/page/NoC-OKLR/1.0/?language=es + https://rightsstatements.org/page/NoC-CR/1.0/?language=es + https://rightsstatements.org/page/NoC-NC/1.0/?language=es + https://rightsstatements.org/page/UND/1.0/?language=es + https://rightsstatements.org/page/CNE/1.0/?language=es + https://rightsstatements.org/page/NKC/1.0/?language=es + + https://rightsstatements.org/et/ + https://rightsstatements.org/page/1.0/?language=et + https://rightsstatements.org/page/InC/1.0/?language=et + https://rightsstatements.org/page/InC-OW-EU/1.0/?language=et + https://rightsstatements.org/page/InC-RUU/1.0/?language=et + https://rightsstatements.org/page/InC-NC/1.0/?language=et + https://rightsstatements.org/page/InC-EDU/1.0/?language=et + https://rightsstatements.org/page/NoC-US/1.0/?language=et + https://rightsstatements.org/page/NoC-OKLR/1.0/?language=et + https://rightsstatements.org/page/NoC-CR/1.0/?language=et + https://rightsstatements.org/page/NoC-NC/1.0/?language=et + https://rightsstatements.org/page/UND/1.0/?language=et + https://rightsstatements.org/page/CNE/1.0/?language=et + https://rightsstatements.org/page/NKC/1.0/?language=et + + https://rightsstatements.org/fi/ + https://rightsstatements.org/page/1.0/?language=fi + https://rightsstatements.org/page/InC/1.0/?language=fi + https://rightsstatements.org/page/InC-OW-EU/1.0/?language=fi + https://rightsstatements.org/page/InC-RUU/1.0/?language=fi + https://rightsstatements.org/page/InC-NC/1.0/?language=fi + https://rightsstatements.org/page/InC-EDU/1.0/?language=fi + https://rightsstatements.org/page/NoC-US/1.0/?language=fi + https://rightsstatements.org/page/NoC-OKLR/1.0/?language=fi + https://rightsstatements.org/page/NoC-CR/1.0/?language=fi + https://rightsstatements.org/page/NoC-NC/1.0/?language=fi + https://rightsstatements.org/page/UND/1.0/?language=fi + https://rightsstatements.org/page/CNE/1.0/?language=fi + https://rightsstatements.org/page/NKC/1.0/?language=fi + + https://rightsstatements.org/fr/ + https://rightsstatements.org/page/1.0/?language=fr + https://rightsstatements.org/page/InC/1.0/?language=fr + https://rightsstatements.org/page/InC-OW-EU/1.0/?language=fr + https://rightsstatements.org/page/InC-RUU/1.0/?language=fr + https://rightsstatements.org/page/InC-NC/1.0/?language=fr + https://rightsstatements.org/page/InC-EDU/1.0/?language=fr + https://rightsstatements.org/page/NoC-US/1.0/?language=fr + https://rightsstatements.org/page/NoC-OKLR/1.0/?language=fr + https://rightsstatements.org/page/NoC-CR/1.0/?language=fr + https://rightsstatements.org/page/NoC-NC/1.0/?language=fr + https://rightsstatements.org/page/UND/1.0/?language=fr + https://rightsstatements.org/page/CNE/1.0/?language=fr + https://rightsstatements.org/page/NKC/1.0/?language=fr + + https://rightsstatements.org/hi/ + https://rightsstatements.org/page/1.0/?language=hi + https://rightsstatements.org/page/InC/1.0/?language=hi + https://rightsstatements.org/page/InC-OW-EU/1.0/?language=hi + https://rightsstatements.org/page/InC-RUU/1.0/?language=hi + https://rightsstatements.org/page/InC-NC/1.0/?language=hi + https://rightsstatements.org/page/InC-EDU/1.0/?language=hi + https://rightsstatements.org/page/NoC-US/1.0/?language=hi + https://rightsstatements.org/page/NoC-OKLR/1.0/?language=hi + https://rightsstatements.org/page/NoC-CR/1.0/?language=hi + https://rightsstatements.org/page/NoC-NC/1.0/?language=hi + https://rightsstatements.org/page/UND/1.0/?language=hi + https://rightsstatements.org/page/CNE/1.0/?language=hi + https://rightsstatements.org/page/NKC/1.0/?language=hi + + https://rightsstatements.org/hr/ + https://rightsstatements.org/page/1.0/?language=hr + https://rightsstatements.org/page/InC/1.0/?language=hr + https://rightsstatements.org/page/InC-OW-EU/1.0/?language=hr + https://rightsstatements.org/page/InC-RUU/1.0/?language=hr + https://rightsstatements.org/page/InC-NC/1.0/?language=hr + https://rightsstatements.org/page/InC-EDU/1.0/?language=hr + https://rightsstatements.org/page/NoC-US/1.0/?language=hr + https://rightsstatements.org/page/NoC-OKLR/1.0/?language=hr + https://rightsstatements.org/page/NoC-CR/1.0/?language=hr + https://rightsstatements.org/page/NoC-NC/1.0/?language=hr + https://rightsstatements.org/page/UND/1.0/?language=hr + https://rightsstatements.org/page/CNE/1.0/?language=hr + https://rightsstatements.org/page/NKC/1.0/?language=hr + + https://rightsstatements.org/it/ + https://rightsstatements.org/page/1.0/?language=it + https://rightsstatements.org/page/InC/1.0/?language=it + https://rightsstatements.org/page/InC-OW-EU/1.0/?language=it + https://rightsstatements.org/page/InC-RUU/1.0/?language=it + https://rightsstatements.org/page/InC-NC/1.0/?language=it + https://rightsstatements.org/page/InC-EDU/1.0/?language=it + https://rightsstatements.org/page/NoC-US/1.0/?language=it + https://rightsstatements.org/page/NoC-OKLR/1.0/?language=it + https://rightsstatements.org/page/NoC-CR/1.0/?language=it + https://rightsstatements.org/page/NoC-NC/1.0/?language=it + https://rightsstatements.org/page/UND/1.0/?language=it + https://rightsstatements.org/page/CNE/1.0/?language=it + https://rightsstatements.org/page/NKC/1.0/?language=it + + https://rightsstatements.org/lt/ + https://rightsstatements.org/page/1.0/?language=lt + https://rightsstatements.org/page/InC/1.0/?language=lt + https://rightsstatements.org/page/InC-OW-EU/1.0/?language=lt + https://rightsstatements.org/page/InC-RUU/1.0/?language=lt + https://rightsstatements.org/page/InC-NC/1.0/?language=lt + https://rightsstatements.org/page/InC-EDU/1.0/?language=lt + https://rightsstatements.org/page/NoC-US/1.0/?language=lt + https://rightsstatements.org/page/NoC-OKLR/1.0/?language=lt + https://rightsstatements.org/page/NoC-CR/1.0/?language=lt + https://rightsstatements.org/page/NoC-NC/1.0/?language=lt + https://rightsstatements.org/page/UND/1.0/?language=lt + https://rightsstatements.org/page/CNE/1.0/?language=lt + https://rightsstatements.org/page/NKC/1.0/?language=lt + + https://rightsstatements.org/nl/ + https://rightsstatements.org/page/1.0/?language=nl + https://rightsstatements.org/page/InC/1.0/?language=nl + https://rightsstatements.org/page/InC-OW-EU/1.0/?language=nl + https://rightsstatements.org/page/InC-RUU/1.0/?language=nl + https://rightsstatements.org/page/InC-NC/1.0/?language=nl + https://rightsstatements.org/page/InC-EDU/1.0/?language=nl + https://rightsstatements.org/page/NoC-US/1.0/?language=nl + https://rightsstatements.org/page/NoC-OKLR/1.0/?language=nl + https://rightsstatements.org/page/NoC-CR/1.0/?language=nl + https://rightsstatements.org/page/NoC-NC/1.0/?language=nl + https://rightsstatements.org/page/UND/1.0/?language=nl + https://rightsstatements.org/page/CNE/1.0/?language=nl + https://rightsstatements.org/page/NKC/1.0/?language=nl + + https://rightsstatements.org/pl/ + https://rightsstatements.org/page/1.0/?language=pl + https://rightsstatements.org/page/InC/1.0/?language=pl + https://rightsstatements.org/page/InC-OW-EU/1.0/?language=pl + https://rightsstatements.org/page/InC-RUU/1.0/?language=pl + https://rightsstatements.org/page/InC-NC/1.0/?language=pl + https://rightsstatements.org/page/InC-EDU/1.0/?language=pl + https://rightsstatements.org/page/NoC-US/1.0/?language=pl + https://rightsstatements.org/page/NoC-OKLR/1.0/?language=pl + https://rightsstatements.org/page/NoC-CR/1.0/?language=pl + https://rightsstatements.org/page/NoC-NC/1.0/?language=pl + https://rightsstatements.org/page/UND/1.0/?language=pl + https://rightsstatements.org/page/CNE/1.0/?language=pl + https://rightsstatements.org/page/NKC/1.0/?language=pl + From 8c569a9816928090c4d9381db7da3483adadef6d Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Tue, 28 Jan 2025 13:12:16 +0100 Subject: [PATCH 38/55] Changes for robot.txt and sitemap.xml --- robots.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/robots.txt b/robots.txt index 993e654d..72593ed9 100644 --- a/robots.txt +++ b/robots.txt @@ -1,5 +1,4 @@ -Sitemap: https://rightsstatements.org/sitemap.xml - User-agent: * Disallow: /data/ Crawl-delay: 10 +Sitemap: https://rightsstatements.org/sitemap.xml From cd5ffe03117a41e364540d3fbe3ff090980e547d Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Mon, 12 May 2025 10:04:17 +0200 Subject: [PATCH 39/55] Changes for language redirects --- _config.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/_config.yml b/_config.yml index b8c4cb07..391a2888 100755 --- a/_config.yml +++ b/_config.yml @@ -89,6 +89,20 @@ defaults: lang: "pl" categories: ["pl"] iso_name: "Polski" + - + scope: + path: "nl" + values: + lang: "nl" + categories: ["nl"] + iso_name: "Dutch" + - + scope: + path: "it" + values: + lang: "it" + categories: ["it"] + iso_name: "Italian" author: rightsstatements.org permalink: /:categories/:year/:month/:slug.html plugins: From b47307ac8cd50141b647e0f9ecf891d469e7773b Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Mon, 12 May 2025 10:21:24 +0200 Subject: [PATCH 40/55] Changes for language redirects --- en/statements/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/statements/index.html b/en/statements/index.html index 31ad831e..5da54dbd 100644 --- a/en/statements/index.html +++ b/en/statements/index.html @@ -57,7 +57,7 @@ if (enabled_languages.indexOf(user_language) != -1) { window.location.href = "{{ site.app_url }}/page/1.0/?language=" + user_language; } else { - window.location.href = "{{ site.app_url }}/page/1.0/?language=" + default_language + "/"; + window.location.href = "{{ site.app_url }}/page/1.0/?language=" + default_language; } Page Redirection From 46fb2ca62c0a463fe79a823cda10ef3319130f9c Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Mon, 12 May 2025 11:30:12 +0200 Subject: [PATCH 41/55] Changes for language redirects --- _config.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/_config.yml b/_config.yml index 391a2888..b8c4cb07 100755 --- a/_config.yml +++ b/_config.yml @@ -89,20 +89,6 @@ defaults: lang: "pl" categories: ["pl"] iso_name: "Polski" - - - scope: - path: "nl" - values: - lang: "nl" - categories: ["nl"] - iso_name: "Dutch" - - - scope: - path: "it" - values: - lang: "it" - categories: ["it"] - iso_name: "Italian" author: rightsstatements.org permalink: /:categories/:year/:month/:slug.html plugins: From 4495c5ab1c412375d45a120614019cc86475963e Mon Sep 17 00:00:00 2001 From: Hugo Manguinhas Date: Wed, 4 Jun 2025 10:46:11 +0200 Subject: [PATCH 42/55] Update translations.md --- en/documentation/translations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/documentation/translations.md b/en/documentation/translations.md index c379c93e..39314dbe 100644 --- a/en/documentation/translations.md +++ b/en/documentation/translations.md @@ -7,7 +7,7 @@ filename: translations --- # Translations of the rights statements -The rights statements and underlying infrastructure of rightsstatements.org have been designed to work internationally in many languages. At the moment our rights statements are only available in English. If you are interested in working with us on translating the rights statements please contact us at [info@rightsstatements.org](mailto:info@rightsstatements.org). Translations of the rights statements need to be produced in line with our [translation policy]({{site.url}}/en/documentation/translation-policy/) which you can find on our [Documentation]({{site.url}}/en/documentation/) page. +The rights statements and underlying infrastructure of rightsstatements.org have been designed to work internationally in many languages. If you are interested in working with us on translating the rights statements please contact us at [info@rightsstatements.org](mailto:info@rightsstatements.org). Translations of the rights statements need to be produced in line with our [translation policy]({{site.url}}/en/documentation/translation-policy/) which you can find on our [Documentation]({{site.url}}/en/documentation/) page.
    From 6ce2e98d692ee390aa2deda40fcf9c188f87823b Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Wed, 4 Jun 2025 17:49:45 +0200 Subject: [PATCH 43/55] Changes for language redirects --- _config.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/_config.yml b/_config.yml index b8c4cb07..7998f01b 100755 --- a/_config.yml +++ b/_config.yml @@ -75,6 +75,13 @@ defaults: lang: "hr" categories: ["hr"] iso_name: "Hrvatski" + - + scope: + path: "it" + values: + lang: "it" + categories: ["it"] + iso_name: "Italiana" - scope: path: "lt" @@ -82,6 +89,13 @@ defaults: lang: "lt" categories: ["lt"] iso_name: "Lietuva" + - + scope: + path: "nl" + values: + lang: "nl" + categories: ["nl"] + iso_name: "Dutch" - scope: path: "pl" From 8c90c9dd0d6b1a7b3bcefcb563ab12162c3d1e81 Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Thu, 5 Jun 2025 17:12:01 +0200 Subject: [PATCH 44/55] Changes for error pages --- en/unsupportedDate.md | 15 +++++++++++++++ en/unsupportedLanguage.md | 27 +++++++++++++++++++++++++++ en/unsupportedParam.md | 17 +++++++++++++++++ en/unsupportedRelatedURL.md | 11 +++++++++++ 4 files changed, 70 insertions(+) create mode 100644 en/unsupportedDate.md create mode 100644 en/unsupportedLanguage.md create mode 100644 en/unsupportedParam.md create mode 100644 en/unsupportedRelatedURL.md diff --git a/en/unsupportedDate.md b/en/unsupportedDate.md new file mode 100644 index 00000000..03d99a29 --- /dev/null +++ b/en/unsupportedDate.md @@ -0,0 +1,15 @@ +--- +layout: page +title: Not Supported +filename: unsupportedDate +--- +# Date format not supported +
    + +The rights statement [No Copyright – Non-Commercial Use Only](https://rightsstatements.org/page/NoC-NC/1.0/) supports an optional date parameter, which should be provided in ISO 8601 format as a calendar date (YYYY-MM-DD). + +The following date is an example of a supported date: + +* [2024-07-10](https://rightsstatements.org/page/NoC-NC/1.0/?date=2024-07-10): Represents July 10th, 2024 + +
    diff --git a/en/unsupportedLanguage.md b/en/unsupportedLanguage.md new file mode 100644 index 00000000..62550b72 --- /dev/null +++ b/en/unsupportedLanguage.md @@ -0,0 +1,27 @@ +--- +layout: page +title: Not Supported +filename: unsupportedParam +--- +# Language not supported + +
    + The rights statements and underlying infrastructure of rightsstatements.org have been designed to work internationally in many languages. + + The rights statements have been translated into the following languages: + + * [English](https://rightsstatements.org/page/1.0/?language=en) + * [Estonian](https://rightsstatements.org/page/1.0/?language=et) + * [Finnish](https://rightsstatements.org/page/1.0/?language=fi) + * [French](https://rightsstatements.org/page/1.0/?language=fr) + * [German](https://rightsstatements.org/page/1.0/?language=de) + * [Polish](https://rightsstatements.org/page/1.0/?language=pl) + * [Spanish](https://rightsstatements.org/page/1.0/?language=es) + * [Hindi](https://rightsstatements.org/page/1.0/?language=hi) + * [Lithuanian](https://rightsstatements.org/page/1.0/?language=lt) + * [Dutch](https://rightsstatements.org/page/1.0/?language=nl) + * [Italian](https://rightsstatements.org/page/1.0/?language=it) + * [Croatian](https://rightsstatements.org/page/1.0/?language=hr) + * [Catalan](https://rightsstatements.org/page/1.0/?language=ca) + +
    diff --git a/en/unsupportedParam.md b/en/unsupportedParam.md new file mode 100644 index 00000000..bc81f9a1 --- /dev/null +++ b/en/unsupportedParam.md @@ -0,0 +1,17 @@ +--- +layout: page +title: Not Supported +filename: unsupportedParam +--- +# Parameter not supported +
    + +The rights statement supports specific parameters. + +Following are supported parameters: + +* language +* relatedURL - For the rights statements [InC-OW-EU](https://rightsstatements.org/vocab/InC-OW-EU/1.0/), [NoC-CR](https://rightsstatements.org/vocab/NoC-CR/1.0/), [NoC-OKLR](https://rightsstatements.org/vocab/NoC-OKLR/1.0/) +* date - For the rights statement [No Copyright – Non-Commercial Use Only](https://rightsstatements.org/page/NoC-NC/1.0/) + +
    diff --git a/en/unsupportedRelatedURL.md b/en/unsupportedRelatedURL.md new file mode 100644 index 00000000..056d6711 --- /dev/null +++ b/en/unsupportedRelatedURL.md @@ -0,0 +1,11 @@ +--- +layout: page +title: Not Supported +filename: unsupportedLanguage +--- + +# Unauthorised use of the related URL parameter
    + +
    + The rights statements [InC-OW-EU](https://rightsstatements.org/vocab/InC-OW-EU/1.0/), [NoC-CR](https://rightsstatements.org/vocab/NoC-CR/1.0/), [NoC-OKLR](https://rightsstatements.org/vocab/NoC-OKLR/1.0/) support an optional relatedURL parameter. This URL is displayed on the rights statement's page as a reference to additional or relevant information. To prevent misuse, use of this parameter is controlled and regularly monitored. If you have encountered this page and believe your intended use is legitimate, please [contact us](https://rightsstatements.org/en/get_involved.html). +
    From 9b61c9a48350cb7bdede0249e6d0183db2414ea7 Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Thu, 5 Jun 2025 17:33:34 +0200 Subject: [PATCH 45/55] Changes for error pages --- en/unsupportedParam.md | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/en/unsupportedParam.md b/en/unsupportedParam.md index bc81f9a1..bb710b15 100644 --- a/en/unsupportedParam.md +++ b/en/unsupportedParam.md @@ -3,15 +3,20 @@ layout: page title: Not Supported filename: unsupportedParam --- -# Parameter not supported +# Parameter not supported by statement
    -The rights statement supports specific parameters. +Some rights statement support the addition of metadata elements via the means of optional parameters in the URL as defined in [Requirements for the Technical Infrastructure for Standardized International Rights Statements](https://rightsstatements.org/files/151002requirements_for_the_technical_infrastructure_for_standardized_international_rights_statements.pdf). -Following are supported parameters: +The following section indicates the additional parameters and which rights statements support them: -* language -* relatedURL - For the rights statements [InC-OW-EU](https://rightsstatements.org/vocab/InC-OW-EU/1.0/), [NoC-CR](https://rightsstatements.org/vocab/NoC-CR/1.0/), [NoC-OKLR](https://rightsstatements.org/vocab/NoC-OKLR/1.0/) -* date - For the rights statement [No Copyright – Non-Commercial Use Only](https://rightsstatements.org/page/NoC-NC/1.0/) +relatedURL +* [InC-OW-EU](https://rightsstatements.org/vocab/InC-OW-EU/1.0/) +* [NoC-CR](https://rightsstatements.org/vocab/NoC-CR/1.0/) +* [NoC-OKLR](https://rightsstatements.org/vocab/NoC-OKLR/1.0/) + +date + +* [No Copyright – Non-Commercial Use Only](https://rightsstatements.org/page/NoC-NC/1.0/)
    From 70174b7c3028811c79c5cb53b7459ab120f15a75 Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Thu, 5 Jun 2025 17:48:16 +0200 Subject: [PATCH 46/55] Changes for error pages --- en/unsupportedRelatedURL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/unsupportedRelatedURL.md b/en/unsupportedRelatedURL.md index 056d6711..b403c389 100644 --- a/en/unsupportedRelatedURL.md +++ b/en/unsupportedRelatedURL.md @@ -4,7 +4,7 @@ title: Not Supported filename: unsupportedLanguage --- -# Unauthorised use of the related URL parameter
    +# Unauthorised use of the related URL parameter
    The rights statements [InC-OW-EU](https://rightsstatements.org/vocab/InC-OW-EU/1.0/), [NoC-CR](https://rightsstatements.org/vocab/NoC-CR/1.0/), [NoC-OKLR](https://rightsstatements.org/vocab/NoC-OKLR/1.0/) support an optional relatedURL parameter. This URL is displayed on the rights statement's page as a reference to additional or relevant information. To prevent misuse, use of this parameter is controlled and regularly monitored. If you have encountered this page and believe your intended use is legitimate, please [contact us](https://rightsstatements.org/en/get_involved.html). From 06975e3d0437407e6b68c71a4f12d2c2d3f488a6 Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Fri, 6 Jun 2025 10:40:53 +0200 Subject: [PATCH 47/55] Changes for error pages --- en/unsupportedParam.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/unsupportedParam.md b/en/unsupportedParam.md index bb710b15..700fa15a 100644 --- a/en/unsupportedParam.md +++ b/en/unsupportedParam.md @@ -17,6 +17,6 @@ The following section indicates the additional parameters and which rights state date -* [No Copyright – Non-Commercial Use Only](https://rightsstatements.org/page/NoC-NC/1.0/) +* [NoC-NC](https://rightsstatements.org/page/NoC-NC/1.0/)
    From d7be0b201cc4e980740a9c32a4e285bbcc891cda Mon Sep 17 00:00:00 2001 From: Shwetambara Nazare Date: Fri, 6 Jun 2025 15:37:36 +0200 Subject: [PATCH 48/55] Changes for error pages --- en/unsupportedDate.md | 2 +- en/unsupportedLanguage.md | 2 +- en/unsupportedParam.md | 2 +- en/unsupportedRelatedURL.md | 6 ++++-- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/en/unsupportedDate.md b/en/unsupportedDate.md index 03d99a29..19d2511b 100644 --- a/en/unsupportedDate.md +++ b/en/unsupportedDate.md @@ -1,6 +1,6 @@ --- layout: page -title: Not Supported +title: Date format not supported filename: unsupportedDate --- # Date format not supported diff --git a/en/unsupportedLanguage.md b/en/unsupportedLanguage.md index 62550b72..621ca358 100644 --- a/en/unsupportedLanguage.md +++ b/en/unsupportedLanguage.md @@ -1,6 +1,6 @@ --- layout: page -title: Not Supported +title: Language not supported filename: unsupportedParam --- # Language not supported diff --git a/en/unsupportedParam.md b/en/unsupportedParam.md index 700fa15a..5d2747aa 100644 --- a/en/unsupportedParam.md +++ b/en/unsupportedParam.md @@ -1,6 +1,6 @@ --- layout: page -title: Not Supported +title: Parameter not supported by statement filename: unsupportedParam --- # Parameter not supported by statement diff --git a/en/unsupportedRelatedURL.md b/en/unsupportedRelatedURL.md index b403c389..59c3b8d6 100644 --- a/en/unsupportedRelatedURL.md +++ b/en/unsupportedRelatedURL.md @@ -1,11 +1,13 @@ --- layout: page -title: Not Supported +title: Unauthorised use of the related URL parameter filename: unsupportedLanguage --- # Unauthorised use of the related URL parameter
    - The rights statements [InC-OW-EU](https://rightsstatements.org/vocab/InC-OW-EU/1.0/), [NoC-CR](https://rightsstatements.org/vocab/NoC-CR/1.0/), [NoC-OKLR](https://rightsstatements.org/vocab/NoC-OKLR/1.0/) support an optional relatedURL parameter. This URL is displayed on the rights statement's page as a reference to additional or relevant information. To prevent misuse, use of this parameter is controlled and regularly monitored. If you have encountered this page and believe your intended use is legitimate, please [contact us](https://rightsstatements.org/en/get_involved.html). + + The rights statements [InC-OW-EU](https://rightsstatements.org/vocab/InC-OW-EU/1.0/), [NoC-CR](https://rightsstatements.org/vocab/NoC-CR/1.0/), [NoC-OKLR](https://rightsstatements.org/vocab/NoC-OKLR/1.0/) support an optional relatedURL parameter. This URL is displayed on the rights statement's page as a reference to additional or relevant information. To prevent misuse, use of this parameter is controlled and regularly monitored. If you have encountered this page and believe your intended use is legitimate, please [contact us](https://rightsstatements.org/en/get_involved.html). +
    From 93c0507368bc0a0590cbbe45aa5d1cf4b60c748d Mon Sep 17 00:00:00 2001 From: Maarten Zeinstra <5627431+mzeinstra@users.noreply.github.com> Date: Fri, 6 Jun 2025 16:05:34 +0200 Subject: [PATCH 49/55] Update about.md Cleaned up about page. Removed out-of-date information. Simplified information on governance. --- en/about.md | 98 +++++------------------------------------------------ 1 file changed, 9 insertions(+), 89 deletions(-) diff --git a/en/about.md b/en/about.md index edb4ea52..d19ec2e7 100644 --- a/en/about.md +++ b/en/about.md @@ -21,61 +21,19 @@ The rights statements are not just about the making things easier for the user. ## A collaborative approach to governance which ensures the consortium meets the needs of the cultural heritage sector -The rightsstatements.org consortium is a member based organisation - currently comprising of 6 continental and international aggregators. Each members contributes an annual fee, and provides in-kind support. +The rightsstatements.org consortium is currently hosted by Europeana and overseen by an interim Governance Committee. -
    -### Consortium members +Members of the interim Governance Committee: +* Emily Gore +* Greg Cram +* Maarten Zeinstra +* Melissas Levine +* Valentine Charles -
    - - - -
    -
    - - - -
    -
    - -The development of the consortium is overseen by a Steering Committee. The development and maintenance of the statements are driven by two working groups: The Statements Working Group, and the Technical Working Group. All of this is supported by a dedicated coordinator (0.2 FTE) paid for by the consortium. - -The Steering Committee made up of 11 representatives of the members, and includes the co-chairs of the working groups. Seats on the Committee, including the chair and vice chair, are fixed for two years, renewable consecutively once. The Committee meets bi-monthly, and holds one in-person meeting annually. +## Our Previous Work Plans The first annual meeting of the Steering Committee was held in September 2017, at the offices of Europeana Foundation, The Hague, Netherlands. The minutes of that meeting are publicly [available here](https://docs.google.com/document/d/1FHgxm9YF4ZWBtcDRjfBvcm8SG984cS1bVhPLpmTXQ28/). -Chair: Julia Fallon, Europeana Foundation - -Vice Chair: Caitlin Horrall, Library & Archives Canada - -Members: - -* John Bracken, Digital Public Library of America -* Partha Pratim Das, National Digital Library India -* Cathie Oates, Trove at the National Digital Library of Australia -* Greg Cram, New York Public Library (Chair of the Statements WG) -* Antoine Isaac, Europeana Foundation (Co-Chair of the Technical Working Group) -* Mark Matienzo, Stanford University (Co-Chair of the Technical Working Group) -* Fiona Fieldsend, National Library of New Zealand - -Observers: Paul Keller, independent policy advisor on behalf of Europeana Foundation - -Coordinator: Ariadna Matas, Europeana Foundation - -## Our Work Plans - The Consortium Steering Committee prepares annual work plans to structure its work and steps towards achieving its objectives: [Work Plan for 2019]({{site.url}}/files/190812_workplan.pdf) @@ -84,49 +42,11 @@ The Consortium Steering Committee prepares annual work plans to structure its wo [Work Plan for 2021]({{site.url}}/files/rights-statements-2021-work-plan.pdf) -## Working Groups - -Two working groups take forward the basic principles and technical infrastructure that was developed by DPLA and Europeana-based working groups. Each group is led by two co-chairs, and is comprised of individuals with knowledge and expertise in their respective fields. Members of the working group have a dual role of represent the members of the consortium as well as the needs of cultural heritage organisations. - -There are currently two active working groups. The International Rights Statements Working Group and the Technical Working Group. - -### International Rights Statements Working Group - -The task of the International Rights Statements Working Group is to steward the development of the rights statements offered by RightsStatements.org. Its main purpose is to ensure that the rights statements address the needs of cultural heritage institutions and aggregation platforms while ensuring that the conform to the design principles identified in the white paper "[Recommendations for Standardized International Rights Statements]({{site.url}}/en/documentation/rights-statements-white-paper/)". - -The International Rights Statements Working Group is chaired by Greg Cram (Associate Director of Copyright & Intellectual Property, New York Public Library) and co-chaired by Jessica Coates (Executive Officer, Australian Digital Alliance), and has the following members: - -* Emily Gore, Former Director of Member Services, Digital Preservation Network; -* Prof. Dr. jur. Ellen Euler, Professor for Open Access / Open Data, Fachhochschule Potsdam; -* Julia Fallon, Community and Partner Engagement Manager Europeana Foundation; -* David Hansen, Assistant Clinical Professor & Faculty Research Librarian, UNC School of Law; -* Paul Keller, independent policy advisor; -* Kim Gutchlag, Manager Collection Development and Description, National Library of New Zealand; -* Dave Hansen, Associate University Librarian for Research, Collections and Scholarly Communication; -* Melissa Levine, Lead Copyright Officer, University of Michigan Library; -* Sarah Severson, Digital Initiatives Project Librarian, University of Alberta Library; -* Patrick Peiffer, Digital Librarian, Bibliothèque nationale de Luxembourg; and -* Liam Wyatt, WikiCite coordinator. - -### Technical Working Group - -The task of Technical Working Group is to develop and maintain the technical infrastructure and data model that powers the rights statements offered by RightsStatements.org, as defined in the white paper "[Requirements for the Technical Infrastructure for Standardized International Rights Statements]({{site.url}}/en/documentation/technical-white-paper/)". - -The Technical Working Group is chaired by Mark Matienzo (Stanford University Libraries) and Antoine Isaac (Europeana) and has the following members: - -* Sascha Adler, Lead Application Developer, Canadian Research Knowledge Network; -* Plaban Kumar Bhowmik, Assistant Professor, Indian Institute of Technology Kharagpur; -* Valentine Charles, Data R&D Coordinator, Europeana; -* Esmé Cowles, Digital Infrastructure Developer, Princeton University; -* Tom Johnson, PhD Student, University of Washington Information School; -* Matthew Miguez, Metadata Librarian, Florida State University Libraries; -* Patrick Peiffer, Digital Librarian, Bibliothèque Nationale de Luxembourg; and -* Mark Raadgever, Trove data team, National Library of Australia.
    ## With support from -RightsStatements.org has been realized with the support from: +RightsStatements.org has been previously supported by:
    From 7790c29b3be8e28129bf3865708e8d4c109b6fbe Mon Sep 17 00:00:00 2001 From: Maarten Zeinstra <5627431+mzeinstra@users.noreply.github.com> Date: Fri, 6 Jun 2025 16:07:00 +0200 Subject: [PATCH 50/55] Update get_involved.md Removed twitter link and mention of composition consortium --- en/get_involved.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/en/get_involved.md b/en/get_involved.md index 5bac0251..d988bfc2 100644 --- a/en/get_involved.md +++ b/en/get_involved.md @@ -8,7 +8,7 @@ lang: en # Get Involved -RightsStatements.org is run by a consortium consisting of [Europeana](http://europeana.eu/), the [Digital Public Library of America](http://dp.la/) (DPLA), the [National Digital Library of India](https://ndl.iitkgp.ac.in), [Library and Archives Canada](https://www.bac-lac.gc.ca/eng/about-us/Pages/national-heritage-digitization-strategy.aspx) and [Trove](https://trove.nla.gov.au) at the National Digital Library of Australia. We provide a set of standardized rights statements that answers the needs of cultural heritage institutions and aggregators across the globe. If you are interested in joining the consortium, contributing to the development of the rights statements we offer, or if you have questions, please get in touch with us [info@rightsstatements.org](mailto:info@rightsstatements.org). +RightsStatements.org provides a set of standardized rights statements that answers the needs of cultural heritage institutions and aggregators across the globe. If you are interested in joining the consortium, contributing to the development of the rights statements we offer, or if you have questions, please get in touch with us [info@rightsstatements.org](mailto:info@rightsstatements.org). ### Find out how to use the rights statement in your organisation @@ -20,8 +20,6 @@ RightsStatements.org is run by a consortium consisting of [Europeana](http://eur ### Keep up to date on the latest news -- follow us on [Twitter](https://twitter.com/rightsstmts) - If you're interested in finding out more information about membership of the consortium or the working groups, or have any other questions please [contact us](mailto:info@rightsstatements.org). [documentation]: {{site.url}}/en/documentation/ From caac7cc6fc05ccc5cd6fabf7127f9500b446d3f1 Mon Sep 17 00:00:00 2001 From: Maarten Zeinstra <5627431+mzeinstra@users.noreply.github.com> Date: Tue, 10 Jun 2025 09:06:04 +0200 Subject: [PATCH 51/55] Create 2025-06-10-Gaelic-Public-Review.md News item for Gaelic public review --- en/_posts/2025-06-10-Gaelic-Public-Review.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 en/_posts/2025-06-10-Gaelic-Public-Review.md diff --git a/en/_posts/2025-06-10-Gaelic-Public-Review.md b/en/_posts/2025-06-10-Gaelic-Public-Review.md new file mode 100644 index 00000000..a8d21063 --- /dev/null +++ b/en/_posts/2025-06-10-Gaelic-Public-Review.md @@ -0,0 +1,15 @@ +# Public Review of Gaelic Translation of the Rights Statement Now Open + +We're pleased to announce the public review for the new **Gaelic translation of the Rights Statement**. This review period will last for one month, inviting interested individuals and organizations to review the translated text and provide comments. Feedback will be accepted until **July 4, 2025\.** + +The Gaelic translation, along with instructions for adding comments, is available in this [Google Doc](https://docs.google.com/document/d/1JlSpSKVBni7cJmRhRjqym6BRkvGTwOJ3ghIszfeBjXw/edit?tab=t.0#heading=h.f0krnfrh372a). The document supports direct comments and suggestions. If you're unable to use Google Docs, please send your comments to [info@rightsstatements.org](mailto:info@rightsstatements.org). + +### **Acknowledgments** + +We extend our sincere gratitude to the primary translators who brought this Gaelic version to life: + +* **Eoghan Ó Carragáin** +* **Joanna Finegan** +* **Lauren Ní Fhloinn** + +And a special acknowledgement to **Dr. Johanna Archbold** for her time and expertise as a secondary reviewer. From a8422ba8a4583f2a61ba595a676c7439f0b3acd3 Mon Sep 17 00:00:00 2001 From: Maarten Zeinstra <5627431+mzeinstra@users.noreply.github.com> Date: Tue, 10 Jun 2025 14:09:03 +0200 Subject: [PATCH 52/55] Update 2025-06-10-Gaelic-Public-Review.md Some small changes were suggested by the translators, most notably the language of the translation --- en/_posts/2025-06-10-Gaelic-Public-Review.md | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/en/_posts/2025-06-10-Gaelic-Public-Review.md b/en/_posts/2025-06-10-Gaelic-Public-Review.md index a8d21063..626e3a20 100644 --- a/en/_posts/2025-06-10-Gaelic-Public-Review.md +++ b/en/_posts/2025-06-10-Gaelic-Public-Review.md @@ -1,15 +1,9 @@ -# Public Review of Gaelic Translation of the Rights Statement Now Open +# Public Review of Irish Translation of the Rights Statement Now Open -We're pleased to announce the public review for the new **Gaelic translation of the Rights Statement**. This review period will last for one month, inviting interested individuals and organizations to review the translated text and provide comments. Feedback will be accepted until **July 4, 2025\.** +We're pleased to announce the public review for the new **Irish translation of the Rights Statement**. This review period will last for one month, inviting interested individuals and organizations to review the translated text and provide comments. Feedback will be accepted until **July 4, 2025\.** -The Gaelic translation, along with instructions for adding comments, is available in this [Google Doc](https://docs.google.com/document/d/1JlSpSKVBni7cJmRhRjqym6BRkvGTwOJ3ghIszfeBjXw/edit?tab=t.0#heading=h.f0krnfrh372a). The document supports direct comments and suggestions. If you're unable to use Google Docs, please send your comments to [info@rightsstatements.org](mailto:info@rightsstatements.org). +The Irish translation, along with instructions for adding comments, is available in this [Google Doc](https://docs.google.com/document/d/1JlSpSKVBni7cJmRhRjqym6BRkvGTwOJ3ghIszfeBjXw/edit?tab=t.0#heading=h.f0krnfrh372a). The document supports direct comments and suggestions. If you're unable to use Google Docs, please send your comments to [info@rightsstatements.org](mailto:info@rightsstatements.org). ### **Acknowledgments** -We extend our sincere gratitude to the primary translators who brought this Gaelic version to life: - -* **Eoghan Ó Carragáin** -* **Joanna Finegan** -* **Lauren Ní Fhloinn** - -And a special acknowledgement to **Dr. Johanna Archbold** for her time and expertise as a secondary reviewer. +We extend our sincere gratitude to the National Library of Ireland as the primary translation partner. A special acknowledgement to **Lauren Ní Fhloinn** and **Dr. Johanna Archbold** for their time and expertise as reviewers. From 350e7752ae2e0b5ffcd56de94652316469fe0f52 Mon Sep 17 00:00:00 2001 From: Maarten Zeinstra <5627431+mzeinstra@users.noreply.github.com> Date: Wed, 11 Jun 2025 10:15:57 +0200 Subject: [PATCH 53/55] Update and rename 2025-06-10-Gaelic-Public-Review.md to 2025-06-10-Irish-Public-Review.md Added Yaml, might be needed. --- ...-Public-Review.md => 2025-06-10-Irish-Public-Review.md} | 7 +++++++ 1 file changed, 7 insertions(+) rename en/_posts/{2025-06-10-Gaelic-Public-Review.md => 2025-06-10-Irish-Public-Review.md} (83%) diff --git a/en/_posts/2025-06-10-Gaelic-Public-Review.md b/en/_posts/2025-06-10-Irish-Public-Review.md similarity index 83% rename from en/_posts/2025-06-10-Gaelic-Public-Review.md rename to en/_posts/2025-06-10-Irish-Public-Review.md index 626e3a20..63e47753 100644 --- a/en/_posts/2025-06-10-Gaelic-Public-Review.md +++ b/en/_posts/2025-06-10-Irish-Public-Review.md @@ -1,3 +1,10 @@ +--- +layout: post +title: 'Public Review of Irish Translation of the Rights Statement Now Open' +date: 2025-06-10T13:00:00.229Z +filename: 'Public Review of Irish Translation of the Rights Statement Now Open' +--- + # Public Review of Irish Translation of the Rights Statement Now Open We're pleased to announce the public review for the new **Irish translation of the Rights Statement**. This review period will last for one month, inviting interested individuals and organizations to review the translated text and provide comments. Feedback will be accepted until **July 4, 2025\.** From f78b0cd2a07b68fe6f2eb47a1745d47e6364a816 Mon Sep 17 00:00:00 2001 From: Maarten Zeinstra <5627431+mzeinstra@users.noreply.github.com> Date: Fri, 13 Jun 2025 12:36:43 +0200 Subject: [PATCH 54/55] Update 2025-06-10-Irish-Public-Review.md Heading is taken from the YAML, not the MD. --- en/_posts/2025-06-10-Irish-Public-Review.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/en/_posts/2025-06-10-Irish-Public-Review.md b/en/_posts/2025-06-10-Irish-Public-Review.md index 63e47753..fe0448fb 100644 --- a/en/_posts/2025-06-10-Irish-Public-Review.md +++ b/en/_posts/2025-06-10-Irish-Public-Review.md @@ -5,8 +5,6 @@ date: 2025-06-10T13:00:00.229Z filename: 'Public Review of Irish Translation of the Rights Statement Now Open' --- -# Public Review of Irish Translation of the Rights Statement Now Open - We're pleased to announce the public review for the new **Irish translation of the Rights Statement**. This review period will last for one month, inviting interested individuals and organizations to review the translated text and provide comments. Feedback will be accepted until **July 4, 2025\.** The Irish translation, along with instructions for adding comments, is available in this [Google Doc](https://docs.google.com/document/d/1JlSpSKVBni7cJmRhRjqym6BRkvGTwOJ3ghIszfeBjXw/edit?tab=t.0#heading=h.f0krnfrh372a). The document supports direct comments and suggestions. If you're unable to use Google Docs, please send your comments to [info@rightsstatements.org](mailto:info@rightsstatements.org). From 48033fc0e60b94e9519c9dd0ca31d4a18ec81487 Mon Sep 17 00:00:00 2001 From: Patrick Ehlert Date: Tue, 28 Oct 2025 15:40:53 +0100 Subject: [PATCH 55/55] Change utilization to 300% --- k8s/overlays/cloud/hpa.yaml.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k8s/overlays/cloud/hpa.yaml.template b/k8s/overlays/cloud/hpa.yaml.template index 19908999..72ace726 100644 --- a/k8s/overlays/cloud/hpa.yaml.template +++ b/k8s/overlays/cloud/hpa.yaml.template @@ -18,4 +18,4 @@ spec: name: cpu target: type: Utilization - averageUtilization: 75 + averageUtilization: 300