aboutsummaryrefslogtreecommitdiffhomepage
path: root/reader/parser
Commit message (Collapse)AuthorAge
* Use internal XML workarounds to detect feed formatGravatar Kebin Liu2020-01-02
|
* Normalize URL query string before executing HTTP requestsGravatar Frédéric Guillot2019-12-26
| | | | | | | - Make sure query strings parameters are encoded - As opposed to the standard library, do not append equal sign for query parameters with empty value - Strip URL fragments like Web browsers
* Add support for Atom 0.3Gravatar Frédéric Guillot2019-12-22
|
* Accept HTML entities when parsing XMLGravatar Peter De Wachter2019-08-15
| | | | | | | Every once in a while, one of my feeds would throw an XML parse error because it used ` ` or some other HTML entity. I feel Miniflux should be lenient here, and Go already has a handy hook to make this work.
* Make parser compatible with Go 1.12Gravatar Frédéric Guillot2019-02-28
| | | | See changes in strings.Map(): https://golang.org/doc/go1.12#strings
* Make password prompt compatible with WindowsGravatar Frederic Guillot2018-12-09
|
* Handle more encoding conversion edge casesGravatar Frédéric Guillot2018-10-29
|
* Add test case to check different feed encoding and HTTP headersGravatar Frédéric Guillot2018-10-29
|
* Simplify feed parser and format detectionGravatar Frédéric Guillot2018-10-14
- Avoid doing multiple buffer copies - Move parser and format detection logic to its own package