Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-11-25 | Use fixed size stack | David Robillard | 1 | -2/+2 | |
2018-11-25 | Set datatypes on integer, decimal, and base64 nodes | David Robillard | 1 | -3/+17 | |
2018-11-25 | Clean up node construction API | David Robillard | 1 | -91/+86 | |
2018-11-25 | Clean up includes and improve source file separation | David Robillard | 1 | -1/+2 | |
2018-11-25 | Hide fopen wrapper and use reader interface consistently | David Robillard | 1 | -23/+21 | |
2018-11-25 | Add blank node API | David Robillard | 1 | -0/+14 | |
2018-11-25 | Make serd_node_new_literal take datatype as a node | David Robillard | 1 | -4/+11 | |
2018-11-25 | Add SerdWorld for shared library state | David Robillard | 1 | -4/+12 | |
2018-11-25 | Add SerdSink interface and hide individual function implementations | David Robillard | 1 | -19/+13 | |
2018-11-25 | Bring read/write interface closer to C standard | David Robillard | 1 | -1/+1 | |
2018-11-25 | Merge datatype and/or language into node | David Robillard | 1 | -31/+62 | |
This moves closer to the sord API, and is more convenient in most cases. | |||||
2018-11-25 | Remove serd_uri_to_path() | David Robillard | 1 | -36/+0 | |
2018-11-25 | Make nodes opaque | David Robillard | 1 | -179/+216 | |
2018-11-25 | Make serd_strtod API const-correct | David Robillard | 1 | -2/+7 | |
This is an API breakage, but a minor one (particularly since NULL is allowed) that avoids the flaw in the C API. | |||||
2018-11-25 | Rename SerdChunk to SerdSlice | David Robillard | 1 | -1/+1 | |
2018-11-25 | Use char* for strings in public API | David Robillard | 1 | -66/+61 | |
The constant casting just makes user code a mess, for no benefit. | |||||
2018-11-25 | Remove useless character counting | David Robillard | 1 | -31/+21 | |
2018-11-25 | Use SerdBuffer for mutable buffers | David Robillard | 1 | -5/+5 | |
This avoids const violations from abusing SerdChunk as a mutable buffer for string sinks. | |||||
2018-11-11 | Add tests for misspelled prefix and base directives | David Robillard | 3 | -0/+14 | |
2018-11-11 | Remove some unnecessary test files | David Robillard | 6 | -593/+0 | |
2018-11-11 | Add test for writing URIs that can not be shortened | David Robillard | 4 | -11/+28 | |
2018-10-03 | Fix TriG test suite to not require clashing blank node IDs | David Robillard | 4 | -3/+4 | |
2018-07-30 | Fix resolving some URIs against base URIs with no trailing slash | David Robillard | 4 | -24/+41 | |
2018-07-22 | Remove long literal version of form feed test | David Robillard | 2 | -4/+0 | |
This causes problems with Windows checkouts that aren't configured properly, but the short version suffices to test the relevant code. | |||||
2018-07-22 | Fix memory leak in test suite | David Robillard | 1 | -0/+1 | |
2018-07-22 | Add serd_free for freeing memory allocated by serd | David Robillard | 1 | -5/+5 | |
2018-07-14 | Fix length of base64 encoded nodes | David Robillard | 1 | -0/+3 | |
2018-07-12 | Fix making relative URIs that are shorter than, but under, the root | David Robillard | 1 | -0/+9 | |
2018-06-10 | Test serd_strlen() with NULL flags | David Robillard | 1 | -0/+4 | |
2018-06-10 | Fix relative URI serialisation | David Robillard | 1 | -0/+12 | |
2018-05-27 | Add test for writing form feeds in Turtle | David Robillard | 4 | -18/+39 | |
2018-05-25 | Add blank node statement test files | David Robillard | 2 | -0/+4 | |
2018-05-25 | Fix reported error when reading statements with only a blank node | David Robillard | 2 | -30/+43 | |
2018-03-08 | Fix parsing local names that end with escaped dots | David Robillard | 1 | -0/+3 | |
2018-02-04 | Add test for qualifying URIs | David Robillard | 2 | -0/+8 | |
2018-02-04 | Factor out Turtle-to-Turtle test pattern | David Robillard | 1 | -0/+1 | |
2018-01-04 | Open files in binary mode to preserve line endings on Windows | David Robillard | 1 | -1/+1 | |
2017-12-26 | Report source file and line on test failures | David Robillard | 2 | -98/+131 | |
2017-09-24 | Make internal tests standard manifest-driven test suites | David Robillard | 455 | -314/+943 | |
2017-09-23 | Add missing tests for invalid characters in names | David Robillard | 3 | -1/+5 | |
2017-09-23 | Add NTriples test suite | David Robillard | 72 | -0/+711 | |
2017-09-11 | Remove redundant tests | David Robillard | 49 | -350/+0 | |
2017-08-28 | Add tests for corrupt UTF-8 in prefixed names | David Robillard | 2 | -0/+4 | |
2017-08-28 | Report errors for prematurely terminated statements | David Robillard | 2 | -0/+2 | |
2017-07-10 | Fix hangs when reading corrupt UTF-8 | David Robillard | 2 | -0/+2 | |
2017-07-10 | Add test for parsing empty documents | David Robillard | 2 | -0/+0 | |
2017-07-10 | Gracefully handle applications that write corrupt UTF-8 | David Robillard | 1 | -4/+11 | |
2017-07-10 | Reduce test code length | David Robillard | 1 | -17/+8 | |
2017-07-09 | Add serd_node_from_substring() | David Robillard | 1 | -0/+21 | |
This allows creating nodes in-place from substrings of other strings to allow zero-copy serialization from existing delimited buffers. | |||||
2017-07-08 | Improve URI escaping and parsing tests | David Robillard | 1 | -103/+53 | |