Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-01-31 | sfeedrc(5): add initial documentation for sfeedrc configuration format | Hiltjo Posthuma | |
2016-01-31 | README: small improvements and rewordings | Hiltjo Posthuma | |
2016-01-31 | LICENSE: relicense from MIT to ISC, bump year to 2016 | Hiltjo Posthuma | |
2015-10-05 | sfeed_mbox: do host lookup and current time once at startup, not per feed | Hiltjo Posthuma | |
2015-10-04 | sfeed: fix ctype functions again | Hiltjo Posthuma | |
2015-10-04 | sfeed_mbox: small cleanup, move label so check for NUL isnt needed | Hiltjo Posthuma | |
2015-10-04 | portability: dont use HOST_NAME_MAX, just use 256 as maximum | Hiltjo Posthuma | |
2015-10-02 | sfeed: fix escape of backslash, simplify | Hiltjo Posthuma | |
2015-10-02 | sfeed_plain: remove some spaces for slightly more screen space :) | Hiltjo Posthuma | |
2015-10-02 | dont used deprecated timegm, use mktime with TZ set to UTC | Hiltjo Posthuma | |
this also makes it compile on NetBSD | |||
2015-10-02 | update README, fix some typos and wording | Hiltjo Posthuma | |
2015-09-23 | update documentation, dont use semantic Ar for non-arguments | Hiltjo Posthuma | |
2015-09-23 | sfeed_update: dont send user-agent by default (curl+version) (privacy/security) | Hiltjo Posthuma | |
2015-09-23 | update README, reformat slightly | Hiltjo Posthuma | |
2015-09-17 | Makefile: Add missing | Alexander Huemer | |
2015-09-09 | util.h: HOST_NAME_MAX+1 for nul-terminator | Hiltjo Posthuma | |
2015-09-09 | README: fix sfeed_archive example | Hiltjo Posthuma | |
2015-09-09 | xml.h: fix typo in function declaration | Hiltjo Posthuma | |
2015-08-23 | improve README and CHANGELOG | Hiltjo Posthuma | |
2015-08-23 | sfeed: use separate enum field for content fields | Hiltjo Posthuma | |
2015-08-23 | sfeed_mbox: clarify format time error (strftime) | Hiltjo Posthuma | |
2015-08-23 | simplify unknown or less priority tag case, fix gettag bug (wrong sort order) | Hiltjo Posthuma | |
2015-08-23 | simplify field map code (add list tagid -> field. | Hiltjo Posthuma | |
also: - parse tag media:description for RSS. - be more strict about using the order of fields, this is more consistent now. - remove buffer_init: don't allocate buffers on start. - realloc, be slightly more aggresive with memory allocating: initial buffer size 16 to 64 bytes. | |||
2015-08-23 | README.xml: remove example, just check examples listed | Hiltjo Posthuma | |
2015-08-22 | xml: fix includes | Hiltjo Posthuma | |
2015-08-22 | xml: simplify XML reader | Hiltjo Posthuma | |
2015-08-22 | improve README | Hiltjo Posthuma | |
2015-08-22 | sfeed_update: simplify path (only $sfeedpath now) | Hiltjo Posthuma | |
2015-08-22 | sfeed: use <title>, it is required, never use media:title | Hiltjo Posthuma | |
2015-08-22 | sfeed_opml_import: does not need util but may need compat.h for strlcpy, strlcat | Hiltjo Posthuma | |
2015-08-22 | util: absuri: simplify + fix port in url with prefix "//" | Hiltjo Posthuma | |
use the port specified in the link for urls starting with "//" (use protocol). | |||
2015-08-22 | use HOST_NAME_MAX for hostname | Hiltjo Posthuma | |
2015-08-22 | sfeed_opml_import: improve import | Hiltjo Posthuma | |
- support attribute entities better. - escape some characters (it's still recommended to check the output ofcourse). | |||
2015-08-22 | sfeed_xmlenc: code-style | Hiltjo Posthuma | |
2015-08-22 | config.mk: build compat strlcpy, strlcat by default (synced from OpenBSD) | Hiltjo Posthuma | |
2015-08-22 | README.xml: update example | Hiltjo Posthuma | |
2015-08-22 | util: absuri handle port separately | Hiltjo Posthuma | |
2015-08-22 | util: support ipv6 address, parse port separately | Hiltjo Posthuma | |
2015-08-21 | sfeed: xml_entitytostr returns ssize_t | Hiltjo Posthuma | |
2015-08-18 | update README, add basic info at the top | Hiltjo Posthuma | |
hopefully this will make it easier to see the most important info first. | |||
2015-08-18 | update README | Hiltjo Posthuma | |
2015-08-16 | code-style + no need to zero static variables | Hiltjo Posthuma | |
2015-08-16 | xml: change xml_parse_string to xml_parse_buf | Hiltjo Posthuma | |
In the parser itself allow reading '\0' in the XML itself. Add a length parameter to specify the buffer size. | |||
2015-08-16 | code-style, wrap some lines, etc | Hiltjo Posthuma | |
2015-08-14 | sfeed_opml_import: does not need util functions | Hiltjo Posthuma | |
2015-08-14 | Makefile: install README and README.xml, it contains useful examples | Hiltjo Posthuma | |
2015-08-14 | minor code-style improvements | Hiltjo Posthuma | |
2015-08-14 | sfeed_update: don't redirect, use only the feed url specified. | Hiltjo Posthuma | |
It could mess up urls in items (redirect http to https). It is also safer. | |||
2015-08-14 | xml: whoops, remove leftover xml_getnext_stdin | Hiltjo Posthuma | |
2015-08-14 | xml: separate reader context from parser | Hiltjo Posthuma | |
also: - rename xmlparser_ prefix to xml_. - make xml_parse public, this allows a custom reader like a direct mmap, see: XMLParser.getnext and (optionall) XMLParser.getnext_data. - improve the README text. |