Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove a noisy OK messageHEADmaster | Yuchen Pei | 2025-08-31 | 1 | -1/+0 |
| | |||||
* | Use default array type of json arrays | Yuchen Pei | 2025-08-31 | 1 | -1/+0 |
| | |||||
* | remove trailing whitespaces in readme | Yuchen Pei | 2025-08-30 | 1 | -5/+5 |
| | |||||
* | First pass at implementing all required backend functions | Pedro Silva | 2013-04-11 | 1 | -45/+154 |
| | |||||
* | Refactor 'nnttrss--{read,write}-*' into 'nnttrss--{read,write}-vars' | Pedro Silva | 2013-04-10 | 1 | -108/+109 |
| | |||||
* | Implemetn nnttrss--{*} utility functions | Pedro Silva | 2013-04-09 | 1 | -2/+190 |
| | | | | * nnttrss--{read,write,update}-{headlines,article-map} | ||||
* | Fix bug introduced by missing renaming ttrss-session-id to ttrss-sid in some ↵ | Pedro Silva | 2013-04-09 | 1 | -2/+2 |
| | | | | places | ||||
* | Add commentary section to library header | Pedro Silva | 2013-04-05 | 1 | -3/+79 |
| | |||||
* | Make API fully consistent with Tiny Tiny RSS's method naming | Pedro Silva | 2013-04-05 | 1 | -2/+2 |
| | |||||
* | Add purpose, scope, design notes, installation, usage, and TODO information | Pedro Silva | 2013-04-05 | 1 | -0/+91 |
| | |||||
* | Add empty README for github | Pedro Silva | 2013-04-04 | 1 | -0/+0 |
| | |||||
* | Refactor ttrss-post-request to use ttrss-parse-request to parse the response | Pedro Silva | 2013-04-04 | 1 | -46/+64 |
| | | | | | This allows us to add an async equivalent specifically for long-lived requests, such as those generated by ttrss-update-feed | ||||
* | Implement ttrss-unsubscribe-feed | Pedro Silva | 2013-04-04 | 1 | -11/+18 |
| | |||||
* | Implement ttrss-subscribe-to-feed | Pedro Silva | 2013-04-04 | 1 | -1/+23 |
| | |||||
* | Implement ttrss-share-to-published method | Pedro Silva | 2013-04-04 | 1 | -3/+12 |
| | |||||
* | Implement ttrss-catchup-feed method | Pedro Silva | 2013-04-04 | 1 | -0/+9 |
| | |||||
* | Improve documentation | Pedro Silva | 2013-04-04 | 1 | -156/+340 |
| | | | | | - Reflect previous commit in docstrings - Change property list tables formatting to conform with Emacs manual | ||||
* | Change json-array-type to list | Pedro Silva | 2013-04-04 | 1 | -2/+4 |
| | |||||
* | Defined group to enclose user-configurable bits and pieces | Pedro Silva | 2013-04-04 | 1 | -8/+22 |
| | |||||
* | Implement most remaining methods | Pedro Silva | 2013-04-03 | 1 | -6/+140 |
| | | | | | | | | | 21:+(defun ttrss-get-config (address sid &optional property) 35:+(defun ttrss-get-pref (address sid property) 82:+(defun ttrss-get-unread (address sid) 93:+(defun ttrss-get-counters (address sid) 105:+(defun ttrss-get-article (address sid &rest article-ids) 147:+(defun ttrss-update-article (address sid &rest params) | ||||
* | Improve docstrings as reported by checkdoc | Pedro Silva | 2013-04-03 | 1 | -47/+91 |
| | |||||
* | Extract functional bindings logic to its own ttrss.el library | Pedro Silva | 2013-04-03 | 2 | -187/+234 |
| | |||||
* | Implement nnttrss-get-{categories,headlines} | Pedro Silva | 2013-04-03 | 1 | -8/+75 |
| | |||||
* | Remove indentation in some doc strings | Pedro Silva | 2013-04-03 | 1 | -8/+8 |
| | |||||
* | Use locally bound ADDRESS instead of global nnttrss-address | Pedro Silva | 2013-04-03 | 1 | -2/+2 |
| | | | | - nnttrss-get-{unread,counters} | ||||
* | Finish nnttrss-get-feeds implementation that was previously WIP | Pedro Silva | 2013-04-03 | 1 | -8/+6 |
| | |||||
* | Fix indentation problem putting nnttrss-logged-in-p nested within previous defun | Pedro Silva | 2013-04-03 | 1 | -7/+7 |
| | |||||
* | Add new server statistics code page | Pedro Silva | 2013-04-02 | 1 | -0/+43 |
| | | | | | - includes working implementations for nnttrss-get-{unread,counters} - WIP implementation for nnttrss-get-feeds | ||||
* | Change nnrss-post-request api so that PROPERTY is required but can be | Pedro Silva | 2013-04-02 | 1 | -14/+13 |
| | | | | | | | nil Before, not passing the optional PROPERTY would break the keyword arguments after it | ||||
* | Add library headers boilerplate | Pedro Silva | 2013-04-02 | 1 | -0/+27 |
| | |||||
* | Change nnttrss-post-request to take content as &rest argument | Pedro Silva | 2013-04-02 | 1 | -25/+25 |
| | | | | This allows for more natural syntax in calling functions | ||||
* | Add new private var for tracking server version | Pedro Silva | 2013-04-02 | 1 | -1/+13 |
| | |||||
* | Add new private var for tracking API level | Pedro Silva | 2013-04-02 | 1 | -0/+11 |
| | |||||
* | Add optional PROPERTY argument to nnttrss-post-request | Pedro Silva | 2013-04-02 | 1 | -13/+22 |
| | | | | | - If PROPERTY is not nil return its corresponding value instead of the entire response content. - Change session management functions accordingly. | ||||
* | Implement nnttrss-{login,logout,logged-in-p} | Pedro Silva | 2013-04-02 | 1 | -0/+23 |
| | |||||
* | Implement helper function for POSTING plists as JSON | Pedro Silva | 2013-04-02 | 1 | -0/+21 |
| | | | | Returns JSON response content as a plist | ||||
* | Add initial boilerplate stuff | Pedro Silva | 2013-04-02 | 1 | -0/+25 |