ox-publish.el 50 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343
  1. ;;; ox-publish.el --- Publish Related Org Mode Files as a Website -*- lexical-binding: t; -*-
  2. ;; Copyright (C) 2006-2018 Free Software Foundation, Inc.
  3. ;; Author: David O'Toole <dto@gnu.org>
  4. ;; Maintainer: Carsten Dominik <carsten DOT dominik AT gmail DOT com>
  5. ;; Keywords: hypermedia, outlines, wp
  6. ;; This file is part of GNU Emacs.
  7. ;;
  8. ;; GNU Emacs is free software: you can redistribute it and/or modify
  9. ;; it under the terms of the GNU General Public License as published by
  10. ;; the Free Software Foundation, either version 3 of the License, or
  11. ;; (at your option) any later version.
  12. ;; GNU Emacs is distributed in the hope that it will be useful,
  13. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. ;; GNU General Public License for more details.
  16. ;; You should have received a copy of the GNU General Public License
  17. ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
  18. ;;; Commentary:
  19. ;; This program allow configurable publishing of related sets of
  20. ;; Org mode files as a complete website.
  21. ;;
  22. ;; ox-publish.el can do the following:
  23. ;;
  24. ;; + Publish all one's Org files to a given export back-end
  25. ;; + Upload HTML, images, attachments and other files to a web server
  26. ;; + Exclude selected private pages from publishing
  27. ;; + Publish a clickable sitemap of pages
  28. ;; + Manage local timestamps for publishing only changed files
  29. ;; + Accept plugin functions to extend range of publishable content
  30. ;;
  31. ;; Documentation for publishing is in the manual.
  32. ;;; Code:
  33. (require 'cl-lib)
  34. (require 'format-spec)
  35. (require 'ox)
  36. ;;; Variables
  37. ;; Here, so you find the variable right before it's used the first time:
  38. (defvar org-publish-cache nil
  39. "This will cache timestamps and titles for files in publishing projects.
  40. Blocks could hash sha1 values here.")
  41. (defvar org-publish-after-publishing-hook nil
  42. "Hook run each time a file is published.
  43. Every function in this hook will be called with two arguments:
  44. the name of the original file and the name of the file
  45. produced.")
  46. (defgroup org-export-publish nil
  47. "Options for publishing a set of files."
  48. :tag "Org Publishing"
  49. :group 'org-export)
  50. (defcustom org-publish-project-alist nil
  51. "Association list to control publishing behavior.
  52. \\<org-mode-map>
  53. Each element of the alist is a publishing project. The car of
  54. each element is a string, uniquely identifying the project. The
  55. cdr of each element is in one of the following forms:
  56. 1. A well-formed property list with an even number of elements,
  57. alternating keys and values, specifying parameters for the
  58. publishing process.
  59. (:property value :property value ... )
  60. 2. A meta-project definition, specifying of a list of
  61. sub-projects:
  62. (:components (\"project-1\" \"project-2\" ...))
  63. When the CDR of an element of org-publish-project-alist is in
  64. this second form, the elements of the list after `:components'
  65. are taken to be components of the project, which group together
  66. files requiring different publishing options. When you publish
  67. such a project with `\\[org-publish]', the components all publish.
  68. When a property is given a value in `org-publish-project-alist',
  69. its setting overrides the value of the corresponding user
  70. variable (if any) during publishing. However, options set within
  71. a file override everything.
  72. Most properties are optional, but some should always be set:
  73. `:base-directory'
  74. Directory containing publishing source files.
  75. `:base-extension'
  76. Extension (without the dot!) of source files. This can be
  77. a regular expression. If not given, \"org\" will be used as
  78. default extension. If it is `any', include all the files,
  79. even without extension.
  80. `:publishing-directory'
  81. Directory (possibly remote) where output files will be
  82. published.
  83. If `:recursive' is non-nil files in sub-directories of
  84. `:base-directory' are considered.
  85. The `:exclude' property may be used to prevent certain files from
  86. being published. Its value may be a string or regexp matching
  87. file names you don't want to be published.
  88. The `:include' property may be used to include extra files. Its
  89. value may be a list of filenames to include. The filenames are
  90. considered relative to the base directory.
  91. When both `:include' and `:exclude' properties are given values,
  92. the exclusion step happens first.
  93. One special property controls which back-end function to use for
  94. publishing files in the project. This can be used to extend the
  95. set of file types publishable by `org-publish', as well as the
  96. set of output formats.
  97. `:publishing-function'
  98. Function to publish file. Each back-end may define its
  99. own (i.e. `org-latex-publish-to-pdf',
  100. `org-html-publish-to-html'). May be a list of functions, in
  101. which case each function in the list is invoked in turn.
  102. Another property allows you to insert code that prepares
  103. a project for publishing. For example, you could call GNU Make
  104. on a certain makefile, to ensure published files are built up to
  105. date.
  106. `:preparation-function'
  107. Function to be called before publishing this project. This
  108. may also be a list of functions. Preparation functions are
  109. called with the project properties list as their sole
  110. argument.
  111. `:completion-function'
  112. Function to be called after publishing this project. This
  113. may also be a list of functions. Completion functions are
  114. called with the project properties list as their sole
  115. argument.
  116. Some properties control details of the Org publishing process,
  117. and are equivalent to the corresponding user variables listed in
  118. the right column. Back-end specific properties may also be
  119. included. See the back-end documentation for more information.
  120. :author `user-full-name'
  121. :creator `org-export-creator-string'
  122. :email `user-mail-address'
  123. :exclude-tags `org-export-exclude-tags'
  124. :headline-levels `org-export-headline-levels'
  125. :language `org-export-default-language'
  126. :preserve-breaks `org-export-preserve-breaks'
  127. :section-numbers `org-export-with-section-numbers'
  128. :select-tags `org-export-select-tags'
  129. :time-stamp-file `org-export-time-stamp-file'
  130. :with-archived-trees `org-export-with-archived-trees'
  131. :with-author `org-export-with-author'
  132. :with-creator `org-export-with-creator'
  133. :with-date `org-export-with-date'
  134. :with-drawers `org-export-with-drawers'
  135. :with-email `org-export-with-email'
  136. :with-emphasize `org-export-with-emphasize'
  137. :with-entities `org-export-with-entities'
  138. :with-fixed-width `org-export-with-fixed-width'
  139. :with-footnotes `org-export-with-footnotes'
  140. :with-inlinetasks `org-export-with-inlinetasks'
  141. :with-latex `org-export-with-latex'
  142. :with-planning `org-export-with-planning'
  143. :with-priority `org-export-with-priority'
  144. :with-properties `org-export-with-properties'
  145. :with-smart-quotes `org-export-with-smart-quotes'
  146. :with-special-strings `org-export-with-special-strings'
  147. :with-statistics-cookies' `org-export-with-statistics-cookies'
  148. :with-sub-superscript `org-export-with-sub-superscripts'
  149. :with-toc `org-export-with-toc'
  150. :with-tables `org-export-with-tables'
  151. :with-tags `org-export-with-tags'
  152. :with-tasks `org-export-with-tasks'
  153. :with-timestamps `org-export-with-timestamps'
  154. :with-title `org-export-with-title'
  155. :with-todo-keywords `org-export-with-todo-keywords'
  156. The following properties may be used to control publishing of
  157. a site-map of files or summary page for a given project.
  158. `:auto-sitemap'
  159. Whether to publish a site-map during
  160. `org-publish-current-project' or `org-publish-all'.
  161. `:sitemap-filename'
  162. Filename for output of site-map. Defaults to \"sitemap.org\".
  163. `:sitemap-title'
  164. Title of site-map page. Defaults to name of file.
  165. `:sitemap-style'
  166. Can be `list' (site-map is just an itemized list of the
  167. titles of the files involved) or `tree' (the directory
  168. structure of the source files is reflected in the site-map).
  169. Defaults to `tree'.
  170. `:sitemap-format-entry'
  171. Plugin function used to format entries in the site-map. It
  172. is called with three arguments: the file or directory name
  173. relative to base directory, the site map style and the
  174. current project. It has to return a string.
  175. Defaults to `org-publish-sitemap-default-entry', which turns
  176. file names into links and use document titles as
  177. descriptions. For specific formatting needs, one can use
  178. `org-publish-find-date', `org-publish-find-title' and
  179. `org-publish-find-property', to retrieve additional
  180. information about published documents.
  181. `:sitemap-function'
  182. Plugin function to use for generation of site-map. It is
  183. called with two arguments: the title of the site-map, as
  184. a string, and a representation of the files involved in the
  185. project, as returned by `org-list-to-lisp'. The latter can
  186. further be transformed using `org-list-to-generic',
  187. `org-list-to-subtree' and alike. It has to return a string.
  188. Defaults to `org-publish-sitemap-default', which generates
  189. a plain list of links to all files in the project.
  190. If you create a site-map file, adjust the sorting like this:
  191. `:sitemap-sort-folders'
  192. Where folders should appear in the site-map. Set this to
  193. `first' or `last' to display folders first or last,
  194. respectively. When set to `ignore' (default), folders are
  195. ignored altogether. Any other value will mix files and
  196. folders. This variable has no effect when site-map style is
  197. `tree'.
  198. `:sitemap-sort-files'
  199. The site map is normally sorted alphabetically. You can
  200. change this behavior setting this to `anti-chronologically',
  201. `chronologically', or nil.
  202. `:sitemap-ignore-case'
  203. Should sorting be case-sensitive? Default nil.
  204. The following property control the creation of a concept index.
  205. `:makeindex'
  206. Create a concept index. The file containing the index has to
  207. be called \"theindex.org\". If it doesn't exist in the
  208. project, it will be generated. Contents of the index are
  209. stored in the file \"theindex.inc\", which can be included in
  210. \"theindex.org\".
  211. Other properties affecting publication.
  212. `:body-only'
  213. Set this to t to publish only the body of the documents."
  214. :group 'org-export-publish
  215. :type 'alist)
  216. (defcustom org-publish-use-timestamps-flag t
  217. "Non-nil means use timestamp checking to publish only changed files.
  218. When nil, do no timestamp checking and always publish all files."
  219. :group 'org-export-publish
  220. :type 'boolean)
  221. (defcustom org-publish-timestamp-directory
  222. (convert-standard-filename "~/.org-timestamps/")
  223. "Name of directory in which to store publishing timestamps."
  224. :group 'org-export-publish
  225. :type 'directory)
  226. (defcustom org-publish-list-skipped-files t
  227. "Non-nil means show message about files *not* published."
  228. :group 'org-export-publish
  229. :type 'boolean)
  230. (defcustom org-publish-sitemap-sort-files 'alphabetically
  231. "Method to sort files in site-maps.
  232. Possible values are `alphabetically', `chronologically',
  233. `anti-chronologically' and nil.
  234. If `alphabetically', files will be sorted alphabetically. If
  235. `chronologically', files will be sorted with older modification
  236. time first. If `anti-chronologically', files will be sorted with
  237. newer modification time first. nil won't sort files.
  238. You can overwrite this default per project in your
  239. `org-publish-project-alist', using `:sitemap-sort-files'."
  240. :group 'org-export-publish
  241. :type 'symbol)
  242. (defcustom org-publish-sitemap-sort-folders 'ignore
  243. "A symbol, denoting if folders are sorted first in site-maps.
  244. Possible values are `first', `last', `ignore' and nil.
  245. If `first', folders will be sorted before files.
  246. If `last', folders are sorted to the end after the files.
  247. If `ignore', folders do not appear in the site-map.
  248. Any other value will mix files and folders.
  249. You can overwrite this default per project in your
  250. `org-publish-project-alist', using `:sitemap-sort-folders'.
  251. This variable is ignored when site-map style is `tree'."
  252. :group 'org-export-publish
  253. :type '(choice
  254. (const :tag "Folders before files" first)
  255. (const :tag "Folders after files" last)
  256. (const :tag "No folder in site-map" ignore)
  257. (const :tag "Mix folders and files" nil))
  258. :version "26.1"
  259. :package-version '(Org . "9.1")
  260. :safe #'symbolp)
  261. (defcustom org-publish-sitemap-sort-ignore-case nil
  262. "Non-nil when site-map sorting should ignore case.
  263. You can overwrite this default per project in your
  264. `org-publish-project-alist', using `:sitemap-ignore-case'."
  265. :group 'org-export-publish
  266. :type 'boolean)
  267. ;;; Timestamp-related functions
  268. (defun org-publish-timestamp-filename (filename &optional pub-dir pub-func)
  269. "Return path to timestamp file for filename FILENAME."
  270. (setq filename (concat filename "::" (or pub-dir "") "::"
  271. (format "%s" (or pub-func ""))))
  272. (concat "X" (if (fboundp 'sha1) (sha1 filename) (md5 filename))))
  273. (defun org-publish-needed-p
  274. (filename &optional pub-dir pub-func _true-pub-dir base-dir)
  275. "Non-nil if FILENAME should be published in PUB-DIR using PUB-FUNC.
  276. TRUE-PUB-DIR is where the file will truly end up. Currently we
  277. are not using this - maybe it can eventually be used to check if
  278. the file is present at the target location, and how old it is.
  279. Right now we cannot do this, because we do not know under what
  280. file name the file will be stored - the publishing function can
  281. still decide about that independently."
  282. (let ((rtn (if (not org-publish-use-timestamps-flag) t
  283. (org-publish-cache-file-needs-publishing
  284. filename pub-dir pub-func base-dir))))
  285. (if rtn (message "Publishing file %s using `%s'" filename pub-func)
  286. (when org-publish-list-skipped-files
  287. (message "Skipping unmodified file %s" filename)))
  288. rtn))
  289. (defun org-publish-update-timestamp
  290. (filename &optional pub-dir pub-func _base-dir)
  291. "Update publishing timestamp for file FILENAME.
  292. If there is no timestamp, create one."
  293. (let ((key (org-publish-timestamp-filename filename pub-dir pub-func))
  294. (stamp (org-publish-cache-ctime-of-src filename)))
  295. (org-publish-cache-set key stamp)))
  296. (defun org-publish-remove-all-timestamps ()
  297. "Remove all files in the timestamp directory."
  298. (let ((dir org-publish-timestamp-directory))
  299. (when (and (file-exists-p dir) (file-directory-p dir))
  300. (mapc #'delete-file (directory-files dir 'full "[^.]\\'"))
  301. (org-publish-reset-cache))))
  302. ;;; Getting project information out of `org-publish-project-alist'
  303. (defun org-publish-property (property project &optional default)
  304. "Return value PROPERTY, as a symbol, in PROJECT.
  305. DEFAULT is returned when PROPERTY is not actually set in PROJECT
  306. definition."
  307. (let ((properties (cdr project)))
  308. (if (plist-member properties property)
  309. (plist-get properties property)
  310. default)))
  311. (defun org-publish--expand-file-name (file project)
  312. "Return full file name for FILE in PROJECT.
  313. When FILE is a relative file name, it is expanded according to
  314. project base directory. Always return the true name of the file,
  315. ignoring symlinks."
  316. (file-truename
  317. (if (file-name-absolute-p file) file
  318. (expand-file-name file (org-publish-property :base-directory project)))))
  319. (defun org-publish-expand-projects (projects-alist)
  320. "Expand projects in PROJECTS-ALIST.
  321. This splices all the components into the list."
  322. (let ((rest projects-alist) rtn p components)
  323. (while (setq p (pop rest))
  324. (if (setq components (plist-get (cdr p) :components))
  325. (setq rest (append
  326. (mapcar
  327. (lambda (x)
  328. (or (assoc x org-publish-project-alist)
  329. (user-error "Unknown component %S in project %S"
  330. x (car p))))
  331. components)
  332. rest))
  333. (push p rtn)))
  334. (nreverse (delete-dups (delq nil rtn)))))
  335. (defun org-publish-get-base-files (project)
  336. "Return a list of all files in PROJECT."
  337. (let* ((base-dir (file-name-as-directory
  338. (org-publish-property :base-directory project)))
  339. (extension (or (org-publish-property :base-extension project) "org"))
  340. (match (if (eq extension 'any) ""
  341. (format "^[^\\.].*\\.\\(%s\\)$" extension)))
  342. (base-files
  343. (cl-remove-if #'file-directory-p
  344. (if (org-publish-property :recursive project)
  345. (directory-files-recursively base-dir match)
  346. (directory-files base-dir t match t)))))
  347. (org-uniquify
  348. (append
  349. ;; Files from BASE-DIR. Apply exclusion filter before adding
  350. ;; included files.
  351. (let ((exclude-regexp (org-publish-property :exclude project)))
  352. (if exclude-regexp
  353. (cl-remove-if
  354. (lambda (f)
  355. ;; Match against relative names, yet BASE-DIR file
  356. ;; names are absolute.
  357. (string-match exclude-regexp
  358. (file-relative-name f base-dir)))
  359. base-files)
  360. base-files))
  361. ;; Sitemap file.
  362. (and (org-publish-property :auto-sitemap project)
  363. (list (expand-file-name
  364. (or (org-publish-property :sitemap-filename project)
  365. "sitemap.org")
  366. base-dir)))
  367. ;; Included files.
  368. (mapcar (lambda (f) (expand-file-name f base-dir))
  369. (org-publish-property :include project))))))
  370. (defun org-publish-get-project-from-filename (filename &optional up)
  371. "Return a project that FILENAME belongs to.
  372. When UP is non-nil, return a meta-project (i.e., with a :components part)
  373. publishing FILENAME."
  374. (let* ((filename (file-truename filename))
  375. (project
  376. (cl-some
  377. (lambda (p)
  378. ;; Ignore meta-projects.
  379. (unless (org-publish-property :components p)
  380. (let ((base (file-truename
  381. (org-publish-property :base-directory p))))
  382. (cond
  383. ;; Check if FILENAME is explicitly included in one
  384. ;; project.
  385. ((cl-some (lambda (f) (file-equal-p f filename))
  386. (mapcar (lambda (f) (expand-file-name f base))
  387. (org-publish-property :include p)))
  388. p)
  389. ;; Exclude file names matching :exclude property.
  390. ((let ((exclude-re (org-publish-property :exclude p)))
  391. (and exclude-re
  392. (string-match-p exclude-re
  393. (file-relative-name filename base))))
  394. nil)
  395. ;; Check :extension. Handle special `any'
  396. ;; extension.
  397. ((let ((extension (org-publish-property :base-extension p)))
  398. (not (or (eq extension 'any)
  399. (string= (or extension "org")
  400. (file-name-extension filename)))))
  401. nil)
  402. ;; Check if FILENAME belong to project's base
  403. ;; directory, or some of its sub-directories
  404. ;; if :recursive in non-nil.
  405. ((org-publish-property :recursive p)
  406. (and (file-in-directory-p filename base) p))
  407. ((file-equal-p base (file-name-directory filename)) p)
  408. (t nil)))))
  409. org-publish-project-alist)))
  410. (cond
  411. ((not project) nil)
  412. ((not up) project)
  413. ;; When optional argument UP is non-nil, return the top-most
  414. ;; meta-project effectively publishing FILENAME.
  415. (t
  416. (letrec ((find-parent-project
  417. (lambda (project)
  418. (or (cl-some
  419. (lambda (p)
  420. (and (member (car project)
  421. (org-publish-property :components p))
  422. (funcall find-parent-project p)))
  423. org-publish-project-alist)
  424. project))))
  425. (funcall find-parent-project project))))))
  426. ;;; Tools for publishing functions in back-ends
  427. (defun org-publish-org-to (backend filename extension plist &optional pub-dir)
  428. "Publish an Org file to a specified back-end.
  429. BACKEND is a symbol representing the back-end used for
  430. transcoding. FILENAME is the filename of the Org file to be
  431. published. EXTENSION is the extension used for the output
  432. string, with the leading dot. PLIST is the property list for the
  433. given project.
  434. Optional argument PUB-DIR, when non-nil is the publishing
  435. directory.
  436. Return output file name."
  437. (unless (or (not pub-dir) (file-exists-p pub-dir)) (make-directory pub-dir t))
  438. ;; Check if a buffer visiting FILENAME is already open.
  439. (let* ((org-inhibit-startup t)
  440. (visiting (find-buffer-visiting filename))
  441. (work-buffer (or visiting (find-file-noselect filename))))
  442. (unwind-protect
  443. (with-current-buffer work-buffer
  444. (let ((output (org-export-output-file-name extension nil pub-dir)))
  445. (org-export-to-file backend output
  446. nil nil nil (plist-get plist :body-only)
  447. ;; Add `org-publish--store-crossrefs' and
  448. ;; `org-publish-collect-index' to final output filters.
  449. ;; The latter isn't dependent on `:makeindex', since we
  450. ;; want to keep it up-to-date in cache anyway.
  451. (org-combine-plists
  452. plist
  453. `(:crossrefs
  454. ,(org-publish-cache-get-file-property
  455. ;; Normalize file names in cache.
  456. (file-truename filename) :crossrefs nil t)
  457. :filter-final-output
  458. (org-publish--store-crossrefs
  459. org-publish-collect-index
  460. ,@(plist-get plist :filter-final-output)))))))
  461. ;; Remove opened buffer in the process.
  462. (unless visiting (kill-buffer work-buffer)))))
  463. (defun org-publish-attachment (_plist filename pub-dir)
  464. "Publish a file with no transformation of any kind.
  465. FILENAME is the filename of the Org file to be published. PLIST
  466. is the property list for the given project. PUB-DIR is the
  467. publishing directory.
  468. Return output file name."
  469. (unless (file-directory-p pub-dir)
  470. (make-directory pub-dir t))
  471. (let ((output (expand-file-name (file-name-nondirectory filename) pub-dir)))
  472. (unless (file-equal-p (expand-file-name (file-name-directory filename))
  473. (file-name-as-directory (expand-file-name pub-dir)))
  474. (copy-file filename output t))
  475. ;; Return file name.
  476. output))
  477. ;;; Publishing files, sets of files
  478. (defun org-publish-file (filename &optional project no-cache)
  479. "Publish file FILENAME from PROJECT.
  480. If NO-CACHE is not nil, do not initialize `org-publish-cache'.
  481. This is needed, since this function is used to publish single
  482. files, when entire projects are published (see
  483. `org-publish-projects')."
  484. (let* ((project
  485. (or project
  486. (org-publish-get-project-from-filename filename)
  487. (user-error "File %S is not part of any known project"
  488. (abbreviate-file-name filename))))
  489. (project-plist (cdr project))
  490. (publishing-function
  491. (pcase (org-publish-property :publishing-function project)
  492. (`nil (user-error "No publishing function chosen"))
  493. ((and f (pred listp)) f)
  494. (f (list f))))
  495. (base-dir
  496. (file-name-as-directory
  497. (or (org-publish-property :base-directory project)
  498. (user-error "Project %S does not have :base-directory defined"
  499. (car project)))))
  500. (pub-base-dir
  501. (file-name-as-directory
  502. (or (org-publish-property :publishing-directory project)
  503. (user-error
  504. "Project %S does not have :publishing-directory defined"
  505. (car project)))))
  506. (pub-dir
  507. (file-name-directory
  508. (expand-file-name (file-relative-name filename base-dir)
  509. pub-base-dir))))
  510. (unless no-cache (org-publish-initialize-cache (car project)))
  511. ;; Allow chain of publishing functions.
  512. (dolist (f publishing-function)
  513. (when (org-publish-needed-p filename pub-base-dir f pub-dir base-dir)
  514. (let ((output (funcall f project-plist filename pub-dir)))
  515. (org-publish-update-timestamp filename pub-base-dir f base-dir)
  516. (run-hook-with-args 'org-publish-after-publishing-hook
  517. filename
  518. output))))
  519. ;; Make sure to write cache to file after successfully publishing
  520. ;; a file, so as to minimize impact of a publishing failure.
  521. (org-publish-write-cache-file)))
  522. (defun org-publish-projects (projects)
  523. "Publish all files belonging to the PROJECTS alist.
  524. If `:auto-sitemap' is set, publish the sitemap too. If
  525. `:makeindex' is set, also produce a file \"theindex.org\"."
  526. (dolist (project (org-publish-expand-projects projects))
  527. (let ((plist (cdr project)))
  528. (let ((fun (org-publish-property :preparation-function project)))
  529. (cond
  530. ((consp fun) (dolist (f fun) (funcall f plist)))
  531. ((functionp fun) (funcall fun plist))))
  532. ;; Each project uses its own cache file.
  533. (org-publish-initialize-cache (car project))
  534. (when (org-publish-property :auto-sitemap project)
  535. (let ((sitemap-filename
  536. (or (org-publish-property :sitemap-filename project)
  537. "sitemap.org")))
  538. (org-publish-sitemap project sitemap-filename)))
  539. ;; Publish all files from PROJECT except "theindex.org". Its
  540. ;; publishing will be deferred until "theindex.inc" is
  541. ;; populated.
  542. (let ((theindex
  543. (expand-file-name "theindex.org"
  544. (org-publish-property :base-directory project))))
  545. (dolist (file (org-publish-get-base-files project))
  546. (unless (file-equal-p file theindex)
  547. (org-publish-file file project t)))
  548. ;; Populate "theindex.inc", if needed, and publish
  549. ;; "theindex.org".
  550. (when (org-publish-property :makeindex project)
  551. (org-publish-index-generate-theindex
  552. project (org-publish-property :base-directory project))
  553. (org-publish-file theindex project t)))
  554. (let ((fun (org-publish-property :completion-function project)))
  555. (cond
  556. ((consp fun) (dolist (f fun) (funcall f plist)))
  557. ((functionp fun) (funcall fun plist)))))
  558. (org-publish-write-cache-file)))
  559. ;;; Site map generation
  560. (defun org-publish--sitemap-files-to-lisp (files project style format-entry)
  561. "Represent FILES as a parsed plain list.
  562. FILES is the list of files in the site map. PROJECT is the
  563. current project. STYLE determines is either `list' or `tree'.
  564. FORMAT-ENTRY is a function called on each file which should
  565. return a string. Return value is a list as returned by
  566. `org-list-to-lisp'."
  567. (let ((root (expand-file-name
  568. (file-name-as-directory
  569. (org-publish-property :base-directory project)))))
  570. (pcase style
  571. (`list
  572. (cons 'unordered
  573. (mapcar
  574. (lambda (f)
  575. (list (funcall format-entry
  576. (file-relative-name f root)
  577. style
  578. project)))
  579. files)))
  580. (`tree
  581. (letrec ((files-only (cl-remove-if #'directory-name-p files))
  582. (directories (cl-remove-if-not #'directory-name-p files))
  583. (subtree-to-list
  584. (lambda (dir)
  585. (cons 'unordered
  586. (nconc
  587. ;; Files in DIR.
  588. (mapcar
  589. (lambda (f)
  590. (list (funcall format-entry
  591. (file-relative-name f root)
  592. style
  593. project)))
  594. (cl-remove-if-not
  595. (lambda (f) (string= dir (file-name-directory f)))
  596. files-only))
  597. ;; Direct sub-directories.
  598. (mapcar
  599. (lambda (sub)
  600. (list (funcall format-entry
  601. (file-relative-name sub root)
  602. style
  603. project)
  604. (funcall subtree-to-list sub)))
  605. (cl-remove-if-not
  606. (lambda (f)
  607. (string=
  608. dir
  609. ;; Parent directory.
  610. (file-name-directory (directory-file-name f))))
  611. directories)))))))
  612. (funcall subtree-to-list root)))
  613. (_ (user-error "Unknown site-map style: `%s'" style)))))
  614. (defun org-publish-sitemap (project &optional sitemap-filename)
  615. "Create a sitemap of pages in set defined by PROJECT.
  616. Optionally set the filename of the sitemap with SITEMAP-FILENAME.
  617. Default for SITEMAP-FILENAME is `sitemap.org'."
  618. (let* ((root (expand-file-name
  619. (file-name-as-directory
  620. (org-publish-property :base-directory project))))
  621. (sitemap-filename (concat root (or sitemap-filename "sitemap.org")))
  622. (title (or (org-publish-property :sitemap-title project)
  623. (concat "Sitemap for project " (car project))))
  624. (style (or (org-publish-property :sitemap-style project)
  625. 'tree))
  626. (sitemap-builder (or (org-publish-property :sitemap-function project)
  627. #'org-publish-sitemap-default))
  628. (format-entry (or (org-publish-property :sitemap-format-entry project)
  629. #'org-publish-sitemap-default-entry))
  630. (sort-folders
  631. (org-publish-property :sitemap-sort-folders project
  632. org-publish-sitemap-sort-folders))
  633. (sort-files
  634. (org-publish-property :sitemap-sort-files project
  635. org-publish-sitemap-sort-files))
  636. (ignore-case
  637. (org-publish-property :sitemap-ignore-case project
  638. org-publish-sitemap-sort-ignore-case))
  639. (org-file-p (lambda (f) (equal "org" (file-name-extension f))))
  640. (sort-predicate
  641. (lambda (a b)
  642. (let ((retval t))
  643. ;; First we sort files:
  644. (pcase sort-files
  645. (`alphabetically
  646. (let ((A (if (funcall org-file-p a)
  647. (concat (file-name-directory a)
  648. (org-publish-find-title a project))
  649. a))
  650. (B (if (funcall org-file-p b)
  651. (concat (file-name-directory b)
  652. (org-publish-find-title b project))
  653. b)))
  654. (setq retval
  655. (if ignore-case
  656. (not (string-lessp (upcase B) (upcase A)))
  657. (not (string-lessp B A))))))
  658. ((or `anti-chronologically `chronologically)
  659. (let* ((adate (org-publish-find-date a project))
  660. (bdate (org-publish-find-date b project))
  661. (A (+ (lsh (car adate) 16) (cadr adate)))
  662. (B (+ (lsh (car bdate) 16) (cadr bdate))))
  663. (setq retval
  664. (if (eq sort-files 'chronologically)
  665. (<= A B)
  666. (>= A B)))))
  667. (`nil nil)
  668. (_ (user-error "Invalid sort value %s" sort-files)))
  669. ;; Directory-wise wins:
  670. (when (memq sort-folders '(first last))
  671. ;; a is directory, b not:
  672. (cond
  673. ((and (file-directory-p a) (not (file-directory-p b)))
  674. (setq retval (eq sort-folders 'first)))
  675. ;; a is not a directory, but b is:
  676. ((and (not (file-directory-p a)) (file-directory-p b))
  677. (setq retval (eq sort-folders 'last)))))
  678. retval))))
  679. (message "Generating sitemap for %s" title)
  680. (with-temp-file sitemap-filename
  681. (insert
  682. (let ((files (remove sitemap-filename
  683. (org-publish-get-base-files project))))
  684. ;; Add directories, if applicable.
  685. (unless (and (eq style 'list) (eq sort-folders 'ignore))
  686. (setq files
  687. (nconc (remove root (org-uniquify
  688. (mapcar #'file-name-directory files)))
  689. files)))
  690. ;; Eventually sort all entries.
  691. (when (or sort-files (not (memq sort-folders 'ignore)))
  692. (setq files (sort files sort-predicate)))
  693. (funcall sitemap-builder
  694. title
  695. (org-publish--sitemap-files-to-lisp
  696. files project style format-entry)))))))
  697. (defun org-publish-find-property (file property project &optional backend)
  698. "Find the PROPERTY of FILE in project.
  699. PROPERTY is a keyword referring to an export option, as defined
  700. in `org-export-options-alist' or in export back-ends. In the
  701. latter case, optional argument BACKEND has to be set to the
  702. back-end where the option is defined, e.g.,
  703. (org-publish-find-property file :subtitle 'latex)
  704. Return value may be a string or a list, depending on the type of
  705. PROPERTY, i.e. \"behavior\" parameter from `org-export-options-alist'."
  706. (let ((file (org-publish--expand-file-name file project)))
  707. (when (and (file-readable-p file) (not (directory-name-p file)))
  708. (let* ((org-inhibit-startup t)
  709. (visiting (find-buffer-visiting file))
  710. (buffer (or visiting (find-file-noselect file))))
  711. (unwind-protect
  712. (plist-get (with-current-buffer buffer
  713. (if (not visiting) (org-export-get-environment backend)
  714. ;; Protect local variables in open buffers.
  715. (org-export-with-buffer-copy
  716. (org-export-get-environment backend))))
  717. property)
  718. (unless visiting (kill-buffer buffer)))))))
  719. (defun org-publish-find-title (file project)
  720. "Find the title of FILE in PROJECT."
  721. (let ((file (org-publish--expand-file-name file project)))
  722. (or (org-publish-cache-get-file-property file :title nil t)
  723. (let* ((parsed-title (org-publish-find-property file :title project))
  724. (title
  725. (if parsed-title
  726. ;; Remove property so that the return value is
  727. ;; cache-able (i.e., it can be `read' back).
  728. (org-no-properties
  729. (org-element-interpret-data parsed-title))
  730. (file-name-nondirectory (file-name-sans-extension file)))))
  731. (org-publish-cache-set-file-property file :title title)
  732. title))))
  733. (defun org-publish-find-date (file project)
  734. "Find the date of FILE in PROJECT.
  735. This function assumes FILE is either a directory or an Org file.
  736. If FILE is an Org file and provides a DATE keyword use it. In
  737. any other case use the file system's modification time. Return
  738. time in `current-time' format."
  739. (let ((file (org-publish--expand-file-name file project)))
  740. (if (file-directory-p file) (nth 5 (file-attributes file))
  741. (let ((date (org-publish-find-property file :date project)))
  742. ;; DATE is a secondary string. If it contains a time-stamp,
  743. ;; convert it to internal format. Otherwise, use FILE
  744. ;; modification time.
  745. (cond ((let ((ts (and (consp date) (assq 'timestamp date))))
  746. (and ts
  747. (let ((value (org-element-interpret-data ts)))
  748. (and (org-string-nw-p value)
  749. (org-time-string-to-time value))))))
  750. ((file-exists-p file) (nth 5 (file-attributes file)))
  751. (t (error "No such file: \"%s\"" file)))))))
  752. (defun org-publish-sitemap-default-entry (entry style project)
  753. "Default format for site map ENTRY, as a string.
  754. ENTRY is a file name. STYLE is the style of the sitemap.
  755. PROJECT is the current project."
  756. (cond ((not (directory-name-p entry))
  757. (format "[[file:%s][%s]]"
  758. entry
  759. (org-publish-find-title entry project)))
  760. ((eq style 'tree)
  761. ;; Return only last subdir.
  762. (file-name-nondirectory (directory-file-name entry)))
  763. (t entry)))
  764. (defun org-publish-sitemap-default (title list)
  765. "Default site map, as a string.
  766. TITLE is the the title of the site map. LIST is an internal
  767. representation for the files to include, as returned by
  768. `org-list-to-lisp'. PROJECT is the current project."
  769. (concat "#+TITLE: " title "\n\n"
  770. (org-list-to-org list)))
  771. ;;; Interactive publishing functions
  772. ;;;###autoload
  773. (defalias 'org-publish-project 'org-publish)
  774. ;;;###autoload
  775. (defun org-publish (project &optional force async)
  776. "Publish PROJECT.
  777. PROJECT is either a project name, as a string, or a project
  778. alist (see `org-publish-project-alist' variable).
  779. When optional argument FORCE is non-nil, force publishing all
  780. files in PROJECT. With a non-nil optional argument ASYNC,
  781. publishing will be done asynchronously, in another process."
  782. (interactive
  783. (list (assoc (completing-read "Publish project: "
  784. org-publish-project-alist nil t)
  785. org-publish-project-alist)
  786. current-prefix-arg))
  787. (let ((project (if (not (stringp project)) project
  788. ;; If this function is called in batch mode,
  789. ;; PROJECT is still a string here.
  790. (assoc project org-publish-project-alist))))
  791. (cond
  792. ((not project))
  793. (async
  794. (org-export-async-start (lambda (_) nil)
  795. `(let ((org-publish-use-timestamps-flag
  796. ,(and (not force) org-publish-use-timestamps-flag)))
  797. ;; Expand components right now as external process may not
  798. ;; be aware of complete `org-publish-project-alist'.
  799. (org-publish-projects
  800. ',(org-publish-expand-projects (list project))))))
  801. (t (save-window-excursion
  802. (let ((org-publish-use-timestamps-flag
  803. (and (not force) org-publish-use-timestamps-flag)))
  804. (org-publish-projects (list project))))))))
  805. ;;;###autoload
  806. (defun org-publish-all (&optional force async)
  807. "Publish all projects.
  808. With prefix argument FORCE, remove all files in the timestamp
  809. directory and force publishing all projects. With a non-nil
  810. optional argument ASYNC, publishing will be done asynchronously,
  811. in another process."
  812. (interactive "P")
  813. (if async
  814. (org-export-async-start (lambda (_) nil)
  815. `(progn
  816. (when ',force (org-publish-remove-all-timestamps))
  817. (let ((org-publish-use-timestamps-flag
  818. (if ',force nil ,org-publish-use-timestamps-flag)))
  819. (org-publish-projects ',org-publish-project-alist))))
  820. (when force (org-publish-remove-all-timestamps))
  821. (save-window-excursion
  822. (let ((org-publish-use-timestamps-flag
  823. (if force nil org-publish-use-timestamps-flag)))
  824. (org-publish-projects org-publish-project-alist)))))
  825. ;;;###autoload
  826. (defun org-publish-current-file (&optional force async)
  827. "Publish the current file.
  828. With prefix argument FORCE, force publish the file. When
  829. optional argument ASYNC is non-nil, publishing will be done
  830. asynchronously, in another process."
  831. (interactive "P")
  832. (let ((file (buffer-file-name (buffer-base-buffer))))
  833. (if async
  834. (org-export-async-start (lambda (_) nil)
  835. `(let ((org-publish-use-timestamps-flag
  836. (if ',force nil ,org-publish-use-timestamps-flag)))
  837. (org-publish-file ,file)))
  838. (save-window-excursion
  839. (let ((org-publish-use-timestamps-flag
  840. (if force nil org-publish-use-timestamps-flag)))
  841. (org-publish-file file))))))
  842. ;;;###autoload
  843. (defun org-publish-current-project (&optional force async)
  844. "Publish the project associated with the current file.
  845. With a prefix argument, force publishing of all files in
  846. the project."
  847. (interactive "P")
  848. (save-window-excursion
  849. (let ((project (org-publish-get-project-from-filename
  850. (buffer-file-name (buffer-base-buffer)) 'up)))
  851. (if project (org-publish project force async)
  852. (error "File %s is not part of any known project"
  853. (buffer-file-name (buffer-base-buffer)))))))
  854. ;;; Index generation
  855. (defun org-publish-collect-index (output _backend info)
  856. "Update index for a file in cache.
  857. OUTPUT is the output from transcoding current file. BACKEND is
  858. the back-end that was used for transcoding. INFO is a plist
  859. containing publishing and export options.
  860. The index relative to current file is stored as an alist. An
  861. association has the following shape: (TERM FILE-NAME PARENT),
  862. where TERM is the indexed term, as a string, FILE-NAME is the
  863. original full path of the file where the term in encountered, and
  864. PARENT is a reference to the headline, if any, containing the
  865. original index keyword. When non-nil, this reference is a cons
  866. cell. Its CAR is a symbol among `id', `custom-id' and `name' and
  867. its CDR is a string."
  868. (let ((file (file-truename (plist-get info :input-file))))
  869. (org-publish-cache-set-file-property
  870. file :index
  871. (delete-dups
  872. (org-element-map (plist-get info :parse-tree) 'keyword
  873. (lambda (k)
  874. (when (equal (org-element-property :key k) "INDEX")
  875. (let ((parent (org-export-get-parent-headline k)))
  876. (list (org-element-property :value k)
  877. file
  878. (cond
  879. ((not parent) nil)
  880. ((let ((id (org-element-property :ID parent)))
  881. (and id (cons 'id id))))
  882. ((let ((id (org-element-property :CUSTOM_ID parent)))
  883. (and id (cons 'custom-id id))))
  884. (t (cons 'name
  885. ;; Remove statistics cookie.
  886. (replace-regexp-in-string
  887. "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
  888. (org-element-property :raw-value parent)))))))))
  889. info))))
  890. ;; Return output unchanged.
  891. output)
  892. (defun org-publish-index-generate-theindex (project directory)
  893. "Retrieve full index from cache and build \"theindex.org\".
  894. PROJECT is the project the index relates to. DIRECTORY is the
  895. publishing directory."
  896. (let ((all-files (org-publish-get-base-files project))
  897. full-index)
  898. ;; Compile full index and sort it alphabetically.
  899. (dolist (file all-files
  900. (setq full-index
  901. (sort (nreverse full-index)
  902. (lambda (a b) (string< (downcase (car a))
  903. (downcase (car b)))))))
  904. (let ((index (org-publish-cache-get-file-property file :index)))
  905. (dolist (term index)
  906. (unless (member term full-index) (push term full-index)))))
  907. ;; Write "theindex.inc" in DIRECTORY.
  908. (with-temp-file (expand-file-name "theindex.inc" directory)
  909. (let ((current-letter nil) (last-entry nil))
  910. (dolist (idx full-index)
  911. (let* ((entry (org-split-string (car idx) "!"))
  912. (letter (upcase (substring (car entry) 0 1)))
  913. ;; Transform file into a path relative to publishing
  914. ;; directory.
  915. (file (file-relative-name
  916. (nth 1 idx)
  917. (plist-get (cdr project) :base-directory))))
  918. ;; Check if another letter has to be inserted.
  919. (unless (string= letter current-letter)
  920. (insert (format "* %s\n" letter)))
  921. ;; Compute the first difference between last entry and
  922. ;; current one: it tells the level at which new items
  923. ;; should be added.
  924. (let* ((rank
  925. (if (equal entry last-entry) (1- (length entry))
  926. (cl-loop for n from 0 to (length entry)
  927. unless (equal (nth n entry) (nth n last-entry))
  928. return n)))
  929. (len (length (nthcdr rank entry))))
  930. ;; For each term after the first difference, create
  931. ;; a new sub-list with the term as body. Moreover,
  932. ;; linkify the last term.
  933. (dotimes (n len)
  934. (insert
  935. (concat
  936. (make-string (* (+ rank n) 2) ?\s) " - "
  937. (if (not (= (1- len) n)) (nth (+ rank n) entry)
  938. ;; Last term: Link it to TARGET, if possible.
  939. (let ((target (nth 2 idx)))
  940. (format
  941. "[[%s][%s]]"
  942. ;; Destination.
  943. (pcase (car target)
  944. (`nil (format "file:%s" file))
  945. (`id (format "id:%s" (cdr target)))
  946. (`custom-id (format "file:%s::#%s" file (cdr target)))
  947. (_ (format "file:%s::*%s" file (cdr target))))
  948. ;; Description.
  949. (car (last entry)))))
  950. "\n"))))
  951. (setq current-letter letter last-entry entry))))
  952. ;; Create "theindex.org", if it doesn't exist yet, and provide
  953. ;; a default index file.
  954. (let ((index.org (expand-file-name "theindex.org" directory)))
  955. (unless (file-exists-p index.org)
  956. (with-temp-file index.org
  957. (insert "#+TITLE: Index\n\n#+INCLUDE: \"theindex.inc\"\n\n")))))))
  958. ;;; External Fuzzy Links Resolution
  959. ;;
  960. ;; This part implements tools to resolve [[file.org::*Some headline]]
  961. ;; links, where "file.org" belongs to the current project.
  962. (defun org-publish--store-crossrefs (output _backend info)
  963. "Store cross-references for current published file.
  964. OUTPUT is the produced output, as a string. BACKEND is the export
  965. back-end used, as a symbol. INFO is the final export state, as
  966. a plist.
  967. This function is meant to be used as a final output filter. See
  968. `org-publish-org-to'."
  969. (org-publish-cache-set-file-property
  970. (file-truename (plist-get info :input-file))
  971. :crossrefs
  972. ;; Update `:crossrefs' so as to remove unused references and search
  973. ;; cells. Actually used references are extracted from
  974. ;; `:internal-references', with references as strings removed. See
  975. ;; `org-export-get-reference' for details.
  976. (cl-remove-if (lambda (pair) (stringp (car pair)))
  977. (plist-get info :internal-references)))
  978. ;; Return output unchanged.
  979. output)
  980. (defun org-publish-resolve-external-link (search file)
  981. "Return reference for element matching string SEARCH in FILE.
  982. Return value is an internal reference, as a string.
  983. This function allows resolving external links with a search
  984. option, e.g.,
  985. [[file.org::*heading][description]]
  986. [[file.org::#custom-id][description]]
  987. [[file.org::fuzzy][description]]
  988. It only makes sense to use this if export back-end builds
  989. references with `org-export-get-reference'."
  990. (if (not org-publish-cache)
  991. (progn
  992. (message "Reference %S in file %S cannot be resolved without publishing"
  993. search
  994. file)
  995. "MissingReference")
  996. (let* ((filename (file-truename file))
  997. (crossrefs
  998. (org-publish-cache-get-file-property filename :crossrefs nil t))
  999. (cells
  1000. (org-export-string-to-search-cell (org-link-unescape search))))
  1001. (or
  1002. ;; Look for reference associated to search cells triggered by
  1003. ;; LINK. It can match when targeted file has been published
  1004. ;; already.
  1005. (let ((known (cdr (cl-some (lambda (c) (assoc c crossrefs)) cells))))
  1006. (and known (org-export-format-reference known)))
  1007. ;; Search cell is unknown so far. Generate a new internal
  1008. ;; reference that will be used when the targeted file will be
  1009. ;; published.
  1010. (let ((new (org-export-new-reference crossrefs)))
  1011. (dolist (cell cells) (push (cons cell new) crossrefs))
  1012. (org-publish-cache-set-file-property filename :crossrefs crossrefs)
  1013. (org-export-format-reference new))))))
  1014. (defun org-publish-file-relative-name (filename info)
  1015. "Convert FILENAME to be relative to current project's base directory.
  1016. INFO is the plist containing the current export state. The
  1017. function does not change relative file names."
  1018. (let ((base (plist-get info :base-directory)))
  1019. (if (and base
  1020. (file-name-absolute-p filename)
  1021. (file-in-directory-p filename base))
  1022. (file-relative-name filename base)
  1023. filename)))
  1024. ;;; Caching functions
  1025. (defun org-publish-write-cache-file (&optional free-cache)
  1026. "Write `org-publish-cache' to file.
  1027. If FREE-CACHE, empty the cache."
  1028. (unless org-publish-cache
  1029. (error "`org-publish-write-cache-file' called, but no cache present"))
  1030. (let ((cache-file (org-publish-cache-get ":cache-file:")))
  1031. (unless cache-file
  1032. (error "Cannot find cache-file name in `org-publish-write-cache-file'"))
  1033. (with-temp-file cache-file
  1034. (let (print-level print-length)
  1035. (insert "(setq org-publish-cache \
  1036. \(make-hash-table :test 'equal :weakness nil :size 100))\n")
  1037. (maphash (lambda (k v)
  1038. (insert
  1039. (format "(puthash %S %s%S org-publish-cache)\n"
  1040. k (if (or (listp v) (symbolp v)) "'" "") v)))
  1041. org-publish-cache)))
  1042. (when free-cache (org-publish-reset-cache))))
  1043. (defun org-publish-initialize-cache (project-name)
  1044. "Initialize the projects cache if not initialized yet and return it."
  1045. (unless project-name
  1046. (error "Cannot initialize `org-publish-cache' without projects name in \
  1047. `org-publish-initialize-cache'"))
  1048. (unless (file-exists-p org-publish-timestamp-directory)
  1049. (make-directory org-publish-timestamp-directory t))
  1050. (unless (file-directory-p org-publish-timestamp-directory)
  1051. (error "Org publish timestamp: %s is not a directory"
  1052. org-publish-timestamp-directory))
  1053. (unless (and org-publish-cache
  1054. (string= (org-publish-cache-get ":project:") project-name))
  1055. (let* ((cache-file
  1056. (concat
  1057. (expand-file-name org-publish-timestamp-directory)
  1058. project-name ".cache"))
  1059. (cexists (file-exists-p cache-file)))
  1060. (when org-publish-cache (org-publish-reset-cache))
  1061. (if cexists (load-file cache-file)
  1062. (setq org-publish-cache
  1063. (make-hash-table :test 'equal :weakness nil :size 100))
  1064. (org-publish-cache-set ":project:" project-name)
  1065. (org-publish-cache-set ":cache-file:" cache-file))
  1066. (unless cexists (org-publish-write-cache-file nil))))
  1067. org-publish-cache)
  1068. (defun org-publish-reset-cache ()
  1069. "Empty org-publish-cache and reset it nil."
  1070. (message "%s" "Resetting org-publish-cache")
  1071. (when (hash-table-p org-publish-cache)
  1072. (clrhash org-publish-cache))
  1073. (setq org-publish-cache nil))
  1074. (defun org-publish-cache-file-needs-publishing
  1075. (filename &optional pub-dir pub-func _base-dir)
  1076. "Check the timestamp of the last publishing of FILENAME.
  1077. Return non-nil if the file needs publishing. Also check if
  1078. any included files have been more recently published, so that
  1079. the file including them will be republished as well."
  1080. (unless org-publish-cache
  1081. (error
  1082. "`org-publish-cache-file-needs-publishing' called, but no cache present"))
  1083. (let* ((key (org-publish-timestamp-filename filename pub-dir pub-func))
  1084. (pstamp (org-publish-cache-get key))
  1085. (org-inhibit-startup t)
  1086. included-files-ctime)
  1087. (when (equal (file-name-extension filename) "org")
  1088. (let ((visiting (find-buffer-visiting filename))
  1089. (buf (find-file-noselect filename))
  1090. (case-fold-search t))
  1091. (unwind-protect
  1092. (with-current-buffer buf
  1093. (goto-char (point-min))
  1094. (while (re-search-forward "^[ \t]*#\\+INCLUDE:" nil t)
  1095. (let ((element (org-element-at-point)))
  1096. (when (eq 'keyword (org-element-type element))
  1097. (let* ((value (org-element-property :value element))
  1098. (filename
  1099. (and (string-match "\\`\\(\".+?\"\\|\\S-+\\)" value)
  1100. (let ((m (org-unbracket-string
  1101. "\"" "\"" (match-string 1 value))))
  1102. ;; Ignore search suffix.
  1103. (if (string-match "::.*?\\'" m)
  1104. (substring m 0 (match-beginning 0))
  1105. m)))))
  1106. (when filename
  1107. (push (org-publish-cache-ctime-of-src
  1108. (expand-file-name filename))
  1109. included-files-ctime)))))))
  1110. (unless visiting (kill-buffer buf)))))
  1111. (or (null pstamp)
  1112. (let ((ctime (org-publish-cache-ctime-of-src filename)))
  1113. (or (< pstamp ctime)
  1114. (cl-some (lambda (ct) (< ctime ct)) included-files-ctime))))))
  1115. (defun org-publish-cache-set-file-property
  1116. (filename property value &optional project-name)
  1117. "Set the VALUE for a PROPERTY of file FILENAME in publishing cache to VALUE.
  1118. Use cache file of PROJECT-NAME. If the entry does not exist, it
  1119. will be created. Return VALUE."
  1120. ;; Evtl. load the requested cache file:
  1121. (if project-name (org-publish-initialize-cache project-name))
  1122. (let ((pl (org-publish-cache-get filename)))
  1123. (if pl (progn (plist-put pl property value) value)
  1124. (org-publish-cache-get-file-property
  1125. filename property value nil project-name))))
  1126. (defun org-publish-cache-get-file-property
  1127. (filename property &optional default no-create project-name)
  1128. "Return the value for a PROPERTY of file FILENAME in publishing cache.
  1129. Use cache file of PROJECT-NAME. Return the value of that PROPERTY,
  1130. or DEFAULT, if the value does not yet exist. Create the entry,
  1131. if necessary, unless NO-CREATE is non-nil."
  1132. (when project-name (org-publish-initialize-cache project-name))
  1133. (let ((properties (org-publish-cache-get filename)))
  1134. (cond ((null properties)
  1135. (unless no-create
  1136. (org-publish-cache-set filename (list property default)))
  1137. default)
  1138. ((plist-member properties property) (plist-get properties property))
  1139. (t default))))
  1140. (defun org-publish-cache-get (key)
  1141. "Return the value stored in `org-publish-cache' for key KEY.
  1142. Return nil, if no value or nil is found. Raise an error if the
  1143. cache does not exist."
  1144. (unless org-publish-cache
  1145. (error "`org-publish-cache-get' called, but no cache present"))
  1146. (gethash key org-publish-cache))
  1147. (defun org-publish-cache-set (key value)
  1148. "Store KEY VALUE pair in `org-publish-cache'.
  1149. Returns value on success, else nil. Raise an error if the cache
  1150. does not exist."
  1151. (unless org-publish-cache
  1152. (error "`org-publish-cache-set' called, but no cache present"))
  1153. (puthash key value org-publish-cache))
  1154. (defun org-publish-cache-ctime-of-src (file)
  1155. "Get the ctime of FILE as an integer."
  1156. (let ((attr (file-attributes
  1157. (expand-file-name (or (file-symlink-p file) file)
  1158. (file-name-directory file)))))
  1159. (if (not attr) (error "No such file: \"%s\"" file)
  1160. (+ (lsh (car (nth 5 attr)) 16)
  1161. (cadr (nth 5 attr))))))
  1162. (provide 'ox-publish)
  1163. ;; Local variables:
  1164. ;; generated-autoload-file: "org-loaddefs.el"
  1165. ;; End:
  1166. ;;; ox-publish.el ends here