-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add section about 'unstar' mapping #115
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
a982f90
add section about 'unstar' mapping
pchampin 0181cc7
change the unstar algorithm so that
pchampin 760641f
add note on the (absence of) interference with old style reification
pchampin 23b9f6b
rename the 'unstar' algo to 'classicize'
pchampin 7ef8b79
use a dedicated vocab rather than repurposing the reification vocab
pchampin c8f4180
prioritize prose over algo, and describe revert transformation
pchampin 5a707e2
mark the classicize: namespace as AT RISK
pchampin b21e931
explain that semantic equivalence could be defined somewhere else
pchampin d04a15e
change vocabulary back to the rdf: namespace
pchampin 42d448f
Reword the classicize (and inverse) algorithms
pchampin 81e1a79
Apply suggestions from code review
pchampin bee98e9
add note on 'old-style' reification
pchampin fc4624f
Apply suggestions from code review
pchampin 08edfcf
adjustments on @TallTed's suggestions
pchampin d609e07
replace 'constituent' with 'appears in'
pchampin 76cd23c
add entry in 'changes between RDF 1.1 and RDF 1.2'
pchampin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | ||
PREFIX ex: <http://example.org/> | ||
|
||
<< ex:s ex:p ex:o >> ex:q "some value". | ||
|
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,5 @@ | ||
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | ||
PREFIX ex: <http://example.org/> | ||
|
||
_:r1 rdf:reifies <<( ex:s ex:p ex:o )>>. | ||
_:r1 ex:q "some value". |
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,11 @@ | ||
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | ||
PREFIX ex: <http://example.org/> | ||
|
||
_:r1 rdf:reifies _:gen1. | ||
_:r1 ex:q "some value". | ||
|
||
_:gen1 a rdf:TripleTerm ; | ||
rdf:ttSubject ex:s; | ||
rdf:ttPredicate ex:p; | ||
rdf:ttObject ex:o. | ||
|
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I think it should be.
It should be the way of doing the mapping, not to be taken as an illustration/suggestion.