Announcements and discussions for Gnus, the GNU Emacs Usenet newsreader
 help / color / mirror / Atom feed
* How to speed up the nnrss rechieving? Too slow!
@ 2008-02-28 13:13 anhnmncb
  2008-02-28 14:00 ` Bastien
       [not found] ` <mailman.8033.1204207257.18990.info-gnus-english@gnu.org>
  0 siblings, 2 replies; 23+ messages in thread
From: anhnmncb @ 2008-02-28 13:13 UTC (permalink / raw)
  To: info-gnus-english

Gnus' manual say I can use the script to speed  up gnus:
      #!/bin/sh
      emacs -batch -l ~/.emacs -l ~/.emacs.d/site-lisp/.gnus.el -f
      gnus-agent-batch >/dev/null 2>&1
So I tried and set up group nnrss to agent, then launch gnus-unplugged,
it warms me like this:
   gnus-select-newsgroup: Couldn't activate group nnrss:foo.feed:
   Invalid group (no such directory)
Maybe emacs batch and guns-plunged don't support  nnrss?
Any other way to speed the gnus up?
I like gnus so much, and want to do all of my mails and feeds fetching,
filtering by it :)
-- 
Regards,

  anhnmncb
 gpg key: 44A31344

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: How to speed up the nnrss rechieving? Too slow!
  2008-02-28 13:13 How to speed up the nnrss rechieving? Too slow! anhnmncb
@ 2008-02-28 14:00 ` Bastien
  2008-02-28 15:07   ` Bastien
       [not found]   ` <mailman.8039.1204211245.18990.info-gnus-english@gnu.org>
       [not found] ` <mailman.8033.1204207257.18990.info-gnus-english@gnu.org>
  1 sibling, 2 replies; 23+ messages in thread
From: Bastien @ 2008-02-28 14:00 UTC (permalink / raw)
  To: anhnmncb; +Cc: info-gnus-english

anhnmncb <anhnmncb@gmail.com> writes:

> Gnus' manual say I can use the script to speed  up gnus:
>       #!/bin/sh
>       emacs -batch -l ~/.emacs -l ~/.emacs.d/site-lisp/.gnus.el -f
>       gnus-agent-batch >/dev/null 2>&1
> So I tried and set up group nnrss to agent, then launch gnus-unplugged,
> it warms me like this:
>    gnus-select-newsgroup: Couldn't activate group nnrss:foo.feed:
>    Invalid group (no such directory)
> Maybe emacs batch and guns-plunged don't support  nnrss?
> Any other way to speed the gnus up?
> I like gnus so much, and want to do all of my mails and feeds fetching,
> filtering by it :)

When I was reading RSS feeds with Gnus, I prefered to download them
asynchroneously:

(setq nnrss-use-local t)
(nnrss-generate-download-script)

If you want to speed up your Gnus, maybe you should consider this
solution.  Have a look at the docstrings of these functions.

-- 
Bastien

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: How to speed up the nnrss rechieving? Too slow!
  2008-02-28 14:00 ` Bastien
@ 2008-02-28 15:07   ` Bastien
  2008-03-03  7:14     ` William Xu
       [not found]     ` <mailman.8203.1204528522.18990.info-gnus-english@gnu.org>
       [not found]   ` <mailman.8039.1204211245.18990.info-gnus-english@gnu.org>
  1 sibling, 2 replies; 23+ messages in thread
From: Bastien @ 2008-02-28 15:07 UTC (permalink / raw)
  To: anhnmncb; +Cc: info-gnus-english

Bastien <bzg@altern.org> writes:

> (setq nnrss-use-local t)
> (nnrss-generate-download-script)

Just a precision: this is *not* a recipe.  

`nnrss-generate-download-script' will generate a script that you should
cron so that it fetches your RSS feeds.

,----[ (info "(gnus)RSS") ]
| `nnrss-use-local'
|      If you set `nnrss-use-local' to `t', `nnrss' will read the feeds
|      from local files in `nnrss-directory'.  You can use the command
|      `nnrss-generate-download-script' to generate a download script
|      using `wget'.
`----

-- 
Bastien

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: How to speed up the nnrss rechieving? Too slow!
       [not found]   ` <mailman.8039.1204211245.18990.info-gnus-english@gnu.org>
@ 2008-02-29  0:16     ` anhnmncb
  2008-02-29  2:47       ` William Xu
       [not found]       ` <mailman.8064.1204253412.18990.info-gnus-english@gnu.org>
  0 siblings, 2 replies; 23+ messages in thread
From: anhnmncb @ 2008-02-29  0:16 UTC (permalink / raw)
  To: info-gnus-english

very useful!
But how to let gnus' don't check the new feeds when startup? I don't
want to use the method like C-u 3 gnus. It's relative to
group level, after read the manual, I don't have clue which option is
for that :(
-- 
Regards,

  anhnmncb
 gpg key: 44A31344

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: How to speed up the nnrss rechieving? Too slow!
  2008-02-29  0:16     ` How to speed up the nnrss rechieving? Too slow! anhnmncb
@ 2008-02-29  2:47       ` William Xu
       [not found]       ` <mailman.8064.1204253412.18990.info-gnus-english@gnu.org>
  1 sibling, 0 replies; 23+ messages in thread
From: William Xu @ 2008-02-29  2:47 UTC (permalink / raw)
  To: info-gnus-english

anhnmncb <anhnmncb@gmail.com> writes:

> But how to let gnus' don't check the new feeds when startup? I don't
> want to use the method like C-u 3 gnus. It's relative to
> group level, after read the manual, I don't have clue which option is
> for that :(

The default levels that Gnus will check for news is no more than
3. Hence, you can set all your rss groups to a level greater than 3. The
command is `S L'.

-- 
William

http://williamxu.net9.org

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: How to speed up the nnrss rechieving? Too slow!
       [not found]       ` <mailman.8064.1204253412.18990.info-gnus-english@gnu.org>
@ 2008-02-29  6:21         ` anhnmncb
  2008-02-29  9:06           ` William Xu
  0 siblings, 1 reply; 23+ messages in thread
From: anhnmncb @ 2008-02-29  6:21 UTC (permalink / raw)
  To: info-gnus-english

William Xu <william.xwl@gmail.com> writes:

> The default levels that Gnus will check for news is no more than
> 3. Hence, you can set all your rss groups to a level greater than 3. The
> command is `S L'.
armm... I tried to set all of the nnrss group to 4, not work :(
Maybe I've missed something?
Any other way to set groups' level quickly? Using mark? I did it one by
one, too boring.

BTW. I like to run gnus in a new emacs instant, so I start gnus by emacs
-name gnus -l ~/.emacs -f gnus.
-- 
Regards,

  anhnmncb
 gpg key: 44A31344

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: How to speed up the nnrss rechieving? Too slow!
       [not found] ` <mailman.8033.1204207257.18990.info-gnus-english@gnu.org>
@ 2008-02-29  7:52   ` anhnmncb
  2008-02-29  9:09     ` William Xu
                       ` (2 more replies)
  0 siblings, 3 replies; 23+ messages in thread
From: anhnmncb @ 2008-02-29  7:52 UTC (permalink / raw)
  To: info-gnus-english

Bastien <bzg@altern.org> writes:

> When I was reading RSS feeds with Gnus, I prefered to download them
> asynchroneously:
>
> (setq nnrss-use-local t)
> (nnrss-generate-download-script)
>
> If you want to speed up your Gnus, maybe you should consider this
> solution.  Have a look at the docstrings of these functions.
I have tried, set all nnrss group to level 4 and start gnus by emacs
-eval '(gnus 3)'
now every nnrss group starts with *, 
       *: nnrss:Gentoo Linux News
       *: nnrss:FreshPorts news
it need me to go to every  group and type RET to see it, not friendly
too much :(
Am I wrong?
-- 
Regards,

  anhnmncb
 gpg key: 44A31344

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: How to speed up the nnrss rechieving? Too slow!
  2008-02-29  6:21         ` anhnmncb
@ 2008-02-29  9:06           ` William Xu
  0 siblings, 0 replies; 23+ messages in thread
From: William Xu @ 2008-02-29  9:06 UTC (permalink / raw)
  To: info-gnus-english

anhnmncb <anhnmncb@gmail.com> writes:

> armm... I tried to set all of the nnrss group to 4, not work :(
> Maybe I've missed something?

I will reply to your next post.

> Any other way to set groups' level quickly? Using mark? I did it one by
> one, too boring.

Yes. You can mark(normal C-@) consecutive groups first, then `S L'. It
will change all marked groups to the new level you specified.

I also did not know this until one day i happened to give it a
try. Looks like docs string for `S L' needs a bit improving.

-- 
William

http://williamxu.net9.org

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: How to speed up the nnrss rechieving? Too slow!
  2008-02-29  7:52   ` anhnmncb
@ 2008-02-29  9:09     ` William Xu
       [not found]     ` <mailman.8073.1204276215.18990.info-gnus-english@gnu.org>
  2008-02-29 11:03     ` Bastien
  2 siblings, 0 replies; 23+ messages in thread
From: William Xu @ 2008-02-29  9:09 UTC (permalink / raw)
  To: info-gnus-english

anhnmncb <anhnmncb@gmail.com> writes:

> Bastien <bzg@altern.org> writes:
>
>> When I was reading RSS feeds with Gnus, I prefered to download them
>> asynchroneously:
>>
>> (setq nnrss-use-local t)
>> (nnrss-generate-download-script)
>>
>> If you want to speed up your Gnus, maybe you should consider this
>> solution.  Have a look at the docstrings of these functions.
> I have tried, set all nnrss group to level 4 and start gnus by emacs
> -eval '(gnus 3)'
> now every nnrss group starts with *, 
>        *: nnrss:Gentoo Linux News
>        *: nnrss:FreshPorts news
> it need me to go to every  group and type RET to see it, not friendly
> too much :(

I think just `M-: (gnus-group-get-new-news 4)' should check all groups
whose level is no more than 4.

-- 
William

http://williamxu.net9.org

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: How to speed up the nnrss rechieving? Too slow!
       [not found]     ` <mailman.8073.1204276215.18990.info-gnus-english@gnu.org>
@ 2008-02-29 10:19       ` anhnmncb
  0 siblings, 0 replies; 23+ messages in thread
From: anhnmncb @ 2008-02-29 10:19 UTC (permalink / raw)
  To: info-gnus-english

William Xu <william.xwl@gmail.com> writes:

> I think just `M-: (gnus-group-get-new-news 4)' should check all groups
> whose level is no more than 4.
Exactly what I want! Now I don't need to run gnus in another emacs
instant, you help me out a lot, thank you xwl :)

-- 
Regards,

  anhnmncb
 gpg key: 44A31344

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: How to speed up the nnrss rechieving? Too slow!
  2008-02-29  7:52   ` anhnmncb
  2008-02-29  9:09     ` William Xu
       [not found]     ` <mailman.8073.1204276215.18990.info-gnus-english@gnu.org>
@ 2008-02-29 11:03     ` Bastien
  2 siblings, 0 replies; 23+ messages in thread
From: Bastien @ 2008-02-29 11:03 UTC (permalink / raw)
  To: anhnmncb; +Cc: info-gnus-english

anhnmncb <anhnmncb@gmail.com> writes:

> I have tried, set all nnrss group to level 4 and start gnus by emacs
> -eval '(gnus 3)'
> now every nnrss group starts with *, 
>        *: nnrss:Gentoo Linux News
>        *: nnrss:FreshPorts news
> it need me to go to every  group and type RET to see it, not friendly
> too much :(

Maybe what you need here is "Gnus Topics":

,----[ (info "(gnus)Group Topics") ]
| If you read lots and lots of groups, it might be convenient to group
| them hierarchically according to topics.  You put your Emacs groups over
| here, your sex groups over there, and the rest (what, two groups or so?)
| you put in some misc section that you never bother with anyway.  You can
| even group the Emacs sex groups as a sub-topic to either the Emacs
| groups or the sex groups--or both!  Go wild!
`----

Since all your RSS feeds are already downloaded by the script, you can
just leave the RSS groups at their initial level (say, "3") and put them
in a folded topic.

-- 
Bastien

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: How to speed up the nnrss rechieving? Too slow!
  2008-02-28 15:07   ` Bastien
@ 2008-03-03  7:14     ` William Xu
  2008-03-03  8:16       ` Bastien
  2008-03-04 14:43       ` William Xu
       [not found]     ` <mailman.8203.1204528522.18990.info-gnus-english@gnu.org>
  1 sibling, 2 replies; 23+ messages in thread
From: William Xu @ 2008-03-03  7:14 UTC (permalink / raw)
  To: info-gnus-english

Bastien <bzg@altern.org> writes:

> Bastien <bzg@altern.org> writes:
>
>> (setq nnrss-use-local t)
>> (nnrss-generate-download-script)
>
> Just a precision: this is *not* a recipe.  
>
> `nnrss-generate-download-script' will generate a script that you should
> cron so that it fetches your RSS feeds.
>
> ,----[ (info "(gnus)RSS") ]
> | `nnrss-use-local'
> |      If you set `nnrss-use-local' to `t', `nnrss' will read the feeds
> |      from local files in `nnrss-directory'.  You can use the command
> |      `nnrss-generate-download-script' to generate a download script
> |      using `wget'.
> `----

So in .gnus, only (setq nnrss-use-local t) should be enough? (updating
rss feeds in nnrss-directory is not gnus' business, right? )

While, i find gnus will still try to contact the web host, as shown in
minibuffer: "Contacting host: ...  " (I have already restarted emacs)

Am I missing something? 

-- 
William

http://williamxu.net9.org

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: How to speed up the nnrss rechieving? Too slow!
       [not found]     ` <mailman.8203.1204528522.18990.info-gnus-english@gnu.org>
@ 2008-03-03  7:57       ` anhnmncb
  2008-03-03 15:15         ` William Xu
       [not found]         ` <mailman.8238.1204557624.18990.info-gnus-english@gnu.org>
  2008-03-10  5:05       ` RSS should use Group Timestamps jidanni
       [not found]       ` <mailman.8631.1205125567.18990.info-gnus-english@gnu.org>
  2 siblings, 2 replies; 23+ messages in thread
From: anhnmncb @ 2008-03-03  7:57 UTC (permalink / raw)
  To: info-gnus-english

William Xu <william.xwl@gmail.com> writes:

> So in .gnus, only (setq nnrss-use-local t) should be enough? (updating
> rss feeds in nnrss-directory is not gnus' business, right? )
>
> While, i find gnus will still try to contact the web host, as shown in
> minibuffer: "Contacting host: ...  " (I have already restarted emacs)
>
> Am I missing something? 
Yes, that's enough, the speed is up now, too much!

-- 
Regards,

  anhnmncb
 gpg key: 44A31344

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: How to speed up the nnrss rechieving? Too slow!
  2008-03-03  7:14     ` William Xu
@ 2008-03-03  8:16       ` Bastien
  2008-03-03  9:08         ` William Xu
  2008-03-04 14:43       ` William Xu
  1 sibling, 1 reply; 23+ messages in thread
From: Bastien @ 2008-03-03  8:16 UTC (permalink / raw)
  To: William Xu; +Cc: info-gnus-english

William Xu <william.xwl@gmail.com> writes:

>> ,----[ (info "(gnus)RSS") ]
>> | `nnrss-use-local'
>> |      If you set `nnrss-use-local' to `t', `nnrss' will read the feeds
>> |      from local files in `nnrss-directory'.  You can use the command
>> |      `nnrss-generate-download-script' to generate a download script
>> |      using `wget'.
>> `----
>
> So in .gnus, only (setq nnrss-use-local t) should be enough? (updating
> rss feeds in nnrss-directory is not gnus' business, right? )

Yes.

> While, i find gnus will still try to contact the web host, as shown in
> minibuffer: "Contacting host: ...  " (I have already restarted emacs)

Mh...  maybe some ghost group haunting your config?

-- 
Bastien

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: How to speed up the nnrss rechieving? Too slow!
  2008-03-03  8:16       ` Bastien
@ 2008-03-03  9:08         ` William Xu
  2008-03-03  9:32           ` Bastien
  0 siblings, 1 reply; 23+ messages in thread
From: William Xu @ 2008-03-03  9:08 UTC (permalink / raw)
  To: info-gnus-english

Bastien <bzg@altern.org> writes:

>> While, i find gnus will still try to contact the web host, as shown in
>> minibuffer: "Contacting host: ...  " (I have already restarted emacs)
>
> Mh...  maybe some ghost group haunting your config?

What kind of "ghost group"? 

-- 
William

http://williamxu.net9.org

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: How to speed up the nnrss rechieving? Too slow!
  2008-03-03  9:08         ` William Xu
@ 2008-03-03  9:32           ` Bastien
  2008-03-03  9:59             ` William Xu
  0 siblings, 1 reply; 23+ messages in thread
From: Bastien @ 2008-03-03  9:32 UTC (permalink / raw)
  To: William Xu; +Cc: info-gnus-english

William Xu <william.xwl@gmail.com> writes:

> Bastien <bzg@altern.org> writes:
>
>>> While, i find gnus will still try to contact the web host, as shown in
>>> minibuffer: "Contacting host: ...  " (I have already restarted emacs)
>>
>> Mh...  maybe some ghost group haunting your config?

After testing it looks like there is actually something wrong happening
here.  `nnrss-use-local' seems to be ignored somewhere it shouldn't.

-- 
Bastien

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: How to speed up the nnrss rechieving? Too slow!
  2008-03-03  9:32           ` Bastien
@ 2008-03-03  9:59             ` William Xu
  0 siblings, 0 replies; 23+ messages in thread
From: William Xu @ 2008-03-03  9:59 UTC (permalink / raw)
  To: info-gnus-english

Bastien <bzg@altern.org> writes:

> After testing it looks like there is actually something wrong happening
> here.  `nnrss-use-local' seems to be ignored somewhere it shouldn't.

Maybe, bug? 

-- 
William

http://williamxu.net9.org

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: How to speed up the nnrss rechieving? Too slow!
  2008-03-03  7:57       ` anhnmncb
@ 2008-03-03 15:15         ` William Xu
       [not found]         ` <mailman.8238.1204557624.18990.info-gnus-english@gnu.org>
  1 sibling, 0 replies; 23+ messages in thread
From: William Xu @ 2008-03-03 15:15 UTC (permalink / raw)
  To: info-gnus-english

anhnmncb <anhnmncb@sina.com> writes:

> Yes, that's enough, the speed is up now, too much!

Huh?! Bastien and I both failed.  How did you set it up? 

-- 
William

http://williamxu.net9.org

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: How to speed up the nnrss rechieving? Too slow!
       [not found]         ` <mailman.8238.1204557624.18990.info-gnus-english@gnu.org>
@ 2008-03-03 16:15           ` anhnmncb
  2008-03-04  2:35             ` William Xu
  0 siblings, 1 reply; 23+ messages in thread
From: anhnmncb @ 2008-03-03 16:15 UTC (permalink / raw)
  To: info-gnus-english

William Xu <william.xwl@gmail.com> writes:

> Huh?! Bastien and I both failed.  How did you set it up? 
Gnus still need to contact to nnrss servers, but instead the online
servers, it now just looks at the local files downloaded from that
script.
Mine is fine, don't know why yours isn't.
-- 
Regards,

  anhnmncb
 gpg key: 44A31344

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: How to speed up the nnrss rechieving? Too slow!
  2008-03-03 16:15           ` anhnmncb
@ 2008-03-04  2:35             ` William Xu
  0 siblings, 0 replies; 23+ messages in thread
From: William Xu @ 2008-03-04  2:35 UTC (permalink / raw)
  To: info-gnus-english

anhnmncb <anhnmncb@gmail.com> writes:

> William Xu <william.xwl@gmail.com> writes:
>
>> Huh?! Bastien and I both failed.  How did you set it up? 
> Gnus still need to contact to nnrss servers, but instead the online
> servers, it now just looks at the local files downloaded from that
> script.
> Mine is fine, don't know why yours isn't.

Hm, you(or we all) have a different Gnus version: Gnus/5.13 (Gnus
v5.13).

Mine is Gnus v5.11, Bastien's seems Gnus/5.110007 (No Gnus v0.7).

So many versions...  

-- 
William

http://williamxu.net9.org

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: How to speed up the nnrss rechieving? Too slow!
  2008-03-03  7:14     ` William Xu
  2008-03-03  8:16       ` Bastien
@ 2008-03-04 14:43       ` William Xu
  1 sibling, 0 replies; 23+ messages in thread
From: William Xu @ 2008-03-04 14:43 UTC (permalink / raw)
  To: info-gnus-english

William Xu <william.xwl@gmail.com> writes:

> So in .gnus, only (setq nnrss-use-local t) should be enough? (updating
> rss feeds in nnrss-directory is not gnus' business, right? )
>
> While, i find gnus will still try to contact the web host, as shown in
> minibuffer: "Contacting host: ...  " (I have already restarted emacs)
>
> Am I missing something? 

Got it.  nnrss requires user to download rss feeds into nnrss-directory
at least once.  If nnrss can't find corresponding xml feeds there, then
it will fall back to contact the host again.

Maybe it's good to add this note in the doc.  

-- 
William

http://williamxu.net9.org

^ permalink raw reply	[flat|nested] 23+ messages in thread

* RSS should use Group Timestamps
       [not found]     ` <mailman.8203.1204528522.18990.info-gnus-english@gnu.org>
  2008-03-03  7:57       ` anhnmncb
@ 2008-03-10  5:05       ` jidanni
       [not found]       ` <mailman.8631.1205125567.18990.info-gnus-english@gnu.org>
  2 siblings, 0 replies; 23+ messages in thread
From: jidanni @ 2008-03-10  5:05 UTC (permalink / raw)
  To: info-gnus-english

Before I start trying all the methods mentioned in the thread
"Re: How to speed up the nnrss rechieving? Too slow!",
I would just like to point out that maybe gnus could start using
the precise-down-to-one-second Group Timestamps,
 (info "(gnus)Group Timestamp") <- `C-x C-e' here,
to keep track of how often the user would like each RSS group checked
for new items.

E.g., Billy likes Nerdsgroup checked every 60*60*8.5 seconds, whilst
Teurdsgroup he sets for once every two days.
And he can do this all say in .gnus.el or some other file he can use an
editor on, and not some customize of group parameter special
interface.

If the time has not arrived to check again, the group is not updated,
with no need to tinker with whatever group levels jazz. Of course
hitting a C-u something with the cursor on top of a RSS group would
refresh it right now.

The gnus-group-line-format could have a new % escape, that could
display the value Billy set for each group.

So please somebody enhance nnrss.el or whatever to use Group Timestamp
capabilities real soon now.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: RSS should use Group Timestamps
       [not found]       ` <mailman.8631.1205125567.18990.info-gnus-english@gnu.org>
@ 2008-03-10 13:29         ` Ted Zlatanov
  0 siblings, 0 replies; 23+ messages in thread
From: Ted Zlatanov @ 2008-03-10 13:29 UTC (permalink / raw)
  To: info-gnus-english

On Mon, 10 Mar 2008 13:05:47 +0800 jidanni@jidanni.org wrote: 

j> Before I start trying all the methods mentioned in the thread
j> "Re: How to speed up the nnrss rechieving? Too slow!",
j> I would just like to point out that maybe gnus could start using
j> the precise-down-to-one-second Group Timestamps,
j>  (info "(gnus)Group Timestamp") <- `C-x C-e' here,
j> to keep track of how often the user would like each RSS group checked
j> for new items.

j> E.g., Billy likes Nerdsgroup checked every 60*60*8.5 seconds, whilst
j> Teurdsgroup he sets for once every two days.
j> And he can do this all say in .gnus.el or some other file he can use an
j> editor on, and not some customize of group parameter special
j> interface.

j> If the time has not arrived to check again, the group is not updated,
j> with no need to tinker with whatever group levels jazz. Of course
j> hitting a C-u something with the cursor on top of a RSS group would
j> refresh it right now.

j> The gnus-group-line-format could have a new % escape, that could
j> display the value Billy set for each group.

j> So please somebody enhance nnrss.el or whatever to use Group Timestamp
j> capabilities real soon now.

I think nnrss, like the rest of Gnus, should update when the user
requests it without special work.

If the functionality you describe is added, it should be optional.

Ted

^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2008-03-10 13:29 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-02-28 13:13 How to speed up the nnrss rechieving? Too slow! anhnmncb
2008-02-28 14:00 ` Bastien
2008-02-28 15:07   ` Bastien
2008-03-03  7:14     ` William Xu
2008-03-03  8:16       ` Bastien
2008-03-03  9:08         ` William Xu
2008-03-03  9:32           ` Bastien
2008-03-03  9:59             ` William Xu
2008-03-04 14:43       ` William Xu
     [not found]     ` <mailman.8203.1204528522.18990.info-gnus-english@gnu.org>
2008-03-03  7:57       ` anhnmncb
2008-03-03 15:15         ` William Xu
     [not found]         ` <mailman.8238.1204557624.18990.info-gnus-english@gnu.org>
2008-03-03 16:15           ` anhnmncb
2008-03-04  2:35             ` William Xu
2008-03-10  5:05       ` RSS should use Group Timestamps jidanni
     [not found]       ` <mailman.8631.1205125567.18990.info-gnus-english@gnu.org>
2008-03-10 13:29         ` Ted Zlatanov
     [not found]   ` <mailman.8039.1204211245.18990.info-gnus-english@gnu.org>
2008-02-29  0:16     ` How to speed up the nnrss rechieving? Too slow! anhnmncb
2008-02-29  2:47       ` William Xu
     [not found]       ` <mailman.8064.1204253412.18990.info-gnus-english@gnu.org>
2008-02-29  6:21         ` anhnmncb
2008-02-29  9:06           ` William Xu
     [not found] ` <mailman.8033.1204207257.18990.info-gnus-english@gnu.org>
2008-02-29  7:52   ` anhnmncb
2008-02-29  9:09     ` William Xu
     [not found]     ` <mailman.8073.1204276215.18990.info-gnus-english@gnu.org>
2008-02-29 10:19       ` anhnmncb
2008-02-29 11:03     ` Bastien

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).