From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/61344 Path: news.gmane.org!not-for-mail From: Reiner Steib Newsgroups: gmane.emacs.gnus.general Subject: Re: Group parameters and `(not gnus-article-sort-by-date)' Date: Wed, 09 Nov 2005 18:17:59 +0100 Organization: Dept. of Theoretical Physics, University of Ulm Message-ID: References: <20051029073128.PUFY9722.fep32-app.kolumbus.fi@cante.net> <87ek5zkbtj.fsf@uwo.ca> <45943.80.217.219.208.1130921646.squirrel@yxa.extundo.com> <87u0enjg7e.fsf@pacem.orebokech.com> <87ek5r6ka4.fsf@pacem.orebokech.com> <87u0emxrp6.fsf@pacem.orebokech.com> Reply-To: Reiner Steib NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1131558794 30935 80.91.229.2 (9 Nov 2005 17:53:14 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 9 Nov 2005 17:53:14 +0000 (UTC) Original-X-From: ding-owner+m9876@lists.math.uh.edu Wed Nov 09 18:53:03 2005 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EZtyf-0006he-QS for ding-account@gmane.org; Wed, 09 Nov 2005 18:43:18 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1EZtyS-0001d7-00; Wed, 09 Nov 2005 11:43:04 -0600 Original-Received: from nas02.math.uh.edu ([129.7.128.40]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1EZtvC-0001d2-00 for ding@lists.math.uh.edu; Wed, 09 Nov 2005 11:39:42 -0600 Original-Received: from quimby.gnus.org ([80.91.224.244]) by nas02.math.uh.edu with esmtp (Exim 4.52) id 1EZtv2-00024k-Qm for ding@lists.math.uh.edu; Wed, 09 Nov 2005 11:39:42 -0600 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1EZtv1-0005Dv-00 for ; Wed, 09 Nov 2005 18:39:31 +0100 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1EZtk0-000812-4m for ding@gnus.org; Wed, 09 Nov 2005 18:28:08 +0100 Original-Received: from bridgekeeper.physik.uni-ulm.de ([134.60.10.123]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 09 Nov 2005 18:28:08 +0100 Original-Received: from Reiner.Steib by bridgekeeper.physik.uni-ulm.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 09 Nov 2005 18:28:08 +0100 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: ding@gnus.org Original-To: ding@gnus.org Original-Lines: 60 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: bridgekeeper.physik.uni-ulm.de X-Face: mtjf/D:es1T0wHO:&CJ'ZXe"l;3C--rw\z!{`eFwL){|]RpI+4{u25L=5C /0>KuGeTsk<~<&NE-AKV1560e!+RJeyWmSskkrJm?[vUV#66{T_m|Ae<||Ku#Mk5`y&O`n~z2;n8eP J5#2h@2eQgV@E70IY_0WlEx!"&giy{+\%h1LJox$zv@/l%ZmU4^tZA>xQpnkUBVC5.jpg#0'(+2?Rs )NAr:>3<=WxHE$ktbLysDIM5TbmHu*3 On Wed, Nov 09 2005, Simon Josefsson wrote: [ `gnus-article-sort-by-date-reverse' ] > I removed it. Thanks. It's also mentioned in the patch to gnus.texi: ,---- | @lisp | (require 'cl) | (defun my-gnus-summary-mode-hook-group-select () | (flet ((lsetq (x val) ;; Local setq | (set (make-local-variable x) val))) | (cond | ;; In Group buffer to make Debian daily news group press: G m | ;; and point it to nntp server news.gmane.org and | ;; group gmane.linux.debian.user.news | ((string-match "nntp.*debian.user.news" gnus-newsgroup-name) | (lsetq 'gnus-show-threads nil) | (lsetq 'gnus-article-sort-functions 'gnus-article-sort-by-date-reverse) | (lsetq 'gnus-use-adaptive-scoring nil) | (lsetq 'gnus-use-scoring nil)) | ;; In Group buffer to read Debian weekly news RSS feed press: G R | ;; and point it to url: | ;; http://packages.debian.org/unstable/newpkg_main.en.rdf | ((string-match "nnrss.*debian" gnus-newsgroup-name) | (lsetq 'gnus-show-threads nil) | (lsetq 'gnus-article-sort-functions 'gnus-article-sort-by-subject) | (lsetq 'gnus-use-adaptive-scoring nil) | (lsetq 'gnus-use-scoring t) | (lsetq 'gnus-score-find-score-files-function 'gnus-score-find-single) | (lsetq 'gnus-summary-line-format "%U%R%z%d %I%(%[ %s %]%)\n"))))) | (defun my-gnus-summary-mode-hook () | (my-gnus-summary-mode-hook-group-select)) | @end lisp `---- If I understand this code correctly, it could be replaced by an example in (info "(gnus)Group Parameters"): ("nntp.*debian.user.news" (gnus-show-threads nil) (gnus-article-sort-functions '((not gnus-article-sort-by-date))) (gnus-use-adaptive-scoring nil) (gnus-use-scoring nil)) ("nnrss.*debian" (gnus-show-threads nil) (gnus-article-sort-functions 'gnus-article-sort-by-subject) (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") Bye, Reiner. -- ,,, (o o) ---ooO-(_)-Ooo--- | PGP key available | http://rsteib.home.pages.de/