aboutsummaryrefslogtreecommitdiffstats
path: root/src/uri.c
AgeCommit message (Expand)AuthorFilesLines
2023-05-08Avoid use of strtoul()David Robillard1-2/+3
2023-04-06Simplify remove_dot_segments() implementationDavid Robillard1-53/+15
2023-04-05Fix relative URI creationDavid Robillard1-7/+7
2022-12-20Avoid using ASCII grave as a quoteDavid Robillard1-3/+3
2022-10-23Fix "suspicious" string comparisonDavid Robillard1-1/+1
2022-08-31Adopt REUSE machine-readable licensing standardDavid Robillard1-15/+2
2021-05-31Make most function parameters constDavid Robillard1-16/+23
2021-01-02Use email address instead of website for attributionDavid Robillard1-1/+1
2020-12-31Format all code with clang-formatDavid Robillard1-371/+395
2020-12-31Avoid "else" after "break" and "return"David Robillard1-2/+7
2020-11-10Fix potential memory error when serialising URIsDavid Robillard1-1/+2
2020-08-14Clean up and separate internal headersDavid Robillard1-1/+2
2020-06-21Cleanup: Fix uninitialised variablesDavid Robillard1-5/+5
2020-06-21Cleanup: Remove unnecessary storesDavid Robillard1-1/+1
2020-06-21Clean up includesDavid Robillard1-1/+6
2019-10-27Fix integer conversion warningsDavid Robillard1-5/+5
2019-01-05Rewrite switch statements that are better written as ifsDavid Robillard1-4/+2
2018-12-20Remove old URI parse debug logging codeDavid Robillard1-38/+0
2018-10-28Avoid use of sscanf for parsing escapes in URIsDavid Robillard1-4/+2
2018-09-30Fix calloc argument orderDavid Robillard1-1/+1
2018-09-04Fix fallthrough warnings with GCC8David Robillard1-1/+2
2018-07-30Fix resolving some URIs against base URIs with no trailing slashDavid Robillard1-0/+14
2018-06-15Remove redundant SERD_API declarationsDavid Robillard1-7/+0
2018-06-10Fix relative URI serialisationDavid Robillard1-4/+8
2017-07-08Fix parsing of hex escapes in file URIsJohannes Mueller1-1/+1
2017-06-30Fix various clang-tidy issuesDavid Robillard1-14/+14
2017-06-29Fix strict parsing of abolute URI schemesDavid Robillard1-8/+4
2017-02-18Fix invalid doc commentDavid Robillard1-1/+1
2014-08-08Use Markdown in doc comments for better source readability.David Robillard1-1/+1
2014-08-08Use Markdown in doc comments for better source readability.David Robillard1-3/+3
2014-08-08Update copyright dates.David Robillard1-1/+1
2014-04-11Minor hardening.David Robillard1-1/+1
2013-03-30Improve branch coverage.David Robillard1-1/+1
2012-12-20Fix crash when resolving against non-standard base URIs.David Robillard1-4/+1
2012-08-08Fix warnings: -Wshadow -Wpointer-arith -Wcast-align -Wstrict-prototypes -Wmis...David Robillard1-3/+3
2012-03-29Don't break relative URIs with up-references when parsing a document with no ...David Robillard1-6/+8
2012-03-10Add serd_writer_set_root_uri(), root parameter toDavid Robillard1-76/+74
2012-03-10Trim redundant case.David Robillard1-3/+1
2012-03-08Add serd_writer_get_env().David Robillard1-57/+178
2012-02-20Fix collection parsing code to not leak stack space.David Robillard1-1/+0
2012-02-05Update to r65/autowaf and waf-1.6.10.David Robillard1-2/+4
2012-01-18Make serd_node_new_integer take int64_t instead of long.David Robillard1-1/+1
2012-01-16Support compilation as C++ under MSVC++David Robillard1-6/+12
2012-01-16Update copyright dates.David Robillard1-1/+1
2012-01-14Lint.David Robillard1-1/+1
2011-12-25Near 100% branch coverage.David Robillard1-23/+12
2011-12-24Support file://localhost/foo URIs in serd_uri_to_path().David Robillard1-14/+12
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 Robillard1-9/+32