From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/3493 Path: news.gmane.org!not-for-mail From: Glyn Millington Newsgroups: gmane.emacs.gnus.user Subject: Re: nice summary-format Date: Tue, 10 Feb 2004 16:46:14 +0000 Organization: Christ Church Chelmsford U.K. Message-ID: <87r7x23msp.fsf@millingtons.org> References: <87smhjj8hi.fsf@rechner1.ddorf.de> Reply-To: glyn@millingtons.org NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1138669593 19197 80.91.229.2 (31 Jan 2006 01:06:33 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 Jan 2006 01:06:33 +0000 (UTC) Original-X-From: nobody Tue Jan 17 17:32:18 2006 Original-Path: quimby.gnus.org!newsfeed.gazeta.pl!fu-berlin.de!uni-berlin.de!modem-830.arcanine.dialup.pol.co.UK!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-NNTP-Posting-Host: modem-830.arcanine.dialup.pol.co.uk (217.135.24.62) Original-X-Trace: news.uni-berlin.de 1076431445 39165476 I 217.135.24.62 ([213515]) X-Orig-Path: glynthebearded.millingtons.org!news X-Liturgical-Date: Memorial: Saint Scholastica, virgin, A.D. 2004 User-Agent: Gnus/5.110002 (No Gnus v0.2) XEmacs/21.4 (Security Through Obscurity, linux) Cancel-Lock: sha1:82ZpOoRvUGbgarE7ClDuxvMNOs0= Original-Xref: bridgekeeper.physik.uni-ulm.de gnus-emacs-gnus:3634 Original-Lines: 100 X-Gnus-Article-Number: 3634 Tue Jan 17 17:32:18 2006 Xref: news.gmane.org gmane.emacs.gnus.user:3493 Archived-At: Fabian Braennstroem writes: > Did anybody got the example from > http://www.emacswiki.org/cgi-bin/wiki/GnusFormatting > to work? Or maybe anybody has a similar example using trees? Hi Fabian, Have a look at this, and don;t omit the footnote http://my.gnus.org/node/view/121 My own version is as follows 8<------8<------8<------8<------8<------8<------8<------8<------8<------ (setq ;;; ;; All of this is for Oort Gnus and higher: ;;; ; gnus-summary-line-format "%U%R%z%(%[%4L: %-20,20n%]%B %s%)\n" gnus-summary-same-subject "" gnus-sum-thread-tree-root " >" gnus-sum-thread-tree-single-indent " " gnus-sum-thread-tree-vertical "|" gnus-sum-thread-tree-indent " " gnus-sum-thread-tree-leaf-with-other "+-> " gnus-sum-thread-tree-single-leaf "`-> " gnus-auto-select-next 'almost-quietly gnus-auto-center-summary nil gnus-summary-goto-unread nil gnus-auto-select-first 'best gnus-asynchronous t gnus-signature-limit 10.0) ; kill the monster sigs! ;; thread faces!!!!! (copy-face 'default 'mysubject) (setq gnus-face-1 'mysubject) (copy-face 'default 'mytime) (set-face-foreground 'mytime "cornflowerblue") (setq gnus-face-2 'mytime) (copy-face 'default 'mythreads) (set-face-foreground 'mythreads "turquoise") (setq gnus-face-3 'mythreads) (copy-face 'default 'mygrey) (set-face-foreground 'mygrey "blue") (setq gnus-face-4 'mygrey) (copy-face 'default 'myblack) (set-face-foreground 'myblack "gold") (setq gnus-face-5 'myblack) (copy-face 'default 'mybiggernumbers) (set-face-foreground 'mybiggernumbers "seagreen") (setq gnus-face-6 'mybiggernumbers) (setq gnus-summary-line-format (concat "%*%5{%U%R%z%}" "%4{|%}" "%2{%-10&user-date;%}" "%4{|%}" "%4{|%}" "%2{ %}%(%-24,24n" "%4{|%}" "%2{%5i%}" "%4{|%}" "%2{%6k %}%)" "%4{|%}" "%2{ %}%3{%B%}%1{%s%}\n")) ;; Threading options (setq gnus-fetch-old-headers 'some gnus-build-sparse-threads 'some gnus-summary-gather-subject-limit 'fuzzy gnus-summary-thread-gathering-function 'gnus-gather-threads-by-references ; gnus-summary-make-false-root 'dummy gnus-summary-make-false-root-always nil gnus-thread-ignore-subject t gnus-thread-sort-functions '(gnus-thread-sort-by-number gnus-thread-sort-by-date ; Dates matter... gnus-thread-sort-by-total-score) ; .. and scores matter more gnus-thread-hide-killed t) 8<------8<------8<------8<------8<------8<------8<------8<------8<------ I do it that way becaue I can't get the Unicode stuff to work on Xemacs, though with Gnu Emacs it works nicely. Good luck Glyn