Re: [Orgmode] Feature Request: property for the time part of a timestamp.

2008-07-27 Thread Jose Robins
Hi Carsten, Thank you so much. Here is a dumb question. What is the return value datatype and the value for the function? Right now I'm running edebug to trace what is going on there to figure this out Thanks, Jose Carsten Dominik wrote: If you get the latest git version, take a look

Re: [Orgmode] Feature Request: property for the time part of a timestamp.

2008-07-27 Thread Carsten Dominik
Hi Robin, the function must return the string that you'd like to have inserted as the value in the column. For example, to get the time, use something like (untested) (defun my-org-column-cleaner (title value) (cond ((equal title TIME) (if (and value (= (length value) 20))

Re: [Orgmode] Feature Request: property for the time part of a timestamp.

2008-07-27 Thread Jose Robins
Hi Carsten, Works beautifully! Thanks Jose Carsten Dominik wrote: Hi Robin, the function must return the string that you'd like to have inserted as the value in the column. For example, to get the time, use something like (untested) (defun my-org-column-cleaner (title value) (cond

Re: [Orgmode] Feature Request: property for the time part of a timestamp.

2008-07-25 Thread Jose Robins
Carsten Dominik wrote: Hi Robin, On Jul 23, 2008, at 9:57 AM, Jose Robins wrote: I've been extensively using column mode in the agenda buffer to plan my day/week. I have columns set up for scheduled and deadline. However, I was wondering if it'd be possible to expose just the time part of

Re: [Orgmode] Feature Request: property for the time part of a timestamp.

2008-07-25 Thread Carsten Dominik
Unfortunately, you need for me to create a hook for this, which will not happen before September :-( - Carsten On Jul 25, 2008, at 5:33 AM, Jose Robins wrote: Carsten Dominik wrote: Hi Robin, On Jul 23, 2008, at 9:57 AM, Jose Robins wrote: I've been extensively using column mode in

Re: [Orgmode] Feature Request: property for the time part of a timestamp.

2008-07-25 Thread Carsten Dominik
If you get the latest git version, take a look at the variable `org-columns-modify-value-for-display-function'. HTH - Carsten On Jul 25, 2008, at 5:33 AM, Jose Robins wrote: Carsten Dominik wrote: Hi Robin, On Jul 23, 2008, at 9:57 AM, Jose Robins wrote: I've been extensively using

[Orgmode] Feature Request: property for the time part of a timestamp.

2008-07-23 Thread Jose Robins
I've been extensively using column mode in the agenda buffer to plan my day/week. I have columns set up for scheduled and deadline. However, I was wondering if it'd be possible to expose just the time part of the scheduled timestamp as a property so that I could have a column for the time part

Re: [Orgmode] Feature Request: property for the time part of a timestamp.

2008-07-23 Thread Carsten Dominik
Hi Robin, On Jul 23, 2008, at 9:57 AM, Jose Robins wrote: I've been extensively using column mode in the agenda buffer to plan my day/week. I have columns set up for scheduled and deadline. However, I was wondering if it'd be possible to expose just the time part of the scheduled