From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Brand Subject: dynamic block for columnview: sub to top level Date: Wed, 2 Nov 2011 18:07:26 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:34820) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RLeHg-0004rQ-Ni for emacs-orgmode@gnu.org; Wed, 02 Nov 2011 13:07:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RLeHf-0000qj-K0 for emacs-orgmode@gnu.org; Wed, 02 Nov 2011 13:07:28 -0400 Received: from mail-wy0-f169.google.com ([74.125.82.169]:44793) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RLeHf-0000qY-DV for emacs-orgmode@gnu.org; Wed, 02 Nov 2011 13:07:27 -0400 Received: by wyg24 with SMTP id 24so472589wyg.0 for ; Wed, 02 Nov 2011 10:07:26 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Org Mode Hi all When the :id for a columview of a dynamic block references to a sub tree with the property ID there is an issue if that tree is in overview (closed): The whole tree of the top level parent of the requested ID is included in the resulting table. When the minimal and complete example below is opened with emacs -q, 23.3 and Org release_7.7-508-ga081581 (2011-11-02) then the result of C-c C-c on the dynamic block header for columnview is unexpected: | Task | Hours | |---------------------+-------| | * project | 7 | | *** Total of Effort | 7 | | ***** feature | 7 | After the sub tree project is opened with M-x org-content then the result is like expected: | Task | Hours | |---------------------+-------| | *** Total of Effort | 7 | | ***** feature | 7 | Same issue also in release_6.06a-1-g3cf6fc4, earlier I did not test any more because of a missing autoload. #+begin_src org ,#+COLUMNS: %50ITEM(Task) %5Effort(Hours){+} ,#+STARTUP: odd overview ,#+BEGIN: columnview :maxlevel 3 :id 86BFB583-3B55-4D1D-9FD7 ,| Task | Days | {Hours} | ,#+END: ,* project ,*** Total of Effort , :PROPERTIES: , :ID: 86BFB583-3B55-4D1D-9FD7 , :END: ,***** feature ,******* TODO task , :PROPERTIES: , :Effort: 7 , :END: #+end_src Michael