From mboxrd@z Thu Jan 1 00:00:00 1970 From: dche Subject: org-collector - propview display problems Date: Mon, 29 Feb 2016 18:04:45 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44031) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aahe7-0000eU-1m for emacs-orgmode@gnu.org; Tue, 01 Mar 2016 05:35:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aahe2-0004RU-TV for emacs-orgmode@gnu.org; Tue, 01 Mar 2016 05:35:14 -0500 Received: from plane.gmane.org ([80.91.229.3]:51521) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aahe2-0004RQ-EV for emacs-orgmode@gnu.org; Tue, 01 Mar 2016 05:35:10 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1aahdw-0007fE-EC for emacs-orgmode@gnu.org; Tue, 01 Mar 2016 11:35:04 +0100 Received: from 165.225.76.110 ([165.225.76.110]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 01 Mar 2016 11:35:04 +0100 Received: from dchechin92 by 165.225.76.110 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 01 Mar 2016 11:35:04 +0100 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: emacs-orgmode@gnu.org Hello I tried to use org-collector with the example propose at this link http://orgmode.org/worg/org-contrib/org-collector.html I would like to use propview as cited in example but whatever I do, I get the outputs below. * Example #+BEGIN: propview :cols (ITEM amount) | ITEM | amount | |----------------------------------------+--------| | "* Example" | 0 | | "** December Spending" | 0 | | "*** Week One" | 0 | | "**** Grocery Store [2008-12-01 lun.]" | 0 | | "**** Athletic club [2008-12-02 mar.]" | 0 | | "*** Week Two" | 0 | | "**** Restaurant [2008-12-08 lun.]" | 0 | |----------------------------------------+--------| | | | #+END: #+BEGIN: propview :id "december" :conds ((string= spendtype "food")) :cols (ITEM amount) | ITEM | amount | |------+--------| |------+--------| | | | #+END: #+BEGIN: propview :cols (ITEM (+ 400 amount)) :scope tree :match "example" | ITEM | (+ 400 amount) | |----------------------------------------+----------------| | "** December Spending" | 0 | | "*** Week One" | 0 | | "**** Grocery Store [2008-12-01 lun.]" | 0 | | "**** Athletic club [2008-12-02 mar.]" | 0 | | "*** Week Two" | 0 | | "**** Restaurant [2008-12-08 lun.]" | 0 | |----------------------------------------+----------------| | | | #+END: ** December Spending :example: :PROPERTIES: :ID: december :END: *** Week One **** Grocery Store [2008-12-01 Mon] :PROPERTIES: :amount: 56.77 :spendtype: food :END: **** Athletic club [2008-12-02 Tue] :PROPERTIES: :amount: 75.00 :spendtype: health :END: *** Week Two **** Restaurant [2008-12-08 Mon] :PROPERTIES: :amount: 30.67 :spendtype: food :END: The item is not extracted as expected (there are "*" that are also displayed corresponding of the level of entries) and the extracted field is zero whatever of the effective value of this field (here amount). This is test with 8.3.4 and GNU Emacs 24.3.1 (i386-mingw-nt6.1.7601). Regards