emacs-wiki-discuss
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[emacs-wiki-discuss] Re: Publishing problem


From: Michael Olson
Subject: [emacs-wiki-discuss] Re: Publishing problem
Date: Fri, 28 Oct 2005 13:21:20 -0500
User-agent: Gnus/5.110004 (No Gnus v0.4) Emacs/22.0.50 (gnu/linux)

Arnaud Bailly <address@hidden> writes:

>       ("my-project"
>        ("~/project/documents/"
>         :default "index"
>         :force-publish ("index")
>         "~/project/documents/conception"
>         :default "index"
>         :force-publish ("index")
>         "~/project/documents/developppement"
>         :default "index"
>         :force-publish ("index"))
>        (:base "xdoc"
>           :path "~/project/workspace/fwk-abailly/xdocs/"
>           :include "~/project/documents/" )
>        (:base "xdoc"
>           :path "~/project/workspace/fwk-abailly/xdocs/conception/" 
>
>           :include "~/project/documents/conception" )
>        (:base "xdoc"
>           :path "~/project/workspace/fwk-abailly/xdocs/developpement/"
>           :include "~/project/documents/developpement" )
>        )

There are a lot of extra :default and :force-publish tags in there.
Also, you might want to use a shorter version of :include for each of
these -- it's probably not matching the file name properly, which
would explain why nothing is being published.  Here's a tweaked
version of your config.

       ("my-project"
        ("~/project/documents/" "~/project/documents/conception"
         "~/project/documents/developppement"
          :default "index"
          :force-publish ("index"))
         (:base "xdoc"
          :path "~/project/workspace/fwk-abailly/xdocs/"
          :include "/documents/[^/]+$" )
         (:base "xdoc"
          :path "~/project/workspace/fwk-abailly/xdocs/conception/"
          :include "/documents/conception/")
         (:base "xdoc"
          :path "~/project/workspace/fwk-abailly/xdocs/developpement/"
          :include "/documents/developpement/")
         )

I'm not sure what the "xdoc" publishing style is, by the way -- is
that a custom style?

-- 
Michael Olson -- FSF Associate Member #652 -- http://www.mwolson.org/
Interests: anime, Debian, XHTML, wiki, Emacs Lisp
  /` |\ | | | IRC: mwolson on freenode.net: #hcoop, #muse, #PurdueLUG
 |_] | \| |_| Jabber: mwolson_at_hcoop.net

Attachment: pgpu9K0D7I13r.pgp
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]