summaryrefslogtreecommitdiff
path: root/classes/api.php
AgeCommit message (Collapse)Author
2015-11-23Add optional (default: true), boolean "sanitize" parameter to ↵JustAMacUser
API::getArticle() method.
2015-11-21queryFeedHeadlines: don't check first_id when sorting by oldest firstAndrew Dolgov
2015-09-15queryfeedheadlines: remove disable_offsets hackAndrew Dolgov
2015-08-05experimental: if using adaptive/unread mode w/ auto catchup don't calculate ↵Andrew Dolgov
offsets because we're only interested in top $limit headlines anyway
2015-07-12fixes for first_id stuffAndrew Dolgov
2015-07-12apparently it's a bad idea to do is_resource() on a mysqli resultAndrew Dolgov
2015-07-12api: getHeadlines: cast feed_it to int if neededAndrew Dolgov
2015-07-12api: initialize headlines headerAndrew Dolgov
2015-07-12bump api levelAndrew Dolgov
2015-07-12api: add top id stuff, optionally return header w/ status information in ↵Andrew Dolgov
getHeadlines (currently only top_id_changed)
2015-07-12report top id changed in headlines bufferAndrew Dolgov
2015-07-12queryFeedHeadlines: move to array-based arguments, optionally check if first ↵Andrew Dolgov
element changed when paginating
2015-07-07simplify search, remove search_mode as uselessAndrew Dolgov
remove dialog to select by tags, simplify browsing by tag query
2014-11-29api: getHeadlines: add configurable excerpt_length (bump api version)Andrew Dolgov
2014-11-25api: allow requesting headlines as if client supports iframe sandboxingAndrew Dolgov
2014-10-27api: handle uncached labels the way main headlines function does itAndrew Dolgov
2014-10-16add force_update to api getHeadlines; bump api version to 9Andrew Dolgov
2014-01-24Added syslog reporting for failed API login attempts.Dave Zaikos
2014-01-24api: fix getFeeds returning some ids in string formatAndrew Dolgov
2013-12-04api: add article language to getArticle/getHeadlinesAndrew Dolgov
2013-11-29queryFeedHeadlines: remove obsolete content_previewAndrew Dolgov
2013-11-27api: fix getLabels never returning existing checked labels correctlyAndrew Dolgov
2013-11-23api: add note support for getHeadlines/getArticle (bump api version)Andrew Dolgov
2013-11-09api: allow sorting headlines by titleAndrew Dolgov
2013-10-12api: fix setArticleLabel expecting wrong format for label_idAndrew Dolgov
2013-08-04API should return excerpt when askedMatt Haley
2013-08-02api: pass article id to sanitizeAndrew Dolgov
2013-07-28api: getLabels: return converted label idsAndrew Dolgov
2013-07-10remove unused cached_contentAndrew Dolgov
2013-07-10api: fix typoAndrew Dolgov
2013-07-07Merge branch 'master' into hookheadjustauser
Conflicts: include/functions.php changes for conflicts with master
2013-07-06date_reverse view mode: take scoring into accountAndrew Dolgov
2013-06-28Changed the implementation of HOOK_QUERY_HEADLINES to deal with issue Fox raisedjustauser
2013-06-27Changes to add a new hook: HOOK_QUERY_HEADLINES. An example is provided.justauser
2013-05-15api, getArticle: check for article_id being presentAndrew Dolgov
2013-05-15api, add sanitize to getHeadlines (defaults to true)Andrew Dolgov
2013-05-07Fixing bugs found by static analysisRasmus Lerdorf
2013-04-27getHeadlines: return feed title for non-virtual feedsAndrew Dolgov
2013-04-27api: add feed_title to getArticleAndrew Dolgov
2013-04-18api/getHeadlines: increase limit to 200Andrew Dolgov
2013-04-18make pluginhost a singletonAndrew Dolgov
2013-04-17classes: use OO DB interfaceAndrew Dolgov
2013-04-17fix blank character after opening bracket in function callsAndrew Dolgov
2013-04-17remove $linkAndrew Dolgov
2013-04-13api: add score to getHeadlines/getArticleAndrew Dolgov
2013-04-12add support for plugins adding API methodsAndrew Dolgov
2013-04-12Revert "Add new API method: `getFeedStats'"Andrew Dolgov
This reverts commit 0192ffe5a5f8254d723cf46e4bda839220191c2c.
2013-04-11bump api levelAndrew Dolgov
2013-04-11Add new API method: `getFeedStats'Pedro Silva
`getFeedStats' calls the new static function `api_get_feed_stats' to return an array of real feeds of the following form: [{ "first" : 1127, "unread" : 873, "last" : 15460, "title" : "Some feed", "id" : 31, "total" : 1513 }] where "first", "last", "total" are the first, last and total number of articles in the feed. This adds the ability to nntp-oriented clients to efficiently retrieve an "active file" without having to resort to `getHeadlines(limit=-1)'
2013-04-02api: add article api hook to getArticle, change parameters passedAndrew Dolgov