summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-07-02filters: support matching on multiple feeds/categoriesAndrew Dolgov
opml: update filter export/import for new format
2017-07-02prefs: reload after OPML importAndrew Dolgov
2017-06-24css: remove dejavu sansAndrew Dolgov
2017-06-24db prefs: ignore cache when preference requested for specified UID (in case ↵Andrew Dolgov
cached value of a different profile is stored) prefs: show (and set) enabled plugins for default profile only
2017-06-13update_daemon_common: do not escape feed_url twice, remove some comments and ↵Andrew Dolgov
stuff
2017-06-05af_comics: add .gitignoreAndrew Dolgov
2017-06-05af_comics updates:Andrew Dolgov
1. move preferences to Feeds tab 2. update CAD comic with support for sillies 3. add support for loading updated/third-party filters from filters.local (would override bundled filters)
2017-06-05fix dilbert plugin not working because of changed GUIDs or w/eAndrew Dolgov
2017-06-04Merge branch 'dilbert-comic-plugin' into 'master' Andrew Dolgov
af_comics_dilbert: More details (title, tags, transcript) See merge request !56
2017-06-04af_comics_dilbert: More details (title, tags, transcript)aeritir
2017-05-29tunables:Andrew Dolgov
* add CACHE_MAX_DAYS as a tunable generic expiry interval for various cached files * add some comments to tunables in functions.php * rename _MIN_CACHE_FILE_SIZE to MIN_CACHE_FILE_SIZE * respect MIN_CACHE_FILE_SIZE setting in a few more places where content is cached
2017-05-28Merge branch 'autoload_replacement' into 'master' Andrew Dolgov
Replace '__autoload' (deprecated in PHP 7.2) with 'spl_autoload_register'. See merge request !54
2017-05-28Merge branch 'PrefFeedTree_no_favicon' into 'master' Andrew Dolgov
Show a blank icon in PrefFeedTree if there is no favicon for a feed. See merge request !55
2017-05-27Show a blank icon in PrefFeedTree if there is no favicon for a feed.wn_
Duplicates behavior of FeedTree. Prevents a broken request to 'false' if a feed doesn't have a favicon.
2017-05-27Replace '__autoload' (deprecated in PHP 7.2) with 'spl_autoload_register'.wn_
http://php.net/manual/en/function.autoload.php http://php.net/spl_autoload_register https://wiki.php.net/rfc/deprecations_php_7_2
2017-05-26add HOOK_FORMAT_ARTICLE & HOOK_FORMAT_ARTICLE_CDMAndrew Dolgov
Feeds::format_headlines_list: add some comments for cdm article closing tags
2017-05-23classes/Plugin: remove dbh & host fields; set init() and about() as abstract ↵Andrew Dolgov
methods.
2017-05-18af_zz_imgproxy: add optional no-cache modeAndrew Dolgov
2017-05-16move af_zz_imgsetsizes to attic repoAndrew Dolgov
2017-05-16move instances plugin to attic repoAndrew Dolgov
2017-05-16remove pubsubhubbub: deadAndrew Dolgov
2017-05-12feedtree.selectFeed: focus headlines-frame after selectionAndrew Dolgov
2017-05-11share function: remove tt-rss prefix from page titleAndrew Dolgov
2017-05-11move add_feed_url() to pref_feedsAndrew Dolgov
2017-05-06notify msg: reduce paddingAndrew Dolgov
2017-05-06fix DAEMON_SLEEP_INTERVAL not being defined when usedAndrew Dolgov
enforce minimum 60 sec spawn/sleep interval in update processes
2017-05-05wrap rssfuncs into rssutils classAndrew Dolgov
2017-05-05move counter stuff to a separate classAndrew Dolgov
2017-05-05hotkey_handler: one more tiny tweakAndrew Dolgov
2017-05-05CI: set all tests to manual because of gitlab flakinessAndrew Dolgov
2017-05-05hotkey_handler: cleanup things a bitAndrew Dolgov
2017-05-05hotkey_handler: return true on prefix handledAndrew Dolgov
2017-05-05feedtree, selectFeed: focus selected nodeAndrew Dolgov
2017-05-05add sanity check for SELF_URL_PATH going to http url if server is accessed ↵Andrew Dolgov
over https
2017-05-05hotkey_handler: stop propagation of handled prefix/action eventsAndrew Dolgov
2017-05-05feeditem_common: add get_element()Andrew Dolgov
2017-05-04move label stuff to Labels classAndrew Dolgov
fix some unresolved functions
2017-05-04move digest stuff to Digest classAndrew Dolgov
2017-05-04move some label stuff to labels.phpAndrew Dolgov
move getfeedcategory() to Feeds
2017-05-04abs_to_rel_path: removedAndrew Dolgov
2017-05-04move get_article_labels to ArticleAndrew Dolgov
2017-05-04move counter cache to a separate classAndrew Dolgov
fix references to get_article_tags
2017-05-04move a bunch of functions into Feeds/Article namespacesAndrew Dolgov
+ static function catchupArticlesById($ids, $cmode, $owner_uid = false) { + static function getLastArticleId() { + static function queryFeedHeadlines($params) { + static function getParentCategories($cat, $owner_uid) { + static function getChildCategories($cat, $owner_uid) { move the rest of functions2.php back to functions.php as it is of more manageable size, remove the former
2017-05-04move to Article:Andrew Dolgov
+ static function purge_orphans($do_output = false) { move to Feeds + static function getGlobalUnread($user_id = false) { + static function getCategoryTitle($cat_id) { + static function getLabelUnread($label_id, $owner_uid = false) {
2017-05-04move the following to Feeds:Andrew Dolgov
+ static function catchup_feed($feed, $cat_view, $owner_uid = false, $mode = 'all', $search = false) { + static function getFeedArticles($feed, $is_cat = false, $unread_only = false, + static function subscribe_to_feed($url, $cat_id = 0, + static function getFeedIcon($id) { + static function getFeedTitle($id, $cat = false) { + static function getCategoryUnread($cat, $owner_uid = false) { + static function getCategoryChildrenUnread($cat, $owner_uid = false) {
2017-05-04move the following to Article:Andrew Dolgov
+ static function format_article_enclosures($id, $always_display_enclosures, + static function format_article($id, $mark_as_read = true, $zoom_mode = false, $owner_uid = false) { + static function get_article_tags($id, $owner_uid = 0, $tag_cache = false) { + static function format_tags_string($tags) { + static function format_article_labels($labels) { + static function format_article_note($id, $note, $allow_edit = true) { + static function get_article_enclosures($id) {
2017-05-04move getArticleFeed to ArticleAndrew Dolgov
move print_label_select to controls
2017-05-04move opml-specific get_feed_category to opml.phpAndrew Dolgov
2017-05-04move some common control-generating functions to controls.phpAndrew Dolgov
2017-04-27update_rss_feed: minor code cleanupAndrew Dolgov