all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Eric Abrahamsen <eric@ericabrahamsen.net>
To: help-gnu-emacs@gnu.org
Subject: Re: Sorting with threads in Gnus
Date: Fri, 26 Jul 2013 17:01:48 +0800	[thread overview]
Message-ID: <87d2q5lmo3.fsf@ericabrahamsen.net> (raw)
In-Reply-To: 87iozxq3ca.fsf@thinkpad.tsdh.org

Tassilo Horn <tsdh@gnu.org> writes:

> Eric Abrahamsen <eric@ericabrahamsen.net> writes:
>
> Hi Eric,
>
>>> However, as soon as I add `gnus-thread-sort-by-total-score' and
>>> `gnus-thread-sort-by-most-recent-date' to
>>> `gnus-thread-sort-functions', the sorting inside threads goes wonky
>>> as well...
>>
>> I doubt I'll be able to help -- I don't use scoring, and most of my gnus
>> configurations seem to involve some degree of magical thinking.
>>
>> Just for clarity, your desired setup, that goes "wonky", would look like
>> this:
>>
>> (setq gnus-thread-sort-functions
>>       '(gnus-thread-sort-by-total-score
>>         gnus-thread-sort-by-most-recent-date)
>>       gnus-sort-gathered-threads-function
>>       'gnus-thread-sort-by-date)
>>
>> Is that right?
>
> Not quite.  I think that would be my perfect setup:
>
> (setq gnus-thread-sort-functions
>       '(gnus-thread-sort-by-number
>         gnus-thread-sort-by-date
> 	gnus-thread-sort-by-most-recent-date
>         gnus-thread-sort-by-total-score)
>       gnus-sort-gathered-threads-function 'gnus-thread-sort-by-date)
>
>> So it's the 'gnus-thread-sort-by-date effect inside the threads
>> themselves that's going wrong? Wonky how?
>
> I don't really see its effect.  With
> `gnus-sort-gathered-threads-function' set to the default value
> `gnus-thread-sort-by-number' I get the same sorting order.
>
> The problem is that Gnus seems to sort threads and also subthreads with
> `gnus-thread-sort-functions'.  So in my case, high-score subthreads will
> come before low-score subthreads, and when the score is equal,
> subthreads with more recent articles will come before subthreads with
> older recent articles.  But inside threads, I want sorting to be
> strictly chronological from old to new.
>
> For example, below Y should be before the subthread X, because it's
> older.
>
> O ┃  ┃Juanma Barranquero     ┃ ╭●  frame size&position woes <Jul 21 2013 14:56>
> O ┃  ┃martin rudalics        ┃ ├──❯   <Jul 21 2013 16:03>               ;; X
> O ┃  ┃Juanma Barranquero     ┃ │╰──❯   <Jul 21 2013 17:42>
> O ┃  ┃martin rudalics        ┃ │ ├──❯   <Jul 22 2013 10:22>
> O ┃  ┃Juanma Barranquero     ┃ │ │╰──❯   <Jul 22 2013 11:40>
> O ┃  ┃Eli Zaretskii          ┃ │ │ ╰──❯   <Jul 22 2013 17:52>
> O ┃  ┃Juanma Barranquero     ┃ │ │  ╰──❯   <Jul 22 2013 22:36>
> O ┃  ┃Eli Zaretskii          ┃ │ │   ╰──❯   <Jul 23 2013 04:45>
> O ┃  ┃Juanma Barranquero     ┃ │ │    ╰──❯   <Jul 24 2013 01:47>
> O ┃  ┃Eli Zaretskii          ┃ │ │     ╰──❯   <Jul 24 2013 05:55>
> O ┃  ┃Juanma Barranquero     ┃ │ │      ╰──❯   <Jul 24 2013 12:42>
> O ┃  ┃Eli Zaretskii          ┃ │ │       ╰──❯   <Jul 24 2013 16:37>
> O ┃  ┃Juanma Barranquero     ┃ │ │        ╰──❯   <Jul 24 2013 16:51>
> O ┃  ┃Eli Zaretskii          ┃ │ │         ╰──❯   <Jul 24 2013 18:55>
> O ┃  ┃Juanma Barranquero     ┃ │ │          ╰──❯   <Jul 24 2013 19:01>
> O ┃  ┃Eli Zaretskii          ┃ │ │           ╰──❯   <Jul 24 2013 19:41>
> O ┃  ┃Juanma Barranquero     ┃ │ │            ╰──❯   <Jul 24 2013 19:49>
> O ┃  ┃Juanma Barranquero     ┃ │ ╰──❯   <Jul 21 2013 17:58>
> O ┃  ┃Juanma Barranquero     ┃ ╰──❯   <Jul 21 2013 14:58>               ;; Y
>
> I hoped that `gnus-thread-sort-functions' was applied only to thread
> roots, and `gnus-sort-gathered-threads-function' to subthreads, but that
> doesn't seem to be tha case.

Huh, interesting -- I hadn't realized subthreads were sorted as well,
but they are: gnus-sort-threads calls the appropriately-named
gnus-sort-threads-recursive.

That's hard-coded, and there's nothing to distinguish a top-level thread
from a subthread. But I'll bet with a little care, it would be possible
to make a gnus-sort-threads-recursively-p option, which would have
gnus-sort-threads break to gnus-sort-articles after the first round of
sorting... Maybe.

Eric




  reply	other threads:[~2013-07-26  9:01 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-23  8:49 Sorting with threads in Gnus N. Raghavendra
2013-07-24  6:21 ` Eric Abrahamsen
2013-07-24  8:17   ` N. Raghavendra
2013-07-24 13:15   ` Tassilo Horn
2013-07-26  4:37     ` Eric Abrahamsen
2013-07-26  5:48       ` Tassilo Horn
2013-07-26  9:01         ` Eric Abrahamsen [this message]
2013-07-26 13:06           ` Tassilo Horn
2013-07-26 13:26             ` Tassilo Horn
2013-07-26 13:43               ` Tassilo Horn
2013-07-26 15:26                 ` Eric Abrahamsen
2013-07-26 16:56                   ` Tassilo Horn
2013-07-27  7:08                     ` Eric Abrahamsen
2013-07-26 17:40                 ` N. Raghavendra
2013-07-27  8:56                   ` Tassilo Horn
2013-07-27  9:19                     ` N. Raghavendra
2013-07-29  6:53                       ` Tassilo Horn
2013-07-29  7:42                         ` N. Raghavendra
2013-07-28  7:09                     ` N. Raghavendra
2013-07-28  8:03                       ` Michael Heerdegen
2013-07-28  9:50                         ` N. Raghavendra
2013-07-28 12:45                           ` Michael Heerdegen
2013-07-28 16:17                             ` N. Raghavendra
2013-07-30  7:05                               ` Tassilo Horn
2013-07-30  7:24                                 ` Eric Abrahamsen
2013-07-30  8:01                                   ` Tassilo Horn
2013-07-30 10:53                                     ` Eric Abrahamsen
2013-07-29  5:16                             ` N. Raghavendra
2013-07-30  8:07                       ` Tassilo Horn
2013-07-30 11:00                         ` N. Raghavendra
2013-07-30 12:33                           ` Tassilo Horn

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87d2q5lmo3.fsf@ericabrahamsen.net \
    --to=eric@ericabrahamsen.net \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.