From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Jambunathan K Newsgroups: gmane.emacs.devel 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 Message-ID: <878vbqcbhs.fsf@gmail.com> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1349114773 25221 80.91.229.3 (1 Oct 2012 18:06:13 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 1 Oct 2012 18:06:13 +0000 (UTC) Cc: Bastien Guerry , Emacs developers To: Glenn Morris Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Oct 01 20:06:19 2012 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TIkNh-0007wA-2l for ged-emacs-devel@m.gmane.org; Mon, 01 Oct 2012 20:06:13 +0200 Original-Received: from localhost ([::1]:54413 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TIkNb-0001KX-I0 for ged-emacs-devel@m.gmane.org; Mon, 01 Oct 2012 14:06:07 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:48393) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TIkNU-0001Jx-4S for emacs-devel@gnu.org; Mon, 01 Oct 2012 14:06:06 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TIkNP-0006X9-EL for emacs-devel@gnu.org; Mon, 01 Oct 2012 14:06:00 -0400 Original-Received: from mail-da0-f41.google.com ([209.85.210.41]:36152) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TIkNP-0006Wu-4w; Mon, 01 Oct 2012 14:05:55 -0400 Original-Received: by dadi14 with SMTP id i14so1707154dad.0 for ; Mon, 01 Oct 2012 11:05:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=d/r6vFW4lOTmvjfF4EumfrcmlWyUtsPAJHQjv0f9x0c=; b=PCFe7m8oftorvNA9MQiCWrsfrZTfkrl0CY1/T/4Cj886mLTDzZBE+n47Uqawa8aXVu 5KgsW4UzmRTheL/uvn8Lb9HWSvoVnu+3blthpeuYBA9yGOy5QeTJKTLL1xxU11Bk8CGU KtACS+3FOqF+ShQJBirsBeQnsqZ3u5afrAyK1pEFEwFxeZKZ0tQN1c91cfAibn/KHoGK 7cQtEe7CUWhrJrqY4FPsJID0ilco9DyXXYym33qKriThcwGcDRuuaUpqMhwD/YCV/IOO yAF5b5LKNjmgt8Y9gEzYw4A0Za5m/I+WAQYqAsstT8NR8sdby2TpuLC3fnMnUvFktAXq iUBg== Original-Received: by 10.66.88.3 with SMTP id bc3mr38313001pab.51.1349114753990; Mon, 01 Oct 2012 11:05:53 -0700 (PDT) Original-Received: from debian-6.05 ([101.62.24.177]) by mx.google.com with ESMTPS id wl4sm10619556pbc.17.2012.10.01.11.05.50 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 01 Oct 2012 11:05:53 -0700 (PDT) In-Reply-To: (Glenn Morris's message of "Sun, 30 Sep 2012 20:26:58 -0400") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.210.41 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:153869 Archived-At: > 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) --