Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-04-13 | Pass context flags to write_sep() | David Robillard | 1 | -22/+24 | |
2019-04-13 | Add initial flags to write context | David Robillard | 1 | -13/+16 | |
2019-04-13 | Factor out pushing writer context | David Robillard | 1 | -29/+34 | |
2019-04-13 | Strengthen writer statement preconditions | David Robillard | 1 | -1/+3 | |
2019-04-13 | Add option for writing terse output without newlines | David Robillard | 6 | -25/+36 | |
2019-04-13 | Factor out writing top level separator | David Robillard | 1 | -6/+10 | |
2019-04-13 | Rename SERD_STYLE_ASCII to SERD_WRITE_ASCII | David Robillard | 3 | -3/+3 | |
2019-04-13 | Support reading lone lists in lax mode | David Robillard | 1 | -1/+1 | |
This allows parsing documents like "(42) ." | |||||
2019-04-13 | Simplify writer statement validity checking | David Robillard | 1 | -3/+2 | |
2019-04-13 | Add clang-tidy file | David Robillard | 2 | -10/+31 | |
2019-04-13 | Add test for serd_strerror with unknown errors | David Robillard | 1 | -2/+3 | |
2019-04-13 | Fix reading from socket-like streams and add test | David Robillard | 2 | -1/+66 | |
2019-04-13 | Make reader tolerant of being started several times | David Robillard | 1 | -0/+4 | |
2019-04-13 | Remove pointless switch statement | David Robillard | 1 | -3/+1 | |
2019-04-13 | Fix MSVC warnings about integer literal conversions | David Robillard | 5 | -14/+14 | |
2019-04-13 | Fix potential use of uninitialized values | David Robillard | 1 | -6/+6 | |
2019-04-13 | Fix integer conversion warnings | David Robillard | 6 | -15/+18 | |
2019-04-13 | Remove redundant cast | David Robillard | 1 | -1/+1 | |
2019-04-13 | Fix character conversion warnings | David Robillard | 3 | -9/+12 | |
2019-04-13 | Fix implicit float to double conversion warning | David Robillard | 1 | -7/+21 | |
2019-04-13 | Suppress spurious floating point conversion warning | David Robillard | 2 | -10/+42 | |
This is defined by the standard to work with floating point expressions, the warning is a quirk of glibc. | |||||
2019-04-13 | Fix cast alignment warning | David Robillard | 1 | -4/+5 | |
2019-04-13 | Fix serd_stack_is_empty() const correctness | David Robillard | 1 | -1/+1 | |
2019-04-13 | Make char type functions take int like their standard counterparts | David Robillard | 2 | -7/+7 | |
This avoids conversion warnings by allowing these to be used with either signed or unsigned chars. | |||||
2019-04-13 | Fix various sign conversion warnings | David Robillard | 3 | -8/+9 | |
2019-04-13 | Fix implicit signed conversions in base64 implementation | David Robillard | 1 | -2/+2 | |
2019-04-13 | Fix implicit signed conversions for writer indent | David Robillard | 1 | -3/+3 | |
2019-04-13 | Add serd_new_boolean() | David Robillard | 3 | -0/+25 | |
2019-04-13 | Remove reader status and handle errors more precisely | David Robillard | 7 | -45/+40 | |
2019-04-13 | Add separate test suite for lax syntax tests | David Robillard | 6 | -15/+30 | |
2019-04-13 | Add validation test suite | David Robillard | 31 | -12/+1853 | |
2019-04-13 | WIP: Add validation | David Robillard | 8 | -15/+1073 | |
2019-04-13 | Add model to benchmarks | David Robillard | 1 | -3/+4 | |
2019-04-13 | WIP: Add model | David Robillard | 20 | -9/+2941 | |
2019-04-13 | Use consistent naming for function types | David Robillard | 7 | -34/+34 | |
2019-04-13 | Expose and annotate logging functions | David Robillard | 4 | -2/+40 | |
2019-04-13 | Use line comments where appropriate and clean up header | David Robillard | 1 | -451/+222 | |
2019-04-13 | Add Env to Sink | David Robillard | 9 | -59/+71 | |
This isn't technically necessary for any sink, but is a pattern common to every sink implementation in serd, so having it here reduces boilerplate and parameters in user code. | |||||
2019-04-13 | Rename SerdStyle to SerdWriterFlags | David Robillard | 3 | -16/+16 | |
2019-04-13 | Rename SerdType to SerdNodeType | David Robillard | 5 | -19/+24 | |
The old name has become ambiguous with the expanded scope of serd. | |||||
2019-04-13 | Clean up and expose base64 implementation | David Robillard | 7 | -65/+187 | |
2019-04-13 | Expose the node cache in the world | David Robillard | 2 | -0/+17 | |
2019-04-13 | Remove serd_env_foreach() | David Robillard | 3 | -21/+4 | |
2019-04-13 | Add serd_env_write_prefixes() | David Robillard | 2 | -0/+16 | |
2019-04-13 | Simplify reader test sink | David Robillard | 1 | -13/+8 | |
2019-04-13 | Add serd_node_compare() | David Robillard | 2 | -0/+36 | |
2019-04-13 | Rename SerdError to SerdMessage | David Robillard | 7 | -58/+70 | |
Towards more general usage for all types of logging. | |||||
2019-04-13 | Add stack overflow tests | David Robillard | 2 | -1/+71 | |
2019-04-13 | Improve node test coverage | David Robillard | 1 | -0/+8 | |
2019-04-13 | Add test for bad blank graph labels | David Robillard | 2 | -0/+9 | |