org-publish.el 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669
  1. ;;; org-publish.el --- publish related org-mode files as a website
  2. ;; Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc.
  3. ;; Author: David O'Toole <dto@gnu.org>
  4. ;; Maintainer: Bastien Guerry <bzg AT altern DOT org>
  5. ;; Keywords: hypermedia, outlines, wp
  6. ;; Version: 6.00pre-3
  7. ;; This file is part of GNU Emacs.
  8. ;;
  9. ;; GNU Emacs is free software; you can redistribute it and/or modify
  10. ;; it under the terms of the GNU General Public License as published by
  11. ;; the Free Software Foundation; either version 3, or (at your option)
  12. ;; any later version.
  13. ;; GNU Emacs is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with GNU Emacs; see the file COPYING. If not, write to the
  19. ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  20. ;; Boston, MA 02110-1301, USA.
  21. ;;; Commentary:
  22. ;; Requires at least version 4.27 of org.el
  23. ;; This program allow configurable publishing of related sets of
  24. ;; Org-mode files as a complete website.
  25. ;;
  26. ;; org-publish.el can do the following:
  27. ;;
  28. ;; + Publish all one's org-files to HTML or LaTeX
  29. ;; + Upload HTML, images, attachments and other files to a web server
  30. ;; + Exclude selected private pages from publishing
  31. ;; + Publish a clickable index of pages
  32. ;; + Manage local timestamps for publishing only changed files
  33. ;; + Accept plugin functions to extend range of publishable content
  34. ;;
  35. ;; Special thanks to the org-mode maintainer Carsten Dominik for his
  36. ;; ideas, enthusiasm, and cooperation.
  37. ;;; Installation:
  38. ;; Put org-publish.el in your load path, byte-compile it, and then add
  39. ;; the following lines to your emacs initialization file:
  40. ;; (autoload 'org-publish "org-publish" nil t)
  41. ;; (autoload 'org-publish "org-publish-all" nil t)
  42. ;; (autoload 'org-publish "org-publish-current-file" nil t)
  43. ;; (autoload 'org-publish "org-publish-current-project" nil t)
  44. ;; NOTE: When org-publish.el is included with org.el, those forms are
  45. ;; already in the file org-install.el, and hence don't need to be put
  46. ;; in your emacs initialization file in this case.
  47. ;;; Usage:
  48. ;;
  49. ;; The program's main configuration variable is
  50. ;; `org-publish-project-alist'. See below for example configurations
  51. ;; with commentary.
  52. ;; The main interactive functions are:
  53. ;;
  54. ;; M-x org-publish
  55. ;; M-x org-publish-all
  56. ;; M-x org-publish-current-file
  57. ;; M-x org-publish-current-project
  58. ;;;; Simple example configuration:
  59. ;; (setq org-publish-project-alist
  60. ;; (list
  61. ;; '("org" . (:base-directory "~/org/"
  62. ;; :base-extension "org"
  63. ;; :publishing-directory "~/public_html"
  64. ;; :with-section-numbers nil
  65. ;; :table-of-contents nil
  66. ;; :recursive t
  67. ;; :style "<link rel=stylesheet href=\"../other/mystyle.css\" type=\"text/css\">")))
  68. ;;;; More complex example configuration:
  69. ;; Imagine your *.org files are kept in ~/org, your images in
  70. ;; ~/images, and stylesheets in ~/other. Now imagine you want to
  71. ;; publish the files through an ssh connection to a remote host, via
  72. ;; Tramp-mode. To maintain relative links from *.org files to /images
  73. ;; and /other, we should replicate the same directory structure in
  74. ;; your web server account's designated html root (in this case,
  75. ;; assumed to be ~/html)
  76. ;; Once you've done created the proper directories, you can adapt the
  77. ;; following example configuration to your specific paths, run M-x
  78. ;; org-publish-all, and it should publish the files to the correct
  79. ;; directories on the web server, transforming the *.org files into
  80. ;; HTML, and leaving other files alone.
  81. ;; (setq org-publish-project-alist
  82. ;; (list
  83. ;; '("orgfiles" :base-directory "~/org/"
  84. ;; :base-extension "org"
  85. ;; :publishing-directory "/ssh:user@host:~/html/notebook/"
  86. ;; :publishing-function org-publish-org-to-html
  87. ;; :exclude "PrivatePage.org" ;; regexp
  88. ;; :headline-levels 3
  89. ;; :with-section-numbers nil
  90. ;; :table-of-contents nil
  91. ;; :style "<link rel=stylesheet href=\"../other/mystyle.css\" type=\"text/css\">"
  92. ;; :auto-preamble t
  93. ;; :auto-postamble nil)
  94. ;; ("images" :base-directory "~/images/"
  95. ;; :base-extension "jpg\\|gif\\|png"
  96. ;; :publishing-directory "/ssh:user@host:~/html/images/"
  97. ;; :publishing-function org-publish-attachment)
  98. ;; ("other" :base-directory "~/other/"
  99. ;; :base-extension "css"
  100. ;; :publishing-directory "/ssh:user@host:~/html/other/"
  101. ;; :publishing-function org-publish-attachment)
  102. ;; ("website" :components ("orgfiles" "images" "other"))))
  103. ;; For more information, see the documentation for the variable
  104. ;; `org-publish-project-alist'.
  105. ;; Of course, you don't have to publish to remote directories from
  106. ;; within emacs. You can always just publish to local folders, and
  107. ;; then use the synchronization/upload tool of your choice.
  108. ;;; List of user-visible changes since version 1.27
  109. ;; 1.78: Allow list-valued :publishing-function
  110. ;; 1.77: Added :preparation-function, this allows you to use GNU Make etc.
  111. ;; 1.65: Remove old "composite projects". They're redundant.
  112. ;; 1.64: Allow meta-projects with :components
  113. ;; 1.57: Timestamps flag is now called "org-publish-use-timestamps-flag"
  114. ;; 1.52: Properly set default for :index-filename
  115. ;; 1.48: Composite projects allowed.
  116. ;; :include keyword allowed.
  117. ;; 1.43: Index no longer includes itself in the index.
  118. ;; 1.42: Fix "function definition is void" error
  119. ;; when :publishing-function not set in org-publish-current-file.
  120. ;; 1.41: Fixed bug where index isn't published on first try.
  121. ;; 1.37: Added interactive function "org-publish". Prompts for particular
  122. ;; project name to publish.
  123. ;; 1.34: Added force-publish option to all interactive functions.
  124. ;; 1.32: Fixed "index.org has changed on disk" error during index publishing.
  125. ;; 1.30: Fixed startup error caused by (require 'em-unix)
  126. ;;; Code:
  127. (eval-when-compile
  128. (require 'cl))
  129. (eval-and-compile
  130. (unless (fboundp 'declare-function)
  131. (defmacro declare-function (fn file &optional arglist fileonly))))
  132. (defgroup org-publish nil
  133. "Options for publishing a set of Org-mode and related files."
  134. :tag "Org Publishing"
  135. :group 'org)
  136. (defcustom org-publish-project-alist nil
  137. "Association list to control publishing behavior.
  138. Each element of the alist is a publishing 'project.' The CAR of
  139. each element is a string, uniquely identifying the project. The
  140. CDR of each element is in one of the following forms:
  141. (:property value :property value ... )
  142. OR,
  143. (:components (\"project-1\" \"project-2\" ...))
  144. When the CDR of an element of org-publish-project-alist is in
  145. this second form, the elements of the list after :components are
  146. taken to be components of the project, which group together files
  147. requiring different publishing options. When you publish such a
  148. project with M-x org-publish, the components all publish.
  149. When a property is given a value in org-publish-project-alist, its
  150. setting overrides the value of the corresponding user variable
  151. (if any) during publishing. However, options set within a file
  152. override everything.
  153. Most properties are optional, but some should always be set:
  154. :base-directory Directory containing publishing source files
  155. :base-extension Extension (without the dot!) of source files.
  156. This can be a regular expression.
  157. :publishing-directory Directory (possibly remote) where output
  158. files will be published
  159. The :exclude property may be used to prevent certain files from
  160. being published. Its value may be a string or regexp matching
  161. file names you don't want to be published.
  162. The :include property may be used to include extra files. Its
  163. value may be a list of filenames to include. The filenames are
  164. considered relative to the publishing directory.
  165. When both :include and :exclude properties are given values, the
  166. exclusion step happens first.
  167. One special property controls which back-end function to use for
  168. publishing files in the project. This can be used to extend the
  169. set of file types publishable by org-publish, as well as the set
  170. of output formats.
  171. :publishing-function Function to publish file. The default is
  172. org-publish-org-to-html, but other
  173. values are possible. May also be a
  174. list of functions, in which case
  175. each function in the list is invoked
  176. in turn.
  177. Another property allows you to insert code that prepares a
  178. project for publishing. For example, you could call GNU Make on a
  179. certain makefile, to ensure published files are built up to date.
  180. :preparation-function Function to be called before publishing
  181. this project.
  182. Some properties control details of the Org publishing process,
  183. and are equivalent to the corresponding user variables listed in
  184. the right column. See the documentation for those variables to
  185. learn more about their use and default values.
  186. :language org-export-default-language
  187. :headline-levels org-export-headline-levels
  188. :section-numbers org-export-with-section-numbers
  189. :table-of-contents org-export-with-toc
  190. :emphasize org-export-with-emphasize
  191. :sub-superscript org-export-with-sub-superscripts
  192. :TeX-macros org-export-with-TeX-macros
  193. :fixed-width org-export-with-fixed-width
  194. :tables org-export-with-tables
  195. :table-auto-headline org-export-highlight-first-table-line
  196. :style org-export-html-style
  197. :convert-org-links org-export-html-link-org-files-as-html
  198. :inline-images org-export-html-inline-images
  199. :expand-quoted-html org-export-html-expand
  200. :timestamp org-export-html-with-timestamp
  201. :publishing-directory org-export-publishing-directory
  202. :preamble org-export-html-preamble
  203. :postamble org-export-html-postamble
  204. :auto-preamble org-export-html-auto-preamble
  205. :auto-postamble org-export-html-auto-postamble
  206. :author user-full-name
  207. :email user-mail-address
  208. The following properties may be used to control publishing of an
  209. index of files or summary page for a given project.
  210. :auto-index Whether to publish an index during
  211. org-publish-current-project or org-publish-all.
  212. :index-filename Filename for output of index. Defaults
  213. to 'index.org' (which becomes 'index.html')
  214. :index-title Title of index page. Defaults to name of file.
  215. :index-function Plugin function to use for generation of index.
  216. Defaults to 'org-publish-org-index', which
  217. generates a plain list of links to all files
  218. in the project."
  219. :group 'org-publish
  220. :type 'alist)
  221. (defcustom org-publish-use-timestamps-flag t
  222. "When non-nil, use timestamp checking to publish only changed files.
  223. When nil, do no timestamp checking and always publish all
  224. files."
  225. :group 'org-publish
  226. :type 'boolean)
  227. (defcustom org-publish-timestamp-directory "~/.org-timestamps/"
  228. "Name of directory in which to store publishing timestamps."
  229. :group 'org-publish
  230. :type 'directory)
  231. (defcustom org-publish-before-export-hook nil
  232. "Hook run before export on the Org file.
  233. If the functions in this hook modify the original Org buffer, the
  234. modified buffer will be used for export, but the buffer will be
  235. restored and saved back to its initial state after export."
  236. :group 'org-publish
  237. :type 'hook)
  238. (defcustom org-publish-after-export-hook nil
  239. "Hook run after export on the exported buffer.
  240. If functions in this hook modify the buffer, it will be saved."
  241. :group 'org-publish
  242. :type 'hook)
  243. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  244. ;;; Timestamp-related functions
  245. (defun org-publish-timestamp-filename (filename)
  246. "Return path to timestamp file for filename FILENAME."
  247. (while (string-match
  248. (if (eq system-type 'windows-nt) "~\\|/\\|:" "~\\|/") filename)
  249. (setq filename (replace-match "_" nil t filename)))
  250. (concat org-publish-timestamp-directory filename ".timestamp"))
  251. (defun org-publish-needed-p (filename)
  252. "Return `t' if FILENAME should be published."
  253. (if org-publish-use-timestamps-flag
  254. (if (file-exists-p org-publish-timestamp-directory)
  255. ;; first handle possible wrong timestamp directory
  256. (if (not (file-directory-p org-publish-timestamp-directory))
  257. (error "Org publish timestamp: %s is not a directory"
  258. org-publish-timestamp-directory)
  259. ;; there is a timestamp, check if FILENAME is newer
  260. (file-newer-than-file-p
  261. filename (org-publish-timestamp-filename filename))))
  262. ;; don't use timestamps, always return t
  263. t))
  264. (defun org-publish-update-timestamp (filename)
  265. "Update publishing timestamp for file FILENAME.
  266. If there is no timestamp, create one."
  267. (let ((timestamp-file (org-publish-timestamp-filename filename))
  268. newly-created-timestamp)
  269. (if (not (file-exists-p timestamp-file))
  270. ;; create timestamp file if needed
  271. (with-temp-buffer
  272. (make-directory (file-name-directory timestamp-file) t)
  273. (write-file timestamp-file)
  274. (setq newly-created-timestamp t)))
  275. ;; Emacs 21 doesn't have `set-file-times'
  276. (if (and (fboundp 'set-file-times)
  277. (not newly-created-timestamp))
  278. (set-file-times timestamp-file)
  279. (call-process "touch" nil 0 nil timestamp-file))))
  280. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  281. ;;; Mapping files to project names
  282. (defvar org-publish-files-alist nil
  283. "Alist of files and their parent project.
  284. Each element of this alist is of the form:
  285. (file-name . project-name)")
  286. (defvar org-publish-initial-buffer nil
  287. "The buffer `org-publish' has been called from.")
  288. (defvar org-publish-temp-files nil
  289. "Temporary list of files to be published.")
  290. (defun org-publish-initialize-files-alist (&optional refresh)
  291. "Set `org-publish-files-alist' if it is not set.
  292. Also set it if the optional argument REFRESH is non-nil."
  293. (interactive "P")
  294. (when (or refresh (not org-publish-files-alist))
  295. (setq org-publish-files-alist
  296. (org-publish-get-files org-publish-project-alist))))
  297. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  298. ;;; Compatibility aliases
  299. ;; Delete-dups is not in Emacs <22
  300. (if (fboundp 'delete-dups)
  301. (defalias 'org-publish-delete-dups 'delete-dups)
  302. (defun org-publish-delete-dups (list)
  303. "Destructively remove `equal' duplicates from LIST.
  304. Store the result in LIST and return it. LIST must be a proper list.
  305. Of several `equal' occurrences of an element in LIST, the first
  306. one is kept.
  307. This is a compatibility function for Emacsen without `delete-dups'."
  308. ;; Code from `subr.el' in Emacs 22:
  309. (let ((tail list))
  310. (while tail
  311. (setcdr tail (delete (car tail) (cdr tail)))
  312. (setq tail (cdr tail))))
  313. list))
  314. (declare-function org-publish-delete-dups "org-publish" (list))
  315. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  316. ;;; Getting project information out of org-publish-project-alist
  317. (defun org-publish-get-files (projects-alist &optional no-exclusion)
  318. "Return the list of all publishable files for PROJECTS-ALIST.
  319. If NO-EXCLUSION is non-nil, don't exclude files."
  320. (let (all-files)
  321. ;; add all projects
  322. (mapc
  323. (lambda(p)
  324. (let* ((exclude (plist-get (cdr p) :exclude))
  325. (files (and p (org-publish-get-base-files p exclude))))
  326. ;; add all files from this project
  327. (mapc (lambda(f)
  328. (add-to-list 'all-files
  329. (cons (expand-file-name f) (car p))))
  330. files)))
  331. (org-publish-expand-projects projects-alist))
  332. all-files))
  333. (defun org-publish-expand-projects (projects-alist)
  334. "Expand projects contained in PROJECTS-ALIST."
  335. (let (without-component with-component)
  336. (mapc (lambda(p)
  337. (add-to-list
  338. (if (plist-get (cdr p) :components)
  339. 'with-component 'without-component) p))
  340. projects-alist)
  341. (org-publish-delete-dups
  342. (append without-component
  343. (car (mapcar (lambda(p) (org-publish-expand-components p))
  344. with-component))))))
  345. (defun org-publish-expand-components (project)
  346. "Expand PROJECT into an alist of its components."
  347. (let* ((components (plist-get (cdr project) :components)))
  348. (org-publish-delete-dups
  349. (delq nil (mapcar (lambda(c) (assoc c org-publish-project-alist))
  350. components)))))
  351. (defun org-publish-get-base-files-1 (base-dir &optional recurse match skip-file skip-dir)
  352. "Set `org-publish-temp-files' with files from BASE-DIR directory.
  353. If RECURSE is non-nil, check BASE-DIR recursively. If MATCH is
  354. non-nil, restrict this list to the files matching the regexp
  355. MATCH. If SKIP-FILE is non-nil, skip file matching the regexp
  356. SKIP-FILE. If SKIP-DIR is non-nil, don't check directories
  357. matching the regexp SKIP-DIR when recursiing through BASE-DIR."
  358. (mapc (lambda (f)
  359. (let ((fd-p (car (file-attributes f)))
  360. (fnd (file-name-nondirectory f)))
  361. (if (and fd-p recurse
  362. (not (string-match "^\\.+$" fnd))
  363. (if skip-dir (not (string-match skip-dir fnd)) t))
  364. (org-publish-get-base-files-1 f recurse match skip-file skip-dir)
  365. (unless (or fd-p ;; this is a directory
  366. (and skip-file (string-match skip-file fnd))
  367. (not (string-match match fnd)))
  368. (pushnew f org-publish-temp-files)))))
  369. (directory-files base-dir t (unless recurse match))))
  370. (defun org-publish-get-base-files (project &optional exclude-regexp)
  371. "Return a list of all files in PROJECT.
  372. If EXCLUDE-REGEXP is set, this will be used to filter out
  373. matching filenames."
  374. (let* ((project-plist (cdr project))
  375. (base-dir (file-name-as-directory
  376. (plist-get project-plist :base-directory)))
  377. (include-list (plist-get project-plist :include))
  378. (recurse (plist-get project-plist :recursive))
  379. (extension (or (plist-get project-plist :base-extension) "org"))
  380. (match (concat "^[^\\.].*\\.\\(" extension "\\)$")))
  381. (setq org-publish-temp-files nil)
  382. (org-publish-get-base-files-1 base-dir recurse match
  383. ;; FIXME distinguish exclude regexp
  384. ;; for skip-file and skip-dir?
  385. exclude-regexp exclude-regexp)
  386. org-publish-temp-files))
  387. (defun org-publish-get-project-from-filename (filename)
  388. "Return the project FILENAME belongs."
  389. (let* ((project-name (cdr (assoc (expand-file-name filename)
  390. org-publish-files-alist))))
  391. (assoc project-name org-publish-project-alist)))
  392. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  393. ;;; Pluggable publishing back-end functions
  394. (defun org-publish-org-to (format plist filename pub-dir)
  395. "Publish an org file to FORMAT.
  396. PLIST is the property list for the given project.
  397. FILENAME is the filename of the org file to be published.
  398. PUB-DIR is the publishing directory."
  399. (require 'org)
  400. (unless (file-exists-p pub-dir)
  401. (make-directory pub-dir t))
  402. (find-file filename)
  403. (let ((init-buf (current-buffer))
  404. (init-point (point))
  405. (init-buf-string (buffer-string)) export-buf)
  406. ;; run hooks before exporting
  407. (run-hooks 'org-publish-before-export-hook)
  408. ;; export the possibly modified buffer
  409. (setq export-buf
  410. (funcall (intern (concat "org-export-as-" format))
  411. (plist-get plist :headline-levels)
  412. nil plist nil nil pub-dir))
  413. (set-buffer export-buf)
  414. ;; run hooks after export and save export
  415. (and (run-hooks 'org-publish-after-export-hook)
  416. (if (buffer-modified-p) (save-buffer)))
  417. (kill-buffer export-buf)
  418. ;; maybe restore buffer's content
  419. (set-buffer init-buf)
  420. (when (buffer-modified-p init-buf)
  421. (erase-buffer)
  422. (insert init-buf-string)
  423. (save-buffer)
  424. (goto-char init-point))
  425. (unless (eq init-buf org-publish-initial-buffer)
  426. (kill-buffer init-buf))))
  427. (defun org-publish-org-to-latex (plist filename pub-dir)
  428. "Publish an org file to LaTeX.
  429. See `org-publish-org-to' to the list of arguments."
  430. (org-publish-org-to "latex" plist filename pub-dir))
  431. (defun org-publish-org-to-html (plist filename pub-dir)
  432. "Publish an org file to HTML.
  433. See `org-publish-org-to' to the list of arguments."
  434. (org-publish-org-to "html" plist filename pub-dir))
  435. (defun org-publish-attachment (plist filename pub-dir)
  436. "Publish a file with no transformation of any kind.
  437. See `org-publish-org-to' to the list of arguments."
  438. ;; make sure eshell/cp code is loaded
  439. (eval-and-compile
  440. (require 'eshell)
  441. (require 'esh-maint)
  442. (require 'em-unix))
  443. (eshell/cp filename pub-dir))
  444. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  445. ;;; Publishing files, sets of files, and indices
  446. (defun org-publish-file (filename &optional project)
  447. "Publish file FILENAME from PROJECT."
  448. (when (org-publish-needed-p filename)
  449. (let* ((project
  450. (or project
  451. (or (org-publish-get-project-from-filename filename)
  452. (if (y-or-n-p
  453. (format "%s is not in a project. Re-read the list of projects files? "
  454. (abbreviate-file-name filename)))
  455. ;; If requested, re-initialize the list of projects files
  456. (progn (org-publish-initialize-files-alist t)
  457. (or (org-publish-get-project-from-filename filename)
  458. (error "File %s not part of any known project"
  459. (abbreviate-file-name filename))))
  460. (error "Can't publish file outside of a project")))))
  461. (project-plist (cdr project))
  462. (publishing-function
  463. (or (plist-get project-plist :publishing-function)
  464. 'org-publish-org-to-html))
  465. (base-dir (file-name-as-directory
  466. (file-truename (plist-get project-plist :base-directory))))
  467. (pub-dir (file-name-as-directory
  468. (file-truename (plist-get project-plist :publishing-directory))))
  469. tmp-pub-dir)
  470. (setq tmp-pub-dir
  471. (file-name-directory
  472. (concat pub-dir
  473. (and (string-match (regexp-quote base-dir) filename)
  474. (substring filename (match-end 0))))))
  475. (if (listp publishing-function)
  476. ;; allow chain of publishing functions
  477. (mapc (lambda (f)
  478. (funcall f project-plist filename tmp-pub-dir))
  479. publishing-function)
  480. (funcall publishing-function project-plist filename tmp-pub-dir)))
  481. (org-publish-update-timestamp filename)))
  482. (defun org-publish-projects (projects)
  483. "Publish all files belonging to the PROJECTS alist.
  484. If :auto-index is set, publish the index too."
  485. (mapc
  486. (lambda (project)
  487. (let* ((project-plist (cdr project))
  488. (exclude-regexp (plist-get project-plist :exclude))
  489. (index-p (plist-get project-plist :auto-index))
  490. (index-filename (or (plist-get project-plist :index-filename)
  491. "index.org"))
  492. (index-function (or (plist-get project-plist :index-function)
  493. 'org-publish-org-index))
  494. (preparation-function (plist-get project-plist :preparation-function))
  495. (files (org-publish-get-base-files project exclude-regexp)) file)
  496. (when preparation-function (funcall preparation-function))
  497. (if index-p (funcall index-function project index-filename))
  498. (while (setq file (pop files))
  499. (org-publish-file file project))))
  500. (org-publish-expand-projects projects)))
  501. (defun org-publish-org-index (project &optional index-filename)
  502. "Create an index of pages in set defined by PROJECT.
  503. Optionally set the filename of the index with INDEX-FILENAME.
  504. Default for INDEX-FILENAME is 'index.org'."
  505. (let* ((project-plist (cdr project))
  506. (dir (file-name-as-directory
  507. (plist-get project-plist :base-directory)))
  508. (exclude-regexp (plist-get project-plist :exclude))
  509. (files (org-publish-get-base-files project exclude-regexp))
  510. (index-filename (concat dir (or index-filename "index.org")))
  511. (index-buffer (find-buffer-visiting index-filename))
  512. (ifn (file-name-nondirectory index-filename))
  513. file)
  514. ;; if buffer is already open, kill it to prevent error message
  515. (if index-buffer
  516. (kill-buffer index-buffer))
  517. (with-temp-buffer
  518. (while (setq file (pop files))
  519. (let ((fn (file-name-nondirectory file)))
  520. ;; index shouldn't index itself
  521. (unless (string= fn ifn)
  522. (insert (concat " + [[file:" fn "]["
  523. (file-name-sans-extension fn)
  524. "]]\n")))))
  525. (write-file index-filename)
  526. (kill-buffer (current-buffer)))))
  527. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  528. ;;; Interactive publishing functions
  529. (defalias 'org-publish-project 'org-publish)
  530. ;;;###autoload
  531. (defun org-publish (project &optional force)
  532. "Publish PROJECT."
  533. (interactive "P")
  534. (setq org-publish-initial-buffer (current-buffer))
  535. (save-window-excursion
  536. (let* ((force current-prefix-arg)
  537. (org-publish-use-timestamps-flag
  538. (if force nil org-publish-use-timestamps-flag)))
  539. (org-publish-projects
  540. (list (or project
  541. (assoc (completing-read
  542. "Publish project: "
  543. org-publish-project-alist nil t)
  544. org-publish-project-alist)))))))
  545. ;;;###autoload
  546. (defun org-publish-all (&optional force)
  547. "Publish all projects.
  548. With prefix argument, force publish all files."
  549. (interactive "P")
  550. (org-publish-initialize-files-alist)
  551. (save-window-excursion
  552. (let ((org-publish-use-timestamps-flag
  553. (if force nil org-publish-use-timestamps-flag)))
  554. (org-publish-projects org-publish-project-alist))))
  555. ;;;###autoload
  556. (defun org-publish-current-file (&optional force)
  557. "Publish the current file.
  558. With prefix argument, force publish the file."
  559. (interactive "P")
  560. (org-publish-initialize-files-alist)
  561. (save-window-excursion
  562. (let ((org-publish-use-timestamps-flag
  563. (if force nil org-publish-use-timestamps-flag)))
  564. (org-publish-file (buffer-file-name)))))
  565. ;;;###autoload
  566. (defun org-publish-current-project (&optional force)
  567. "Publish the project associated with the current file.
  568. With a prefix argument, force publishing of all files in
  569. the project."
  570. (interactive "P")
  571. (org-publish-initialize-files-alist)
  572. (save-window-excursion
  573. (let ((project (org-publish-get-project-from-filename (buffer-file-name)))
  574. (org-publish-use-timestamps-flag
  575. (if force nil org-publish-use-timestamps-flag)))
  576. (if (not project)
  577. (error "File %s is not part of any known project" (buffer-file-name)))
  578. (org-publish project))))
  579. (provide 'org-publish)
  580. ;; arch-tag: 72807f3c-8af0-4a6b-8dca-c3376eb25adb
  581. ;;; org-publish.el ends here