From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Ferres Subject: Publishing not working: troubleshooting Date: Thu, 25 Mar 2010 12:32:31 -0300 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Nup3H-0000M3-AG for emacs-orgmode@gnu.org; Thu, 25 Mar 2010 11:32:55 -0400 Received: from [140.186.70.92] (port=49130 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nup3G-0000LE-0Z for emacs-orgmode@gnu.org; Thu, 25 Mar 2010 11:32:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Nup3E-0001M5-R6 for emacs-orgmode@gnu.org; Thu, 25 Mar 2010 11:32:53 -0400 Received: from mail-vw0-f41.google.com ([209.85.212.41]:57254) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Nup3E-0001Lx-Mr for emacs-orgmode@gnu.org; Thu, 25 Mar 2010 11:32:52 -0400 Received: by vws20 with SMTP id 20so3835253vws.0 for ; Thu, 25 Mar 2010 08:32:51 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hello, I was wondering if anyone could help me with this. I guess this question has been asked before, but I couldn't find an answer. Apologies. The setting: I have a require entry in my .emacs that reads: (require 'dervin-org-projects) and a file dervin-org-projects.el that reads: (require 'org-publish) ;; I've tried without this as well (setq org-publish-project-alist '(("orgfiles" :base-directory "~/org/courses/" :base-extension "org" :publishing-directory "/ssh:myuser@myhost:~/public_html/" :recursive t :publishing-function org-publish-org-to-html :exclude "PrivatePage.org" ;; regexp :headline-levels 3 :section-numbers t :table-of-contents nil :auto-preamble t :auto-postamble nil) ("images" :base-directory "~/org/courses/images" :base-extension "jpg\\|gif\\|png" :publishing-directory "/ssh:myuser@myhost:~/public_html/" :publishing-function org-publish-attachment) ("other" :base-directory "~/org/courses/other/" :base-extension "css\\|el\\|pdf" :publishing-directory "/ssh:myuser@myhost:~/public_html/" :publishing-function org-publish-attachment) ("courses" :components ("orgfiles" "images" "other")))) (provide 'dervin-org-projects) When I attempt to publish the project with C-c C-e X, and I choose "courses", absolutely nothing happens. There's not even a message that appears. I therefore don't know how to troubleshoot this by myself. Could anyone help? Thank you and best regards, Dervin