[muse.el cleanups and config changes clinton@unknownlamer.org**20070119014819] { hunk ./init.d/muse.el 8 +;;; Project Configuration +(setq muse-project-alist + '(("unknownlamer.org" + ("~/html/muse/src/unknownlamer.org" :default "index") + (:base "xhtml" :path "~/html/muse/site/unknownlamer.org")) + ("clintons-plans" + ("~/plans" :major-mode planner-mode :visit-link planner-visit-link)))) + +(setq muse-xhtml-footer " +

(yow)

+ + + +") + +(setq muse-xhtml-header " + + (muse-html-encoding)\"?> + + + + <lisp> + (concat (muse-publishing-directive \"title\") + (let ((author (muse-publishing-directive \"author\"))) + (if (not (string= author (user-full-name))) + (concat \" (by \" author \")\"))))</lisp> + + muse-html-meta-http-equiv\" + content=\"muse-html-meta-content-type\" /> + + (let ((maintainer (muse-style-element :maintainer))) + (when maintainer + (concat \"\"))) + + (muse-style-element :style-sheet muse-publishing-current-style) + + + +

+ (concat (muse-publishing-directive \"title\") + (let ((author (muse-publishing-directive \"author\"))) + (if (not (string= author (user-full-name))) + (concat \" (by \" author \")\"))))

+ + \n +") + +;;; Hyperspec integration + hunk ./init.d/muse.el 87 + +;;; xhtml backend customizations +(setq muse-xhtml-style-sheet "") hunk ./init.d/planner-cke.el 17 +(require 'planner-bookmark) }