Re: [Orgmode] Re: Project management Dynamic block per tag + [Babel]

2011-01-28 Thread Matt Lundin
Hi Francesco, Sorry for the delay in responding... Francesco Pizzolante f...@missioncriticalit.com writes: It seems to work at first sight, but when I try C-c C-v e on this line #+call: tasklist(person=me) :exports results then the end of my buffer gets modified this way: #+call:

Re: [Orgmode] Re: Project management Dynamic block per tag + [Babel]

2011-01-19 Thread Juan Reyero
On Thu, Dec 16, 2010 at 1:19 PM, Francesco Pizzolante f...@missioncriticalit.com wrote: Another option is to use a babel block and org-map-entries to spit out a simple list of tasks for each person: I've played a little with the code you've sent and here's what I end up with:

[Orgmode] Re: Project management Dynamic block per tag + [Babel]

2010-12-16 Thread Francesco Pizzolante
Hi Matt, Another option is to use a babel block and org-map-entries to spit out a simple list of tasks for each person: --8---cut here---start-8--- #+source: tasklist #+begin_src emacs-lisp :var person=me  (let (tasklist)    (org-map-entries    

[Orgmode] Re: Project management Dynamic block per tag + [Babel]

2010-12-09 Thread Francesco Pizzolante
Hi Matt, Thanks a lor for you answer. I preferred your second suggestion as I can add it directly to my Org buffer: --8---cut here---start-8--- #+source: tasklist #+begin_src emacs-lisp :var person=me  (let (tasklist)    (org-map-entries     (lambda

[Orgmode] Re: Project management Dynamic block per tag + [Babel]

2010-11-28 Thread Matt Lundin
Francesco Pizzolante fpz-djc/ipccudyqhejpep6iedvlejwur...@public.gmane.org writes: Hi, I'm using Org to manage a project. I need to output a tasks list for every of my colleagues, person per person. I'm currently using tags to assing people to tasks (even if I'm not completely convinced

[Orgmode] Re: Project management Dynamic block per tag + [Babel]

2010-11-26 Thread Christian Egli
Francesco Pizzolante f...@missioncriticalit.com writes: I'm using Org to manage a project. I need to output a tasks list for every of my colleagues, person per person. I'm currently using tags to assing people to tasks (even if I'm not completely convinced that this is the right way to go).