-
Notifications
You must be signed in to change notification settings - Fork 35
(closes #555) Fall back to default logic in useNativeTypes
mode for RDF numbers which are not JSON numbers
#625
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
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
8baaa1d
#555 `.gitignore` JetBrains & `pyenv` files
gkellogg 10590b9
#555 If `useNativeTypes` is `true` but an RDF number cannot be conver…
anatoly-scherbakov f885de0
#555 `fromRdf-manifest.jsonld#t0027` covers fallback logic in `useNat…
anatoly-scherbakov 9c402fd
Automated report generation
anatoly-scherbakov a7c2291
#555 Introduce 2.4.3.3 in value conversion algorithm
anatoly-scherbakov 9b2e73e
#555 Fix punctuation in list
anatoly-scherbakov 2affadb
#555 Insert `<ins>` tags as appropriate
anatoly-scherbakov 33a652b
Add Candidate Correction change entry and anchor for useNativeTypes c…
gkellogg 065444a
#555 Commit suggestions © @TallTed
anatoly-scherbakov 10c39a9
#555 Fixes to test 0027 © @pchampin
anatoly-scherbakov 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 hidden or 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,5 @@ | ||
# Support JetBrains IDEs | ||
.idea | ||
# JetBrains IDEs | ||
.idea/ | ||
|
||
# pyenv version file | ||
.python-version |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 @@ | ||
<http://example.com/boolean-native> <http://example.com/example> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . | ||
<http://example.com/boolean-native> <http://example.com/example> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . | ||
|
||
<http://example.com/boolean-object> <http://example.com/example> "True"^^<http://www.w3.org/2001/XMLSchema#boolean> . | ||
<http://example.com/boolean-object> <http://example.com/example> "False"^^<http://www.w3.org/2001/XMLSchema#boolean> . | ||
|
||
<http://example.com/number-native> <http://example.com/example> "1"^^<http://www.w3.org/2001/XMLSchema#integer> . | ||
|
||
<http://example.com/number-object> <http://example.com/example> "0.1e999999999999999"^^<http://www.w3.org/2001/XMLSchema#double> . | ||
<http://example.com/number-object> <http://example.com/example> "+INF"^^<http://www.w3.org/2001/XMLSchema#double> . | ||
<http://example.com/number-object> <http://example.com/example> "-INF"^^<http://www.w3.org/2001/XMLSchema#double> . |
This file contains hidden or 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,56 @@ | ||
{ | ||
"@graph": [ | ||
{ | ||
"@id": "http://example.com/boolean-native", | ||
"http://example.com/example": [ | ||
{ | ||
"@type": "http://www.w3.org/2001/XMLSchema#boolean", | ||
"@value": true | ||
}, | ||
{ | ||
"@type": "http://www.w3.org/2001/XMLSchema#boolean", | ||
"@value": false | ||
} | ||
] | ||
}, | ||
{ | ||
"@id": "http://example.com/boolean-object", | ||
"http://example.com/example": [ | ||
{ | ||
"@type": "http://www.w3.org/2001/XMLSchema#boolean", | ||
"@value": "True" | ||
}, | ||
{ | ||
"@type": "http://www.w3.org/2001/XMLSchema#boolean", | ||
"@value": "False" | ||
} | ||
] | ||
}, | ||
{ | ||
"@id": "http://example.com/number-native", | ||
"http://example.com/example": [ | ||
{ | ||
"@type": "http://www.w3.org/2001/XMLSchema#integer", | ||
"@value": 1 | ||
} | ||
] | ||
}, | ||
{ | ||
"@id": "http://example.com/number-object", | ||
"http://example.com/example": [ | ||
{ | ||
"@type": "http://www.w3.org/2001/XMLSchema#double", | ||
"@value": "0.1e999999999999999" | ||
}, | ||
{ | ||
"@type": "http://www.w3.org/2001/XMLSchema#double", | ||
"@value": "+INF" | ||
}, | ||
{ | ||
"@type": "http://www.w3.org/2001/XMLSchema#double", | ||
"@value": "-INF" | ||
} | ||
] | ||
} | ||
] | ||
} |
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.
Uh oh!
There was an error while loading. Please reload this page.