From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Problem with org-publish :include Date: Mon, 4 May 2009 05:22:10 +0200 Message-ID: References: <49F6F05B.9080602@calicojack.co.uk> Mime-Version: 1.0 (Apple Message framework v930.3) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1M0ol1-0008H8-8R for emacs-orgmode@gnu.org; Sun, 03 May 2009 23:22:19 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1M0okv-0008Gw-Q4 for emacs-orgmode@gnu.org; Sun, 03 May 2009 23:22:17 -0400 Received: from [199.232.76.173] (port=34569 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1M0okv-0008Gt-Kq for emacs-orgmode@gnu.org; Sun, 03 May 2009 23:22:13 -0400 Received: from ey-out-1920.google.com ([74.125.78.146]:46959) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1M0okv-0004QC-8d for emacs-orgmode@gnu.org; Sun, 03 May 2009 23:22:13 -0400 Received: by ey-out-1920.google.com with SMTP id 13so716694eye.24 for ; Sun, 03 May 2009 20:22:12 -0700 (PDT) In-Reply-To: <49F6F05B.9080602@calicojack.co.uk> 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: Rick Moynihan Cc: emacs-orgmode On Apr 28, 2009, at 2:02 PM, Rick Moynihan wrote: > 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 " type=\"text/css\">")) > > ; ... > > )) > > 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!!! Does :include ("meeting-notes.org") work better? The documentation says it must be a list, I have never used it. - Carsten