X-Git-Url: http://47.100.26.94:8080/?a=blobdiff_plain;f=blog.el;h=2ab08e8cc8a635c358e0440594a4a2229bec6134;hb=b13b4bec130538c082f698b9ce5bb72df72fca05;hp=46b6bf73d5cae2bc51b504c287f8d3da5808c48b;hpb=6216426030de06ca5eafe32f4913396ab7802243;p=blog.git diff --git a/blog.el b/blog.el index 46b6bf7..2ab08e8 100644 --- a/blog.el +++ b/blog.el @@ -27,49 +27,108 @@ (require 'package) (add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/")) (package-initialize) + (setq debug-on-error t) +;; package initialise (unless (package-installed-p 'htmlize) (package-refresh-contents) (package-install 'htmlize)) + +;; constants +;; (defconst root-dir "~/Private/blog/") +(defconst root-dir (file-name-directory (or load-file-name buffer-file-name))) +(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 '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) (setq org-publish-project-alist `( - ("org-notes" - :base-directory "~/Private/blog/" - :base-extension "org" - :publishing-directory "~/Private/publish_html" - :recursive t - :publishing-function org-html-publish-to-html - :headline-levels 4 - :section-numbers nil - :auto-preamble t - :auto-sitemap t ;Generate sitmap.org automagicaly... - :sitemap-filename "sitemap.org" ;... call it sitemap.org (it's the default )... - :sitemap-title "Sitemap" - - :html-table-of-contents nil - :html-postamble nil ;dont export creator auto validation info in html postamble div - :html-link-home "/" - :html-head "" - :html-head-include-default-style nil - :html-head-include-scripts nil) - ("org-static" - :base-directory "~/Private/blog/" - :base-extension "css\\|js\\|png\\|gif\\|pdf\\|mp3\\|ogg\\|swf" - :publishing-directory "~/Private/publish_html" - :recursive t - :publishing-function org-publish-attachment - :table-of-contents nil) - ("org" :components ("org-notes" "org-static")))) - - -(provide 'blog) + ;; ("org-notes" + ;; :base-directory ,root-dir + ;; :base-extension "org" + ;; :publishing-directory ,publish-dir + ;; :recursive t + ;; :publishing-function org-html-publish-to-html + ;; :headline-levels 4 + ;; :section-numbers nil + ;; :auto-preamble t + ;; :auto-sitemap t ;Generate sitmap.org automagicaly... + ;; :sitemap-filename "sitemap.org" ;... call it sitemap.org (it's the default )... + ;; :sitemap-title "Sitemap" + + ;; :html-table-of-contents nil + ;; :html-postamble nil ;dont export creator auto validation info in html postamble div + ;; :html-link-home "/" + ;; :html-head ,(concat "") + ;; :html-head-include-default-style nil + ;; :html-head-include-scripts nil) + ("blog-pages" + ;; publishing + :base-directory ,root-dir + :base-extension "org" + :publishing-directory ,publish-dir + :recursive nil + :publishing-function org-html-publish-to-html + + ;; html style + :html-head ,(concat "") + :html-postamble nil) + ("blog-posts" + ;; publishing + :base-directory ,(concat root-dir "/posts") + :base-extension "org" + :publishing-directory ,(concat publish-dir "/posts") + :recursive t + :publishing-function org-html-publish-to-html + :html-link-home "/" + + ;; html style + :html-head ,(concat "") + ;; don't export creator auto validation info in html postamble div + :html-postamble nil) + ("blog-css" + :base-directory ,(concat root-dir "/css") + :base-extension ".*" + :publishing-directory ,(concat publish-dir "/css") + :publishing-function org-publish-attachment + :recursive t) + ("blog-cgi" + :base-directory ,(concat root-dir "/cgi-bin") + :base-extension ".*" + :publishing-directory ,(concat publish-dir "/cgi-bin") + :publishing-function org-publish-attachment + :recursive t) + ("blog" :components ("blog-pages" "blog-posts" "blog-css" "blog-cgi")))) + +(org-publish-project "blog" force-publish) + +;; (provide 'blog) +(kill-emacs 0) ;;; blog.el ends here