Skip to content

Commit

Permalink
Finish 2.0.0.beta4
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Apr 7, 2016
2 parents 3f3786f + 217e593 commit 9f77709
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.0.beta3
2.0.0.beta4
12 changes: 6 additions & 6 deletions etc/cc.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ copyrightable work"""@en-us .

<http://web.resource.org/cc/requires> owl:equivalentProperty <http://creativecommons.org/ns#requires> .

<https://creativecommons.org/ns> xhv:license <https://creativecommons.org/licenses/by/4.0/>;
<http://creativecommons.org/ns> xhv:license <https://creativecommons.org/licenses/by/4.0/>;
xhv:stylesheet <https://creativecommons.org/includes/bootstrap.min.css> .

<http://creativecommons.org/ns#Copyleft> a cc:Requirement;
Expand Down Expand Up @@ -107,13 +107,13 @@ distribution"""@en-us .

<http://creativecommons.org/ns#attributionURL> a rdf:Property;
rdfs:domain <http://creativecommons.org/ns#Work>;
rdfs:range <https://www.w3.org/2000/01/rdf-schema#Resource> .
rdfs:range <http://www.w3.org/2000/01/rdf-schema#Resource> .

<http://creativecommons.org/ns#deprecatedOn> a rdf:Property;
rdfs:label """deprecated
on"""@en-us;
rdfs:domain <http://creativecommons.org/ns#License>;
rdfs:range <https://www.w3.org/2001/XMLSchema-datatypes#date> .
rdfs:range <http://www.w3.org/2001/XMLSchema-datatypes#date> .

<http://creativecommons.org/ns#jurisdiction> a rdf:Property;
rdfs:label "jurisdiction"@en-us;
Expand All @@ -122,7 +122,7 @@ on"""@en-us;

<http://creativecommons.org/ns#legalcode> a rdf:Property;
rdfs:domain <http://creativecommons.org/ns#License>;
rdfs:range <https://www.w3.org/2000/01/rdf-schema#Resource> .
rdfs:range <http://www.w3.org/2000/01/rdf-schema#Resource> .

<http://creativecommons.org/ns#morePermissions> a rdf:Property;
rdfs:domain <http://creativecommons.org/ns#Work>;
Expand Down Expand Up @@ -182,8 +182,8 @@ the license."""@en-us .
license"""@en-us;
rdfs:domain <http://creativecommons.org/ns#Work>;
rdfs:range <http://creativecommons.org/ns#License>;
rdfs:subPropertyOf <https://purl.org/dc/terms/license>;
owl:sameAs <https://www.w3.org/1999/xhtml/vocab#license> .
rdfs:subPropertyOf <http://purl.org/dc/terms/license>;
owl:sameAs <http://www.w3.org/1999/xhtml/vocab#license> .

<http://creativecommons.org/ns#permits> a rdf:Property;
rdfs:label "permits"@en-us;
Expand Down
8 changes: 4 additions & 4 deletions lib/rdf/vocab/cc.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ class CC < RDF::StrictVocabulary("http://creativecommons.org/ns#")
property :attributionURL,
domain: "cc:Work".freeze,
label: "attributionURL".freeze,
range: "https://www.w3.org/2000/01/rdf-schema#Resource".freeze,
range: "rdfs:Resource".freeze,
type: "rdf:Property".freeze
property :deprecatedOn,
domain: "cc:License".freeze,
label: "deprecated\non".freeze,
range: "https://www.w3.org/2001/XMLSchema-datatypes#date".freeze,
range: "http://www.w3.org/2001/XMLSchema-datatypes#date".freeze,
type: "rdf:Property".freeze
property :jurisdiction,
domain: "cc:License".freeze,
Expand All @@ -68,14 +68,14 @@ class CC < RDF::StrictVocabulary("http://creativecommons.org/ns#")
property :legalcode,
domain: "cc:License".freeze,
label: "legalcode".freeze,
range: "https://www.w3.org/2000/01/rdf-schema#Resource".freeze,
range: "rdfs:Resource".freeze,
type: "rdf:Property".freeze
property :license,
domain: "cc:Work".freeze,
label: "has\nlicense".freeze,
:"owl:sameAs" => [],
range: "cc:License".freeze,
subPropertyOf: "https://purl.org/dc/terms/license".freeze,
subPropertyOf: "dc:license".freeze,
type: "rdf:Property".freeze
property :morePermissions,
domain: "cc:Work".freeze,
Expand Down

0 comments on commit 9f77709

Please sign in to comment.