ox-s5.el 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. ;;; ox-s5.el --- S5 Presentation Back-End for Org Export Engine
  2. ;; Copyright (C) 2011-2013 Rick Frankel
  3. ;; Author: Rick Frankel <emacs at rickster dot com>
  4. ;; Keywords: outlines, hypermedia, S5, wp
  5. ;; This program is free software; you can redistribute it and/or modify
  6. ;; it under the terms of the GNU General Public License as published by
  7. ;; the Free Software Foundation, either version 3 of the License, or
  8. ;; (at your option) any later version.
  9. ;; This program is distributed in the hope that it will be useful,
  10. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. ;; GNU General Public License for more details.
  13. ;; You should have received a copy of the GNU General Public License
  14. ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. ;;; Commentary:
  16. ;; This library implements an S5 Presentation back-end for the Org
  17. ;; generic exporter.
  18. ;; Installation
  19. ;; ------------
  20. ;; Get the s5 scripts from
  21. ;; http://meyerweb.com/eric/tools/s5/
  22. ;; (Note that the default s5 version is set for using the alpha, 1.2a2.
  23. ;; Copy the ui dir to somewhere reachable from your published presentation
  24. ;; The default (`org-s5-ui-url') is set to "ui" (e.g., in the
  25. ;; same directory as the html file).
  26. ;; Usage
  27. ;; -----
  28. ;; Follow the general instructions at the above website. To generate
  29. ;; incremental builds, you can set the HTML_CONTAINER_CLASS on an
  30. ;; object to "incremental" to make it build. If you want an outline to
  31. ;; build, set the :INCREMENTAL property on the parent headline.
  32. ;; To test it, run:
  33. ;;
  34. ;; M-x org-s5-export-as-html
  35. ;;
  36. ;; in an Org mode buffer. See ox.el and ox-html.el for more details
  37. ;; on how this exporter works.
  38. (require 'ox-html)
  39. (org-export-define-derived-backend s5 html
  40. :menu-entry
  41. (?s "Export to S5 HTML Presentation"
  42. ((?H "To temporary buffer" org-s5-export-as-html)
  43. (?h "To file" org-s5-export-to-html)
  44. (?o "To file and open"
  45. (lambda (a s v b)
  46. (if a (org-s5-export-to-html t s v b)
  47. (org-open-file (org-s5-export-to-html nil s v b)))))))
  48. :options-alist
  49. ((:html-link-home "HTML_LINK_HOME" nil nil)
  50. (:html-link-up "HTML_LINK_UP" nil nil)
  51. (:html-mathjax "HTML_MATHJAX" nil "" space)
  52. (:html-postamble nil "html-postamble" nil t)
  53. (:html-preamble nil "html-preamble" nil t)
  54. (:html-style-extra "HTML_STYLE" nil org-html-style-extra newline)
  55. (:html-style-include-default "HTML_INCLUDE_DEFAULT" nil nil)
  56. (:html-style-include-scripts "HTML_INCLUDE_SCRIPTS" nil nil)
  57. (:s5-version "S5_VERSION" nil org-s5-version)
  58. (:s5-theme-file "S5_THEME_FILE" nil org-s5-theme-file)
  59. (:s5-ui-url "S5_UI_URL" nil org-s5-ui-url)
  60. (:s5-default-view "S5_DEFAULT_VIEW" nil org-s5-default-view)
  61. (:s5-control-visibility "S5_CONTROL_VISIBILITY" nil org-s5-control-visibility))
  62. :translate-alist
  63. ((headline . org-s5-headline)
  64. (plain-list . org-s5-plain-list)
  65. (template . org-s5-template)))
  66. (defgroup org-export-s5 nil
  67. "Options for exporting Org mode files to S5 HTML Presentations."
  68. :tag "Org Export S5"
  69. :group 'org-export-html)
  70. (defcustom org-s5-version "1.2a2"
  71. "Version of s5 being used (for version metadata.) Defaults to
  72. s5 v2 alpha 2.
  73. Can be overridden with S5_VERSION."
  74. :group 'org-export-s5
  75. :type 'string)
  76. (defcustom org-s5-theme-file nil
  77. "Url to S5 theme (slides.css) file. Can be overriden with the
  78. S5_THEME_FILE property. If nil, defaults to
  79. `org-s5-ui-url'/default/slides.css. If it starts with anything but
  80. \"http\" or \"/\", it is used as-is. Otherwise the link in generated
  81. relative to `org-s5-ui-url'.
  82. The links for all other required stylesheets and scripts will be
  83. generated relative to `org-s5-ui-url'/default."
  84. :group 'org-export-s5
  85. :type 'string)
  86. (defcustom org-s5-ui-url "ui"
  87. "Base url to directory containing S5 \"default\" subdirectory
  88. and the \"s5-notes.html\" file.
  89. Can be overriden with the S5_UI_URL property."
  90. :group 'org-export-s5
  91. :type 'string)
  92. (defcustom org-s5-default-view 'slideshow
  93. "Setting for \"defaultView\" meta info."
  94. :group 'org-export-s5
  95. :type '(choice (const slideshow) (const outline)))
  96. (defcustom org-s5-control-visibility 'hidden
  97. "Setting for \"controlVis\" meta info."
  98. :group 'org-export-s5
  99. :type '(choice (const hidden) (const visibile)))
  100. (defcustom org-s5-footer-template
  101. "<div id=\"footer\">
  102. <h1>%author - %title</h1>
  103. </div>"
  104. "Format template to specify footer div. Completed using
  105. `org-fill-template'.
  106. Optional keys include %author, %email, %file, %title and %date.
  107. Note that the div id must be \"footer\"."
  108. :group 'org-export-s5
  109. :type 'string)
  110. (defcustom org-s5-header-template "<div id=\"header\"></div>"
  111. "Format template to specify footer div. Completed using
  112. `org-fill-template'.
  113. Optional keys include %author, %email, %file, %title and %date.
  114. Note that the div id must be \"header\"."
  115. :group 'org-export-s5
  116. :type 'string)
  117. (defcustom org-s5-title-page-template
  118. "<div class=\"slide title-page\">
  119. <h1>%title</h1>
  120. <h1>%author</h1>
  121. <h1>%email</h1>
  122. <h1>%date</h1>
  123. </div>"
  124. "Format template to specify title page div. Completed using
  125. `org-fill-template'.
  126. Optional keys include %author, %email, %file, %title and %date.
  127. Note that the wrapper div must include the class \"slide\"."
  128. :group 'org-export-s5
  129. :type 'string)
  130. (defun org-s5-toc (depth info)
  131. (let* ((headlines (org-export-collect-headlines info depth))
  132. (toc-entries
  133. (loop for headline in headlines collect
  134. (list (org-html-format-headline--wrap
  135. headline info 'org-html-format-toc-headline)
  136. (org-export-get-relative-level headline info)))))
  137. (when toc-entries
  138. (concat
  139. "<div id=\"table-of-contents\" class=\"slide\">\n"
  140. (format "<h1>%s</h1>\n"
  141. (org-html--translate "Table of Contents" info))
  142. "<div id=\"text-table-of-contents\">"
  143. (org-html-toc-text toc-entries)
  144. "</div>\n"
  145. "</div>\n"))))
  146. (defun org-s5--build-style (info)
  147. (let* ((dir (plist-get info :s5-ui-url))
  148. (theme (or (plist-get info :s5-theme-file) "default/slides.css")))
  149. (mapconcat
  150. 'identity
  151. (list
  152. "<!-- style sheet links -->"
  153. (mapconcat
  154. (lambda (list)
  155. (format
  156. (concat
  157. "<link rel='stylesheet' href='%s/default/%s' type='text/css'"
  158. " media='%s' id='%s' />")
  159. dir (nth 0 list) (nth 1 list) (nth 2 list)))
  160. (list
  161. '("outline.css" "screen" "outlineStyle")
  162. '("print.css" "print" "slidePrint")
  163. '("opera.css" "projection" "operaFix")) "\n")
  164. (format (concat
  165. "<link rel='stylesheet' href='%s' type='text/css'"
  166. " media='screen' id='slideProj' />")
  167. (if (string-match-p "^\\(http\\|/\\)" theme) theme
  168. (concat dir "/" theme)))
  169. "<!-- S5 JS -->"
  170. (concat
  171. "<script src='" dir
  172. "/default/slides.js' type='text/javascript'></script>")) "\n")))
  173. (defun org-s5--build-meta-info (info)
  174. (concat
  175. (org-html--build-meta-info info)
  176. (format "<meta name=\"version\" content=\"S5 %s\" />\n"
  177. (plist-get info :s5-version))
  178. (format "<meta name='defaultView' content='%s' />\n"
  179. (plist-get info :s5-default-view))
  180. (format "<meta name='controlVis' content='%s' />"
  181. (plist-get info :s5-control-visibility))))
  182. (defun org-s5-headline (headline contents info)
  183. (let ((org-html-toplevel-hlevel 1)
  184. (class (or (org-element-property :HTML_CONTAINER_CLASS headline) ""))
  185. (level (org-export-get-relative-level headline info)))
  186. (when (and (= 1 level) (not (string-match-p "\\<slide\\>" class)))
  187. (org-element-put-property headline :HTML_CONTAINER_CLASS (concat class " slide")))
  188. (org-html-headline headline contents info)))
  189. (defun org-s5-plain-list (plain-list contents info)
  190. "Transcode a PLAIN-LIST element from Org to HTML.
  191. CONTENTS is the contents of the list. INFO is a plist holding
  192. contextual information.
  193. If a containing headline has the property :INCREMENTAL,
  194. then the \"incremental\" class will be added to the to the list,
  195. which will make the list into a \"build\"."
  196. (let* ((type (org-element-property :type plain-list))
  197. (tag (case type
  198. (ordered "ol")
  199. (unordered "ul")
  200. (descriptive "dl"))))
  201. (format "%s\n%s%s"
  202. (format
  203. "<%s class='org-%s%s'>" tag tag
  204. (if (org-export-get-node-property :INCREMENTAL plain-list t)
  205. " incremental" ""))
  206. contents (org-html-end-plain-list type))))
  207. (defun org-s5-template-alist (info)
  208. `(
  209. ("title" . ,(car (plist-get info :title)))
  210. ("author" . ,(car (plist-get info :author)))
  211. ("email" . ,(plist-get info :email))
  212. ("date" . ,(nth 0 (plist-get info :date)))
  213. ("file" . ,(plist-get info :input-file))))
  214. (defun org-s5-template (contents info)
  215. "Return complete document string after HTML conversion.
  216. CONTENTS is the transcoded contents string. INFO is a plist
  217. holding export options."
  218. (mapconcat
  219. 'identity
  220. (list
  221. "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"
  222. \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">"
  223. (format "<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"%s\" xml:lang=\"%s\">"
  224. (plist-get info :language) (plist-get info :language))
  225. "<head>"
  226. (org-s5--build-meta-info info)
  227. (org-s5--build-style info)
  228. (org-html--build-style info)
  229. (org-html--build-mathjax-config info)
  230. "</head>"
  231. "<body>"
  232. "<div class=\"layout\">"
  233. "<div id=\"controls\"><!-- no edit --></div>"
  234. "<div id=\"currentSlide\"><!-- no edit --></div>"
  235. (org-fill-template
  236. org-s5-header-template (org-s5-template-alist info))
  237. (org-fill-template
  238. org-s5-footer-template (org-s5-template-alist info))
  239. "</div>"
  240. (format "<div id=\"%s\" class=\"presentation\">" (nth 1 org-html-divs))
  241. ;; title page
  242. (org-fill-template
  243. org-s5-title-page-template (org-s5-template-alist info))
  244. (let ((depth (plist-get info :with-toc)))
  245. (when depth (org-s5-toc depth info)))
  246. contents
  247. "</div>"
  248. "</body>"
  249. "</html>\n") "\n"))
  250. (defun org-s5-export-as-html
  251. (&optional async subtreep visible-only body-only ext-plist)
  252. "Export current buffer to an HTML buffer.
  253. If narrowing is active in the current buffer, only export its
  254. narrowed part.
  255. If a region is active, export that region.
  256. A non-nil optional argument ASYNC means the process should happen
  257. asynchronously. The resulting buffer should be accessible
  258. through the `org-export-stack' interface.
  259. When optional argument SUBTREEP is non-nil, export the sub-tree
  260. at point, extracting information from the headline properties
  261. first.
  262. When optional argument VISIBLE-ONLY is non-nil, don't export
  263. contents of hidden elements.
  264. When optional argument BODY-ONLY is non-nil, only write code
  265. between \"<body>\" and \"</body>\" tags.
  266. EXT-PLIST, when provided, is a property list with external
  267. parameters overriding Org default settings, but still inferior to
  268. file-local settings.
  269. Export is done in a buffer named \"*Org S5 Export*\", which
  270. will be displayed when `org-export-show-temporary-export-buffer'
  271. is non-nil."
  272. (interactive)
  273. (if async
  274. (org-export-async-start
  275. (lambda (output)
  276. (with-current-buffer (get-buffer-create "*Org S5 Export*")
  277. (erase-buffer)
  278. (insert output)
  279. (goto-char (point-min))
  280. (nxml-mode)
  281. (org-export-add-to-stack (current-buffer) 's5)))
  282. `(org-export-as 's5 ,subtreep ,visible-only ,body-only ',ext-plist))
  283. (let ((outbuf (org-export-to-buffer
  284. 's5 "*Org S5 Export*"
  285. subtreep visible-only body-only ext-plist)))
  286. ;; Set major mode.
  287. (with-current-buffer outbuf (nxml-mode))
  288. (when org-export-show-temporary-export-buffer
  289. (switch-to-buffer-other-window outbuf)))))
  290. (defun org-s5-export-to-html
  291. (&optional async subtreep visible-only body-only ext-plist)
  292. "Export current buffer to a S5 HTML file.
  293. If narrowing is active in the current buffer, only export its
  294. narrowed part.
  295. If a region is active, export that region.
  296. A non-nil optional argument ASYNC means the process should happen
  297. asynchronously. The resulting file should be accessible through
  298. the `org-export-stack' interface.
  299. When optional argument SUBTREEP is non-nil, export the sub-tree
  300. at point, extracting information from the headline properties
  301. first.
  302. When optional argument VISIBLE-ONLY is non-nil, don't export
  303. contents of hidden elements.
  304. When optional argument BODY-ONLY is non-nil, only write code
  305. between \"<body>\" and \"</body>\" tags.
  306. EXT-PLIST, when provided, is a property list with external
  307. parameters overriding Org default settings, but still inferior to
  308. file-local settings.
  309. Return output file's name."
  310. (interactive)
  311. (let* ((extension (concat "." org-html-extension))
  312. (file (org-export-output-file-name extension subtreep))
  313. (org-export-coding-system org-html-coding-system))
  314. (if async
  315. (org-export-async-start
  316. (lambda (f) (org-export-add-to-stack f 's5))
  317. (let ((org-export-coding-system org-html-coding-system))
  318. `(expand-file-name
  319. (org-export-to-file
  320. 's5 ,file ,subtreep ,visible-only ,body-only ',ext-plist))))
  321. (let ((org-export-coding-system org-html-coding-system))
  322. (org-export-to-file
  323. 's5 file subtreep visible-only body-only ext-plist)))))
  324. (defun org-s5-publish-to-html (plist filename pub-dir)
  325. "Publish an org file to S5 HTML Presentation.
  326. FILENAME is the filename of the Org file to be published. PLIST
  327. is the property list for the given project. PUB-DIR is the
  328. publishing directory.
  329. Return output file name."
  330. (org-publish-org-to 's5 filename ".html" plist pub-dir))
  331. (provide 'ox-s5)