summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* fix tests using XML data since Turtle now defaultdocco_cleanNicholas Car2021-04-252-4/+4
|
* Python 3 syntax, rdflib 5+ namespacingNicholas Car2021-04-241-5/+14
|
* minor edits. SERVICE queries to HTTP broken (Issue #1295)Nicholas Car2021-04-241-37/+38
|
* reST formattingNicholas Car2021-04-241-2/+1
|
* minor text edits; removed deprecated label & preferredLabel methodsNicholas Car2021-04-241-25/+38
|
* minor: Python 3 code styleNicholas Car2021-04-241-27/+55
|
* removed non-resolving links, added new multi-graph e.g., fixed e.g. file ↵Nicholas Car2021-04-243-45/+105
| | | | docco error, fixed parse() for Dataset/ConGr
* stub 5to6 pageNicholas Car2021-04-241-0/+58
|
* updated Python ref URLNicholas Car2021-04-241-1/+1
|
* trivial grammar updatesNicholas Car2021-04-241-7/+9
|
* trivial grammar updatesNicholas Car2021-04-241-12/+12
|
* update to 6.0.0; add SPARQL e.g.Nicholas Car2021-04-241-23/+62
|
* Merge pull request #1293 from ajnelson-nist/fix_closednamespace_doc_typoNicholas Car2021-04-241-1/+1
|\ | | | | Fix typo in ClosedNamespace doc string
| * Fix typo in ClosedNamespace doc stringAlex Nelson2021-04-201-1/+1
| |
* | Merge pull request #1280 from fredrik-aschehoug/allow_parantheses_in_URINicholas Car2021-04-243-2/+18
|\ \ | | | | | | Allow parentheses in uri
| * | Fix spellingfredrik-aschehoug2021-03-142-6/+6
| | |
| * | reorderfredrik-aschehoug2021-03-141-4/+4
| | |
| * | Add compute_qname testfredrik-aschehoug2021-03-141-0/+8
| | |
| * | Add newlinefredrik-aschehoug2021-03-141-1/+1
| | |
| * | Cleanup testfredrik-aschehoug2021-03-141-2/+0
| | |
| * | Revert .gitignorefredrik-aschehoug2021-03-141-4015/+1
| | |
| * | Allow paranthesesfredrik-aschehoug2021-03-143-2/+4026
| | |
* | | Merge pull request #1290 from RDFLib/dependabot/pip/sphinx-3.5.4Nicholas Car2021-04-241-1/+1
|\ \ \ | |_|/ |/| | Bump sphinx from 3.5.3 to 3.5.4
| * | Bump sphinx from 3.5.3 to 3.5.4dependabot/pip/sphinx-3.5.4dependabot-preview[bot]2021-04-121-1/+1
|/ / | | | | | | | | | | | | | | Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 3.5.3 to 3.5.4. - [Release notes](https://github.com/sphinx-doc/sphinx/releases) - [Changelog](https://github.com/sphinx-doc/sphinx/blob/4.x/CHANGES) - [Commits](https://github.com/sphinx-doc/sphinx/commits/v3.5.4) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* | Merge pull request #1286 from white-gecko/feature/addDocuAboutLocalInstallNicholas Car2021-04-101-0/+13
|\ \ | | | | | | Add notes about how to install from git
| * | Add notes about how to install from gitNatanael Arndt2021-03-231-0/+13
| | |
* | | Merge pull request #1285 from white-gecko/feature/forwardVersionTo6alphaAshley Sommer2021-03-231-2/+2
|\ \ \ | |/ / | | | Feature/forward version to 6.0.0-alpha
| * | use PEP440 version stringNatanael Arndt2021-03-221-1/+1
| | |
| * | Set the version string to 6.0.0-pre-alphaNatanael Arndt2021-03-221-2/+2
| |/
* | Merge pull request #1283 from RDFLib/dependabot/pip/sphinx-3.5.3Nicholas Car2021-03-221-1/+1
|\ \ | |/ |/| Bump sphinx from 3.5.1 to 3.5.3
| * Bump sphinx from 3.5.1 to 3.5.3dependabot/pip/sphinx-3.5.3dependabot-preview[bot]2021-03-221-1/+1
|/ | | | | | | | Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 3.5.1 to 3.5.3. - [Release notes](https://github.com/sphinx-doc/sphinx/releases) - [Changelog](https://github.com/sphinx-doc/sphinx/blob/3.x/CHANGES) - [Commits](https://github.com/sphinx-doc/sphinx/commits) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* Merge pull request #1272 from white-gecko/feature/speedupN3Natanael Arndt2021-03-131-137/+151
|\ | | | | speedup notation3/turtle parser
| * Speedup tok.Remi Chateauneu2021-03-031-6/+5
| |
| * Use set instead of string or list for set of charsNatanael Arndt2021-03-011-12/+12
| |
| * Use lists instead of strings for set of charsNatanael Arndt2021-03-011-14/+15
| |
| * Cleaner code.Remi Chateauneu2021-03-011-1/+1
| |
| * Speedup.Remi Chateauneu2021-02-281-125/+139
| |
* | Merge pull request #1274 from nemesamade/masterNatanael Arndt2021-03-103-4/+23
|\ \ | | | | | | Correct behaviour of compute_qname for URNs
| * | Removed colon from ALLOWED_NAME_CHARS as including it resulted in URN ↵Amade Nemes2021-03-081-2/+2
| | | | | | | | | | | | identifiers not getting split at all and thus leading to compute_qname being unable to compute the qnames of URNs. This change did not break any current tests, and allowed the previously added 2 tests to pass (note: as a quick fix is_cname already excludes colon from ALLOWED_NAME_CHARS as it causes issues there too https://github.com/RDFLib/rdflib/pull/663 , so as far as I can tell there really is no reason for colon to be included)
| * | Added tests for testing correct behaviour of compute_qname for URNs, and ↵Amade Nemes2021-03-082-2/+21
| | | | | | | | | | | | relatedly for correct turtle serialization of URNs
* | | Merge pull request #1271 from rchateauneu/memory_onlyNatanael Arndt2021-03-091-9/+12
|\ \ \ | |/ / |/| | Speedup __add_triple_context.
| * | KeyError instead of IndexError.Primhill Computers2021-03-061-1/+1
| | |
| * | correctly delete default triple context infoNatanael Arndt2021-03-051-1/+1
| | |
| * | Speedup __add_triple_context.Remi Chateauneu2021-03-031-10/+13
| |/ | | | | | | (cherry picked from commit 85e1cfee04e8f9c590171379f57c751e0d5b9828)
* | Merge pull request #1267 from white-gecko/feature/coverage-configurationNatanael Arndt2021-03-055-40/+26
|\ \ | | | | | | Feature/coverage configuration
| * | Remove the path sectionNatanael Arndt2021-03-011-12/+0
| | | | | | | | | | | | | | | This section appears to be left over. It is only necessary in combination with coverage combine, which we are not using.
| * | Move installation of coverage and nose-timer to requirements.dev.txtNatanael Arndt2021-03-013-4/+10
| | |
| * | remove outcommented configuration from setup.cfgNatanael Arndt2021-03-011-9/+0
| | |
| * | Move coverage configuration to setup.cfgNatanael Arndt2021-03-012-36/+37
| |/
* | Merge pull request #1192 from FlorianLudwig/sparql-speedupNicholas Car2021-03-052-10/+30
|\ \ | | | | | | optimize sparql.Bindings