From mboxrd@z Thu Jan 1 00:00:00 1970 From: "I.S." Subject: Re: suggestion/feature-request for dynamic blocks Date: Wed, 22 Sep 2010 08:26:40 -0400 Message-ID: <4C99F600.6050206@gmail.com> References: <87aanbayue.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=49867 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OyOPN-0000lb-G3 for emacs-orgmode@gnu.org; Wed, 22 Sep 2010 08:26:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OyOPM-0006bq-Gc for emacs-orgmode@gnu.org; Wed, 22 Sep 2010 08:26:45 -0400 Received: from mail-qy0-f169.google.com ([209.85.216.169]:57705) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OyOPM-0006bb-EZ for emacs-orgmode@gnu.org; Wed, 22 Sep 2010 08:26:44 -0400 Received: by qyk8 with SMTP id 8so5716273qyk.0 for ; Wed, 22 Sep 2010 05:26:43 -0700 (PDT) In-Reply-To: <87aanbayue.fsf@gmail.com> 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: Eric Schulte Cc: emacs-orgmode@gnu.org On 9/21/2010 11:41 AM, Eric Schulte wrote: > Tables created by named code block are already prefixed with a > #+results: source-name line. This allows them to be referenced by other > code blocks. Is there some property of #+tblname: lines which is not > shared by #+results: lines which would make #+tblname: lines preferable? Sorry for the terminology confusion. I was referring to the dynamic code block features of org-mode such as org-dblock-write:columnview or org-update-dblock. Such functions take a pair of lines like #+BEGIN: columnview :hlines 1 :id local :maxlevel 4 #+END: and fill them in with information automatically extracted from the org-mode file. I would like to be able to specify something like #+BEGIN: columnview :hlines 1 :id local :maxlevel 4 :dtname #+END: and have a #+TBLNAME get inserted in automatically so that I can then use org-babel to further process the results. I think things like this would be useful for all the various kinds of org-dblock-write: functions and so suggested a generic library for writers of org-dblock-write: functions to handle things like this. Thanks, -I.S.