X-Git-Url: http://47.100.26.94:8080/?a=blobdiff_plain;f=blog.el;h=2df12243dcc92be94343480f0b1f1b20537d7422;hb=a1e8b148970121c8f944f5abb2b85cca59090366;hp=3e28bcbcc308d53fd35d6e494e7a6483c541d665;hpb=055045ab3a3ccf69504b2f2e08e3e6527b663980;p=blog.git diff --git a/blog.el b/blog.el index 3e28bcb..2df1224 100644 --- a/blog.el +++ b/blog.el @@ -39,18 +39,31 @@ ;; constants ;; (defconst root-dir "~/Private/blog/") (defconst root-dir (file-name-directory (or load-file-name buffer-file-name))) -(defconst publish-dir (concat root-dir "_site/")) -(defconst res-dir (concat root-dir "res/")) -(defconst css-file (concat res-dir "worg.css")) +(defvar publish-dir (concat root-dir "_site/")) +(defconst css-file "../css/worg.css") +(defvar force-publish nil) +;; (defconst css-file (concat root-dir "css/worg.css")) +(let ((aa (pop command-line-args-left))) + (if (> (length aa) 0) + (setq publish-dir aa))) +(let ((force (pop command-line-args-left))) + (if (string= force "true") + (setq force-publish t))) + + +;; (setq publish-dir (or (pop command-line-args-left) publish-dir)) +(message publish-dir) + (require 'org) -;; (require 'org-html) (require 'ox-publish) (require 'htmlize) - +(message "Org-mode version %s" (org-version)) +(message "publish directory is %s" publish-dir) +(message "force %s" force-publish) ;; To prevent inline-css when exporting html. will use external css (setq org-html-htmlize-output-type 'css) @@ -78,7 +91,7 @@ :html-head-include-scripts nil) ("org-static" :base-directory ,root-dir - :base-extension "css\\|js\\|png\\|gif\\|pdf\\|mp3\\|ogg\\|swf" + :base-extension "css\\|js\\|png\\|gif\\|pdf\\|mp3\\|ogg\\|swf\\|el\\|pl" :publishing-directory ,publish-dir :recursive t :publishing-function org-publish-attachment @@ -86,5 +99,8 @@ ("org" :components ("org-notes" "org-static")))) -(provide 'blog) +(org-publish-project "org" force-publish) + +;; (provide 'blog) +(kill-emacs 0) ;;; blog.el ends here