Age | Commit message (Expand) | Author | Files | Lines |
2012-09-09 | Fix clashing symbol "error" in amalgamation build. | David Robillard | 1 | -16/+16 |
2012-08-08 | Fix warnings: -Wshadow -Wpointer-arith -Wcast-align -Wstrict-prototypes -Wmis... | David Robillard | 1 | -5/+5 |
2012-07-17 | Support digits at start of local names as per new grammar. | David Robillard | 1 | -1/+1 |
2012-07-05 | Add error callback to reader and writer for custom error reporting. | David Robillard | 1 | -20/+42 |
2012-05-08 | Add incremental read interface suitable for reading from infinite streams. | David Robillard | 1 | -12/+66 |
2012-03-27 | Delete trailing whitespace. | David Robillard | 1 | -1/+1 |
2012-03-18 | Add serd_reader_set_default_graph() for reading a file as a named graph. | David Robillard | 1 | -1/+17 |
2012-03-08 | Fix compilation in VC++. | David Robillard | 1 | -2/+2 |
2012-03-03 | Fix reading of empty files (e.g. /dev/null) test case. | David Robillard | 1 | -7/+7 |
2012-02-29 | Handle files and strings that start with a UTF-8 Byte Order Mark (fix #814). | David Robillard | 1 | -1/+15 |
2012-02-21 | Add prefix to generated node IDs as well, to avoid clashing when reading mult... | David Robillard | 1 | -8/+13 |
2012-02-21 | Report read error if both "genid" and "docid" IDs are found in the same docum... | David Robillard | 1 | -7/+13 |
2012-02-21 | Make -p actually work as advertised. | David Robillard | 1 | -17/+13 |
2012-02-20 | Remove odd assertion. | David Robillard | 1 | -2/+1 |
2012-02-20 | Trim some fat by taking advantage of ReadContext for statement emission. | David Robillard | 1 | -16/+9 |
2012-02-20 | Fix collection parsing code to not leak stack space. | David Robillard | 1 | -178/+148 |
2012-02-20 | Use iterative algorithm for collection parsing. | David Robillard | 1 | -59/+52 |
2012-02-20 | Implement pretty-printing for collections. | David Robillard | 1 | -50/+46 |
2012-02-01 | Fix jumps past variable initialization. | David Robillard | 1 | -4/+6 |
2012-01-16 | Support compilation as C++ under MSVC++ | David Robillard | 1 | -5/+4 |
2012-01-16 | Update copyright dates. | David Robillard | 1 | -1/+1 |
2012-01-14 | Lint. | David Robillard | 1 | -4/+4 |
2012-01-06 | Remove unused parameter. | David Robillard | 1 | -7/+7 |
2011-12-27 | Warn on invalid unicode character and replace (fix #796). | David Robillard | 1 | -7/+13 |
2011-12-25 | Near 100% branch coverage. | David Robillard | 1 | -20/+18 |
2011-12-25 | 100% test coverage. | David Robillard | 1 | -64/+32 |
2011-12-16 | Remove debug print. | David Robillard | 1 | -1/+0 |
2011-12-15 | Remove peek_string, use exactly 1 page as a read buffer. | David Robillard | 1 | -107/+83 |
2011-12-12 | More parser micro-optimization. | David Robillard | 1 | -47/+48 |
2011-12-12 | Remove eat_byte correctness checks for known-correct bytes in optimized builds. | David Robillard | 1 | -70/+77 |
2011-12-12 | Remove branch for EOF detection in eat_byte. | David Robillard | 1 | -9/+4 |
2011-12-12 | Fix memory error introduced a few commits ago. | David Robillard | 1 | -2/+5 |
2011-12-11 | Fix debug build without --stack-check. | David Robillard | 1 | -0/+2 |
2011-12-11 | Move all #ifdef gunk to serd_internal.h. | David Robillard | 1 | -18/+3 |
2011-12-11 | Use posix_fadvise to advise about sequential file access. | David Robillard | 1 | -1/+8 |
2011-12-11 | Add SerdBulkSink for writing bulk output and corresponding serdi -B option. | David Robillard | 1 | -13/+10 |
2011-12-11 | Fix string length calculation. | David Robillard | 1 | -3/+2 |
2011-12-11 | Align read buffer to page boundary if posix_memalign is available. | David Robillard | 1 | -1/+8 |
2011-12-11 | Shrink code. | David Robillard | 1 | -5/+2 |
2011-12-11 | Simply reader by using a stack of SerdNode rather than weird internal types. | David Robillard | 1 | -250/+204 |
2011-12-11 | Better invalid string character handling. | David Robillard | 1 | -10/+40 |
2011-12-10 | Tolerate invalid characters in string literals by replacing with the | David Robillard | 1 | -5/+28 |
2011-09-29 | Tidy. | David Robillard | 1 | -3/+6 |
2011-08-21 | Gracefully handle NULL reader sinks. | David Robillard | 1 | -11/+18 |
2011-08-20 | Avoid writing illegal Turtle names as a result of URI qualifying (fix #734). | David Robillard | 1 | -3/+2 |
2011-06-19 | Fix abbreviation flags for blank nodes within lists (fix ticket #719). | David Robillard | 1 | -2/+2 |
2011-05-24 | Add serd_uri_to_path to API. | David Robillard | 1 | -26/+1 |
2011-05-24 | Don't call serd_strlen for append_string (which is only used on internal ASCI... | David Robillard | 1 | -10/+7 |
2011-05-19 | Express inlining information via statement flags rather than node types. | David Robillard | 1 | -39/+51 |
2011-05-18 | Add test to ensure blank node IDs don't clash with generated IDs. | David Robillard | 1 | -29/+130 |