summaryrefslogtreecommitdiff
path: root/include/rssfuncs.php
AgeCommit message (Collapse)Author
2017-04-26remove some redundant php closing tagsAndrew Dolgov
2017-04-26fix various issues reported by static analysisAndrew Dolgov
update gitlab-ci config
2017-03-27enclosures: rewrite relative urls on import, duhAndrew Dolgov
2017-03-23enable caching of media in article enclosuresAndrew Dolgov
2017-03-23remove local file extensions and generalize some method names for cached mediaAndrew Dolgov
file extensions may still be present in urls, but are ignored by the backend MIGRATION (if you have any cached data worth keeping, not required): in cache/images run "rename 's/\..*$//' *" i.e. strip file extensions
2017-02-16Improve update_feedbrowser_cache SQL queryLuc Didry
2017-02-04image cache: do not try to cache data: schema urls; add caching of html5 ↵Andrew Dolgov
video content (similar to cache_starred_images plugin)
2017-01-23reference pubsubhubbub classes using their namespaceAndrew Dolgov
2017-01-21lib: Upgrade php-subscriber from ??? to 1213f89 (2016-11-15)Anders Kaseorg
https://github.com/pubsubhubbub/php-subscriber Signed-off-by: Anders Kaseorg <[email protected]>
2017-01-07deprecate encrypted feed passwords because mcrypt is getting removed from ↵Andrew Dolgov
php 7.1 1. transparent decryption for existing installs stays for the time being 2. new passwords are not going to be encrypted even if FEED_CRYPT_KEY is defined 3. added update.php --decrypt-feeds to bulk decrypt existing encrypted passwords 4. updated install to not auto-generate crypt key 5. added warning to config.php-dist
2016-11-30set_basic_feed_info: fix typoAndrew Dolgov
2016-11-30rssfuncs: fix warning when trying to update nonexisting feedAndrew Dolgov
2016-11-25maybe we shouldn't escape entry_author twiceAndrew Dolgov
2016-10-19get_article_filters: add unicode modifier to preg_match()Andrew Dolgov
2016-08-26better debugging for matched filter rulesAndrew Dolgov
2016-08-11perform housekeeping tasks for plugins loaded in user-context onlyAndrew Dolgov
2016-08-06Pass the value of cache_images to plugins in HOOK_ARTICLE_FILTER.JustAMacUser
2016-07-26Only strings need 4-byte filtering.JustAMacUser
2016-04-29update_rss_feed: log warning when attempting to update unknown feedAndrew Dolgov
2016-04-01daemon common: use proper update condition checking for secondary-selected feedsAndrew Dolgov
2016-02-02update_rss_feed: disable support for http 304 for the time beingAndrew Dolgov
2016-01-23update_rss_feed: escape dumped content while debuggingAndrew Dolgov
2016-01-13updates: auto-disable CURL if open_basedir is enabled, notify possible ↵Andrew Dolgov
issues w/ plugins
2016-01-07remove option ALLOW_DUPLICATE_POSTS as confusing/uselessAndrew Dolgov
2016-01-07fix broken article processing if ALLOW_DUPLICATE_POSTS is enabledAndrew Dolgov
2016-01-04do not automatically call cleanup_tags() in housekeeping tasksAndrew Dolgov
2015-12-31Update new feeds first in postgresThomas Kramer
2015-12-07fix previous, owner_uid not passed in daemon contextAndrew Dolgov
2015-12-07do not discard custom set article tags when updating from sourceAndrew Dolgov
2015-12-05calculate_article_hash: strip tags before hashing fieldsAndrew Dolgov
2015-12-03set_basic_feed_info: fix missing columnAndrew Dolgov
2015-12-03Revert "set_basic_feed_info: bail out if feed doesn't exist"Andrew Dolgov
This reverts commit d77bd1a5d213ed0e1d923e0c12ae16f022e92653.
2015-12-03set_basic_feed_info: bail out if feed doesn't existAndrew Dolgov
2015-12-03get_article_filters: check if action.type is setAndrew Dolgov
2015-08-18shorten previous a bitAndrew Dolgov
2015-08-18Prevent concatenating words for full text search indexSkibbi
2015-08-16Keep local cached images fresh if file exists.JustAMacUser
Updates the cache_images() function to `touch` images if the file exists already. Some sites (e.g. news) re-use stock images and this change updates the local file's modified time every time the image is referenced in new articles. This should prevent the local file from being expired/deleted only to be re-cached later on.
2015-08-11add plugin-based filter actions (see example plugin in attic)Andrew Dolgov
bump schema
2015-08-10Revert "update: reenable first ref_id/id transaction"Andrew Dolgov
This reverts commit 14ce0e25043dfa70d87985a1d4fa06c1d3d1c8b4.
2015-08-10update: reenable first ref_id/id transactionAndrew Dolgov
2015-08-10update_rss_feed: disable transactions for the time beingAndrew Dolgov
2015-08-04implement per-feed stemming language settingAndrew Dolgov
2015-08-04more fts stuff for simple indexAndrew Dolgov
2015-07-06fix article tags/labels not assigning properly on mysql because of the 4byte ↵Andrew Dolgov
unicode workaround
2015-07-04update_rss_feed: set basic feed info if title is [Unknown] (fixes batch ↵Andrew Dolgov
subscribe)
2015-06-19move language detection to a plugin, remove config.php constantAndrew Dolgov
2015-06-17update_rss_feed: limit maximum execution time while processing articlesAndrew Dolgov
2015-06-17bayes, filter: do not categorize already processed articlesAndrew Dolgov
rss: remove site url/title checks from update_rss_feed
2015-06-17speedup feed subscription processAndrew Dolgov
2015-06-17add some more bayes stuffAndrew Dolgov