-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #276 from opendata-swiss/handbook-94-adjust-licenc…
…e-rights-page Handbook 94 adjust licence rights page
- Loading branch information
Showing
9 changed files
with
61 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
...content/glossar/bibliothek/dcat-examples/deprecated/distribution-rights-rdf.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.. code-block:: xml | ||
:caption: the rights statement comes from a controlled vocabulary | ||
:emphasize-lines: 8 | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
xmlns:dcat="http://www.w3.org/ns/dcat#" | ||
xmlns:dct="http://purl.org/dc/terms/"> | ||
<dcat:Distribution rdf:about="http://stratigraphy.org/ICSchart/ChronostratChart2017-02.jpg"> | ||
<dcat:accessURL rdf:resource="http://stratigraphy.org/ICSchart/ChronostratChart2017-02.jpg"/> | ||
<dct:rights>NonCommercialAllowed-CommercialAllowed-ReferenceRequired</dct:rights> | ||
</dcat:Distribution> | ||
</rdf:RDF> |
12 changes: 12 additions & 0 deletions
12
...content/glossar/bibliothek/dcat-examples/deprecated/distribution-rights-ttl.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.. code-block:: Turtle | ||
:caption: the rights statement comes from a controlled vocabulary | ||
:emphasize-lines: 8 | ||
@prefix dcat: <http://www.w3.org/ns/dcat#> . | ||
@prefix dct: <http://purl.org/dc/terms/> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
<http://stratigraphy.org/ICSchart/ChronostratChart2017-02.jpg> | ||
a dcat:Distribution ; | ||
dcat:accessURL <http://stratigraphy.org/ICSchart/ChronostratChart2017-02.jpg> ; | ||
dct:rights "NonCommercialAllowed-CommercialAllowed-ReferenceRequired" . |
6 changes: 2 additions & 4 deletions
6
source/content/glossar/bibliothek/dcat-examples/distribution-license-rdf.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,14 @@ | ||
.. code-block:: xml | ||
:caption: the license statement comes from a controlled vocabulary | ||
:emphasize-lines: 7,8,9 | ||
:emphasize-lines: 7 | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
xmlns:dcat="http://www.w3.org/ns/dcat#" | ||
xmlns:dct="http://purl.org/dc/terms/"> | ||
<dcat:Distribution rdf:about="http://stratigraphy.org/ICSchart/ChronostratChart2017-02.jpg"> | ||
<dct:license rdf:about="http://dcat-ap.ch/vocabulary/licenses/terms_by"> | ||
<rdf:type rdf:resource="http://purl.org/dc/terms/RightsStatement"/> | ||
</dct:license> | ||
<dct:license rdf:resource="http://dcat-ap.ch/vocabulary/licenses/terms_by"/> | ||
</dcat:Distribution> | ||
</rdf:RDF> |
8 changes: 2 additions & 6 deletions
8
source/content/glossar/bibliothek/dcat-examples/distribution-license-ttl.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
.. code-block:: Turtle | ||
:caption: the license statement comes from a controlled vocabulary | ||
:emphasize-lines: 7,8,9,10 | ||
:emphasize-lines: 7 | ||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
@prefix dcat: <http://www.w3.org/ns/dcat#> . | ||
@prefix dct: <http://purl.org/dc/terms/> . | ||
<http://stratigraphy.org/ICSchart/ChronostratChart2017-02.jpg> | ||
a dcat:Distribution ; | ||
dct:license [ | ||
rdf:type dct:LicenseDocument ; | ||
rdf:about <http://dcat-ap.ch/vocabulary/licenses/terms_by> ; | ||
rdf:resource <http://purl.org/dc/terms/RightsStatement> ; | ||
] . | ||
dct:license <http://dcat-ap.ch/vocabulary/licenses/terms_by> . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters