Re: [O] Date-centric Clocktable

2011-10-21 Thread Bastien
Hi Rasmus, Rasmus ras...@gmx.us writes: Is is possible to have a clocktabke with times in the left-most column? The people I am doing some work for now prefer it that way for unknown reasons. This is an example | date | Headline| total |

Re: [O] Date-centric Clocktable

2011-09-08 Thread A. Ryan Reynolds
On Sep 7, 2011, at 5:53 PM, Rasmus wrote: In my experience this is the kind of table most working class heroes will need to hand in. At my last job this was the sort of table I needed to produce, too. -- A. Ryan Reynolds

Re: [O] Date-centric Clocktable

2011-09-07 Thread Rasmus
Hi Carsten, This is an example | date | Headline| total | |+-+---| | [2011-08-19 Fri 00:28]--[2011-08-19 Fri 00:51] | Writing mails | 0:23 | | [2011-06-22 Wed

Re: [O] Date-centric Clocktable

2011-09-07 Thread Rasmus
Hi Bernt, As Carsten mentioned, the agenda view with logging enabled (and appropriate tag filters) may get you closer to what you are looking for. I use a combination of that and C-u R in the daily / weekly agenda to get a summary of clock detail lines. I am impressed with the possibilities

Re: [O] Date-centric Clocktable

2011-09-07 Thread Carsten Dominik
On Sep 7, 2011, at 10:07 AM, Rasmus wrote: Hi Carsten, This is an example | date | Headline| total | |+-+---| | [2011-08-19 Fri 00:28]--[2011-08-19 Fri 00:51] |

Re: [O] Date-centric Clocktable

2011-09-07 Thread Olaf Dietsche
Rasmus ras...@gmx.us writes: Is is possible to have a clocktabke with times in the left-most column? The people I am doing some work for now prefer it that way for unknown reasons. This is an example | date | Headline| total |

Re: [O] Date-centric Clocktable

2011-09-07 Thread Rasmus
Hi Olaf, Why don't you just use a simple (perl/python/...) script to collect your data? Here's a quick hack in perl: That was my plan if I was not able to do from within Org. To me it would be a lot faster than hacking something together in emacs-lisp, unfortunately. Thanks for the link to

Re: [O] Date-centric Clocktable

2011-09-07 Thread Olaf Dietsche
Rasmus ras...@gmx.us writes: Why don't you just use a simple (perl/python/...) script to collect your data? Here's a quick hack in perl: That was my plan if I was not able to do from within Org. To me it would be a lot faster than hacking something together in emacs-lisp, unfortunately.

Re: [O] Date-centric Clocktable

2011-09-07 Thread Carsten Dominik
On Sep 7, 2011, at 12:16 PM, Olaf Dietsche wrote: Rasmus ras...@gmx.us writes: Why don't you just use a simple (perl/python/...) script to collect your data? Here's a quick hack in perl: That was my plan if I was not able to do from within Org. To me it would be a lot faster than

Re: [O] Date-centric Clocktable

2011-09-07 Thread Rasmus
Olaf Dietsche olaf+list.orgm...@olafdietsche.de writes: If you insist on elisp, maybe something along these (untested) lines might work: It just nicer to do text stuff from within Emacs but my personal Lisp skill are surpassed by my Python skills. That is not to say that any of the skill sets

Re: [O] Date-centric Clocktable

2011-09-07 Thread Olaf Dietsche
Rasmus ras...@gmx.us writes: Olaf Dietsche olaf+list.orgm...@olafdietsche.de writes: If you insist on elisp, maybe something along these (untested) lines might work: It just nicer to do text stuff from within Emacs but my personal Lisp skill are surpassed by my Python skills. That is not

Re: [O] Date-centric Clocktable

2011-09-07 Thread Olaf Dietsche
Olaf Dietsche olaf+list.orgm...@olafdietsche.de writes: Rasmus ras...@gmx.us writes: That was my plan if I was not able to do from within Org. To me it would be a lot faster than hacking something together in emacs-lisp, unfortunately. If you insist on elisp, maybe something along these

Re: [O] Date-centric Clocktable

2011-09-07 Thread Olaf Dietsche
Carsten Dominik carsten.domi...@gmail.com writes: On Sep 7, 2011, at 12:16 PM, Olaf Dietsche wrote: Rasmus ras...@gmx.us writes: Why don't you just use a simple (perl/python/...) script to collect your data? Here's a quick hack in perl: That was my plan if I was not able to do from

Re: [O] Date-centric Clocktable

2011-09-07 Thread Rasmus
Olaf Dietsche olaf+list.orgm...@olafdietsche.de writes: ---8--- cut here --- [snip] --- cut here ---8--- this is great! Thank you :-) It is. I don't know, wether adding small special purpose functions adds real value, since we already have org-map-entries. Maybe adding generic

Re: [O] Date-centric Clocktable

2011-09-07 Thread Rasmus
---8--- cut here --- (defun collect-clock-lines () (let ((re (concat ^[ \t]* org-clock-string [ \t]+\\(.+?\\)[ \t]+=[ \t]+\\(.+\\))) (headline (nth 4 (org-heading-components))) clocks) (org-narrow-to-subtree) (while (re-search-forward re nil t) (setq clocks

Re: [O] Date-centric Clocktable

2011-09-06 Thread Bernt Hansen
Rasmus ras...@gmx.us writes: Hi, Is is possible to have a clocktabke with times in the left-most column? The people I am doing some work for now prefer it that way for unknown reasons. This is an example | date | Headline| total |

Re: [O] Date-centric Clocktable

2011-09-06 Thread Rasmus
Bernt Hansen be...@norang.ca writes: Rasmus ras...@gmx.us writes: Hi, Is is possible to have a clocktabke with times in the left-most column? The people I am doing some work for now prefer it that way for unknown reasons. This is an example | date

Re: [O] Date-centric Clocktable

2011-09-06 Thread Carsten Dominik
On 6.9.2011, at 23:36, Rasmus wrote: Bernt Hansen be...@norang.ca writes: Rasmus ras...@gmx.us writes: Hi, Is is possible to have a clocktabke with times in the left-most column? The people I am doing some work for now prefer it that way for unknown reasons. This is an example

Re: [O] Date-centric Clocktable

2011-09-06 Thread Bernt Hansen
Rasmus ras...@gmx.us writes: Bernt Hansen be...@norang.ca writes: Rasmus ras...@gmx.us writes: Hi, Is is possible to have a clocktabke with times in the left-most column? The people I am doing some work for now prefer it that way for unknown reasons. This is an example | date

[O] Date-centric Clocktable

2011-08-31 Thread Rasmus
Hi, Is is possible to have a clocktabke with times in the left-most column? The people I am doing some work for now prefer it that way for unknown reasons. This is an example | date | Headline| total |