From mboxrd@z Thu Jan 1 00:00:00 1970 From: joakim@verona.se Subject: How to generate agenda view tasks of all states? Date: Fri, 30 Nov 2012 16:17:10 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:50661) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TeSLM-0005NR-4v for emacs-orgmode@gnu.org; Fri, 30 Nov 2012 10:17:37 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TeSLJ-0001qT-MH for emacs-orgmode@gnu.org; Fri, 30 Nov 2012 10:17:32 -0500 Received: from mx1.bahnhof.se ([213.80.101.11]:57452) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TeSLJ-0001pY-Ff for emacs-orgmode@gnu.org; Fri, 30 Nov 2012 10:17:29 -0500 Received: from localhost (mf.bahnhof.se [213.80.101.20]) by mx1-reinject (Postfix) with ESMTP id 6AC9B29594F for ; Fri, 30 Nov 2012 16:17:23 +0100 (CET) Received: from mf3.bahnhof.se ([127.0.0.1]) by localhost (mf3.bahnhof.se [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id NTtxGZf8fVhZ for ; Fri, 30 Nov 2012 16:17:20 +0100 (CET) Received: from exodia.verona.se (h-235-102.a149.priv.bahnhof.se [85.24.235.102]) by mf3.bahnhof.se (Postfix) with ESMTP id 90CBC605074 for ; Fri, 30 Nov 2012 16:17:20 +0100 (CET) Received: from chopper.vpn.verona.se (unknown [192.168.201.18]) by exodia.verona.se (Postfix) with ESMTP id 345414E0528 for ; Fri, 30 Nov 2012 16:17:10 +0100 (CET) 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 I would like to experiment with a graphical view of all tasks I've ever finished, produced with graphviz or something. However, I can't seem to reliably generate a suitable view for further processing. For some reason arg 0 only shows TODO items, not all states. Here is some tentative code, that is supposed to setup a local state so my customizations doesnt affect the view. Am I missing something? (let ((org-agenda-todo-list-sublevels t) (org-agenda-todo-ignore-with-date nil) (org-todo-keywords '((sequence "TODO" "DONE" "CANCELLED" "dummystate"))) ) (org-todo-list 0)) -- Joakim Verona