summaryrefslogtreecommitdiff
path: root/include/rssfuncs.php
AgeCommit message (Collapse)Author
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-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-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-04-29experimental: decode numerical utf entities on import in entry titleAndrew Dolgov
2013-04-27Merge pull request #167 from KonishchevDmitry/pr-allow-slash-in-filter-regexAndrew Dolgov
Allow slashes in filter regular expressions
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.
2013-04-26Allow slashes in filter regular expressionsDmitry Konishchev
User's regular expressions need escaping before passing them to preg_match()
2013-04-25base if-modified-since on last received article, not feed update timestampAndrew Dolgov
2013-04-25fetch: better checking for 1970- dateAndrew Dolgov
2013-04-24do not needlessly mark icons as failedAndrew Dolgov
2013-04-24fix floicon failed message not respecting debugging settingAndrew Dolgov
2013-04-24unify houskeeping stuff, increase spawn intervalAndrew Dolgov
2013-04-24reduce daemon chattiness a bitAndrew Dolgov
2013-04-24increase updstart locking interval to prevent concurrent updates; decrease ↵Andrew Dolgov
batch size for the daemon
2013-04-24fix updating for pgsqlAndrew Dolgov
increase default batch size remove random check between feedbrowser or update task executing
2013-04-24updating: do not use cache timestamp if it is unusable for current feed;Andrew Dolgov
sort chronologically instead of random
2013-04-23do not recalculate avg color repeatedlyAndrew Dolgov
2013-04-23attempt to recalculate favicon avg color if it changesAndrew Dolgov
2013-04-23add a hack so that if floicon fails on some icon, it won't be processed againAndrew Dolgov
2013-04-19Fix doubly applied basepaths to lockfiles.Daniel Andersson
2013-04-19remove debug_enabled globalAndrew Dolgov
2013-04-19update_rss_feed: simplify debug reportingAndrew Dolgov
2013-04-19subscribe: verify XML before adding to the database; fetch: try to work ↵Andrew Dolgov
around entity problems if initial parsing fails
2013-04-19trim received feed data on fetchAndrew Dolgov
2013-04-19do not try to calculate icon avg color if GD is not presentAndrew Dolgov
2013-04-18entry_author: do not double escape string, author & comments: trimAndrew Dolgov
2013-04-18make pluginhost a singletonAndrew Dolgov
2013-04-18move db-prefs to OOAndrew Dolgov
2013-04-18add better gzdecode support for php native fetch, use curl under open_basedirAndrew Dolgov
2013-04-18Revert "do automatic gzcdecode on feed data"Andrew Dolgov
This reverts commit aea03558bb7c0ac0015a1f1e41c5f5eb1722132e.
2013-04-18do automatic gzcdecode on feed dataAndrew Dolgov
2013-04-17get_article_filter: fix missing argumentAndrew Dolgov