From mboxrd@z Thu Jan 1 00:00:00 1970 From: Richard G Riley Subject: Publishing webs using org Date: Thu, 03 Jul 2008 15:47:31 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KEPAO-0001ny-8H for emacs-orgmode@gnu.org; Thu, 03 Jul 2008 09:48:08 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KEPAN-0001nl-2R for emacs-orgmode@gnu.org; Thu, 03 Jul 2008 09:48:07 -0400 Received: from [199.232.76.173] (port=41279 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KEPAM-0001ni-Te for emacs-orgmode@gnu.org; Thu, 03 Jul 2008 09:48:06 -0400 Received: from yx-out-1718.google.com ([74.125.44.153]:63377) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KEPAM-00011z-Hv for emacs-orgmode@gnu.org; Thu, 03 Jul 2008 09:48:06 -0400 Received: by yx-out-1718.google.com with SMTP id 34so228122yxf.66 for ; Thu, 03 Jul 2008 06:48:05 -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: org-mode I have a setup containing something like this: (setq org-publish-project-alist '( ("cv-text" :base-directory "~/cv/" :base-extension "org" :publishing-directory "/ssh:sr@hermes:~/webs/rr/cv/" :recursive t :section-numbers nil :publishing-function org-publish-org-to-html :style "" :table-of-contents t :auto-preamble t :auto-postamble t ) ("cv-css" :base-directory "~/cv/" :base-extension "css" :publishing-directory "/ssh:sr@hermes:~/webs/rr/cv/" :publishing-function org-publish-attachment) ("cv" :components ("cv-text" "cv-css") ) ) ) The only way I could see to have the publish transfer the CSS was to create a seperate project and publish the cv-text and cv-css as components of the cv project. I would like to suggest that the org-publish-org-to-html defaults to including other file types such as css. Or possibly there should also be a "me too" setting which includes all files of a certain type or name during a publish using whichever publish method.