From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: BUG: column view and HTML export Date: Wed, 16 Jan 2008 21:18:40 -0500 Message-ID: <87k5m9fb3z.fsf@gollum.intra.norang.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JFKLJ-0000lP-Ap for emacs-orgmode@gnu.org; Wed, 16 Jan 2008 21:18:57 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JFKLI-0000jf-CQ for emacs-orgmode@gnu.org; Wed, 16 Jan 2008 21:18:56 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JFKLI-0000jR-4m for emacs-orgmode@gnu.org; Wed, 16 Jan 2008 21:18:56 -0500 Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JFKLH-0003sX-Ri for emacs-orgmode@gnu.org; Wed, 16 Jan 2008 21:18:56 -0500 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1JFKLC-0005E7-BA for emacs-orgmode@gnu.org; Thu, 17 Jan 2008 02:18:50 +0000 Received: from cpe000102d0fe75-cm0012256ecbde.cpe.net.cable.rogers.com ([99.239.148.180]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 17 Jan 2008 02:18:50 +0000 Received: from bernt by cpe000102d0fe75-cm0012256ecbde.cpe.net.cable.rogers.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 17 Jan 2008 02:18:50 +0000 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: emacs-orgmode@gnu.org Hi Carsten, I think I've found another bug... (sorry) Here's my test case to reproduce the problem: ,----[ minimal.emacs ] | (global-font-lock-mode t) | (add-to-list 'load-path (expand-file-name "~/git/org-mode")) | (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) | (require 'org-install) | (define-key global-map "\C-ca" 'org-agenda) | (custom-set-variables | '(org-agenda-files (quote ("~/org/test.org")))) | (setq org-use-fast-todo-selection t) | ;;(org-agenda-list) `---- ,----[ test.org ] | #+STARTUP: contents | * one | ** TODO one-one | * Two | :PROPERTIES: | :COLUMNS: %40ITEM(Task) %Estimated(Estimated Time){+} | :END: | #+BEGIN: columnview :hlines 1 :id local | | Task | Estimated Time | | |---------------------------+----------------| | | * Two | 6 | | | ** TODO Two-one | 4 | | | ** TODO Refile me to one | 2 | | #+END: | | ** TODO Two-one | SCHEDULED: <2008-01-16 Wed> | :PROPERTIES: | :Estimated: 4 | :END: | ** TODO Refile me to one | :PROPERTIES: | :Estimated: 2 | :END: `---- $ emacs -q -l ~/minimal.emacs test.org | Key Sequence | Details | |--------------+------------------------------------------| | C-c C-a | Display all lines in the org file | | C-c C-x C-c | Start column view | | down arrow | until you are somewhere inside the table | | C-c C-e h | Export to HTML (which works) | | C-c C-e h | Export it again and it fails | |--------------+------------------------------------------| I get the following error after the second export (and any attempts to export after that) org-export-as-html: Text is read-only: "Type `e' to edit property" Is there any additional information I can provide to help fix this problem? Thanks, Bernt