summaryrefslogtreecommitdiffstats
path: root/.dir-locals.el
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-06-21 21:24:54 +0200
committerGravatar Tom Willemsen2012-06-21 21:24:54 +0200
commitc90daec5f4a91cf1041a5a61411d860ea4329ece (patch)
treecd8932e1dd5dacdc183a91b55ca4d5c7580e9d36 /.dir-locals.el
downloadorgweb-c90daec5f4a91cf1041a5a61411d860ea4329ece.tar.gz
orgweb-c90daec5f4a91cf1041a5a61411d860ea4329ece.zip
Initial commit
Diffstat (limited to '.dir-locals.el')
-rw-r--r--.dir-locals.el44
1 files changed, 44 insertions, 0 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
new file mode 100644
index 0000000..68a6c48
--- /dev/null
+++ b/.dir-locals.el
@@ -0,0 +1,44 @@
+((nil
+ . ((org-export-html-inline-images . t)
+ (org-export-htmlize-output-type . css)
+ (org-publish-project-alist
+ . (("oni-blog"
+ :base-directory "~/code/projects/orgweb/blog/"
+ ;; :publishing-directory "/ssh:ryuslash@ninthfloor.org:public_html/blog/"
+ :publishing-directory "/ssh:ryuslash@ssh.alwaysdata.com:www/org/blog/"
+ :base-extension "org"
+ :publishing-function org-publish-org-to-blog
+ :blog-title "oni blog"
+ :blog-description "Another org blog test"
+ :blog-export-rss t
+ :blog-url "http://ryuslash.ninth.su/blog/"
+ :index-title "oni blog"
+ :recursive nil
+ :table-of-contents nil
+ :section-numbers nil
+ :style-include-default nil
+ :author-info nil
+ :creator-info nil
+ :style "<link rel=\"stylesheet\" type=\"text/css\" href=\"/stylesheet.css\" />")
+ ("oni-files"
+ :base-directory "~/code/projects/orgweb/site/"
+ ;; :publishing-directory "/ssh:ryuslash@ninthfloor.org:public_html/"
+ :publishing-directory "/ssh:ryuslash@ssh.alwaysdata.com:www/org/"
+ :recursive t
+ :base-extension "css\\|png"
+ :publishing-function org-publish-attachment)
+ ("oni-org"
+ :base-directory "~/code/projects/orgweb/site/"
+ ;; :publishing-directory "/ssh:ryuslash@ninthfloor.org:public_html/"
+ :publishing-directory "/ssh:ryuslash@ssh.alwaysdata.com:www/org/"
+ :recursive t
+ :table-of-contents nil
+ :base-extension "org"
+ :publishing-function org-publish-org-to-html
+ :section-numbers nil
+ :style-include-default nil
+ :author-info nil
+ :creator-info nil
+ :style "<link rel=\"stylesheet\" type=\"text/css\" href=\"/stylesheet.css\" />")
+ ("oni"
+ :components ("oni-org" "oni-files" "oni-blog")))))))