diff options
| author | Katsumi Yamaoka | 2010-03-23 07:29:49 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2010-03-23 07:29:49 +0000 |
| commit | 1888398e25e7f329992efca189aeba21f6697465 (patch) | |
| tree | 33edb702cb74a64c732fcd76d1f849fdaa22a1d3 | |
| parent | f14d1172a22ac7127d8e446614b5f2decddbf6d7 (diff) | |
| download | emacs-1888398e25e7f329992efca189aeba21f6697465.tar.gz emacs-1888398e25e7f329992efca189aeba21f6697465.zip | |
Synch with Gnus trunk
=====================
2010-03-22 Teodor Zlatanov <tzz@lifelogs.com>
* gnus/gnus-setup.ast: Add finish links to the top nodes.
* gnus/news-server.ast: Add some trivial validation.
| -rw-r--r-- | etc/ChangeLog | 6 | ||||
| -rw-r--r-- | etc/gnus/gnus-setup.ast | 4 | ||||
| -rw-r--r-- | etc/gnus/news-server.ast | 6 |
3 files changed, 13 insertions, 3 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index f845ab98bf0..bc750afacb3 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2010-03-22 Teodor Zlatanov <tzz@lifelogs.com> | ||
| 2 | |||
| 3 | * gnus/gnus-setup.ast: Add finish links to the top nodes. | ||
| 4 | |||
| 5 | * gnus/news-server.ast: Add some trivial validation. | ||
| 6 | |||
| 1 | 2010-03-13 Michael Albinus <michael.albinus@gmx.de> | 7 | 2010-03-13 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 8 | ||
| 3 | * NEWS: Add secrets.el. | 9 | * NEWS: Add secrets.el. |
diff --git a/etc/gnus/gnus-setup.ast b/etc/gnus/gnus-setup.ast index 2893c40b245..31eeee024e1 100644 --- a/etc/gnus/gnus-setup.ast +++ b/etc/gnus/gnus-setup.ast | |||
| @@ -33,6 +33,8 @@ Your mail can be downloaded into Gnus in several ways, choose one: | |||
| 33 | 33 | ||
| 34 | @end text | 34 | @end text |
| 35 | 35 | ||
| 36 | @next 'finish | ||
| 37 | |||
| 36 | @node Setting up a NNTP server | 38 | @node Setting up a NNTP server |
| 37 | 39 | ||
| 38 | @text | 40 | @text |
| @@ -40,6 +42,8 @@ TODO: this will be a real link. | |||
| 40 | Run M-x assistant and use the news-server.ast file as input. | 42 | Run M-x assistant and use the news-server.ast file as input. |
| 41 | @end text | 43 | @end text |
| 42 | 44 | ||
| 45 | @next 'finish | ||
| 46 | |||
| 43 | 47 | ||
| 44 | @c Local variables: | 48 | @c Local variables: |
| 45 | @c mode: texinfo | 49 | @c mode: texinfo |
diff --git a/etc/gnus/news-server.ast b/etc/gnus/news-server.ast index 294f92382d9..432f71a50f0 100644 --- a/etc/gnus/news-server.ast +++ b/etc/gnus/news-server.ast | |||
| @@ -2,9 +2,9 @@ | |||
| 2 | 2 | ||
| 3 | 3 | ||
| 4 | @node Setting up the news server name and port number | 4 | @node Setting up the news server name and port number |
| 5 | @variable server :string (gnus-getenv-nntpserver) | 5 | @variable server :string (or (gnus-getenv-nntpserver) "your-server-here") |
| 6 | @variable port :number 119 | 6 | @variable port :number 119 |
| 7 | @validate (assistant-validate-connect-to-server server port) | 7 | @validate (or (assistant-validate-connect-to-server server port) (y-or-n-p "Do you want to use the server anyway, although you can't confirm it's valid?")) |
| 8 | @result gnus-select-method (list 'nntp server (list 'nntp-server port)) | 8 | @result gnus-select-method (list 'nntp server (list 'nntp-server port)) |
| 9 | @text | 9 | @text |
| 10 | Usenet news is usually read from your Internet service prodider's news | 10 | Usenet news is usually read from your Internet service prodider's news |
| @@ -14,10 +14,10 @@ As a guess, the name of the server might be news.yourisp.com. | |||
| 14 | 14 | ||
| 15 | Server name: @variable{server} | 15 | Server name: @variable{server} |
| 16 | Port number: @variable{port} | 16 | Port number: @variable{port} |
| 17 | |||
| 17 | @end text | 18 | @end text |
| 18 | @next t "User name and password" | 19 | @next t "User name and password" |
| 19 | 20 | ||
| 20 | |||
| 21 | @node User name and password | 21 | @node User name and password |
| 22 | @type interstitial | 22 | @type interstitial |
| 23 | @next | 23 | @next |