-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'devel' into fix/clean-test-files
- Loading branch information
Showing
19 changed files
with
191 additions
and
75 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
//! [OWL/XML](https://www.w3.org/TR/2012/REC-owl2-xml-serialization-20121211/) | ||
//! syntax for OWL. | ||
pub mod reader; | ||
pub mod writer; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
//! [RDF/XML](https://www.w3.org/TR/rdf-syntax-grammar/) syntax for OWL. | ||
pub mod closure_reader; | ||
pub mod reader; | ||
pub mod writer; |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0"?> | ||
<rdf:RDF xmlns="http://www.example.com/iri#" | ||
xml:base="http://www.example.com/iri" | ||
xmlns:o="http://www.example.com/iri#" | ||
xmlns:owl="http://www.w3.org/2002/07/owl#" | ||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
xmlns:xml="http://www.w3.org/XML/1998/namespace" | ||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#" | ||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> | ||
<owl:Ontology rdf:about="http://www.example.com/iri"> | ||
<owl:versionIRI rdf:resource="http://www.example.com/viri"/> | ||
</owl:Ontology> | ||
<owl:AnnotationProperty rdf:about="http://www.example.com/iri#annotation"/> | ||
<rdf:Description rdf:about="http://www.example.com/iri#class"> | ||
<annotation> | ||
<rdf:Description/> | ||
</annotation> | ||
</rdf:Description> | ||
</rdf:RDF> | ||
|
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,21 @@ | ||
<?xml version="1.0"?> | ||
<Ontology xmlns="http://www.w3.org/2002/07/owl#" | ||
xml:base="http://www.example.com/iri" | ||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
xmlns:xml="http://www.w3.org/XML/1998/namespace" | ||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#" | ||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" | ||
ontologyIRI="http://www.example.com/iri" | ||
versionIRI="http://www.example.com/viri"> | ||
<Prefix name="o" IRI="http://www.example.com/iri#"/> | ||
<Prefix name="owl" IRI="http://www.w3.org/2002/07/owl#"/> | ||
<Prefix name="rdf" IRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/> | ||
<Prefix name="xml" IRI="http://www.w3.org/XML/1998/namespace"/> | ||
<Prefix name="xsd" IRI="http://www.w3.org/2001/XMLSchema#"/> | ||
<Prefix name="rdfs" IRI="http://www.w3.org/2000/01/rdf-schema#"/> | ||
<AnnotationAssertion> | ||
<AnnotationProperty abbreviatedIRI="o:annotation"/> | ||
<AbbreviatedIRI>o:class</AbbreviatedIRI> | ||
<AnonymousIndividual nodeID="_:genid2147483648"/> | ||
</AnnotationAssertion> | ||
</Ontology> |
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
Oops, something went wrong.