emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* ORG_ADD_CONTRIB and org-e-odt.el don't always play well together
@ 2012-10-02 20:38 Nick Dokos
  2012-10-03  6:07 ` Achim Gratz
  2012-10-03  9:23 ` Bastien
  0 siblings, 2 replies; 5+ messages in thread
From: Nick Dokos @ 2012-10-02 20:38 UTC (permalink / raw)
  To: emacs-orgmode; +Cc: nicholas.dokos

I added the following to my local.mk

ORG_ADD_CONTRIB = org-e-*

so when I do "make autoloads" (running from the git directory and
without compiling), it copies (among others) contrib/lisp/org-e-odt.el
to lisp/:

,----
| $ make autoloads
| make -C lisp autoloads
| make[1]: Entering directory `/home/nick/src/emacs/org/org-mode/lisp'
| rm -f org-version.el org-loaddefs.el org-version.elc org-loaddefs.elc
| install -m 644 -p ../contrib/lisp/org-e-ascii.el ../contrib/lisp/org-e-beamer.el ../contrib/lisp/org-e-groff.el\
|                   ../contrib/lisp/org-e-html.el ../contrib/lisp/org-e-latex.el ../contrib/lisp/org-e-man.el\
|                   ../contrib/lisp/org-e-odt.el ../contrib/lisp/org-e-publish.el ../contrib/lisp/org-e-texinfo.el .
| org-version: 7.9.2 (release_7.9.2-382-g1ef9ee)
`----

When I then try to org-reload, I get an error because
org-e-odt.el restricts the path of the style file to one of three
choices (../../etc/styles, ../../etc/org, ../etc/org) relative to where
org-e-odt.el is found. None of these is satisfactory in this context: it
would have to be ../etc/styles.

Nick

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: ORG_ADD_CONTRIB and org-e-odt.el don't always play well together
  2012-10-02 20:38 ORG_ADD_CONTRIB and org-e-odt.el don't always play well together Nick Dokos
@ 2012-10-03  6:07 ` Achim Gratz
  2012-10-03  6:27   ` Nick Dokos
  2012-10-03  9:23 ` Bastien
  1 sibling, 1 reply; 5+ messages in thread
From: Achim Gratz @ 2012-10-03  6:07 UTC (permalink / raw)
  To: emacs-orgmode

Nick Dokos writes:
> I added the following to my local.mk
>
> ORG_ADD_CONTRIB = org-e-*
>
> so when I do "make autoloads" (running from the git directory and
> without compiling), it copies (among others) contrib/lisp/org-e-odt.el
> to lisp/:
>
> ,----
> | $ make autoloads
> | make -C lisp autoloads
> | make[1]: Entering directory `/home/nick/src/emacs/org/org-mode/lisp'
> | rm -f org-version.el org-loaddefs.el org-version.elc org-loaddefs.elc
> | install -m 644 -p ../contrib/lisp/org-e-ascii.el ../contrib/lisp/org-e-beamer.el ../contrib/lisp/org-e-groff.el\
> |                   ../contrib/lisp/org-e-html.el ../contrib/lisp/org-e-latex.el ../contrib/lisp/org-e-man.el\
> |                   ../contrib/lisp/org-e-odt.el ../contrib/lisp/org-e-publish.el ../contrib/lisp/org-e-texinfo.el .
> | org-version: 7.9.2 (release_7.9.2-382-g1ef9ee)
> `----
>
> When I then try to org-reload, I get an error because
> org-e-odt.el restricts the path of the style file to one of three
> choices (../../etc/styles, ../../etc/org, ../etc/org) relative to where
> org-e-odt.el is found. None of these is satisfactory in this context: it
> would have to be ../etc/styles.

It would work if Bastien had not unilaterally decided to remove the
configuration variable that allowed one to point to the correct place.
Until he's made up his mind on how to deal with the breakage, please
help yourself out with a symlink or similar kludge.


Regards,
Achim.
-- 
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+

SD adaptation for Waldorf microQ V2.22R2:
http://Synth.Stromeko.net/Downloads.html#WaldorfSDada

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: ORG_ADD_CONTRIB and org-e-odt.el don't always play well together
  2012-10-03  6:07 ` Achim Gratz
@ 2012-10-03  6:27   ` Nick Dokos
  2012-10-03  9:18     ` Bastien
  0 siblings, 1 reply; 5+ messages in thread
From: Nick Dokos @ 2012-10-03  6:27 UTC (permalink / raw)
  To: Achim Gratz; +Cc: emacs-orgmode

Achim Gratz <Stromeko@nexgo.de> wrote:

> Nick Dokos writes:
> > I added the following to my local.mk
> >
> > ORG_ADD_CONTRIB = org-e-*
> >
> > so when I do "make autoloads" (running from the git directory and
> > without compiling), it copies (among others) contrib/lisp/org-e-odt.el
> > to lisp/:
> >
> > ,----
> > | $ make autoloads
> > | make -C lisp autoloads
> > | make[1]: Entering directory `/home/nick/src/emacs/org/org-mode/lisp'
> > | rm -f org-version.el org-loaddefs.el org-version.elc org-loaddefs.elc
> > | install -m 644 -p ../contrib/lisp/org-e-ascii.el ../contrib/lisp/org-e-beamer.el ../contrib/lisp/org-e-groff.el\
> > |                   ../contrib/lisp/org-e-html.el ../contrib/lisp/org-e-latex.el ../contrib/lisp/org-e-man.el\
> > |                   ../contrib/lisp/org-e-odt.el ../contrib/lisp/org-e-publish.el ../contrib/lisp/org-e-texinfo.el .
> > | org-version: 7.9.2 (release_7.9.2-382-g1ef9ee)
> > `----
> >
> > When I then try to org-reload, I get an error because
> > org-e-odt.el restricts the path of the style file to one of three
> > choices (../../etc/styles, ../../etc/org, ../etc/org) relative to where
> > org-e-odt.el is found. None of these is satisfactory in this context: it
> > would have to be ../etc/styles.
> 
> It would work if Bastien had not unilaterally decided to remove the
> configuration variable that allowed one to point to the correct place.
> Until he's made up his mind on how to deal with the breakage, please
> help yourself out with a symlink or similar kludge.
> 
> 

It's no big deal for me: I just stumbled across it and I thought I'd report it.

Nick

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: ORG_ADD_CONTRIB and org-e-odt.el don't always play well together
  2012-10-03  6:27   ` Nick Dokos
@ 2012-10-03  9:18     ` Bastien
  0 siblings, 0 replies; 5+ messages in thread
From: Bastien @ 2012-10-03  9:18 UTC (permalink / raw)
  To: nicholas.dokos; +Cc: Achim Gratz, emacs-orgmode

Hi Nick,

Nick Dokos <nicholas.dokos@hp.com> writes:

> It's no big deal for me: I just stumbled across it and I thought I'd
> report it.

Thanks for reporting this -- i pushed a change in maint that should 
fix it.  If you have time, thanks for confirming the fix.

Best,

-- 
 Bastien

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: ORG_ADD_CONTRIB and org-e-odt.el don't always play well together
  2012-10-02 20:38 ORG_ADD_CONTRIB and org-e-odt.el don't always play well together Nick Dokos
  2012-10-03  6:07 ` Achim Gratz
@ 2012-10-03  9:23 ` Bastien
  1 sibling, 0 replies; 5+ messages in thread
From: Bastien @ 2012-10-03  9:23 UTC (permalink / raw)
  To: nicholas.dokos; +Cc: emacs-orgmode

Nick Dokos <nicholas.dokos@hp.com> writes:

> ORG_ADD_CONTRIB = org-e-*

Btw, I think it should be 

ORG_ADD_CONTRIB = org-export* org-e-*

so that org-export.el is also in the load-path.

HTH,

-- 
 Bastien

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-10-03  9:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-02 20:38 ORG_ADD_CONTRIB and org-e-odt.el don't always play well together Nick Dokos
2012-10-03  6:07 ` Achim Gratz
2012-10-03  6:27   ` Nick Dokos
2012-10-03  9:18     ` Bastien
2012-10-03  9:23 ` Bastien

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).