From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Re: Sorting TODOs with time-up Date: Tue, 31 Mar 2009 16:44:05 +0200 Message-ID: <7C142AD0-C2AC-4C6E-A45A-E4BC5684C75F@gmail.com> References: <0FCA0437-9513-4C9F-BBFC-6B51A5E8E704@gmail.com> <87iqlqzpsu.fsf@arcor.de> <2A75F1B6-E167-4260-B6D1-D8166C9DFE9E@gmail.com> Mime-Version: 1.0 (Apple Message framework v930.3) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LofCI-00087b-0x for emacs-orgmode@gnu.org; Tue, 31 Mar 2009 10:44:14 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LofCD-00083q-DX for emacs-orgmode@gnu.org; Tue, 31 Mar 2009 10:44:13 -0400 Received: from [199.232.76.173] (port=55506 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LofCC-00083c-Td for emacs-orgmode@gnu.org; Tue, 31 Mar 2009 10:44:08 -0400 Received: from mail-ew0-f160.google.com ([209.85.219.160]:39165) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LofCC-0007Nc-ER for emacs-orgmode@gnu.org; Tue, 31 Mar 2009 10:44:08 -0400 Received: by ewy4 with SMTP id 4so2696437ewy.42 for ; Tue, 31 Mar 2009 07:44:07 -0700 (PDT) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: David Engster Cc: emacs-orgmode@gnu.org On Mar 31, 2009, at 1:53 PM, David Engster wrote: > Carsten Dominik writes: >> On Mar 30, 2009, at 11:03 PM, David Engster wrote: >>> While browsing through chapter 10, I got the impression that the >>> different views are just different filters, but that I'm always >>> dealing with the same agenda mode, where each entry carries the same >>> information. >> >> Actually, I think this is so, entries always do carry the same >> information in all these views. remember that, a Matt said, >> time-up is time-of-day only. > > Yes. What I wanted to say is that when it do "C-u C-x =" on an entry > in > the daily/weekly agenda, I see properties like > > date (4 1 2009) > day 733498 > dotime [Show] > extra "Scheduled: " > org-day-cnt 3 > time "12:00......" > time-of-day 1200 > > which are not existent or 'nil' in the TODO list (but can be parsed > through the org-hd-marker information). > > The reason I'm dealing with this, aside from sorting, is that I'd like > to extract date information from (custom) agenda views, so that I can > display them in other programs, e.g. in special Gnus groups. I don't > know yet if that really makes sense, but since I'm mostly living in > Gnus, it would probably have advantages for me. You might want to take a brute-force approach then, mapping over entries with `org-map-entries' and getting all the properties with (org-entry-properties), and then do any processing/sorting etc yourself. You might also want to take a look at org-collector.el, by Eric Schulte. Regards - Carsten