Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-12-02 | Simplify literal construction API | David Robillard | 3 | -30/+45 | |
2023-12-02 | Set datatypes on integer, decimal, and base64 nodes | David Robillard | 1 | -7/+27 | |
2023-12-02 | Simplify node construction API | David Robillard | 5 | -97/+157 | |
2023-12-02 | Merge datatype/language into node | David Robillard | 3 | -53/+69 | |
This moves closer to the sord API, and is more convenient in most cases. | |||||
2023-12-02 | Simplify URI API and implementation | David Robillard | 2 | -31/+142 | |
2023-12-02 | Add serd_node_uri_view() | David Robillard | 1 | -5/+11 | |
2023-12-02 | Add serd_node_string_view() | David Robillard | 1 | -0/+2 | |
2023-12-02 | Make nodes opaque | David Robillard | 6 | -189/+195 | |
2023-12-02 | Shorten node constructor names | David Robillard | 2 | -15/+14 | |
2023-12-02 | Rename string view fields | David Robillard | 1 | -3/+3 | |
2023-12-02 | Use more human-readable status codes | David Robillard | 3 | -5/+5 | |
2023-12-02 | Add version constants to public header | David Robillard | 1 | -0/+1 | |
2023-12-02 | Split up public API header | David Robillard | 7 | -8/+41 | |
2023-12-02 | Remove "get" from accessor names | David Robillard | 2 | -8/+8 | |
2023-12-02 | Rename function types for consistency | David Robillard | 1 | -4/+4 | |
2023-12-02 | Rename SerdStyle to SerdWriterFlags | David Robillard | 2 | -13/+14 | |
2023-12-02 | Rename SerdURI to SerdURIView | David Robillard | 1 | -8/+8 | |
2023-12-02 | Rename SerdChunk to SerdStringView | David Robillard | 2 | -3/+3 | |
2023-12-02 | Add SerdBuffer type for mutable buffers | David Robillard | 2 | -14/+14 | |
This avoids const violations from abusing SerdChunk as a mutable buffer for string sinks. | |||||
2023-12-02 | Use char* for strings in public API | David Robillard | 6 | -126/+108 | |
The constant casting just makes user code a mess, for no benefit. | |||||
2023-12-02 | Remove support for reading Turtle named inline nodes extension | David Robillard | 7 | -41/+0 | |
2023-12-02 | Remove escape parameter from serd_node_new_file_uri | David Robillard | 1 | -25/+10 | |
Since characters are escaped because they are not valid characters in a URI, any use of this function without escaping is problematic at best. | |||||
2023-12-02 | Remove useless character counting | David Robillard | 2 | -17/+9 | |
2023-12-02 | Remove serd_uri_to_path() | David Robillard | 1 | -45/+0 | |
2023-10-06 | Tolerate reduce floating point precision on Apple Silicon | David Robillard | 1 | -2/+2 | |
This is... strange, and slightly worrying, although it's already known that this conversion code isn't exact in all cases. The next major version will fix that (and I've confirmed that these issues aren't present there), but that's a major change so, for now, just reduce the very large number in the test case slightly so that it passes on these chips as well. | |||||
2023-09-23 | Avoid use of deprecated meson string formatting with files | David Robillard | 1 | -10/+29 | |
Meson annoyingly doesn't provide access to the path of file objects (but it should). It was possible to do that by formatting a string with a file argument, but now this triggers a loud warning that claims it has always been broken and will be deprecated. So, avoid this by juggling things around and maintaining unchecked path strings instead, and hope that they're all passed to files() at some point so they can't get stale. | |||||
2023-09-22 | Clean up meson formatting | David Robillard | 1 | -35/+73 | |
Formatted automatically with muon, with some manual changes to make things format more nicely. | |||||
2023-05-03 | Make serd_reader_read_chunk() work with NQuads | David Robillard | 1 | -7/+101 | |
2023-05-03 | Remove test output file after execution | David Robillard | 1 | -0/+1 | |
2023-04-30 | Suppress cross-compilation warnings in MacOS builds | David Robillard | 1 | -0/+5 | |
2023-04-30 | Add long "help" and "version" options to serdi | David Robillard | 1 | -0/+2 | |
Although serdi still "officially" has a BSD-style interface, meson uses --version to find the version of executables. So, support that, and also add --help, since users will often try that for unknown commands. | |||||
2023-04-16 | Gracefully handle errors when writing text | David Robillard | 3 | -1/+164 | |
2023-04-06 | Add test for different comment termination cases | David Robillard | 3 | -0/+13 | |
2023-04-06 | Improve pretty-printing of lists and inline subjects | David Robillard | 13 | -10/+87 | |
2023-04-06 | Remove support for writing Turtle named inline nodes extension | David Robillard | 2 | -18/+0 | |
2023-04-06 | Make URI writing stricter by default | David Robillard | 2 | -1/+39 | |
2023-04-06 | Gracefully handle boolean subject and predicate errors | David Robillard | 6 | -2/+17 | |
2023-04-06 | Check formatting of project Turtle files | David Robillard | 1 | -0/+11 | |
2023-04-06 | Use portable names for all test targets | David Robillard | 1 | -8/+8 | |
2023-04-06 | Simplify stdout capturing code | David Robillard | 1 | -4/+2 | |
This is slightly less excruciatingly slow on Windows, sometimes, maybe. | |||||
2023-04-06 | Add pylint test | David Robillard | 1 | -1/+25 | |
2023-04-06 | Fix flake8 warnings and add test | David Robillard | 2 | -1/+7 | |
2023-04-06 | Simplify command-line option test names | David Robillard | 1 | -2/+2 | |
2023-04-06 | Simplify naming of W3C test directories | David Robillard | 1025 | -8/+9 | |
This matches the names used in <https://github.com/w3c/rdf-tests.git>. | |||||
2023-04-06 | Update TriG test suite | David Robillard | 4 | -18/+34 | |
This suite can't be exactly copied because it has modifications to support exact streaming tests, but this commit incorporates some upstream changes manually. | |||||
2023-04-06 | Update Turtle test suite | David Robillard | 19 | -21/+123 | |
This suite can't be exactly copied because it has modifications to support exact streaming tests, but this commit incorporates some upstream changes manually. | |||||
2023-04-06 | Update NQuads test suite | David Robillard | 7 | -13/+29 | |
2023-04-06 | Update NTriples test suite | David Robillard | 3 | -2/+18 | |
2023-04-06 | Use more consistent meson formatting | David Robillard | 1 | -2/+2 | |
2023-04-06 | Use new meson strict warning system | David Robillard | 2 | -21/+15 | |
Meson includes warning_level=everything as of version 1.0.0, which supercedes maintaining redundant lists of warning flags here. |