summaryrefslogtreecommitdiff
path: root/classes
AgeCommit message (Collapse)Author
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-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-04-27add api test for labels, api: fix setArticleLabel assign not handled correctlyAndrew Dolgov
2017-04-27add some basic API unit testsAndrew Dolgov
2017-04-26remove some redundant php closing tagsAndrew Dolgov
2017-04-26fix various issues reported by static analysisAndrew Dolgov
update gitlab-ci config
2017-04-25return result codes if DB connection or --debug-feed failsAndrew Dolgov
2017-03-31filter by search results while marking feed as readAndrew Dolgov
2017-03-23rename cache images option label (rip translations)Andrew 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-03-06cdmClicked: do not use event.target.parents to figure out if clicked on a ↵Andrew Dolgov
heading
2017-03-05improve JS error logging with additional stuffAndrew Dolgov
2017-03-04simplify error handlingAndrew Dolgov
* less convoluted exception dialogs * use window.onerror for the majority of exception catching/reporting * remove most of now useless try/catch blocks * report stacktrace instead of manually specified error locations
2017-02-17rework the way headlines menus identify calling rowAndrew Dolgov
2017-02-13bind headlines menu to a selector to avoid remaking it unnecessarilyAndrew Dolgov
2017-02-12add HOOK_ENCLOSURE_ENTRY for af_zz_imgproxyAndrew Dolgov
2017-02-12Prevent target='_blank' vulnerability on dynamic linkJérémy DECOOL
2017-02-10allow user plugins to expose public methods out in a limited fashionAndrew Dolgov
2017-02-10use print_hidden() for hidden dojo form fieldsAndrew Dolgov
2017-02-10af_zz_imgproxy: use inline disposition, misc updatesAndrew Dolgov
2017-02-04cached_image: remove unnecessary basename()Andrew Dolgov
2017-02-04image cache: send files as content-disposition: attachment; add .png suffix ↵Andrew Dolgov
to image urls
2017-01-28subscribe dialog: do not report errors via alert()Andrew Dolgov
fetch_file_contents: reset all globals on start, return error message body when not using curl subscribe_to_feed: report if cloudflare is in the error message
2017-01-26preferences: set themes dropdown to default if selected theme is missingAndrew Dolgov
2017-01-25implement cache-busting for default theme.cssAndrew Dolgov
night theme: small fixes
2017-01-23reference pubsubhubbub classes using their namespaceAndrew Dolgov
2017-01-22unpackVisibleHeadlines: do not iterate over all RROWs all the timeAndrew Dolgov
2017-01-22force ngettext() count argument type to stringAndrew Dolgov
2017-01-21prefs: auto expand feed treeAndrew Dolgov
2017-01-07headlines toolbar: move selection links into the dropdownAndrew Dolgov
2017-01-07add toggle_sidebar plugin, remove obsolete toggle buttonAndrew Dolgov
add PluginHost::HOOK_MAIN_TOOLBAR_BUTTON
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
2017-01-04edit tags dialog: fix heightAndrew Dolgov
2017-01-04ttrssmailer: include phpmailer's smtp classAndrew Dolgov
2016-11-11feedparser: fix syntax errorAndrew Dolgov
2016-11-11feedparser: fix normalize_encoding() not working properly for some encodingsAndrew Dolgov
2016-09-05parser: only try to convert encoding if mbstring actually supports itAndrew Dolgov
2016-08-27Add feed_id to subscribeToFeed response when the code is 1 or 0.John Brayton
Set the API_LEVEL to 14.
2016-08-21remove support for legacy mysql driverAndrew Dolgov
2016-08-19remove classes/db/api.php (shouldn't be there)Andrew Dolgov