Arnaud Bailly <[EMAIL PROTECTED]> 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
pgp0kJAb1QviT.pgp
Description: PGP signature
_______________________________________________ emacs-wiki-discuss mailing list emacs-wiki-discuss@nongnu.org http://lists.nongnu.org/mailman/listinfo/emacs-wiki-discuss