summaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Collapse)Author
2013-05-19move stylesheets to css/, reference default tt-rss stylesheets fromAndrew Dolgov
default.css to make custom themes easier
2013-05-19add a placeholder where floicon might be added if needed, still keep itAndrew Dolgov
off trunk re: author being a shitlord
2013-05-19Revert "remove floicon because its author is a colossal shitlord ↵Andrew Dolgov
(http://tt-rss.org/forum/viewtopic.php?f=1&t=2055&p=10824#p10822)" This reverts commit dce5037888968788518dfdb6b1c29f3863238b92.
2013-05-19Merge branch 'master' of github.com:gothfox/Tiny-Tiny-RSSAndrew Dolgov
2013-05-19when checking filter expression for validity, do not include ↵Andrew Dolgov
ttrss_feed_categories (closes #689)
2013-05-18Fix password field missing on login form when auth_internal not usedSteven Hiscocks
2013-05-18remove floicon because its author is a colossal shitlord ↵Andrew Dolgov
(http://tt-rss.org/forum/viewtopic.php?f=1&t=2055&p=10824#p10822)
2013-05-18add fetch_url and owner_uid to HOOK_FEED_FETCHEDAndrew Dolgov
2013-05-17try to force-convert feed data to utf8Andrew Dolgov
2013-05-16db-prefs: better error output for missing prefs, digest: hide DIGEST_ENABLE ↵Andrew Dolgov
pref missing for unitialized users
2013-05-16implement additional counter mode for virtual feeds when there's 0 unread ↵Andrew Dolgov
articles
2013-05-15get_minified_js: use basename() on cached fileAndrew Dolgov
2013-05-13release 1.7.9Andrew Dolgov
2013-05-13errorhandler: check for Logger class existingAndrew Dolgov
2013-05-08Revert "subscribe_to_feed: use already fetched data when updating initially"Andrew Dolgov
This reverts commit 23923fb29b345c1eea5b70a6df4d30395425bf37.
2013-05-08check_for_update: compare against VERSION_STATICAndrew Dolgov
2013-05-07tweak visual for headlinesAndrew Dolgov
2013-05-07subscribe_to_feed: use already fetched data when updating initiallyAndrew Dolgov
2013-05-07Fixing bugs found by static analysisRasmus Lerdorf
2013-05-02update: remove debugging blockAndrew Dolgov
2013-05-02format_article_tags: improve performanceAndrew Dolgov
2013-05-02make tag cache processing faster in cdmAndrew Dolgov
2013-05-02restore updstart thresholdAndrew Dolgov
2013-05-02simplify feed cache age handling (reduce caching to sequential updates)Andrew Dolgov
2013-05-02disable marking for the time beingAndrew Dolgov
2013-05-02move the precautionary timestamp bumpingAndrew Dolgov
2013-05-02Revert "ccache: do not force recalculate child counters on category upgrade ↵Andrew Dolgov
because this is handled elsewhere" http://tt-rss.org/forum/viewtopic.php?f=10&t=1964 This reverts commit d571740b33994a8faa5290b63d1c8b68f16e7686.
2013-05-02add _DISABLE_HTTP_304Andrew Dolgov
2013-05-02updater: show owner_uid for checked feedsAndrew Dolgov
2013-05-02remove cache valid bailout clauseAndrew Dolgov
2013-05-02change feed cache file extensionAndrew Dolgov
2013-05-01add support for dc:subject and slash:commentsAndrew Dolgov
2013-05-01update: better tag-related debugging infoAndrew Dolgov
2013-05-01support RDF-XML feedsAndrew Dolgov
2013-05-01remove simplepieAndrew Dolgov
2013-05-01actually save feed xml in the cacheAndrew Dolgov
2013-05-01remove simplepie entity decode hacksAndrew Dolgov
2013-05-01change caching to save xml data, remove RDF init sectionAndrew Dolgov
2013-05-01add basic rss supportAndrew Dolgov
2013-05-01add basic tinyparser/atomAndrew Dolgov
2013-05-01update: set last_updated to now() when process startsAndrew Dolgov
2013-05-01ccache: do not force recalculate child counters on category upgrade because ↵Andrew Dolgov
this is handled elsewhere
2013-04-30only get USER_LANGUAGE on schema 120 and upAndrew Dolgov
2013-04-29experimental: decode numerical utf entities on import in entry titleAndrew Dolgov
2013-04-29remove language selector from the login form, store language in the database ↵Andrew Dolgov
per-user
2013-04-29do not use session cookie lifetime for additional cookiesAndrew Dolgov
2013-04-27fix startup_gettext() trying to get configured language before session is ↵Andrew Dolgov
initialized
2013-04-27Merge pull request #167 from KonishchevDmitry/pr-allow-slash-in-filter-regexAndrew Dolgov
Allow slashes in filter regular expressions
2013-04-27fix typo in format_article_labels()Andrew Dolgov
2013-04-26Match each tag separately against user filter regular expressionDmitry Konishchev
Each article's tag should be matched against user filter regular expression separately. Current matching confuses when you want to match an exact tag. You suppose to write "^tag$", bug now have to write "(^|,)tag(,|$)" which is very inconvenient and requires knowledge about how do you process this matching.