all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Jambunathan K <kjambunathan@gmail.com>
To: Glenn Morris <rgm@gnu.org>
Cc: Bastien Guerry <bzg@gnu.org>, Emacs developers <emacs-devel@gnu.org>
Subject: Re: /srv/bzr/emacs/trunk r110286: Sync Org 7.9.2 from the commit tagged "release_7.9.2" in Org's Git repo.
Date: Mon, 01 Oct 2012 23:37:11 +0530	[thread overview]
Message-ID: <878vbqcbhs.fsf@gmail.com> (raw)
In-Reply-To: <mn391z6nql.fsf@fencepost.gnu.org> (Glenn Morris's message of "Sun, 30 Sep 2012 20:26:58 -0400")


> It's weird to see this as a constant (rather than something related to
> the installation prefix), since it won't be correct for many
> installations (but I did not check how it is actually used):
>
> ;;;###autoload
> (defconst org-odt-data-dir "/usr/share/emacs/etc/org"
>   "The location of ODT styles.")

In vanilla Emacs, org-odt-data-dir should be nil.

,----
| (defvar org-odt-data-dir nil
|   "Data directory for ODT exporter.
| Use this to infer values of `org-odt-styles-dir' and
| `org-export-odt-schema-dir'.")
`----

The style files will be picked from the 'system' (see below).

,----
| (defconst org-odt-styles-dir-list
|   (list
|    (and org-odt-data-dir
| 	(expand-file-name "./styles/" org-odt-data-dir)) ; bail out
|    (eval-when-compile
|      (and (boundp 'org-odt-data-dir) org-odt-data-dir ; see make install
| 	  (expand-file-name "./styles/" org-odt-data-dir)))
|    (expand-file-name "../etc/styles/" org-odt-lib-dir) ; git
|    (expand-file-name "./etc/styles/" org-odt-lib-dir)  ; elpa
|    (expand-file-name "./org/" data-directory)	       ; system
|    )
|   "List of directories to search for OpenDocument styles files.
| See `org-odt-styles-dir'.  The entries in this list are populated
| heuristically based on the values of `org-odt-lib-dir' and
| `org-odt-data-dir'.")
`----

ps-1: Recent changes to Make targets in Org repo touches
`org-odt-data-dir'.  I have not reviewed these changes closely.

ps-2: I have taken deliberate decision to stay out of Org-mode
development and the mailing list.  Any bugs in the ODT exporter in
vanilla Emacs will be promptly addressed (as long as it comes via
debbugs or other Emacs mailing lists)
-- 



  parent reply	other threads:[~2012-10-01 18:07 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <E1TILGf-0007Kr-Mg@vcs.savannah.gnu.org>
2012-10-01  0:26 ` /srv/bzr/emacs/trunk r110286: Sync Org 7.9.2 from the commit tagged "release_7.9.2" in Org's Git repo Glenn Morris
2012-10-01  6:19   ` Bastien
2012-10-01  7:03     ` Glenn Morris
2012-10-01 13:22       ` Bastien
2012-10-01 16:47     ` Achim Gratz
2012-10-01 17:39       ` Glenn Morris
2012-10-01 17:59         ` Achim Gratz
2012-10-01 18:04           ` Glenn Morris
2012-10-02 12:58             ` Bastien
2012-10-02 17:05               ` Achim Gratz
2012-10-02 17:17                 ` Bastien
2012-10-02 17:34                   ` Achim Gratz
2012-10-02 17:43                     ` Glenn Morris
2012-10-02 17:51                       ` Achim Gratz
2012-10-02 17:58                         ` Glenn Morris
2012-10-02 18:16                           ` Achim Gratz
2012-10-02 18:58                             ` Glenn Morris
2012-10-03 15:46                               ` Achim Gratz
2012-10-03 17:35                                 ` Stefan Monnier
2012-10-03 17:54                                   ` Achim Gratz
2012-10-03 18:30                                     ` Stefan Monnier
2012-10-01 18:02     ` Achim Gratz
2012-10-02 12:56       ` Bastien
2012-10-02 17:03         ` Achim Gratz
2012-10-02 17:17           ` Bastien
2012-10-02 17:25             ` Achim Gratz
2012-10-02 17:44               ` Bastien
2012-10-02 18:12                 ` Achim Gratz
2012-10-03  7:08                   ` Bastien
2012-10-03  7:48                     ` Achim Gratz
2012-10-03 10:24                       ` Bastien
2012-10-01 18:07   ` Jambunathan K [this message]
2012-10-02 13:03     ` Bastien

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=878vbqcbhs.fsf@gmail.com \
    --to=kjambunathan@gmail.com \
    --cc=bzg@gnu.org \
    --cc=emacs-devel@gnu.org \
    --cc=rgm@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.