aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Expand)AuthorFilesLines
2012-01-06Remove unused parameter.David Robillard1-7/+7
2011-12-30Add serd_node_new_blob and serd_base64_decode for handling arbitrary binaryDavid Robillard7-2/+157
2011-12-27Warn on invalid unicode character and replace (fix #796).David Robillard5-9/+16
2011-12-26Escape non-printable ASCII characters in ASCII output (fix #795).David Robillard3-1/+10
2011-12-25Near 100% branch coverage.David Robillard45-132/+375
2011-12-25100% test coverage.David Robillard19-87/+255
2011-12-24Cover serd_node_from_string.David Robillard1-0/+11
2011-12-24Add tests for malformed UTF-8 input.David Robillard3-0/+5
2011-12-24100% test coverage (by line) for serdi.c.David Robillard1-2/+2
2011-12-24Remove pointless check.David Robillard2-6/+1
2011-12-24Allow digit as first character of prefixed name suffix (match latest Turtle s...David Robillard3-20/+20
2011-12-24Move serd_test.c to tests/ so it doesn't show up in test coverage output.David Robillard2-1/+1
2011-12-24Support file://localhost/foo URIs in serd_uri_to_path().David Robillard3-15/+39
2011-12-24Clean up path writing logic in serd_uri_serialise.David Robillard1-30/+26
2011-12-24Separate remove_dot_segments from serd_uri_resolve.David Robillard1-62/+73
2011-12-24Improve URI resolution to cover most of the abnormal cases from RFC3986.David Robillard4-10/+70
2011-12-24Test serd_strlen and serd_strerror.David Robillard2-0/+28
2011-12-24Make test suite cover bulk writer.David Robillard1-2/+4
2011-12-23Escape ASCII control characters in output (e.g. fix problems with stringDavid Robillard4-8/+13
2011-12-23Add serd_file_sink for the common case of writing to a FILE* stream.David Robillard5-9/+22
2011-12-21Remove trailing whitespace.David Robillard2-2/+2
2011-12-19Add serd_strtod(), serd_node_new_decimal(), and serd_node_new_integer() forDavid Robillard7-3/+333
2011-12-16Remove debug print.David Robillard1-1/+0
2011-12-15Update ChangeLog.David Robillard1-0/+3
2011-12-15Update ChangeLog.David Robillard1-0/+2
2011-12-15Remove peek_string, use exactly 1 page as a read buffer.David Robillard2-108/+86
2011-12-12Use memcmp instead of strcmp for serd_node_equals.David Robillard1-2/+3
2011-12-12Make bulk writer internal and inlinable to avoid function call overhead in th...David Robillard6-199/+162
2011-12-12More parser micro-optimization.David Robillard1-47/+48
2011-12-12Remove eat_byte correctness checks for known-correct bytes in optimized builds.David Robillard1-70/+77
2011-12-12Remove branch for EOF detection in eat_byte.David Robillard7-11/+17
2011-12-12Update ChangeLog.David Robillard1-0/+1
2011-12-12Use common uri_to_path code.David Robillard1-16/+1
2011-12-12Reuse write context node memory where possible.David Robillard2-34/+55
2011-12-12Fix memory error introduced a few commits ago.David Robillard1-2/+5
2011-12-12Add serdi -f option to avoid qualifying URIs.David Robillard1-4/+15
2011-12-11Fix debug build without --stack-check.David Robillard1-0/+2
2011-12-11Move all #ifdef gunk to serd_internal.h.David Robillard8-53/+50
2011-12-11Use posix_fadvise to advise about sequential file access.David Robillard3-1/+31
2011-12-11Add SerdBulkSink for writing bulk output and corresponding serdi -B option.David Robillard7-21/+168
2011-12-11Fix string length calculation.David Robillard1-3/+2
2011-12-11Align read buffer to page boundary if posix_memalign is available.David Robillard2-1/+15
2011-12-11Shrink code.David Robillard1-5/+2
2011-12-11Improve write performance by doing bulk writes for unescaped substrings.David Robillard2-0/+17
2011-12-11Simply reader by using a stack of SerdNode rather than weird internal types.David Robillard1-250/+204
2011-12-11Better invalid string character handling.David Robillard1-10/+40
2011-12-11Add --largefile configure option for large files on 32-bit systems. Disabled...David Robillard1-0/+5
2011-12-11Fix Python 2.4 compatibility (autowaf r61).David Robillard1-0/+0
2011-12-11Report reason for failure to open file in serdi.David Robillard2-1/+4
2011-12-10Tolerate invalid characters in string literals by replacing with theDavid Robillard2-5/+30