From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?Q?Fran=C3=A7ois_Pinard?= Subject: Installation problem? (new exporter) Date: Mon, 11 Feb 2013 16:46:46 -0500 Message-ID: <86d2w6ikvt.fsf@iro.umontreal.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:52461) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U51D7-0007Sk-0F for emacs-orgmode@gnu.org; Mon, 11 Feb 2013 16:46:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U51D5-0005qE-S0 for emacs-orgmode@gnu.org; Mon, 11 Feb 2013 16:46:48 -0500 Received: from bureau.ubity.com ([64.254.249.42]:43401 helo=mercure.bureau.ubity.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U51D5-0005ou-OY for emacs-orgmode@gnu.org; Mon, 11 Feb 2013 16:46:47 -0500 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: emacs-orgmode@gnu.org Hi, gang. I've difficulty to get the new exporter into movement. After trying for some time, I'm giving into this mailing list for help or advice. First, "C-c C-e" yields "Cannot open load file: org-export". I guess that some old autoload is hiding somewhere, but I just do not find it. Command "C-h k C-c C-e" tersely says: org-export-dispatch is an interactive autoloaded Lisp function. [Arg list not available until function definition is loaded.] Not documented. Debugging on error is terse as well: Debugger entered--Lisp error: (file-error "Cannot open load file" "org-e= xport") On this Ubuntu 12.10, I moved /usr/share/emacs/23.4/lisp/org/ and /share/emacs23/site-lisp/org-mode/ elsewhere, just in case. I had no problems before using a recent Org, letting these older directories there, but this does not mean there were no problem, of course. To install Org, I merely "git clone" or "git pull" it, and then use "make". In the Make output, I see that autoloads are regenerated. Second, the following Makefile entry (reduced) does not work anymore for me: all: emacs -Q --batch --load publish.el --funcall org-publish-all Here is file "publish.el" (reduced): (defvar api-org-distribution "~/emacs/_/org-mode") (add-to-list 'load-path (concat api-org-distribution "/lisp")) =20=20=20 (require 'org) (message (org-version)) =20=20=20 (setq org-publish-project-alist `(("api" :base-directory "~/control3/api/" :publishing-directory "~/control3/api-html" ))) The "~/control3/api/" directory is already populated with many Org files by another program. Running "make" yields: 7.9.3e No publishing function chosen and no output is produced. Sigh! :-) Fran=C3=A7ois