From mboxrd@z Thu Jan 1 00:00:00 1970 From: Brian Callies Subject: Wrong Type Error When Publishing Project Date: Fri, 26 Jul 2013 16:01:22 -0500 Message-ID: <51F2E3A2.4040200@gibbous.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35379) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V2p8k-00051j-7t for emacs-orgmode@gnu.org; Fri, 26 Jul 2013 17:01:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V2p8g-0006gY-PH for emacs-orgmode@gnu.org; Fri, 26 Jul 2013 17:01:30 -0400 Received: from gibbous.org ([71.13.150.213]:32847 helo=terminus.gibbous.org) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V2p8g-0006fw-Iu for emacs-orgmode@gnu.org; Fri, 26 Jul 2013 17:01:26 -0400 Received: from localhost (localhost [127.0.0.1]) by terminus.gibbous.org (Postfix) with ESMTP id AFF868811FE for ; Fri, 26 Jul 2013 16:01:24 -0500 (CDT) Received: from terminus.gibbous.org ([127.0.0.1]) by localhost (terminus.gibbous.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id oPk224FXvcKD for ; Fri, 26 Jul 2013 16:01:22 -0500 (CDT) Received: from [172.16.60.182] (etsco.com [71.13.150.5]) (Authenticated sender: brian) by terminus.gibbous.org (Postfix) with ESMTPA id A5121880787 for ; Fri, 26 Jul 2013 16:01:22 -0500 (CDT) 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 Good Day, I'm sure I must be doing something obviously wrong, but I've had no success at publishing a project I've just created. I've been working on this error for some time, incidentally fixing other mistakes, but I'm unable to get it working. I get the same error on Arch Linux, as I do on Win8. I'm using Org-mode 8.0.5. I get the following error: Wrong type argument: stringp My project config is below. Images-w and css-w export fine on their own, but alpharednotes-w and AlphaRedWin both fail with the error above. (setq org-publish-project-alist '( ("alpharednotes-w" :base-directory "C:/Users/bcallies/Dropbox/RPG/Alpha Red/org" :base-extension "org" :publishing-directory "C:/Users/bcallies/Dropbox/RPG/Alpha Red/org/html/" ; :recursive t :publishing-function org-publish-org-to-html ; :headline-levels 5 ; :auto-preamble t ) ("images-w" :base-directory "C:\\Users\\bcallies\\Dropbox\\RPG\\Alpha Red\\org\\img" :base-extension "jpg\\|gif\\|png" :publishing-directory "C:\\Users\\bcallies\\Dropbox\\RPG\\Alpha Red\\org\\html\\images\\" :publishing-function org-publish-attachment ) ("css-w" :base-directory "C:\\Users\\bcallies\\Dropbox\\RPG\\Alpha Red\\org\\css" :base-extension "css" :publishing-directory "C:\\Users\\bcallies\\Dropbox\\RPG\\Alpha Red\\org\\html\\css\\" :publishing-function org-publish-attachment ) ("AlphaRedWin" :components ("alpharednotes-w" "images-w" "css-w")) )) Thank You, Brian