From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Clemente Subject: =?UTF-8?B?b3JnLXB1Ymxpc2ggcGFyYW1ldGVycyBtaXNtYXRjaCDihpIgIGNh?= =?UTF-8?B?bm5vdCBwdWJsaXNoIHRvIEhUTUw=?= Date: Wed, 27 Nov 2013 11:58:55 +0700 Message-ID: <8738miv3sg.wl%n142857@gmail.com> Mime-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47563) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VlXDT-0004KS-Ru for emacs-orgmode@gnu.org; Tue, 26 Nov 2013 23:59:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VlXDL-0006SV-E8 for emacs-orgmode@gnu.org; Tue, 26 Nov 2013 23:59:11 -0500 Received: from mail-pd0-x22f.google.com ([2607:f8b0:400e:c02::22f]:52976) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VlXDL-0006SR-5y for emacs-orgmode@gnu.org; Tue, 26 Nov 2013 23:59:03 -0500 Received: by mail-pd0-f175.google.com with SMTP id w10so9161916pde.34 for ; Tue, 26 Nov 2013 20:59:01 -0800 (PST) Received: from 2d2.gmail.com ([182.253.73.48]) by mx.google.com with ESMTPSA id pu5sm96060201pac.21.2013.11.26.20.58.59 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Tue, 26 Nov 2013 20:59:00 -0800 (PST) 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, in ox-publish.el I see in line 555: (defun org-publish-org-to (backend filename extension plist &optional pub-d= ir) =E2=80=A6 org-publish-org-to-html seems to have its parameters in the same order (f= ilename, extension, plist). Correct me if I'm wrong. But then in same file, line 654: (when (org-publish-needed-p filename pub-dir f tmp-pub-dir base-dir) (funcall f project-plist filename tmp-pub-dir) =E2=80=A6 With the default setting f =3D=3D org-publish-org-to-html, the funcall pa= sses parameters in the wrong order: plist filename. It should be: filename = extension plist Later I see org trying to open the =E2=80=9Efilename=E2=80=9C variable wh= ich is not a file name but a plist: (wrong-type-argument stringp (:base-directory "~/repoweb/ofinial=E2=80=A6" = =E2=80=A6) =E2=80=A6) file-truename((:base-directory "~/repoweb/ofinial/hacer/" :publishing-direc= tory =E2=80=A6) =E2=80=A6) Maybe my setup is wrong (I'm confused with the org-publish / ox-publish m= ix) but the org-publish-project-alist seems safe; the stranges thing is: = :publishing-function org-publish-org-to-html Does org-publish work for someone else? Why do I see new problems each ti= me I try to publish=E2=80=A6? Thanks