Rename avandu-list to avandu-overview

As it's `avandu-overview-mode' and the everything else says overview,
this really is a better name.
This commit is contained in:
Tom Willemsen 2012-08-04 16:10:42 +02:00
parent b3bc3c4804
commit a92da69dea
3 changed files with 21 additions and 21 deletions

View file

@ -12,7 +12,7 @@ file.
Once installation is out of the way, it should get a value for Once installation is out of the way, it should get a value for
=avandu-tt-rss-api-url= (for example: http://tt-rss.org/demo/api/) and =avandu-tt-rss-api-url= (for example: http://tt-rss.org/demo/api/) and
then run =avandu-list=. then run =avandu-overview=.
Once in avandu:overview mode some key bindings will be: Once in avandu:overview mode some key bindings will be:

View file

@ -35,7 +35,7 @@
;; Once installation is out of the way, it should get a value for ;; Once installation is out of the way, it should get a value for
;; `avandu-tt-rss-api-url' (for example: http://tt-rss.org/demo/api/) ;; `avandu-tt-rss-api-url' (for example: http://tt-rss.org/demo/api/)
;; and then run `avandu-list'. ;; and then run `avandu-overview'.
;; Once in avandu:overview mode some key bindings will be: ;; Once in avandu:overview mode some key bindings will be:
@ -516,13 +516,13 @@ doesn't sort the list, so you'll have to set that up in tt-rss.
\\<avandu-overview-map>" \\<avandu-overview-map>"
(use-local-map avandu-overview-map) (use-local-map avandu-overview-map)
(set (make-local-variable 'revert-buffer-function) (set (make-local-variable 'revert-buffer-function)
#'(lambda (ignore-auto noconfirm) (avandu-list))) #'(lambda (ignore-auto noconfirm) (avandu-overview)))
(setq mode-name (format "%s[%s]" (setq mode-name (format "%s[%s]"
avandu-overview-mode-name avandu-overview-mode-name
(avandu-new-articles-count)))) (avandu-new-articles-count))))
;;;###autoload ;;;###autoload
(defun avandu-list () (defun avandu-overview ()
"Request the headlines of unread articles and list them grouped "Request the headlines of unread articles and list them grouped
by feed." by feed."
(interactive) (interactive)

View file

@ -63,7 +63,7 @@ somewhere in your @code{load-path} and either @code{autoload} or
(add-to-list 'load-path "/path/to/avandu/") (add-to-list 'load-path "/path/to/avandu/")
;; And then either: ;; And then either:
(autoload 'avandu-list "avandu" "Show a list of feeds." t) (autoload 'avandu-overview "avandu" "Show an overview of articles." t)
;; or: ;; or:
(require 'avandu) (require 'avandu)
@end lisp @end lisp
@ -124,7 +124,7 @@ unread articles there are.
The avandu overview lets you see a list of all the unread articles in The avandu overview lets you see a list of all the unread articles in
Tiny Tiny RSS. Tiny Tiny RSS.
@deffn Command avandu-list @deffn Command avandu-overview
Show a list of all the unread articles that your Tiny Tiny RSS Show a list of all the unread articles that your Tiny Tiny RSS
instance has stored, grouped by feed. Due to certain instance has stored, grouped by feed. Due to certain
@dfn{limitations} of Tiny Tiny RSS, this will only be at most 60 @dfn{limitations} of Tiny Tiny RSS, this will only be at most 60
@ -153,9 +153,9 @@ Call @code{browse-url} to try and open the URL at point in your
preferred browser. This only works when the cursor is placed on an preferred browser. This only works when the cursor is placed on an
article title. article title.
In @code{avandu-list} this command gets bound to the @kbd{o} key in In @code{avandu-overview} this command gets bound to the @kbd{o} key
the article title's keymap, so pressing @kbd{o} on any article title in the article title's keymap, so pressing @kbd{o} on any article
will try and browse to it. title will try and browse to it.
@end deffn @end deffn
@deffn Command avandu-mark-article-read &optional button @deffn Command avandu-mark-article-read &optional button
@ -163,8 +163,8 @@ Ask Tiny Tiny RSS to mark the article associated with BUTTON as read.
If BUTTON is omitted or @code{nil} it will try to use whatever is at If BUTTON is omitted or @code{nil} it will try to use whatever is at
@code{point}. @code{point}.
In @code{avandu-list} this command gets bound to the @kbd{r} key in In @code{avandu-overview} this command gets bound to the @kbd{r} key
the article title's keymap. in the article title's keymap.
@end deffn @end deffn
@deffn Command avandu-next-article @deffn Command avandu-next-article
@ -172,8 +172,8 @@ Search through the buffer for the next article header and move point
to it. This command wraps around the buffer, so when using it at the to it. This command wraps around the buffer, so when using it at the
end of the buffer it will return to the top. end of the buffer it will return to the top.
In @code{avandu-list} this command gets bound to the @kbd{n} key in In @code{avandu-overview} this command gets bound to the @kbd{n} key
the major-mode's keymap, so pressing @kbd{n} anywhere in the buffer in the major-mode's keymap, so pressing @kbd{n} anywhere in the buffer
will go to the next article title. will go to the next article title.
@end deffn @end deffn
@ -181,8 +181,8 @@ will go to the next article title.
Exactly like @code{avandu-next-article} except it looks for the Exactly like @code{avandu-next-article} except it looks for the
previous article title. previous article title.
In @code{avandu-list} this command gets bound to the @kbd{p} key in In @code{avandu-overview} this command gets bound to the @kbd{p} key
the major-mode's keymap. in the major-mode's keymap.
@end deffn @end deffn
@deffn Command avandu-feed-catchup @deffn Command avandu-feed-catchup
@ -193,8 +193,8 @@ and which feed to do that with, so if you leave your buffer open for a
while you might mark articles you wish to read as read. This only while you might mark articles you wish to read as read. This only
works when the cursor is placed on a feed title. works when the cursor is placed on a feed title.
In @code{avandu-list} this command gets bound to the @kbd{c} key in In @code{avandu-overview} this command gets bound to the @kbd{c} key
the feed title's keymap, so pressing @kbd{c} on any feed title will in the feed title's keymap, so pressing @kbd{c} on any feed title will
try and catch up the feed. try and catch up the feed.
@end deffn @end deffn
@ -202,16 +202,16 @@ try and catch up the feed.
Exactly like @code{avandu-next-article} except it looks for the next Exactly like @code{avandu-next-article} except it looks for the next
feed title. feed title.
In @code{avandu-list} this command gets bound to the @kbd{N} key in In @code{avandu-overview} this command gets bound to the @kbd{N} key
the major-mode's keymap. in the major-mode's keymap.
@end deffn @end deffn
@deffn Command avandu-previous-feed @deffn Command avandu-previous-feed
Exactly like @code{avandu-next-article} except it looks for the Exactly like @code{avandu-next-article} except it looks for the
previous feed title. previous feed title.
In @code{avandu-list} this command gets bound to the @kbd{P} key in In @code{avandu-overview} this command gets bound to the @kbd{P} key
the major-mode's keymap. in the major-mode's keymap.
@end deffn @end deffn
@node Other commands, , Article overview, Usage @node Other commands, , Article overview, Usage