Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-03-08 | WIP: Add statement filtering | David Robillard | 1 | -3/+74 | |
2021-03-08 | Add support for converting literals to canonical form | David Robillard | 1 | -4/+16 | |
2021-03-08 | Add validation to command line interface | David Robillard | 1 | -3/+12 | |
2021-03-08 | Add model | David Robillard | 1 | -3/+38 | |
2021-03-08 | WIP: Add extensible logging API | David Robillard | 1 | -9/+1 | |
2021-03-08 | Expand URIs in reader | David Robillard | 1 | -1/+5 | |
2021-03-08 | Add support for parsing variables | David Robillard | 1 | -0/+3 | |
This adds a reader flag and serdi option for extending a syntax with support for SPARQL-like variables, for storing things like patterns or simple queries. | |||||
2021-03-08 | WIP: Make Reader always read from a ByteSource | David Robillard | 1 | -11/+22 | |
2021-03-08 | Add support for reading multiple files at once | David Robillard | 1 | -29/+98 | |
2021-03-08 | Simplify handling of input string arguments | David Robillard | 1 | -10/+11 | |
2021-03-08 | Add input base URI option | David Robillard | 1 | -6/+11 | |
2021-03-08 | WIP: Make Writer always write to a ByteSink | David Robillard | 1 | -17/+28 | |
2021-03-08 | Add empty syntax type for suppressing output | David Robillard | 1 | -4/+9 | |
2021-03-08 | Replace serd_reader_set_strict() with SerdReaderFlags | David Robillard | 1 | -7/+6 | |
This makes reader options extensible and should hopefully prevent the need for grafting on more similar functions in the future. | |||||
2021-03-08 | Report writer errors and add strict write mode | David Robillard | 1 | -1/+2 | |
2021-03-08 | Add option for writing terse output without newlines | David Robillard | 1 | -21/+19 | |
2021-03-08 | Separate ByteSink from Writer | David Robillard | 1 | -5/+12 | |
2021-03-08 | Simplify writer style options | David Robillard | 1 | -31/+3 | |
2021-03-08 | Add SerdCursor | David Robillard | 1 | -4/+8 | |
2021-03-08 | Add SerdWorld for shared library state | David Robillard | 1 | -8/+9 | |
2021-03-08 | Move syntax name/extension utilities to public API | David Robillard | 1 | -51/+6 | |
2021-03-08 | Use a fixed-size reader stack | David Robillard | 1 | -1/+16 | |
This improves performance, and makes the reader more suitable for embedded or network-facing applications, at the cost of requiring the user to specify a maximum stack size. | |||||
2021-03-07 | Simplify reader interface | David Robillard | 1 | -79/+18 | |
2021-03-07 | Add SerdSink interface and hide implementations | David Robillard | 1 | -7/+1 | |
2021-03-07 | Use consistent naming for function types | David Robillard | 1 | -4/+4 | |
2021-03-07 | Bring read/write interface closer to C standard | David Robillard | 1 | -3/+3 | |
2021-03-07 | Simplify reader interface | David Robillard | 1 | -8/+31 | |
2021-03-07 | Simplify node construction API | David Robillard | 1 | -9/+7 | |
2021-03-07 | Simplify URI API and implementation | David Robillard | 1 | -2/+3 | |
2021-03-07 | Make nodes opaque | David Robillard | 1 | -6/+8 | |
2021-03-07 | Shorten node constructor names | David Robillard | 1 | -2/+2 | |
2021-03-07 | Rename SerdStyle to SerdWriterFlags | David Robillard | 1 | -11/+11 | |
2021-03-07 | Rename SerdURI to SerdURIView | David Robillard | 1 | -2/+2 | |
2021-03-07 | Use char* for strings in public API | David Robillard | 1 | -28/+26 | |
The constant casting just makes user code a mess, for no benefit. | |||||
2021-03-07 | Remove escape parameter from serd_node_new_file_uri | David Robillard | 1 | -1/+1 | |
Since characters are escaped because they are not valid characters in a URI, any use of this function without escaping is problematic at best. | |||||
2021-01-09 | Only define WIN32_LEAN_AND_MEAN for MSVC | David Robillard | 1 | -1/+3 | |
This avoids a warning with MinGW. | |||||
2021-01-02 | Update date in version output | David Robillard | 1 | -1/+1 | |
2021-01-02 | Use email address instead of website for attribution | David Robillard | 1 | -2/+2 | |
2021-01-01 | Remove the need for a generated configuration header | David Robillard | 1 | -2/+2 | |
2020-12-31 | Format all code with clang-format | David Robillard | 1 | -275/+277 | |
2020-12-31 | Avoid "else" after "break" and "return" | David Robillard | 1 | -3/+12 | |
2020-11-14 | Deprecate serd_uri_to_path() | David Robillard | 1 | -2/+8 | |
2020-11-12 | Add missing const qualifiers | David Robillard | 1 | -4/+4 | |
2020-11-12 | Factor out output style selection | David Robillard | 1 | -22/+34 | |
2020-11-10 | Add const, pure, and malloc function attributes | David Robillard | 1 | -1/+1 | |
2020-11-10 | Define WIN32_LEAN_AND_MEAN | David Robillard | 1 | -0/+1 | |
2020-09-27 | Update stale copyright dates | David Robillard | 1 | -1/+1 | |
2020-08-16 | Use conventional short variable name for status | David Robillard | 1 | -8/+8 | |
2020-08-14 | Avoid absurd Windows warnings about "deprecated" POSIX functions | David Robillard | 1 | -2/+2 | |
2020-08-14 | Clean up and separate internal headers | David Robillard | 1 | -1/+24 | |