From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/16840 Path: news.gmane.org!not-for-mail From: Damien Wyart Newsgroups: gmane.emacs.gnus.user Subject: Re: Group Specific Sorting and Threading Date: Tue, 22 Apr 2014 08:37:26 +0200 Organization: Serveur de News Free Message-ID: <53560e26$0$2056$426a34cc@news.free.fr> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1398148811 30789 80.91.229.3 (22 Apr 2014 06:40:11 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 22 Apr 2014 06:40:11 +0000 (UTC) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Tue Apr 22 08:40:07 2014 Return-path: Envelope-to: gegu-info-gnus-english@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1WcUNC-0004gb-JL for gegu-info-gnus-english@m.gmane.org; Tue, 22 Apr 2014 08:40:06 +0200 Original-Received: from localhost ([::1]:52989 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WcUNC-0005KJ-1w for gegu-info-gnus-english@m.gmane.org; Tue, 22 Apr 2014 02:40:06 -0400 Original-Path: usenet.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!proxad.net!feeder1-2.proxad.net!212.27.60.64.MISMATCH!cleanfeed3-b.proxad.net!nnrp1-2.free.fr!not-for-mail Original-Newsgroups: gnu.emacs.gnus User-Agent: Gnus/5.13001 (Ma Gnus v0.10) Emacs/24.4.50 Original-Lines: 31 Original-NNTP-Posting-Date: 22 Apr 2014 08:37:26 CEST Original-NNTP-Posting-Host: 213.41.244.197 Original-X-Trace: 1398148646 news-4.free.fr 2056 213.41.244.197:60955 Original-X-Complaints-To: abuse@proxad.net Original-Xref: usenet.stanford.edu gnu.emacs.gnus:87969 X-BeenThere: info-gnus-english@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Announcements and discussions for GNUS, the GNU Emacs Usenet newsreader \(in English\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Original-Sender: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.gnus.user:16840 Archived-At: * Les Harris in gnu.emacs.gnus: > Is it possible to have different sorting and threading functions on > a per group basis? > I have a group using the nnrss backend and the feed comes with posts > newest first and threaded. For this group, I would like posts to be > sorted oldest first and have no threading. You can find something close to this in this file (http://people.irisa.fr/Nicolas.Berthier/file:.gnus.el): ,---- | ;; RSS in summary buffer: | (add-hook | 'gnus-summary-mode-hook | (lambda () | (when (string-match "^nnrss:.*" gnus-newsgroup-name) | (make-local-variable 'gnus-show-threads) | (make-local-variable 'gnus-use-adaptive-scoring) | (make-local-variable 'gnus-use-scoring) | (make-local-variable 'gnus-score-find-score-files-function) | (make-local-variable 'gnus-summary-line-format) | (setq gnus-show-threads nil | gnus-use-adaptive-scoring nil | gnus-use-scoring t | gnus-score-find-score-files-function 'gnus-score-find-single | gnus-summary-line-format "%U%R%z%d %I%(%[ %s %]%)\n")))) `---- -- DW