From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Schulte Subject: Re: using org for meeting agendas and minutes? Date: Mon, 11 Feb 2008 08:55:26 -0800 Message-ID: <47b07df2.1e068e0a.0ebb.0f4e@mx.google.com> References: <20080209125607.GC20023@atlantic.linksys.moosehall> <20080211133412.GB8876@atlantic.linksys.moosehall> Reply-To: schulte.eric@gmail.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JObwA-00058m-NH for emacs-orgmode@gnu.org; Mon, 11 Feb 2008 11:55:22 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JObw8-00056r-6J for emacs-orgmode@gnu.org; Mon, 11 Feb 2008 11:55:21 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JObw7-00056o-W5 for emacs-orgmode@gnu.org; Mon, 11 Feb 2008 11:55:20 -0500 Received: from rn-out-0910.google.com ([64.233.170.185]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JObw7-0005yx-K7 for emacs-orgmode@gnu.org; Mon, 11 Feb 2008 11:55:19 -0500 Received: by rn-out-0910.google.com with SMTP id e11so2111225rng.0 for ; Mon, 11 Feb 2008 08:55:16 -0800 (PST) In-Reply-To: <20080211133412.GB8876@atlantic.linksys.moosehall> 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: Adam Spiers Cc: emacs-orgmode@gnu.org On Monday, February 11, at 13:34, Adam Spiers wrote: > On Sat, Feb 09, 2008 at 12:56:07PM +0000, Adam Spiers wrote: [snipped]... > Hmm, actually column view doesn't let you filter the table so that > there are only rows corresponding to headers containing the 'ACTION' > keyword, so it looks like a custom dynamic block writer function will > be required. Is there an appropriate API I could use for extracting > all headers containing a given keyword from an org buffer? I believe the TODO entries are saved as special properties, so you should be able to access them using the properties API, which I have found easy to use (and I'm far from facile with elisp). (info "(org)Special Properties") (info "(org)Using the property API") although I don't know how you would cycle through all of the headers in an org file...