From mboxrd@z Thu Jan 1 00:00:00 1970 From: Niels Giesen Subject: Re: Jambunathan's ODT exporter now in contrib/ Date: Fri, 1 Jul 2011 14:39:35 +0200 Message-ID: References: <87mxgyxry8.fsf@gnu.org> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=bcaec5314e1d6075d604a7014fe1 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:53743) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qcd0V-0007Fw-IO for emacs-orgmode@gnu.org; Fri, 01 Jul 2011 08:39:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qcd0T-0001Cv-Lz for emacs-orgmode@gnu.org; Fri, 01 Jul 2011 08:39:39 -0400 Received: from mail-pz0-f41.google.com ([209.85.210.41]:33427) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qcd0S-0001Cn-VU for emacs-orgmode@gnu.org; Fri, 01 Jul 2011 08:39:37 -0400 Received: by pzk4 with SMTP id 4so3458316pzk.0 for ; Fri, 01 Jul 2011 05:39:35 -0700 (PDT) In-Reply-To: <87mxgyxry8.fsf@gnu.org> 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: Bastien Cc: emacs-orgmode@gnu.org, "Jambunathan K." --bcaec5314e1d6075d604a7014fe1 Content-Type: text/plain; charset=UTF-8 Using latest org-mode, with org-odt included. C-c C-e O complained about not finding OrgOdtAutomaticStyles.xml. I patched org-odt.el to the following so that it could find it: Could someone look into this? (e.g. I do not know whether this would break non-integrated org-odt (or whether that matters at all at this stage) diff --git a/contrib/lisp/org-odt.el b/contrib/lisp/org-odt.el index ad53204..2857bf9 100644 --- a/contrib/lisp/org-odt.el +++ b/contrib/lisp/org-odt.el @@ -70,7 +70,7 @@ (defconst org-odt-lib-dir (file-name-directory load-file-name)) (defconst org-odt-data-dir - (let ((dir1 (expand-file-name ".." org-odt-lib-dir)) ; git + (let ((dir1 (expand-file-name "../odt" org-odt-lib-dir)) ; git (dir2 (expand-file-name "./contrib/odt" org-odt-lib-dir))) ; elpa (cond ((file-directory-p dir1) dir1) On Fri, Jul 1, 2011 at 11:37 AM, Bastien wrote: > Dear all, > > I'm please to announce that Jambunathan's ODT exporter is now in the > contrib/ directory (in latest git repo) -- the files are here: > > contrib/odt/ > contrib/lisp/org-odt.el > contrib/lisp/org-lparse.el > contrib/lisp/org-xhtml.el > > Jambunathan and I are still actively tuning this major addition, please > bare with us while we are making sure everything works as expected. > > We still need to update the documentation and a few things. > > Again, thanks a lot to Jambunathan for this wonderful addition and for > his patience, and also thanks to Lennart who contributed to the initial > effort and helped make this come true. > > The ODT exporter will live in contrib/ for Org 7.6 -- then we will work > on integrating it to the core, so that it can safely move to Emacs one > day. > > Happy hacking and testing to everyone! > > -- > Bastien > > -- http://pft.github.com --bcaec5314e1d6075d604a7014fe1 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
Using latest org-mode, with org-odt included.

C-c C-e O complained about not finding=C2=A0OrgOdtAutomaticStyles.xml.=C2= =A0
I patched org-odt.el to the following so that it could find i= t:

Could someone look into this? (e.g. I do not know wheth= er this would break non-integrated org-odt (or whether that matters at all = at this stage)

diff --git a/contrib/lisp/org-odt.e= l b/contrib/lisp/org-odt.el
index ad53204..2857bf9 100644
--- a/contrib/lisp/org-odt.el<= /div>
+++ b/contrib/lisp/org-odt.el
@@ -70,7 +70,7 @@
=C2=A0
=C2=A0(defconst org-odt-lib-dir (file-name-directory lo= ad-file-name))
=C2=A0(defconst org-odt-data-dir
- =C2=A0(let ((dir1 (expand= -file-name ".." org-odt-lib-dir)) =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2= =A0 =C2=A0; git
+ =C2=A0(let ((dir1 (expand-file-name "../od= t" org-odt-lib-dir)) =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0; git
=C2=A0 =C2=A0 =C2=A0 =C2=A0 (dir2 (expand-file-name "./contrib/od= t" org-odt-lib-dir))) ; elpa
=C2=A0 =C2=A0 =C2=A0(cond
=
=C2=A0 =C2=A0 =C2=A0 ((file-directory-p dir1) dir1)




On Fri, Jul 1, 2011 at 11:37 AM, Bastien <bzg@altern.org> wrote:
Dear all,

I'm please to announce that Jambunathan's ODT exporter is now in th= e
contrib/ directory (in latest git repo) -- the files are here:

=C2=A0contrib/odt/
=C2=A0contrib/lisp/org-odt.el
=C2=A0contrib/lisp/org-lparse.el
=C2=A0contrib/lisp/org-xhtml.el

Jambunathan and I are still actively tuning this major addition, please
bare with us while we are making sure everything works as expected.

We still need to update the documentation and a few things.

Again, thanks a lot to Jambunathan for this wonderful addition and for
his patience, and also thanks to Lennart who contributed to the initial
effort and helped make this come true.

The ODT exporter will live in contrib/ for Org 7.6 -- then we will work
on integrating it to the core, so that it can safely move to Emacs one
day.

Happy hacking and testing to everyone!

--
=C2=A0Bastien




--
http://pft.github.com
--bcaec5314e1d6075d604a7014fe1--