[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [sup-talk] ignore replies when calculating thread date
I meant your second interpretation: keep the same order, but not have
*my* sent messages enter into the date calculation. Maybe it would be
possible to create a "latest_received_message" and use that in the sort
key.
Maybe this will get me to learn a little Ruby...
> Excerpts from Steven Schmeiser's message of 2013-07-01 21:47:36 +0200:
> > Is there an option to ignore replies when calculating the date of a
> > thread? I would like it if replying to a thread did not bump it to
> > the top of the index.
>
> Basically, you would like to change the sorting order from
> date-of-last-message to date-of-first-message ?
>
> There is nothing currently implemented for this, at least that I know
> of. If you're aventurous enough, you can have some option modify the
> ThreadSet#sort_key method. Here's the current content:
>
> ```
> def sort_key
> m = latest_message
> m ? [-m.date.to_i, m.id] : [-Time.now.to_i, ""]
> end
> ```
>
> Pretty straightforward, you'd have to fetch first_message and keep the
> same logic.
>
> However, if you only want to keep the same order independently from
> _your_ replies, I don't know how you would do it.
>
_______________________________________________
sup-talk mailing list
sup-talk@rubyforge.org
http://rubyforge.org/mailman/listinfo/sup-talk