Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jangernert/FeedReader.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-07-13Re-escape HTML data after HtmlcleanBrendan Long
This works by parsing HTML data into normal text. However, when we're done with it, we want this to become valid HTML again. If we leave things like & parsed, we can get situations where the title/content of a page depends on how many times we run it through Htmlclean. Fixes #918
2019-07-13Add tests for htmlcleanBrendan Long
2019-02-20Remove indented empty linesBrendan Long
2019-02-20Assume XML docs are UTF-8 in libnxmlBrendan Long
Previously this required XML documents to explicitly list themselves as UTF-8 for us to handle UTF-8 codepoints correctly. This switches that to assume we're using UTF-8 unless the charset is explicitly set. Fixes #476
2019-02-20Add braces around all if/else/while/etc statementsBrendan Long
This will make it easier to programatically fix the indentation.
2019-02-09Fix #853: use dc:creator tag for author, author tag for author emailSimon Jacobs
2018-12-28Run Vala code though UncrustifyBrendan Long
This uses the changes in these two Uncrustify pull requests: https://github.com/uncrustify/uncrustify/pull/2142 https://github.com/uncrustify/uncrustify/pull/2137
2018-11-29Deduplicate shared libraries between local and decsync backendsAldo Gunsing
2018-08-30htmlclean: Add back the fuzz test inputsBrendan Long
2018-08-30htmlclean: Add a main function for easier testing / fuzzingBrendan Long
2018-08-30htmlclean: Better duplicate char skippingBrendan Long
2018-08-29Add "htmlclean" using Gumbo parserBrendan Long
See: https://github.com/google/gumbo-parser/blob/master/examples/clean_text.cc
2018-08-29Remove libvilistextumBrendan Long
2018-08-29libvilistextum: Turn on more testsBrendan Long
Non-breaking space is two characters in UTF-8
2018-08-26vilistextum: Add test that empty string stays empty stringBrendan Long
Also changes the empty string return value to be "" instead of NULL.
2018-08-26libvilistextum: Add testsBrendan Long
A lot of these are broken and commented out so far. I changed libvilistetum to add \n between lines, not just at the end of every line to make it easier to do "nothing should change" tests. Part of #741
2018-08-26libvilistextum: Remove broken AFL testBrendan Long
2018-08-25libvilistexum: Fix more isalnums to iswalnumBrendan Long
2018-08-25libvilistextum: Fix uninitialized variable use in fileioBrendan Long
2018-08-25libvilistextum: Use iswalpha for wcharBrendan Long
2018-08-25libvilistextum: Use iswspace instead of isspace for wcharBrendan Long
2018-08-25libvilistextum: Simplify a reallocBrendan Long
2018-08-25libvilistextum: Fix infinite loop in DOCTYPEBrendan Long
2018-08-25libvilistextum: Fix infinite loop in friss_kommentarBrendan Long
2018-08-25libvilistextum: Fix infinite loop in <hr>Brendan Long
2018-08-25libvilistextum: Fix infinite loop in HTML tagsBrendan Long
2018-08-25libvilistexum: Don't put back EOFBrendan Long
Fixing some hangs found by american fuzzy lop.
2018-08-25libVilistextum: Add infrastructure for american fuzzy lopBrendan Long
2018-04-28Add a lock around libvilistextumBrendan Long
I was running into null pointer exceptions because the globals change if it's used in multiple threads.
2018-04-26Fix warning in libvilistextumBrendan Long
2018-04-25switch to meson build systemJan Lukas Gernert