From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: BUG-ditaa export skips drawings Date: Thu, 16 Apr 2009 22:01:20 -0400 Message-ID: <87vdp4vy1b.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 1LudOV-0001KJ-2k for emacs-orgmode@gnu.org; Thu, 16 Apr 2009 22:01:31 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LudOQ-0001K7-GJ for emacs-orgmode@gnu.org; Thu, 16 Apr 2009 22:01:30 -0400 Received: from [199.232.76.173] (port=49595 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LudOQ-0001K4-E2 for emacs-orgmode@gnu.org; Thu, 16 Apr 2009 22:01:26 -0400 Received: from mho-01-ewr.mailhop.org ([204.13.248.71]:63791) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LudOP-0005RJ-Qv for emacs-orgmode@gnu.org; Thu, 16 Apr 2009 22:01:26 -0400 Received: from cpe000102d0fe75-cm0012256ecbde.cpe.net.cable.rogers.com ([99.239.148.180] helo=mail.norang.ca) by mho-01-ewr.mailhop.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1LudOO-000FR4-Rs for emacs-orgmode@gnu.org; Fri, 17 Apr 2009 02:01:24 +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, I've run into what I think is a ditaa export bug. The following file doesn't export the first ditaa figure, only the last. Here's my test file: x.org --8<---------------cut here---------------start------------->8--- #+STARTUP: * One Here we go! #+begin_src lisp (foo) #+end_src lisp #+begin_ditaa task_states1.png -r -S : +--------+ +---------+ +--------+ : | | | | | | : | AAAA +------>+ STARTED +------>+ DONE | : | cRED | | cBLU | | cGRE | : +--------+ +---------+ +--------+ #+end_ditaa #+begin_ditaa task_states2.png -r -S : +--------+ +---------+ +--------+ : | | | | | | : | BBBB +------>+ STARTED +------>+ DONE | : | cRED | | cBLU | | cGRE | : +--------+ +---------+ +--------+ #+end_ditaa --8<---------------cut here---------------end--------------->8--- I get the following partial HTML output (I've removed the uninteresting parts x.html: --8<---------------cut here---------------start------------->8---

Here we go!

(foo)
: +--------+ +---------+ +--------+ : | | | | | | : | AAAA +------>+ STARTED +------>+ DONE | : | cRED | | cBLU | | cGRE | : +--------+ +---------+ +--------+

task_states2.png

--8<---------------cut here---------------end--------------->8--- -Bernt