On Fri, 18 Mar 2011, Nick Dokos wrote:
Do you have a :sitemap-title entry in your config? Better yet, if there
are no privacy concernts, why don't you post your publishing
configuration?
Nick
From my .emacs:
(setq org-publish-project-alist
'(("org-notes"
:base-directory "/home/lbmoore/notebook/org/"
:publishing-directory "/home/lbmoore/public_html/org/"
:base-extension "org"
:recursive t
:style "<link rel=\"stylesheet\" href=\"css/org-a.css\"
type=\"text/css\"/>"
:link-home "http://caritas/"
:makeindex t
)
("tchkb"
:base-directory "/home/lbmoore/notebook/tchkb/"
:publishing-directory "/home/lbmoore/public_html/tchkb/"
:base-extension "org"
:recursive t
:auto-sitemap t
:style "<link rel=\"stylesheet\" href=\"css/org-a.css\"
type=\"text/css\"/>"
:link-home "http://caritas/"
:makeindex t
)
("org-static"
:base-directory "/home/lbmoore/notebook/org/"
:base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf"
:publishing-directory "/home/lbmoore/public_html/org/"
:recursive t
:publishing-function org-publish-attachment
)
("org-static-kb"
:base-directory "/home/lbmoore/notebook/tchkb/"
:base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf"
:publishing-directory "/home/lbmoore/public_html/tchkb/"
:recursive t
:publishing-function org-publish-attachment
)
("org" :components ("org-notes" "org-static" "tchkb" "org-static-kb"))
))
when I cp the .org files and the .emacs to another machine it generates
fine which make me think that there is a cache or tmp file somewhere that
holds the original title.
L