aboutsummaryrefslogtreecommitdiff
path: root/p/api
AgeCommit message (Collapse)Author
2017-05-12Move default configuration filesGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/1531
2017-05-05Make actualizeFeed returns values consistent&safeGravatar Seokseong Jeon
2017-04-10PSHB better unsubscribeGravatar Alexandre Alapetite
Cases when a user is deleted, or when a feed is deleted. Removed random key do reduce the risk of subscribing several times to the same PSHB feed.
2017-02-25Missing checkUsername and const pattenGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/pull/1423 https://github.com/YunoHost-Apps/freshrss_ynh/issues/27#issuecomment-279792363
2016-10-07PSHB bugsGravatar Alexandre Alapetite
Introduced by https://github.com/FreshRSS/FreshRSS/pull/1280
2016-09-26API fix feed renameGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/1254 https://github.com/jangernert/FeedReader/issues/59#issuecomment-249558202
2016-09-26API implement user-info and fix editsGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/1254 https://github.com/jangernert/FeedReader/issues/59#issuecomment-249491580
2016-09-25API subscription/quickaddGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/1254
2016-09-25API delete categoryGravatar Alexandre Alapetite
2016-09-25API rename categoryGravatar Alexandre Alapetite
2016-09-25API add feedGravatar Alexandre Alapetite
2016-09-24Refactor controller for actualize feedGravatar Alexandre Alapetite
2016-09-24API rename feedGravatar Alexandre Alapetite
2016-09-24API implement delete feed + refactor move feedGravatar Alexandre Alapetite
2016-09-24API fix change feed categoryGravatar Alexandre Alapetite
2016-09-24API move feed to another categoryGravatar Alexandre Alapetite
https://github.com/jangernert/FeedReader/issues/59 https://github.com/FreshRSS/FreshRSS/issues/443
2016-09-17API: start draft of edit subscriptionsGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/443 https://github.com/FreshRSS/FreshRSS/issues/1252 https://github.com/jangernert/FeedReader/issues/59#issuecomment-247484124
2016-09-15API: add iconUrlGravatar Alexandre Alapetite
https://github.com/jangernert/FeedReader/issues/59#issuecomment-247182291 https://github.com/FreshRSS/FreshRSS/issues/1252
2016-08-29HTTP security: prevent reflection abuseGravatar Alexandre Alapetite
https://msdn.microsoft.com/en-us/library/gg622941(v=vs.85).aspx
2016-08-14Merge branch 'FreshRSS/dev' into SuperFeeder_timeoutGravatar Alexandre Alapetite
2016-07-31More links for API helpGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/328#issuecomment-236100791 https://github.com/FreshRSS/FreshRSS/issues/957#issuecomment-133581712
2016-07-30PSHB: work-around for SuperFeederGravatar Alexandre Alapetite
Feeds using SuperFeeder for PubSubHubbub push had timeout problems during substription. SuperFeeder bot was returning 422 "We could not verify your callback Error: ETIMEDOUT" It seems to be due to the the fact that SuperFeeder bot uses keep-alive but expects the server to close the connection. https://github.com/FreshRSS/FreshRSS/issues/312#issuecomment-73716936
2016-04-10API support for REDIRECT HTTP headersGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/1127
2016-03-08API limit INPUT to 1MBGravatar Alexandre Alapetite
2016-01-24PubSubHubbub unsubscribe requestGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/1058
2015-11-23Update greader.phpGravatar Purexo
streamContents can know exclude target unread item
2015-10-24Clean logsGravatar Alexandre Alapetite
Reduced login of API and PubSubHubbub (both are quite stable now). When clearing logs as admin, also clear API and PubSubHubbub logs. https://github.com/FreshRSS/FreshRSS/issues/988
2015-05-23Merge branch 'FreshRSS/dev' into PubSubHubbubGravatar Alexandre Alapetite
2015-05-21Google Reader API: work-around for News+ bugGravatar Alexandre Alapetite
https://github.com/noinnion/newsplus/issues/84#issuecomment-57834632 https://github.com/FreshRSS/FreshRSS/issues/443
2015-05-17PubSubHubbub better gestion of errorsGravatar Alexandre Alapetite
Do not assume that PubSubHubbub works until the first successul push https://github.com/FreshRSS/FreshRSS/issues/312#issuecomment-102706500
2015-05-16More PubSubHubbubGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/312 Show whether PubSubHubbub is enabled in the Web interface of feed configuration. When PubSubHubbub is used, do not pull refresh so often (hard-coded to max once per 24h for now). Improved logic for lease renewal, and some detection of lease problems. Updated read-me and changelog.
2015-05-15Change some error messagesGravatar Alexandre Alapetite
2015-05-15First alpha of PubSubHubbubGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/312 Using a white list limited to http://push-pub.appspot.com/feed for alpha testing.
2015-05-15First draft of PubSubHubbubGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/312 Requires setting base_url in config.php. Currently using the filesystem (no change to the database)
2015-03-04Fix entry DAO query usageGravatar Alexis Degrugillier
I did not fix the call in the previous commit. I hope this one is the last change needed. We definitely need a templating engine so we could use the same controller to output different things. This will remove code duplication between the api and the web interface. It will allows us to build other type of api, and also refactor the rss feed as a different view of the same dataset.
2015-03-03Fix API to use the search objectGravatar Alexis Degrugillier
Since the internal of the listWhere method was changed, the API wasn't working. It was still calling the method with the old parameters. I didn't test it but now, it should work.
2015-01-14Fix stupid bug in greader APIGravatar Marien Fressinaud
Replace Minz_Session::_param() by Minz_Session::param() in token() and checkToken() functions. Fix https://github.com/FreshRSS/FreshRSS/issues/747
2015-01-13Change behaviour if authorizationToUser is nullGravatar Marien Fressinaud
authorizationToUser() returns now an empty string by default If it returns an empty string, conf is set to null and api don't die anymore. Fix https://github.com/FreshRSS/FreshRSS/issues/747
2015-01-13Fix greader APIGravatar Marien Fressinaud
$conf->user didn't exist anymore since #730. User name had to be retrieved by another way. It uses sessions now. Fix https://github.com/FreshRSS/FreshRSS/issues/747
2015-01-13Add log in APIGravatar Marien Fressinaud
See https://github.com/FreshRSS/FreshRSS/issues/747
2015-01-13Add a log line in greader API.Gravatar Marien Fressinaud
See https://github.com/FreshRSS/FreshRSS/issues/747
2015-01-06Fix greader api script with new config systemGravatar Marien Fressinaud
See https://github.com/FreshRSS/FreshRSS/issues/730
2014-12-28Remove all old references to LOG_PATHGravatar Marien Fressinaud
See https://github.com/FreshRSS/FreshRSS/issues/729
2014-10-05Replace Minz_Log::record by corresponding methodsGravatar Marien Fressinaud
Please not use Minz_Log::record anymore! See https://github.com/marienfressinaud/FreshRSS/issues/655
2014-08-20API compatible lighttpdGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/443
2014-07-05Add support for SQLiteGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/100 Warning: MySQL has been changed too, so bugs may have been introduced
2014-07-03Preparation #3 for SQLiteGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/100
2014-04-13Move state constants from Configuration to EntryGravatar Alexis Degrugillier
2014-04-13Add a new status for 'ALL'Gravatar Alexis Degrugillier
I made the conversion in every file I can think of. It should not have any reference to the string 'all' for the state context
2014-03-10API: New test for getallheaders() problemGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/443