Skip to content
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

Feature RDF/JS #118

Merged
merged 34 commits into from
Apr 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
052e2b2
Add Term and NamedNode.
RubenVerborgh Sep 29, 2016
b8b898d
Add BlankNode.
RubenVerborgh Sep 29, 2016
5f8ff59
Add Variable.
RubenVerborgh Sep 29, 2016
eeea182
Add Literal.
RubenVerborgh Sep 29, 2016
f30a05e
Add DefaultGraph.
RubenVerborgh Sep 29, 2016
d23cefc
Add toJSON.
RubenVerborgh Oct 3, 2016
3cf6ee9
Add fromId.
RubenVerborgh Oct 3, 2016
472bc10
Add Quad.
RubenVerborgh Jan 24, 2017
9977fd6
Change parser output to RDF/JS.
RubenVerborgh Jan 24, 2017
11e268d
Move RDF/JS term creation to parser.
RubenVerborgh Jan 31, 2017
e1f6844
Add Term#toId.
rubensworks Oct 13, 2017
afd0b17
Migrate writer to RDF/JS interface.
rubensworks Oct 13, 2017
7fb82db
Eliminate toId for object writing.
RubenVerborgh Apr 9, 2018
7a2c70c
Eliminate toId for predicate writing.
RubenVerborgh Apr 9, 2018
d3ac950
Eliminate toId for graph writing.
RubenVerborgh Apr 9, 2018
83c6346
Eliminate toId for subject writing.
RubenVerborgh Apr 9, 2018
fec8df8
Simplify writer.
RubenVerborgh Apr 9, 2018
00a4818
Migrate store to RDF/JS interface
rubensworks Oct 18, 2017
6ff4396
Migrate util to RDF/JS interface
rubensworks Oct 18, 2017
5774899
Implement DataFactory interface in N3Util
rubensworks Jan 10, 2018
90a7e06
Add dedicated DataFactory interface.
RubenVerborgh Apr 10, 2018
0fda24e
Always use base IRI in parser tests.
RubenVerborgh Apr 10, 2018
155ffc3
Correctly emit parsed blank nodes.
RubenVerborgh Apr 10, 2018
0d5bc24
Migrate spec tester to RDF/JS interface.
RubenVerborgh Apr 10, 2018
142befe
Update EARL URLs.
RubenVerborgh Apr 11, 2018
c700d86
Remove prefix support from N3Store.
RubenVerborgh Apr 11, 2018
c3e00c0
Adapt N3Util to RDF/JS.
RubenVerborgh Apr 11, 2018
b8ab381
Emit prefixes as named nodes.
RubenVerborgh Apr 11, 2018
14e24cc
Accept NamedNode prefixes in writer.
RubenVerborgh Apr 11, 2018
07591ac
Add import method to stream reader and writer.
RubenVerborgh Apr 11, 2018
a435548
Add import and remove methods to store.
RubenVerborgh Apr 11, 2018
b8f621b
Remove browser version generation.
RubenVerborgh Apr 11, 2018
2a942e3
Update README for RDF/JS.
RubenVerborgh Apr 11, 2018
c6435ff
Make everything quads.
RubenVerborgh Apr 11, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ script:
- npm run lint
- npm test
- npm run spec
- npm run browser
- npm run docs
after_success:
- npm run coveralls
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# License
The MIT License (MIT)
Copyright ©2012–2016 Ruben Verborgh
Copyright ©2012–2018 Ruben Verborgh

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
1 change: 1 addition & 0 deletions N3.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ require = function () {};

// Expose submodules
var exports = module.exports = {
DataFactory: require('./lib/N3DataFactory'),
Lexer: require('./lib/N3Lexer'),
Parser: require('./lib/N3Parser'),
Writer: require('./lib/N3Writer'),
Expand Down
Loading