From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/76204 Path: news.gmane.org!not-for-mail From: Robert Pluim Newsgroups: gmane.emacs.gnus.general Subject: Re: Date header rewrite Date: Tue, 01 Feb 2011 11:08:48 +0100 Organization: not if I can help it Message-ID: References: <87pqrdltsq.fsf@gnus.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1296554956 7568 80.91.229.12 (1 Feb 2011 10:09:16 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 1 Feb 2011 10:09:16 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M24556@lists.math.uh.edu Tue Feb 01 11:09:12 2011 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PkDAd-0000Rs-Tt for ding-account@gmane.org; Tue, 01 Feb 2011 11:09:12 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1PkDAc-0005tM-TI; Tue, 01 Feb 2011 04:09:10 -0600 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1PkDAb-0005tC-Ta for ding@lists.math.uh.edu; Tue, 01 Feb 2011 04:09:09 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.72) (envelope-from ) id 1PkDAZ-0005q2-8Y for ding@lists.math.uh.edu; Tue, 01 Feb 2011 04:09:09 -0600 Original-Received: from lo.gmane.org ([80.91.229.12]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1PkDAY-0001Jt-HU for ding@gnus.org; Tue, 01 Feb 2011 11:09:06 +0100 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1PkDAY-0000Pz-Ek for ding@gnus.org; Tue, 01 Feb 2011 11:09:06 +0100 Original-Received: from lns-bzn-49f-81-56-191-143.adsl.proxad.net ([81.56.191.143]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 01 Feb 2011 11:09:06 +0100 Original-Received: from rpluim by lns-bzn-49f-81-56-191-143.adsl.proxad.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 01 Feb 2011 11:09:06 +0100 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: ding@gnus.org Original-Lines: 56 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: lns-bzn-49f-81-56-191-143.adsl.proxad.net Mail-Copies-To: never User-Agent: Gnus/5.110011 (No Gnus v0.11) XEmacs/21.5-b29 (cygwin32) Cancel-Lock: sha1:ycPztL3YgUGqNdU6OoUY2tFkx+o= X-Spam-Score: -1.0 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:76204 Archived-At: Francis Moreau writes: > Robert Pluim writes: > >> Francis Moreau writes: >> >>> Lars Ingebrigtsen writes: >>> >>>> As I hinted earlier, I've now totally rewritten the way date headers are >>>> customised. You can now have as many Date headers as you like. >>>> >>>> I've removed a slew of date customisation variables, but it should still >>>> respect the legacy variables. (Sort of.) >>> >>> With latest git as of this writing (head is at >>> dd811978420ac00e1e71c00b9291aa667950afbf) >>> >>> >>> This doing this doesn't work: >>> >>> (setq gnus-article-date-headers 'combined-elapsed) >>> (setq gnus-article-update-date-headers nil) >>> >>> => article-make-date-line: Unknown conversion type: combined-elapsed >> >> It's 'combined-lapsed' (no e) >> > > That's not what I'm seeing in the doc and changing it still fails: > > => article-make-date-line: Unknown conversion type: combine-lapsed You've dropped the 'd' this time :) Looks like the info docs are wrong. Doc in the code say: `gnus-article-date-headers' is a variable declared in Lisp. -- loaded from "gnus-art" Value: (local lapsed) Documentation: A list of Date header formats to display. Valid formats are `ut' (universal time), `local' (local time zone), `english' (readable English), `lapsed' (elapsed time), `combined-lapsed' (both the original date and the elapsed time), `original' (the original date header), `iso8601' (ISO8601 format), and `user-defined' (a user-defined format defined by the `gnus-article-time-format' variable). You have as many date headers as you want in the article buffer. Some of these headers are updated automatically. See `gnus-article-update-date-headers' for details. Robert