From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rick Moynihan Subject: Problem with org-publish :include Date: Tue, 28 Apr 2009 13:02:35 +0100 Message-ID: <49F6F05B.9080602@calicojack.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Lym1Y-000545-Jh for emacs-orgmode@gnu.org; Tue, 28 Apr 2009 08:02:56 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Lym1W-00052e-Qk for emacs-orgmode@gnu.org; Tue, 28 Apr 2009 08:02:56 -0400 Received: from [199.232.76.173] (port=38556 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Lym1V-00052A-U1 for emacs-orgmode@gnu.org; Tue, 28 Apr 2009 08:02:54 -0400 Received: from storm.bpweb.net ([83.223.106.8]:59496) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Lym1V-0006Mm-5F for emacs-orgmode@gnu.org; Tue, 28 Apr 2009 08:02:53 -0400 Received: from lechuck.local (host-77-100-223-163.static.telewest.net [77.100.223.163]) (authenticated bits=0) by storm.bpweb.net (8.13.1/8.13.1) with ESMTP id n3SC2ejT028547 for ; Tue, 28 Apr 2009 13:02:45 +0100 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 Hi all, I am using org-mode v6.26d (from the git repo) and keep all my org files in a single ~/org directory. I'm trying to setup a new org-publish project that publishes a single org-mode file (meeting-notes.org) and excludes all the others. Here's the relevant bit of my org-publish-project-alist: (setq org-publish-project-alist (list '("minutes" . (:base-directory "/home/rick/org/" :base-extension "org" :publishing-directory "/home/rick/public_html/minutes" :exclude "\\.org$" :include "meeting-notes.org" :with-section-numbers nil :table-of-contents nil :style "")) ; ... )) The problem is that I can't seem to get the :include property working. With the above settings crashing on org-publish-project with the error: Wrong type argument: sequencep, 101 I have narrowed it down to the include parameter, but don't know what is wrong with my config. I have also tried setting :include to a (list "meeting-notes.org") with a similar error. Is this a bug in org-mode, my config or something else. Any help greatfully appreciated!!! R.