Age | Commit message (Expand) | Author | Files | Lines |
2012-02-21 | Trim code. | David Robillard | 1 | -16/+9 |
2012-02-21 | Further isolate collection writing stuff. | David Robillard | 1 | -34/+24 |
2012-02-21 | Avoid comparing against NS_XSD several times per node. | David Robillard | 1 | -6/+6 |
2012-02-21 | Tidy. | David Robillard | 1 | -7/+5 |
2012-02-21 | Print command name in serdi error messages. | David Robillard | 3 | -51/+33 |
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 | 4 | -183/+151 |
2012-02-20 | Fix collection writing memory leaks. | David Robillard | 1 | -2/+2 |
2012-02-20 | Break collection writing out into a simple separate case to avoid confusing t... | David Robillard | 1 | -22/+24 |
2012-02-20 | Use iterative algorithm for collection parsing. | David Robillard | 1 | -59/+52 |
2012-02-20 | Implement pretty-printing for collections. | David Robillard | 2 | -94/+203 |
2012-02-05 | Update to r65/autowaf and waf-1.6.10. | David Robillard | 1 | -2/+4 |
2012-02-01 | Fix jumps past variable initialization. | David Robillard | 1 | -4/+6 |
2012-01-18 | Use consistent *_config.h rather than *-config.h. | David Robillard | 1 | -1/+1 |
2012-01-18 | Make serd_node_new_integer take int64_t instead of long. | David Robillard | 2 | -6/+6 |
2012-01-16 | Avoid non-portable %zu (offset is of dubious value in this case anyway). | David Robillard | 1 | -1/+1 |
2012-01-16 | Fix compilation on sane platforms. | David Robillard | 3 | -5/+7 |
2012-01-16 | Support compilation as C++ under MSVC++ | David Robillard | 8 | -46/+60 |
2012-01-16 | Update copyright dates. | David Robillard | 8 | -9/+9 |
2012-01-14 | Lint. | David Robillard | 4 | -10/+10 |
2012-01-08 | Update man page. | David Robillard | 1 | -4/+4 |
2012-01-06 | Remove unused parameter. | David Robillard | 1 | -7/+7 |
2011-12-30 | Add serd_node_new_blob and serd_base64_decode for handling arbitrary binary | David Robillard | 3 | -0/+94 |
2011-12-27 | Warn on invalid unicode character and replace (fix #796). | David Robillard | 1 | -7/+13 |
2011-12-26 | Escape non-printable ASCII characters in ASCII output (fix #795). | David Robillard | 1 | -1/+2 |
2011-12-25 | Near 100% branch coverage. | David Robillard | 7 | -104/+77 |
2011-12-25 | 100% test coverage. | David Robillard | 5 | -85/+62 |
2011-12-24 | Remove pointless check. | David Robillard | 2 | -6/+1 |
2011-12-24 | Allow digit as first character of prefixed name suffix (match latest Turtle s... | David Robillard | 1 | -20/+14 |
2011-12-24 | Move serd_test.c to tests/ so it doesn't show up in test coverage output. | David Robillard | 1 | -181/+0 |
2011-12-24 | Support file://localhost/foo URIs in serd_uri_to_path(). | David Robillard | 2 | -15/+37 |
2011-12-24 | Clean up path writing logic in serd_uri_serialise. | David Robillard | 1 | -30/+26 |
2011-12-24 | Separate remove_dot_segments from serd_uri_resolve. | David Robillard | 1 | -62/+73 |
2011-12-24 | Improve URI resolution to cover most of the abnormal cases from RFC3986. | David Robillard | 1 | -9/+32 |
2011-12-24 | Test serd_strlen and serd_strerror. | David Robillard | 2 | -0/+28 |
2011-12-23 | Escape ASCII control characters in output (e.g. fix problems with string | David Robillard | 1 | -8/+9 |
2011-12-23 | Add serd_file_sink for the common case of writing to a FILE* stream. | David Robillard | 2 | -8/+10 |
2011-12-21 | Remove trailing whitespace. | David Robillard | 2 | -2/+2 |
2011-12-19 | Add serd_strtod(), serd_node_new_decimal(), and serd_node_new_integer() for | David Robillard | 4 | -0/+277 |
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 | 2 | -108/+86 |
2011-12-12 | Use memcmp instead of strcmp for serd_node_equals. | David Robillard | 1 | -2/+3 |
2011-12-12 | Make bulk writer internal and inlinable to avoid function call overhead in th... | David Robillard | 4 | -151/+154 |
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 | 2 | -10/+5 |
2011-12-12 | Use common uri_to_path code. | David Robillard | 1 | -16/+1 |
2011-12-12 | Reuse write context node memory where possible. | David Robillard | 2 | -34/+55 |
2011-12-12 | Fix memory error introduced a few commits ago. | David Robillard | 1 | -2/+5 |