summaryrefslogtreecommitdiff
path: root/classes
AgeCommit message (Collapse)Author
2019-11-20tag-related fixesAndrew Dolgov
1. move tag sanitization to feedparser common item class 2. enforce length limit on tags when parsing 3. support multiple tags passed via one dc:subject and other such elements, parse them as a comma-separated list 4. sort resulting tag list to prevent different order between feed updates 5. remove some duplicate code related to tag validation 6. allow + symbol in tags
2019-11-17reset domain hit quota on feed update startAndrew Dolgov
2019-11-14add a plugin page warning for plugins using HOOK_FEED_FETCHED, etcAndrew Dolgov
2019-11-14update_rss_feed: add specific logging for HOOK_FETCH_FEED, ↵Andrew Dolgov
HOOK_FEED_FETCHED, HOOK_FEED_PARSED handlers
2019-11-12is_gzipped: don't try to strpos() over entire bufferAndrew Dolgov
2019-11-01Merge branch 'master' of git.fakecake.org:tt-rssAndrew Dolgov
2019-11-01line endings + remove : from headingsAndrew Dolgov
2019-11-01OTP stuff: update notice wording a bitAndrew Dolgov
2019-11-01auth_internal: fix indentsAndrew Dolgov
2019-11-01implement app password checking / management UIAndrew Dolgov
2019-11-01add placeholder authentication via app passwords if service is passedAndrew Dolgov
forbid logins via regular passwords for services remove AUTH_DISABLE_OTP
2019-11-01add placeholder UI plumbing for app passwordsAndrew Dolgov
2019-11-01allow using OTP without GDAndrew Dolgov
2019-10-25allow article filters to modify num_commentsAndrew Dolgov
2019-10-09add notification for OTP being disabledAndrew Dolgov
2019-10-09add notifications for mail and password changesAndrew Dolgov
update and shorten some other message templates
2019-10-07Add const HOOK_FEED_TREEjc
2019-10-07Add const HOOK_FEED_TREEjc
2019-09-30update_rss_feed: force cast initial timestamp value to integerAndrew Dolgov
2019-09-17Removed extra php end tag that was showing in the page titleRodney Stromlund
2019-09-11rework previous to pass unformatted timestamp to plugin, and deal with ↵Andrew Dolgov
formatting later also, move timestamp-related debugging output after plugin handler
2019-09-11pass formatted entry timestamp to article filters and allow them to modify itAndrew Dolgov
2019-08-30headline grouping:Andrew Dolgov
1. block grouping for specific feeds where it doesn't make a lot of sense to do so or flat list fits better (archived, recently read) 2. block per-week grouping for feeds where feed-first grouping makes more sense (fresh, starred, published)
2019-08-21makefeedtree: properly calculate feed total amount in no-categories modeAndrew Dolgov
2019-08-20SQL logger: log some parametersAndrew Dolgov
2019-08-16af_readability: add missing fileAndrew Dolgov
2019-08-15fix get_method_url() to use correct method parameterAndrew Dolgov
2019-08-15pluginhost: add helper methods to get private/public pluginmethod endpoint URLsAndrew Dolgov
2019-08-15API/getHeadlines: fix order of returned feeds to be consistent with main UIAndrew Dolgov
2019-08-15public/pluginhandler: log invalid requestsAndrew Dolgov
2019-08-15pluginhost: implement priority-based system for running hooksAndrew Dolgov
2019-08-15HOOK_ARTICLE_IMAGE: allow hooks to modify article contentAndrew Dolgov
2019-08-15DiskCache::rewriteUrls() - remove img[@srcset]Andrew Dolgov
2019-08-15add HOOK_ARTICLE_IMAGE for Article::get_article_image()Andrew Dolgov
2019-08-14Article::get_article_image() - provide cached URLs if possibleAndrew Dolgov
2019-08-14Article::get_article_image() - set default to "" instead of "false"Andrew Dolgov
2019-08-14Article::get_article_image() - also return stream URI if possibleAndrew Dolgov
2019-08-14* move get_article_image to Article; implement better og:image detection ↵Andrew Dolgov
(similar to android app) * pass article image to API clients in headlines row object
2019-08-14consistency: use DiskCache->exists() to check for present filesAndrew Dolgov
2019-08-14retire MIN_CACHE_FILE_SIZEAndrew Dolgov
2019-08-14RSSUtils::cache_media, cache_enclosures: use DiskCacheAndrew Dolgov
2019-08-14public/cached_url: forbid sending files with extensionsAndrew Dolgov
2019-08-14DiskCache: more strict checking for input filenames, getUrl() is no longer ↵Andrew Dolgov
static
2019-08-13* HOOK_ENCLOSURE_ENTRY: pass article_id to handlerAndrew Dolgov
* DiskCache: multiple fixes; support isWritable() for cache entries, set content-disposition for send() * public/cached_url: allow selecting files from sub-caches other than images * plugins/Cache_Starred_Images: rework to use DiskCache, can be enabled per-user, properly handles article enclosures, etc
2019-08-13DiskCache::expire: support .no-auto-expiry to prevent automatic cache ↵Andrew Dolgov
maintenance
2019-08-13expire_cached_files to DiskCache::expire()Andrew Dolgov
2019-08-13move rewrite_cached_urls to DiskCache::rewriteUrls()Andrew Dolgov
2019-08-13add DiskCache.getUrl() and use it in a bunch of placesAndrew Dolgov
2019-08-13add DiskCache.send; switch af_zz_imgproxy to use DiskCacheAndrew Dolgov
2019-08-13add DiskCache.isWritableAndrew Dolgov