-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sync with hdt-cpp fixes + minor cleanup
- Loading branch information
1 parent
f0c1978
commit 7b9bd63
Showing
5 changed files
with
70 additions
and
4 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
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,25 @@ | ||
# from https://www.w3.org/TR/turtle/#sec-examples | ||
# (see also https://en.wikipedia.org/wiki/Turtle_(syntax)#Example) | ||
# with additional facts added | ||
|
||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
@prefix dc: <http://purl.org/dc/elements/1.1/> . | ||
@prefix ex: <http://example.org/stuff/1.0a/> . | ||
|
||
<http://www.w3.org/TR/rdf-syntax-grammar> | ||
dc:title "RDF/XML Syntax Specification (Revised)" ; | ||
ex:editor [ | ||
ex:fullname "Dave Beckett"; | ||
ex:homePage <http://purl.org/net/dajobe/> | ||
] . | ||
|
||
<http://www.swi-prolog.org> | ||
dc:title "SWI-Prolog" ; | ||
dc:journal "Theory and Practice of Logic Programming" ; | ||
ex:author [ | ||
ex:fullname "Jan Wielemaker"; | ||
ex:homePage <http://www.swi-prolog.org> | ||
] ; | ||
ex:author [ | ||
ex:fullname "Tom Schrijvers" | ||
]. |
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,26 @@ | ||
# from https://www.w3.org/TR/turtle/#sec-examples | ||
|
||
PREFIX : <http://example.org/stuff/1.0b/> | ||
:a :b ( "apple" "banana" ) . | ||
|
||
@prefix : <http://example.org/stuff/1.0c/> . | ||
|
||
:a :b "The first line\nThe second line\n more" . | ||
|
||
:a :b """The first line | ||
The second line | ||
more""" . | ||
|
||
@prefix : <http://example.org/stuff/1.0d/> . | ||
(1 2.0 3E1) :p "w" . | ||
|
||
PREFIX : <http://example.org/stuff/1.0e/> | ||
(1 [:p :q] ( 2 ) ) :p2 :q2 . | ||
|
||
@prefix ericFoaf: <http://www.w3.org/People/Eric/ericP-foaf.rdf#> . | ||
@prefix : <http://xmlns.com/foaf/0.1/> . | ||
ericFoaf:ericP :givenName "Eric" ; | ||
:knows <http://norman.walsh.name/knows/who/dan-brickley> , | ||
[ :mbox <mailto:[email protected]> ] , | ||
<http://getopenid.com/amyvdh> . | ||
|