aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Abstract the parsing and creation of single linesGravatar Tom Willemsen2012-08-071-4/+7
| | | | | Don't use `replace-regexp-in-string' in so many places, use `avandu--oneline'.
* Add auth-source as explicit requirementGravatar Tom Willemsen2012-08-071-1/+2
|
* Make avandu use auth-sourceGravatar Tom Willemsen2012-08-061-4/+30
| | | | | | | | | | | | * avandu.el (avandu--clear-data): Only use `clear-string' if `avandu-password' is a string, otherwise just set it to nil. (avandu--get-credentials): (avandu--password): New functions. (avandu-login): If either `avandu-user' or `avandu-password' is nil, call `avandu--get-credentials' to fill them. Just pass along `avandu-user' and use `avandu--password' to get the password.
* Add avandu-update-article functionGravatar Tom Willemsen2012-08-041-5/+26
| | | | | * avandu.el (avandu-mark-article-read): Use `avandu-update-article' instead of calling `avandu--send-command'.
* Have avandu-headlines use a plistGravatar Tom Willemsen2012-08-041-28/+41
| | | | | | Calling `(avandu-headlines -4 :view-mode "unread" :show-excerpt t)' seems much cleaner than `(avandu-headlines -4 nil nil nil t nil "unread")'.
* Rename avandu-list to avandu-overviewGravatar Tom Willemsen2012-08-043-21/+21
| | | | | As it's `avandu-overview-mode' and the everything else says overview, this really is a better name.
* Add avandu-headlines functionGravatar Tom Willemsen2012-08-041-7/+46
| | | | | | | This function returns a vector of articles. * avandu.el (avandu-list): Use `avandu-headlines' instead of calling `avandu--send-command' directly.
* Add avandu-categories functionGravatar Tom Willemsen2012-08-042-34/+27
| | | | | Remove texinfo documentation abount avandu-feeds, as it is not a command it should not (yet) be documented in the info manual.
* Add avandu-feeds commandGravatar Tom Willemsen2012-08-042-2/+35
| | | | | This command only returns a vector of feeds, it is not yet useful for users but will be used later to allow for different views of feeds.
* Show unread count in mode-lineGravatar Tom Willemsen2012-08-042-10/+25
| | | | | | | | | * avandu.el (avandu-new-articles-count): Only show a message in the echo area if it has been called interactively in any way. (avandu-overview-mode): Set MODE-NAME to the format of "Avandu:Overview[#]" where `#' is replaced by the number of unread articles.
* Add avandu-tt-rss-version commandGravatar Tom Willemsen2012-08-042-1/+26
| | | | Also add some doc fixes.
* Add avandu-versionGravatar Tom Willemsen2012-08-031-1/+3
|
* Add avandu-tt-rss-api-level commandGravatar Tom Willemsen2012-08-032-0/+24
| | | | | | This command gets the api level from tt-rss, this doesn't serve any purpose yet, but it could be used later-on to determine which features are and aren't available.
* Minor writing style updateGravatar Tom Willemsen2012-08-031-6/+6
|
* Make a user option out of avandu-userGravatar Tom Willemsen2012-08-032-13/+17
| | | | There is no harm in specifying your username in a config file.
* Add documentation for some more commandsGravatar Tom Willemsen2012-08-031-3/+75
| | | | | All interactive commands should now be documented in the info documentation.
* RearrangeGravatar Tom Willemsen2012-08-031-201/+229
| | | | | Hopefully this will make it a little clearer. More rearranging might happen in the future.
* Explicitly require url and simpleGravatar Tom Willemsen2012-08-021-0/+2
| | | | This is to prevent warnings/errors from appearing.
* Use defcustom for avandu-tt-rss-api-urlGravatar Tom Willemsen2012-08-021-4/+6
| | | | | * avandu.el: Change `avandu-tt-rss-api-url' from a `defvar' to a `defcustom' to make it easier for users to change.
* Add some documentationGravatar Tom Willemsen2012-08-025-1/+213
|
* Add logout commandGravatar Tom Willemsen2012-07-281-0/+6
| | | | If you ever want to manually reset your session.
* Clean up data when login failsGravatar Tom Willemsen2012-07-281-1/+8
| | | | | | Before, when attempting to log in, and failing, the username and password were retained and subsequent attempts would also fail. Now the data is deleted and new login requests will start fresh.
* Add   as replaceable entityGravatar Tom Willemsen2012-07-271-1/+2
| | | | Replace it with ` '.
* Pass-off cleaning up of text to separate functionGravatar Tom Willemsen2012-07-271-11/+50
| | | | | | | | | | | * avandu.el (avandu-entity-replacement-alist): An alist that keeps track which titled entities should be replaced by which character. (avandu-clean-text): New function. (avandu--insert-article-excerpt): Don't run endless chains of `replace-regexp-in-string', leave (almost) all cleanup to `avandu-clean-text'. Don't print an excerpt if it is empty.
* Add excerpt to articlesGravatar Tom Willemsen2012-07-261-6/+28
| | | | | | | | | | | | | | | * avandu.el (avandu-overview-excerpt): New face. (avandu--insert-feed-title): Replace `newline' with `insert-char' to prevent newlines from continuing indentation. (avandu--insert-article-title): Replace `newline' with `insert-char'. (avandu--insert-article-excerpt): New function. (avandu-list): Ask tt-rss to send along an excerpt of each article and print this excerpt after the article's title.
* Add/improve docstringsGravatar Tom Willemsen2012-07-261-8/+54
|
* Initial commitGravatar Tom Willemsen2012-07-251-0/+307