Update copyright year for files changed since 2013
[org-mode.git] / lisp / ox-publish.el
blob55cb6466e9c098d3f6da043f2f9ae30f1bbaa569
1 ;;; ox-publish.el --- Publish Related Org Mode Files as a Website
2 ;; Copyright (C) 2006-2014 Free Software Foundation, Inc.
4 ;; Author: David O'Toole <dto@gnu.org>
5 ;; Maintainer: Carsten Dominik <carsten DOT dominik AT gmail DOT com>
6 ;; Keywords: hypermedia, outlines, wp
8 ;; This file is part of GNU Emacs.
9 ;;
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;; Commentary:
25 ;; This program allow configurable publishing of related sets of
26 ;; Org mode files as a complete website.
28 ;; ox-publish.el can do the following:
30 ;; + Publish all one's Org files to a given export back-end
31 ;; + Upload HTML, images, attachments and other files to a web server
32 ;; + Exclude selected private pages from publishing
33 ;; + Publish a clickable sitemap of pages
34 ;; + Manage local timestamps for publishing only changed files
35 ;; + Accept plugin functions to extend range of publishable content
37 ;; Documentation for publishing is in the manual.
39 ;;; Code:
41 (eval-when-compile (require 'cl))
42 (require 'format-spec)
43 (require 'ox)
47 ;;; Variables
49 (defvar org-publish-temp-files nil
50 "Temporary list of files to be published.")
52 ;; Here, so you find the variable right before it's used the first time:
53 (defvar org-publish-cache nil
54 "This will cache timestamps and titles for files in publishing projects.
55 Blocks could hash sha1 values here.")
57 (defgroup org-publish nil
58 "Options for publishing a set of Org-mode and related files."
59 :tag "Org Publishing"
60 :group 'org)
62 (defcustom org-publish-project-alist nil
63 "Association list to control publishing behavior.
64 Each element of the alist is a publishing 'project.' The CAR of
65 each element is a string, uniquely identifying the project. The
66 CDR of each element is in one of the following forms:
68 1. A well-formed property list with an even number of elements,
69 alternating keys and values, specifying parameters for the
70 publishing process.
72 \(:property value :property value ... )
74 2. A meta-project definition, specifying of a list of
75 sub-projects:
77 \(:components (\"project-1\" \"project-2\" ...))
79 When the CDR of an element of org-publish-project-alist is in
80 this second form, the elements of the list after `:components'
81 are taken to be components of the project, which group together
82 files requiring different publishing options. When you publish
83 such a project with \\[org-publish], the components all publish.
85 When a property is given a value in `org-publish-project-alist',
86 its setting overrides the value of the corresponding user
87 variable (if any) during publishing. However, options set within
88 a file override everything.
90 Most properties are optional, but some should always be set:
92 `:base-directory'
94 Directory containing publishing source files.
96 `:base-extension'
98 Extension (without the dot!) of source files. This can be
99 a regular expression. If not given, \"org\" will be used as
100 default extension.
102 `:publishing-directory'
104 Directory (possibly remote) where output files will be
105 published.
107 The `:exclude' property may be used to prevent certain files from
108 being published. Its value may be a string or regexp matching
109 file names you don't want to be published.
111 The `:include' property may be used to include extra files. Its
112 value may be a list of filenames to include. The filenames are
113 considered relative to the base directory.
115 When both `:include' and `:exclude' properties are given values,
116 the exclusion step happens first.
118 One special property controls which back-end function to use for
119 publishing files in the project. This can be used to extend the
120 set of file types publishable by `org-publish', as well as the
121 set of output formats.
123 `:publishing-function'
125 Function to publish file. Each back-end may define its
126 own (i.e. `org-latex-publish-to-pdf',
127 `org-html-publish-to-html'). May be a list of functions, in
128 which case each function in the list is invoked in turn.
130 Another property allows you to insert code that prepares
131 a project for publishing. For example, you could call GNU Make
132 on a certain makefile, to ensure published files are built up to
133 date.
135 `:preparation-function'
137 Function to be called before publishing this project. This
138 may also be a list of functions.
140 `:completion-function'
142 Function to be called after publishing this project. This
143 may also be a list of functions.
145 Some properties control details of the Org publishing process,
146 and are equivalent to the corresponding user variables listed in
147 the right column. Back-end specific properties may also be
148 included. See the back-end documentation for more information.
150 :author `user-full-name'
151 :creator `org-export-creator-string'
152 :email `user-mail-address'
153 :exclude-tags `org-export-exclude-tags'
154 :headline-levels `org-export-headline-levels'
155 :language `org-export-default-language'
156 :preserve-breaks `org-export-preserve-breaks'
157 :section-numbers `org-export-with-section-numbers'
158 :select-tags `org-export-select-tags'
159 :time-stamp-file `org-export-time-stamp-file'
160 :with-archived-trees `org-export-with-archived-trees'
161 :with-author `org-export-with-author'
162 :with-creator `org-export-with-creator'
163 :with-date `org-export-with-date'
164 :with-drawers `org-export-with-drawers'
165 :with-email `org-export-with-email'
166 :with-emphasize `org-export-with-emphasize'
167 :with-entities `org-export-with-entities'
168 :with-fixed-width `org-export-with-fixed-width'
169 :with-footnotes `org-export-with-footnotes'
170 :with-inlinetasks `org-export-with-inlinetasks'
171 :with-latex `org-export-with-latex'
172 :with-priority `org-export-with-priority'
173 :with-smart-quotes `org-export-with-smart-quotes'
174 :with-special-strings `org-export-with-special-strings'
175 :with-statistics-cookies' `org-export-with-statistics-cookies'
176 :with-sub-superscript `org-export-with-sub-superscripts'
177 :with-toc `org-export-with-toc'
178 :with-tables `org-export-with-tables'
179 :with-tags `org-export-with-tags'
180 :with-tasks `org-export-with-tasks'
181 :with-timestamps `org-export-with-timestamps'
182 :with-planning `org-export-with-planning'
183 :with-todo-keywords `org-export-with-todo-keywords'
185 The following properties may be used to control publishing of
186 a site-map of files or summary page for a given project.
188 `:auto-sitemap'
190 Whether to publish a site-map during
191 `org-publish-current-project' or `org-publish-all'.
193 `:sitemap-filename'
195 Filename for output of sitemap. Defaults to \"sitemap.org\".
197 `:sitemap-title'
199 Title of site-map page. Defaults to name of file.
201 `:sitemap-function'
203 Plugin function to use for generation of site-map. Defaults
204 to `org-publish-org-sitemap', which generates a plain list of
205 links to all files in the project.
207 `:sitemap-style'
209 Can be `list' (site-map is just an itemized list of the
210 titles of the files involved) or `tree' (the directory
211 structure of the source files is reflected in the site-map).
212 Defaults to `tree'.
214 `:sitemap-sans-extension'
216 Remove extension from site-map's file-names. Useful to have
217 cool URIs (see http://www.w3.org/Provider/Style/URI).
218 Defaults to nil.
220 If you create a site-map file, adjust the sorting like this:
222 `:sitemap-sort-folders'
224 Where folders should appear in the site-map. Set this to
225 `first' (default) or `last' to display folders first or last,
226 respectively. Any other value will mix files and folders.
228 `:sitemap-sort-files'
230 The site map is normally sorted alphabetically. You can
231 change this behaviour setting this to `anti-chronologically',
232 `chronologically', or nil.
234 `:sitemap-ignore-case'
236 Should sorting be case-sensitive? Default nil.
238 The following property control the creation of a concept index.
240 `:makeindex'
242 Create a concept index. The file containing the index has to
243 be called \"theindex.org\". If it doesn't exist in the
244 project, it will be generated. Contents of the index are
245 stored in the file \"theindex.inc\", which can be included in
246 \"theindex.org\".
248 Other properties affecting publication.
250 `:body-only'
252 Set this to t to publish only the body of the documents."
253 :group 'org-export-publish
254 :type 'alist)
256 (defcustom org-publish-use-timestamps-flag t
257 "Non-nil means use timestamp checking to publish only changed files.
258 When nil, do no timestamp checking and always publish all files."
259 :group 'org-export-publish
260 :type 'boolean)
262 (defcustom org-publish-timestamp-directory
263 (convert-standard-filename "~/.org-timestamps/")
264 "Name of directory in which to store publishing timestamps."
265 :group 'org-export-publish
266 :type 'directory)
268 (defcustom org-publish-list-skipped-files t
269 "Non-nil means show message about files *not* published."
270 :group 'org-export-publish
271 :type 'boolean)
273 (defcustom org-publish-sitemap-sort-files 'alphabetically
274 "Method to sort files in site-maps.
275 Possible values are `alphabetically', `chronologically',
276 `anti-chronologically' and nil.
278 If `alphabetically', files will be sorted alphabetically. If
279 `chronologically', files will be sorted with older modification
280 time first. If `anti-chronologically', files will be sorted with
281 newer modification time first. nil won't sort files.
283 You can overwrite this default per project in your
284 `org-publish-project-alist', using `:sitemap-sort-files'."
285 :group 'org-export-publish
286 :type 'symbol)
288 (defcustom org-publish-sitemap-sort-folders 'first
289 "A symbol, denoting if folders are sorted first in sitemaps.
290 Possible values are `first', `last', and nil.
291 If `first', folders will be sorted before files.
292 If `last', folders are sorted to the end after the files.
293 Any other value will not mix files and folders.
295 You can overwrite this default per project in your
296 `org-publish-project-alist', using `:sitemap-sort-folders'."
297 :group 'org-export-publish
298 :type 'symbol)
300 (defcustom org-publish-sitemap-sort-ignore-case nil
301 "Non-nil when site-map sorting should ignore case.
303 You can overwrite this default per project in your
304 `org-publish-project-alist', using `:sitemap-ignore-case'."
305 :group 'org-export-publish
306 :type 'boolean)
308 (defcustom org-publish-sitemap-date-format "%Y-%m-%d"
309 "Format for printing a date in the sitemap.
310 See `format-time-string' for allowed formatters."
311 :group 'org-export-publish
312 :type 'string)
314 (defcustom org-publish-sitemap-file-entry-format "%t"
315 "Format string for site-map file entry.
316 You could use brackets to delimit on what part the link will be.
318 %t is the title.
319 %a is the author.
320 %d is the date formatted using `org-publish-sitemap-date-format'."
321 :group 'org-export-publish
322 :type 'string)
326 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
327 ;;; Timestamp-related functions
329 (defun org-publish-timestamp-filename (filename &optional pub-dir pub-func)
330 "Return path to timestamp file for filename FILENAME."
331 (setq filename (concat filename "::" (or pub-dir "") "::"
332 (format "%s" (or pub-func ""))))
333 (concat "X" (if (fboundp 'sha1) (sha1 filename) (md5 filename))))
335 (defun org-publish-needed-p
336 (filename &optional pub-dir pub-func true-pub-dir base-dir)
337 "Non-nil if FILENAME should be published in PUB-DIR using PUB-FUNC.
338 TRUE-PUB-DIR is where the file will truly end up. Currently we
339 are not using this - maybe it can eventually be used to check if
340 the file is present at the target location, and how old it is.
341 Right now we cannot do this, because we do not know under what
342 file name the file will be stored - the publishing function can
343 still decide about that independently."
344 (let ((rtn (if (not org-publish-use-timestamps-flag) t
345 (org-publish-cache-file-needs-publishing
346 filename pub-dir pub-func base-dir))))
347 (if rtn (message "Publishing file %s using `%s'" filename pub-func)
348 (when org-publish-list-skipped-files
349 (message "Skipping unmodified file %s" filename)))
350 rtn))
352 (defun org-publish-update-timestamp
353 (filename &optional pub-dir pub-func base-dir)
354 "Update publishing timestamp for file FILENAME.
355 If there is no timestamp, create one."
356 (let ((key (org-publish-timestamp-filename filename pub-dir pub-func))
357 (stamp (org-publish-cache-ctime-of-src filename)))
358 (org-publish-cache-set key stamp)))
360 (defun org-publish-remove-all-timestamps ()
361 "Remove all files in the timestamp directory."
362 (let ((dir org-publish-timestamp-directory)
363 files)
364 (when (and (file-exists-p dir) (file-directory-p dir))
365 (mapc 'delete-file (directory-files dir 'full "[^.]\\'"))
366 (org-publish-reset-cache))))
370 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
371 ;;; Getting project information out of `org-publish-project-alist'
373 (defun org-publish-expand-projects (projects-alist)
374 "Expand projects in PROJECTS-ALIST.
375 This splices all the components into the list."
376 (let ((rest projects-alist) rtn p components)
377 (while (setq p (pop rest))
378 (if (setq components (plist-get (cdr p) :components))
379 (setq rest (append
380 (mapcar (lambda (x) (assoc x org-publish-project-alist))
381 components)
382 rest))
383 (push p rtn)))
384 (nreverse (delete-dups (delq nil rtn)))))
386 (defvar org-publish-sitemap-sort-files)
387 (defvar org-publish-sitemap-sort-folders)
388 (defvar org-publish-sitemap-ignore-case)
389 (defvar org-publish-sitemap-requested)
390 (defvar org-publish-sitemap-date-format)
391 (defvar org-publish-sitemap-file-entry-format)
392 (defun org-publish-compare-directory-files (a b)
393 "Predicate for `sort', that sorts folders and files for sitemap."
394 (let ((retval t))
395 (when (or org-publish-sitemap-sort-files org-publish-sitemap-sort-folders)
396 ;; First we sort files:
397 (when org-publish-sitemap-sort-files
398 (case org-publish-sitemap-sort-files
399 (alphabetically
400 (let* ((adir (file-directory-p a))
401 (aorg (and (string-match "\\.org$" a) (not adir)))
402 (bdir (file-directory-p b))
403 (borg (and (string-match "\\.org$" b) (not bdir)))
404 (A (if aorg (concat (file-name-directory a)
405 (org-publish-find-title a)) a))
406 (B (if borg (concat (file-name-directory b)
407 (org-publish-find-title b)) b)))
408 (setq retval (if org-publish-sitemap-ignore-case
409 (not (string-lessp (upcase B) (upcase A)))
410 (not (string-lessp B A))))))
411 ((anti-chronologically chronologically)
412 (let* ((adate (org-publish-find-date a))
413 (bdate (org-publish-find-date b))
414 (A (+ (lsh (car adate) 16) (cadr adate)))
415 (B (+ (lsh (car bdate) 16) (cadr bdate))))
416 (setq retval
417 (if (eq org-publish-sitemap-sort-files 'chronologically) (<= A B)
418 (>= A B)))))))
419 ;; Directory-wise wins:
420 (when org-publish-sitemap-sort-folders
421 ;; a is directory, b not:
422 (cond
423 ((and (file-directory-p a) (not (file-directory-p b)))
424 (setq retval (equal org-publish-sitemap-sort-folders 'first)))
425 ;; a is not a directory, but b is:
426 ((and (not (file-directory-p a)) (file-directory-p b))
427 (setq retval (equal org-publish-sitemap-sort-folders 'last))))))
428 retval))
430 (defun org-publish-get-base-files-1
431 (base-dir &optional recurse match skip-file skip-dir)
432 "Set `org-publish-temp-files' with files from BASE-DIR directory.
433 If RECURSE is non-nil, check BASE-DIR recursively. If MATCH is
434 non-nil, restrict this list to the files matching the regexp
435 MATCH. If SKIP-FILE is non-nil, skip file matching the regexp
436 SKIP-FILE. If SKIP-DIR is non-nil, don't check directories
437 matching the regexp SKIP-DIR when recursing through BASE-DIR."
438 (mapc (lambda (f)
439 (let ((fd-p (file-directory-p f))
440 (fnd (file-name-nondirectory f)))
441 (if (and fd-p recurse
442 (not (string-match "^\\.+$" fnd))
443 (if skip-dir (not (string-match skip-dir fnd)) t))
444 (org-publish-get-base-files-1
445 f recurse match skip-file skip-dir)
446 (unless (or fd-p ;; this is a directory
447 (and skip-file (string-match skip-file fnd))
448 (not (file-exists-p (file-truename f)))
449 (not (string-match match fnd)))
451 (pushnew f org-publish-temp-files)))))
452 (let ((all-files (if (not recurse) (directory-files base-dir t match)
453 ;; If RECURSE is non-nil, we want all files
454 ;; matching MATCH and sub-directories.
455 (org-remove-if-not
456 (lambda (file)
457 (or (file-directory-p file)
458 (and match (string-match match file))))
459 (directory-files base-dir t)))))
460 (if (not org-publish-sitemap-requested) all-files
461 (sort all-files 'org-publish-compare-directory-files)))))
463 (defun org-publish-get-base-files (project &optional exclude-regexp)
464 "Return a list of all files in PROJECT.
465 If EXCLUDE-REGEXP is set, this will be used to filter out
466 matching filenames."
467 (let* ((project-plist (cdr project))
468 (base-dir (file-name-as-directory
469 (plist-get project-plist :base-directory)))
470 (include-list (plist-get project-plist :include))
471 (recurse (plist-get project-plist :recursive))
472 (extension (or (plist-get project-plist :base-extension) "org"))
473 ;; sitemap-... variables are dynamically scoped for
474 ;; org-publish-compare-directory-files:
475 (org-publish-sitemap-requested
476 (plist-get project-plist :auto-sitemap))
477 (sitemap-filename
478 (or (plist-get project-plist :sitemap-filename) "sitemap.org"))
479 (org-publish-sitemap-sort-folders
480 (if (plist-member project-plist :sitemap-sort-folders)
481 (plist-get project-plist :sitemap-sort-folders)
482 org-publish-sitemap-sort-folders))
483 (org-publish-sitemap-sort-files
484 (cond ((plist-member project-plist :sitemap-sort-files)
485 (plist-get project-plist :sitemap-sort-files))
486 ;; For backward compatibility:
487 ((plist-member project-plist :sitemap-alphabetically)
488 (if (plist-get project-plist :sitemap-alphabetically)
489 'alphabetically nil))
490 (t org-publish-sitemap-sort-files)))
491 (org-publish-sitemap-ignore-case
492 (if (plist-member project-plist :sitemap-ignore-case)
493 (plist-get project-plist :sitemap-ignore-case)
494 org-publish-sitemap-sort-ignore-case))
495 (match (if (eq extension 'any) "^[^\\.]"
496 (concat "^[^\\.].*\\.\\(" extension "\\)$"))))
497 ;; Make sure `org-publish-sitemap-sort-folders' has an accepted
498 ;; value.
499 (unless (memq org-publish-sitemap-sort-folders '(first last))
500 (setq org-publish-sitemap-sort-folders nil))
502 (setq org-publish-temp-files nil)
503 (if org-publish-sitemap-requested
504 (pushnew (expand-file-name (concat base-dir sitemap-filename))
505 org-publish-temp-files))
506 (org-publish-get-base-files-1 base-dir recurse match
507 ;; FIXME distinguish exclude regexp
508 ;; for skip-file and skip-dir?
509 exclude-regexp exclude-regexp)
510 (mapc (lambda (f)
511 (pushnew
512 (expand-file-name (concat base-dir f))
513 org-publish-temp-files))
514 include-list)
515 org-publish-temp-files))
517 (defun org-publish-get-project-from-filename (filename &optional up)
518 "Return the project that FILENAME belongs to."
519 (let* ((filename (expand-file-name filename))
520 project-name)
522 (catch 'p-found
523 (dolist (prj org-publish-project-alist)
524 (unless (plist-get (cdr prj) :components)
525 ;; [[info:org:Selecting%20files]] shows how this is supposed to work:
526 (let* ((r (plist-get (cdr prj) :recursive))
527 (b (expand-file-name (file-name-as-directory
528 (plist-get (cdr prj) :base-directory))))
529 (x (or (plist-get (cdr prj) :base-extension) "org"))
530 (e (plist-get (cdr prj) :exclude))
531 (i (plist-get (cdr prj) :include))
532 (xm (concat "^" b (if r ".+" "[^/]+") "\\.\\(" x "\\)$")))
533 (when
534 (or (and i
535 (member filename
536 (mapcar (lambda (file)
537 (expand-file-name file b))
538 i)))
539 (and (not (and e (string-match e filename)))
540 (string-match xm filename)))
541 (setq project-name (car prj))
542 (throw 'p-found project-name))))))
543 (when up
544 (dolist (prj org-publish-project-alist)
545 (if (member project-name (plist-get (cdr prj) :components))
546 (setq project-name (car prj)))))
547 (assoc project-name org-publish-project-alist)))
551 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
552 ;;; Tools for publishing functions in back-ends
554 (defun org-publish-org-to (backend filename extension plist &optional pub-dir)
555 "Publish an Org file to a specified back-end.
557 BACKEND is a symbol representing the back-end used for
558 transcoding. FILENAME is the filename of the Org file to be
559 published. EXTENSION is the extension used for the output
560 string, with the leading dot. PLIST is the property list for the
561 given project.
563 Optional argument PUB-DIR, when non-nil is the publishing
564 directory.
566 Return output file name."
567 (unless (or (not pub-dir) (file-exists-p pub-dir)) (make-directory pub-dir t))
568 ;; Check if a buffer visiting FILENAME is already open.
569 (let* ((org-inhibit-startup t)
570 (visitingp (find-buffer-visiting filename))
571 (work-buffer (or visitingp (find-file-noselect filename))))
572 (prog1 (with-current-buffer work-buffer
573 (let ((output-file
574 (org-export-output-file-name extension nil pub-dir))
575 (body-p (plist-get plist :body-only)))
576 (org-export-to-file backend output-file
577 nil nil nil body-p
578 ;; Add `org-publish-collect-numbering' and
579 ;; `org-publish-collect-index' to final output
580 ;; filters. The latter isn't dependent on
581 ;; `:makeindex', since we want to keep it up-to-date
582 ;; in cache anyway.
583 (org-combine-plists
584 plist
585 `(:filter-final-output
586 ,(cons 'org-publish-collect-numbering
587 (cons 'org-publish-collect-index
588 (plist-get plist :filter-final-output))))))))
589 ;; Remove opened buffer in the process.
590 (unless visitingp (kill-buffer work-buffer)))))
592 (defun org-publish-attachment (plist filename pub-dir)
593 "Publish a file with no transformation of any kind.
595 FILENAME is the filename of the Org file to be published. PLIST
596 is the property list for the given project. PUB-DIR is the
597 publishing directory.
599 Return output file name."
600 (unless (file-directory-p pub-dir)
601 (make-directory pub-dir t))
602 (or (equal (expand-file-name (file-name-directory filename))
603 (file-name-as-directory (expand-file-name pub-dir)))
604 (copy-file filename
605 (expand-file-name (file-name-nondirectory filename) pub-dir)
606 t)))
610 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
611 ;;; Publishing files, sets of files, and indices
613 (defun org-publish-file (filename &optional project no-cache)
614 "Publish file FILENAME from PROJECT.
615 If NO-CACHE is not nil, do not initialize org-publish-cache and
616 write it to disk. This is needed, since this function is used to
617 publish single files, when entire projects are published.
618 See `org-publish-projects'."
619 (let* ((project
620 (or project
621 (or (org-publish-get-project-from-filename filename)
622 (error "File %s not part of any known project"
623 (abbreviate-file-name filename)))))
624 (project-plist (cdr project))
625 (ftname (expand-file-name filename))
626 (publishing-function
627 (or (plist-get project-plist :publishing-function)
628 (error "No publishing function chosen")))
629 (base-dir
630 (file-name-as-directory
631 (expand-file-name
632 (or (plist-get project-plist :base-directory)
633 (error "Project %s does not have :base-directory defined"
634 (car project))))))
635 (pub-dir
636 (file-name-as-directory
637 (file-truename
638 (or (eval (plist-get project-plist :publishing-directory))
639 (error "Project %s does not have :publishing-directory defined"
640 (car project))))))
641 tmp-pub-dir)
643 (unless no-cache (org-publish-initialize-cache (car project)))
645 (setq tmp-pub-dir
646 (file-name-directory
647 (concat pub-dir
648 (and (string-match (regexp-quote base-dir) ftname)
649 (substring ftname (match-end 0))))))
650 (if (listp publishing-function)
651 ;; allow chain of publishing functions
652 (mapc (lambda (f)
653 (when (org-publish-needed-p
654 filename pub-dir f tmp-pub-dir base-dir)
655 (funcall f project-plist filename tmp-pub-dir)
656 (org-publish-update-timestamp filename pub-dir f base-dir)))
657 publishing-function)
658 (when (org-publish-needed-p
659 filename pub-dir publishing-function tmp-pub-dir base-dir)
660 (funcall publishing-function project-plist filename tmp-pub-dir)
661 (org-publish-update-timestamp
662 filename pub-dir publishing-function base-dir)))
663 (unless no-cache (org-publish-write-cache-file))))
665 (defun org-publish-projects (projects)
666 "Publish all files belonging to the PROJECTS alist.
667 If `:auto-sitemap' is set, publish the sitemap too. If
668 `:makeindex' is set, also produce a file theindex.org."
669 (mapc
670 (lambda (project)
671 ;; Each project uses its own cache file:
672 (org-publish-initialize-cache (car project))
673 (let* ((project-plist (cdr project))
674 (exclude-regexp (plist-get project-plist :exclude))
675 (sitemap-p (plist-get project-plist :auto-sitemap))
676 (sitemap-filename (or (plist-get project-plist :sitemap-filename)
677 "sitemap.org"))
678 (sitemap-function (or (plist-get project-plist :sitemap-function)
679 'org-publish-org-sitemap))
680 (org-publish-sitemap-date-format
681 (or (plist-get project-plist :sitemap-date-format)
682 org-publish-sitemap-date-format))
683 (org-publish-sitemap-file-entry-format
684 (or (plist-get project-plist :sitemap-file-entry-format)
685 org-publish-sitemap-file-entry-format))
686 (preparation-function
687 (plist-get project-plist :preparation-function))
688 (completion-function (plist-get project-plist :completion-function))
689 (files (org-publish-get-base-files project exclude-regexp))
690 (theindex
691 (expand-file-name "theindex.org"
692 (plist-get project-plist :base-directory))))
693 (when preparation-function (run-hooks 'preparation-function))
694 (if sitemap-p (funcall sitemap-function project sitemap-filename))
695 ;; Publish all files from PROJECT excepted "theindex.org". Its
696 ;; publishing will be deferred until "theindex.inc" is
697 ;; populated.
698 (dolist (file files)
699 (unless (equal file theindex)
700 (org-publish-file file project t)))
701 ;; Populate "theindex.inc", if needed, and publish
702 ;; "theindex.org".
703 (when (plist-get project-plist :makeindex)
704 (org-publish-index-generate-theindex
705 project (plist-get project-plist :base-directory))
706 (org-publish-file theindex project t))
707 (when completion-function (run-hooks 'completion-function))
708 (org-publish-write-cache-file)))
709 (org-publish-expand-projects projects)))
711 (defun org-publish-org-sitemap (project &optional sitemap-filename)
712 "Create a sitemap of pages in set defined by PROJECT.
713 Optionally set the filename of the sitemap with SITEMAP-FILENAME.
714 Default for SITEMAP-FILENAME is 'sitemap.org'."
715 (let* ((project-plist (cdr project))
716 (dir (file-name-as-directory
717 (plist-get project-plist :base-directory)))
718 (localdir (file-name-directory dir))
719 (indent-str (make-string 2 ?\ ))
720 (exclude-regexp (plist-get project-plist :exclude))
721 (files (nreverse
722 (org-publish-get-base-files project exclude-regexp)))
723 (sitemap-filename (concat dir (or sitemap-filename "sitemap.org")))
724 (sitemap-title (or (plist-get project-plist :sitemap-title)
725 (concat "Sitemap for project " (car project))))
726 (sitemap-style (or (plist-get project-plist :sitemap-style)
727 'tree))
728 (sitemap-sans-extension
729 (plist-get project-plist :sitemap-sans-extension))
730 (visiting (find-buffer-visiting sitemap-filename))
731 (ifn (file-name-nondirectory sitemap-filename))
732 file sitemap-buffer)
733 (with-current-buffer
734 (let ((org-inhibit-startup t))
735 (setq sitemap-buffer
736 (or visiting (find-file sitemap-filename))))
737 (erase-buffer)
738 (insert (concat "#+TITLE: " sitemap-title "\n\n"))
739 (while (setq file (pop files))
740 (let ((fn (file-name-nondirectory file))
741 (link (file-relative-name file dir))
742 (oldlocal localdir))
743 (when sitemap-sans-extension
744 (setq link (file-name-sans-extension link)))
745 ;; sitemap shouldn't list itself
746 (unless (equal (file-truename sitemap-filename)
747 (file-truename file))
748 (if (eq sitemap-style 'list)
749 (message "Generating list-style sitemap for %s" sitemap-title)
750 (message "Generating tree-style sitemap for %s" sitemap-title)
751 (setq localdir (concat (file-name-as-directory dir)
752 (file-name-directory link)))
753 (unless (string= localdir oldlocal)
754 (if (string= localdir dir)
755 (setq indent-str (make-string 2 ?\ ))
756 (let ((subdirs
757 (split-string
758 (directory-file-name
759 (file-name-directory
760 (file-relative-name localdir dir))) "/"))
761 (subdir "")
762 (old-subdirs (split-string
763 (file-relative-name oldlocal dir) "/")))
764 (setq indent-str (make-string 2 ?\ ))
765 (while (string= (car old-subdirs) (car subdirs))
766 (setq indent-str (concat indent-str (make-string 2 ?\ )))
767 (pop old-subdirs)
768 (pop subdirs))
769 (dolist (d subdirs)
770 (setq subdir (concat subdir d "/"))
771 (insert (concat indent-str " + " d "\n"))
772 (setq indent-str (make-string
773 (+ (length indent-str) 2) ?\ )))))))
774 ;; This is common to 'flat and 'tree
775 (let ((entry
776 (org-publish-format-file-entry
777 org-publish-sitemap-file-entry-format file project-plist))
778 (regexp "\\(.*\\)\\[\\([^][]+\\)\\]\\(.*\\)"))
779 (cond ((string-match-p regexp entry)
780 (string-match regexp entry)
781 (insert (concat indent-str " + " (match-string 1 entry)
782 "[[file:" link "]["
783 (match-string 2 entry)
784 "]]" (match-string 3 entry) "\n")))
786 (insert (concat indent-str " + [[file:" link "]["
787 entry
788 "]]\n"))))))))
789 (save-buffer))
790 (or visiting (kill-buffer sitemap-buffer))))
792 (defun org-publish-format-file-entry (fmt file project-plist)
793 (format-spec
795 `((?t . ,(org-publish-find-title file t))
796 (?d . ,(format-time-string org-publish-sitemap-date-format
797 (org-publish-find-date file)))
798 (?a . ,(or (plist-get project-plist :author) user-full-name)))))
800 (defun org-publish-find-title (file &optional reset)
801 "Find the title of FILE in project."
803 (and (not reset) (org-publish-cache-get-file-property file :title nil t))
804 (let* ((org-inhibit-startup t)
805 (visiting (find-buffer-visiting file))
806 (buffer (or visiting (find-file-noselect file))))
807 (with-current-buffer buffer
808 (org-mode)
809 (let ((title
810 (let ((property (plist-get (org-export-get-environment) :title)))
811 (if property (org-element-interpret-data property)
812 (file-name-nondirectory (file-name-sans-extension file))))))
813 (unless visiting (kill-buffer buffer))
814 (org-publish-cache-set-file-property file :title title)
815 title)))))
817 (defun org-publish-find-date (file)
818 "Find the date of FILE in project.
819 This function assumes FILE is either a directory or an Org file.
820 If FILE is an Org file and provides a DATE keyword use it. In
821 any other case use the file system's modification time. Return
822 time in `current-time' format."
823 (if (file-directory-p file) (nth 5 (file-attributes file))
824 (let* ((visiting (find-buffer-visiting file))
825 (file-buf (or visiting (find-file-noselect file nil)))
826 (date (plist-get
827 (with-current-buffer file-buf
828 (let ((org-inhibit-startup t)) (org-mode))
829 (org-export-get-environment))
830 :date)))
831 (unless visiting (kill-buffer file-buf))
832 ;; DATE is either a timestamp object or a secondary string. If it
833 ;; is a timestamp or if the secondary string contains a timestamp,
834 ;; convert it to internal format. Otherwise, use FILE
835 ;; modification time.
836 (cond ((eq (org-element-type date) 'timestamp)
837 (org-time-string-to-time (org-element-interpret-data date)))
838 ((let ((ts (and (consp date) (assq 'timestamp date))))
839 (and ts
840 (let ((value (org-element-interpret-data ts)))
841 (and (org-string-nw-p value)
842 (org-time-string-to-time value))))))
843 ((file-exists-p file) (nth 5 (file-attributes file)))
844 (t (error "No such file: \"%s\"" file))))))
848 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
849 ;;; Interactive publishing functions
851 ;;;###autoload
852 (defalias 'org-publish-project 'org-publish)
854 ;;;###autoload
855 (defun org-publish (project &optional force async)
856 "Publish PROJECT.
858 PROJECT is either a project name, as a string, or a project
859 alist (see `org-publish-project-alist' variable).
861 When optional argument FORCE is non-nil, force publishing all
862 files in PROJECT. With a non-nil optional argument ASYNC,
863 publishing will be done asynchronously, in another process."
864 (interactive
865 (list
866 (assoc (org-icompleting-read
867 "Publish project: "
868 org-publish-project-alist nil t)
869 org-publish-project-alist)
870 current-prefix-arg))
871 (let ((project-alist (if (not (stringp project)) (list project)
872 ;; If this function is called in batch mode,
873 ;; project is still a string here.
874 (list (assoc project org-publish-project-alist)))))
875 (if async
876 (org-export-async-start 'ignore
877 `(let ((org-publish-use-timestamps-flag
878 (if ',force nil ,org-publish-use-timestamps-flag)))
879 (org-publish-projects ',project-alist)))
880 (save-window-excursion
881 (let* ((org-publish-use-timestamps-flag
882 (if force nil org-publish-use-timestamps-flag)))
883 (org-publish-projects project-alist))))))
885 ;;;###autoload
886 (defun org-publish-all (&optional force async)
887 "Publish all projects.
888 With prefix argument FORCE, remove all files in the timestamp
889 directory and force publishing all projects. With a non-nil
890 optional argument ASYNC, publishing will be done asynchronously,
891 in another process."
892 (interactive "P")
893 (if async
894 (org-export-async-start 'ignore
895 `(progn
896 (when ',force (org-publish-remove-all-timestamps))
897 (let ((org-publish-use-timestamps-flag
898 (if ',force nil ,org-publish-use-timestamps-flag)))
899 (org-publish-projects ',org-publish-project-alist))))
900 (when force (org-publish-remove-all-timestamps))
901 (save-window-excursion
902 (let ((org-publish-use-timestamps-flag
903 (if force nil org-publish-use-timestamps-flag)))
904 (org-publish-projects org-publish-project-alist)))))
907 ;;;###autoload
908 (defun org-publish-current-file (&optional force async)
909 "Publish the current file.
910 With prefix argument FORCE, force publish the file. When
911 optional argument ASYNC is non-nil, publishing will be done
912 asynchronously, in another process."
913 (interactive "P")
914 (let ((file (buffer-file-name (buffer-base-buffer))))
915 (if async
916 (org-export-async-start 'ignore
917 `(let ((org-publish-use-timestamps-flag
918 (if ',force nil ,org-publish-use-timestamps-flag)))
919 (org-publish-file ,file)))
920 (save-window-excursion
921 (let ((org-publish-use-timestamps-flag
922 (if force nil org-publish-use-timestamps-flag)))
923 (org-publish-file file))))))
925 ;;;###autoload
926 (defun org-publish-current-project (&optional force async)
927 "Publish the project associated with the current file.
928 With a prefix argument, force publishing of all files in
929 the project."
930 (interactive "P")
931 (save-window-excursion
932 (let ((project (org-publish-get-project-from-filename
933 (buffer-file-name (buffer-base-buffer)) 'up)))
934 (if project (org-publish project force async)
935 (error "File %s is not part of any known project"
936 (buffer-file-name (buffer-base-buffer)))))))
940 ;;; Index generation
942 (defun org-publish-collect-index (output backend info)
943 "Update index for a file in cache.
945 OUTPUT is the output from transcoding current file. BACKEND is
946 the back-end that was used for transcoding. INFO is a plist
947 containing publishing and export options.
949 The index relative to current file is stored as an alist. An
950 association has the following shape: (TERM FILE-NAME PARENT),
951 where TERM is the indexed term, as a string, FILE-NAME is the
952 original full path of the file where the term in encountered, and
953 PARENT is a reference to the headline, if any, containing the
954 original index keyword. When non-nil, this reference is a cons
955 cell. Its CAR is a symbol among `id', `custom-id' and `name' and
956 its CDR is a string."
957 (let ((file (plist-get info :input-file)))
958 (org-publish-cache-set-file-property
959 file :index
960 (delete-dups
961 (org-element-map (plist-get info :parse-tree) 'keyword
962 (lambda (k)
963 (when (equal (org-element-property :key k) "INDEX")
964 (let ((parent (org-export-get-parent-headline k)))
965 (list (org-element-property :value k)
966 file
967 (cond
968 ((not parent) nil)
969 ((let ((id (org-element-property :ID parent)))
970 (and id (cons 'id id))))
971 ((let ((id (org-element-property :CUSTOM_ID parent)))
972 (and id (cons 'custom-id id))))
973 (t (cons 'name
974 ;; Remove statistics cookie.
975 (replace-regexp-in-string
976 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
977 (org-element-property :raw-value parent)))))))))
978 info))))
979 ;; Return output unchanged.
980 output)
982 (defun org-publish-index-generate-theindex (project directory)
983 "Retrieve full index from cache and build \"theindex.org\".
984 PROJECT is the project the index relates to. DIRECTORY is the
985 publishing directory."
986 (let ((all-files (org-publish-get-base-files
987 project (plist-get (cdr project) :exclude)))
988 full-index)
989 ;; Compile full index and sort it alphabetically.
990 (dolist (file all-files
991 (setq full-index
992 (sort (nreverse full-index)
993 (lambda (a b) (string< (downcase (car a))
994 (downcase (car b)))))))
995 (let ((index (org-publish-cache-get-file-property file :index)))
996 (dolist (term index)
997 (unless (member term full-index) (push term full-index)))))
998 ;; Write "theindex.inc" in DIRECTORY.
999 (with-temp-file (expand-file-name "theindex.inc" directory)
1000 (let ((current-letter nil) (last-entry nil))
1001 (dolist (idx full-index)
1002 (let* ((entry (org-split-string (car idx) "!"))
1003 (letter (upcase (substring (car entry) 0 1)))
1004 ;; Transform file into a path relative to publishing
1005 ;; directory.
1006 (file (file-relative-name
1007 (nth 1 idx)
1008 (plist-get (cdr project) :base-directory))))
1009 ;; Check if another letter has to be inserted.
1010 (unless (string= letter current-letter)
1011 (insert (format "* %s\n" letter)))
1012 ;; Compute the first difference between last entry and
1013 ;; current one: it tells the level at which new items
1014 ;; should be added.
1015 (let* ((rank (if (equal entry last-entry) (1- (length entry))
1016 (loop for n from 0 to (length entry)
1017 unless (equal (nth n entry) (nth n last-entry))
1018 return n)))
1019 (len (length (nthcdr rank entry))))
1020 ;; For each term after the first difference, create
1021 ;; a new sub-list with the term as body. Moreover,
1022 ;; linkify the last term.
1023 (dotimes (n len)
1024 (insert
1025 (concat
1026 (make-string (* (+ rank n) 2) ? ) " - "
1027 (if (not (= (1- len) n)) (nth (+ rank n) entry)
1028 ;; Last term: Link it to TARGET, if possible.
1029 (let ((target (nth 2 idx)))
1030 (format
1031 "[[%s][%s]]"
1032 ;; Destination.
1033 (case (car target)
1034 ('nil (format "file:%s" file))
1035 (id (format "id:%s" (cdr target)))
1036 (custom-id (format "file:%s::#%s" file (cdr target)))
1037 (otherwise (format "file:%s::*%s" file (cdr target))))
1038 ;; Description.
1039 (car (last entry)))))
1040 "\n"))))
1041 (setq current-letter letter last-entry entry))))
1042 ;; Create "theindex.org", if it doesn't exist yet, and provide
1043 ;; a default index file.
1044 (let ((index.org (expand-file-name "theindex.org" directory)))
1045 (unless (file-exists-p index.org)
1046 (with-temp-file index.org
1047 (insert "#+TITLE: Index\n\n#+INCLUDE: \"theindex.inc\"\n\n")))))))
1051 ;;; External Fuzzy Links Resolution
1053 ;; This part implements tools to resolve [[file.org::*Some headline]]
1054 ;; links, where "file.org" belongs to the current project.
1056 (defun org-publish-collect-numbering (output backend info)
1057 (org-publish-cache-set-file-property
1058 (plist-get info :input-file) :numbering
1059 (mapcar (lambda (entry)
1060 (cons (org-split-string
1061 (replace-regexp-in-string
1062 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
1063 (org-element-property :raw-value (car entry))))
1064 (cdr entry)))
1065 (plist-get info :headline-numbering)))
1066 ;; Return output unchanged.
1067 output)
1069 (defun org-publish-resolve-external-fuzzy-link (file fuzzy)
1070 "Return numbering for headline matching FUZZY search in FILE.
1072 Return value is a list of numbers, or nil. This function allows
1073 to resolve external fuzzy links like:
1075 [[file.org::*fuzzy][description]]"
1076 (when org-publish-cache
1077 (cdr (assoc (org-split-string
1078 (if (eq (aref fuzzy 0) ?*) (substring fuzzy 1) fuzzy))
1079 (org-publish-cache-get-file-property
1080 (expand-file-name file) :numbering nil t)))))
1084 ;;; Caching functions
1086 (defun org-publish-write-cache-file (&optional free-cache)
1087 "Write `org-publish-cache' to file.
1088 If FREE-CACHE, empty the cache."
1089 (unless org-publish-cache
1090 (error "`org-publish-write-cache-file' called, but no cache present"))
1092 (let ((cache-file (org-publish-cache-get ":cache-file:")))
1093 (unless cache-file
1094 (error "Cannot find cache-file name in `org-publish-write-cache-file'"))
1095 (with-temp-file cache-file
1096 (let (print-level print-length)
1097 (insert "(setq org-publish-cache (make-hash-table :test 'equal :weakness nil :size 100))\n")
1098 (maphash (lambda (k v)
1099 (insert
1100 (format (concat "(puthash %S "
1101 (if (or (listp v) (symbolp v))
1102 "'" "")
1103 "%S org-publish-cache)\n") k v)))
1104 org-publish-cache)))
1105 (when free-cache (org-publish-reset-cache))))
1107 (defun org-publish-initialize-cache (project-name)
1108 "Initialize the projects cache if not initialized yet and return it."
1110 (unless project-name
1111 (error "Cannot initialize `org-publish-cache' without projects name in `org-publish-initialize-cache'"))
1113 (unless (file-exists-p org-publish-timestamp-directory)
1114 (make-directory org-publish-timestamp-directory t))
1115 (unless (file-directory-p org-publish-timestamp-directory)
1116 (error "Org publish timestamp: %s is not a directory"
1117 org-publish-timestamp-directory))
1119 (unless (and org-publish-cache
1120 (string= (org-publish-cache-get ":project:") project-name))
1121 (let* ((cache-file
1122 (concat
1123 (expand-file-name org-publish-timestamp-directory)
1124 project-name ".cache"))
1125 (cexists (file-exists-p cache-file)))
1127 (when org-publish-cache (org-publish-reset-cache))
1129 (if cexists (load-file cache-file)
1130 (setq org-publish-cache
1131 (make-hash-table :test 'equal :weakness nil :size 100))
1132 (org-publish-cache-set ":project:" project-name)
1133 (org-publish-cache-set ":cache-file:" cache-file))
1134 (unless cexists (org-publish-write-cache-file nil))))
1135 org-publish-cache)
1137 (defun org-publish-reset-cache ()
1138 "Empty org-publish-cache and reset it nil."
1139 (message "%s" "Resetting org-publish-cache")
1140 (when (hash-table-p org-publish-cache)
1141 (clrhash org-publish-cache))
1142 (setq org-publish-cache nil))
1144 (defun org-publish-cache-file-needs-publishing
1145 (filename &optional pub-dir pub-func base-dir)
1146 "Check the timestamp of the last publishing of FILENAME.
1147 Return non-nil if the file needs publishing. Also check if
1148 any included files have been more recently published, so that
1149 the file including them will be republished as well."
1150 (unless org-publish-cache
1151 (error
1152 "`org-publish-cache-file-needs-publishing' called, but no cache present"))
1153 (let* ((case-fold-search t)
1154 (key (org-publish-timestamp-filename filename pub-dir pub-func))
1155 (pstamp (org-publish-cache-get key))
1156 (org-inhibit-startup t)
1157 (visiting (find-buffer-visiting filename))
1158 included-files-ctime buf)
1160 (when (equal (file-name-extension filename) "org")
1161 (setq buf (find-file (expand-file-name filename)))
1162 (with-current-buffer buf
1163 (goto-char (point-min))
1164 (while (re-search-forward
1165 "^#\\+INCLUDE:[ \t]+\"\\([^\t\n\r\"]*\\)\"[ \t]*.*$" nil t)
1166 (let* ((included-file (expand-file-name (match-string 1))))
1167 (add-to-list 'included-files-ctime
1168 (org-publish-cache-ctime-of-src included-file) t))))
1169 (unless visiting (kill-buffer buf)))
1170 (if (null pstamp) t
1171 (let ((ctime (org-publish-cache-ctime-of-src filename)))
1172 (or (< pstamp ctime)
1173 (when included-files-ctime
1174 (not (null (delq nil (mapcar (lambda(ct) (< ctime ct))
1175 included-files-ctime))))))))))
1177 (defun org-publish-cache-set-file-property
1178 (filename property value &optional project-name)
1179 "Set the VALUE for a PROPERTY of file FILENAME in publishing cache to VALUE.
1180 Use cache file of PROJECT-NAME. If the entry does not exist, it
1181 will be created. Return VALUE."
1182 ;; Evtl. load the requested cache file:
1183 (if project-name (org-publish-initialize-cache project-name))
1184 (let ((pl (org-publish-cache-get filename)))
1185 (if pl (progn (plist-put pl property value) value)
1186 (org-publish-cache-get-file-property
1187 filename property value nil project-name))))
1189 (defun org-publish-cache-get-file-property
1190 (filename property &optional default no-create project-name)
1191 "Return the value for a PROPERTY of file FILENAME in publishing cache.
1192 Use cache file of PROJECT-NAME. Return the value of that PROPERTY
1193 or DEFAULT, if the value does not yet exist. If the entry will
1194 be created, unless NO-CREATE is not nil."
1195 ;; Evtl. load the requested cache file:
1196 (if project-name (org-publish-initialize-cache project-name))
1197 (let ((pl (org-publish-cache-get filename)) retval)
1198 (if pl
1199 (if (plist-member pl property)
1200 (setq retval (plist-get pl property))
1201 (setq retval default))
1202 ;; no pl yet:
1203 (unless no-create
1204 (org-publish-cache-set filename (list property default)))
1205 (setq retval default))
1206 retval))
1208 (defun org-publish-cache-get (key)
1209 "Return the value stored in `org-publish-cache' for key KEY.
1210 Returns nil, if no value or nil is found, or the cache does not
1211 exist."
1212 (unless org-publish-cache
1213 (error "`org-publish-cache-get' called, but no cache present"))
1214 (gethash key org-publish-cache))
1216 (defun org-publish-cache-set (key value)
1217 "Store KEY VALUE pair in `org-publish-cache'.
1218 Returns value on success, else nil."
1219 (unless org-publish-cache
1220 (error "`org-publish-cache-set' called, but no cache present"))
1221 (puthash key value org-publish-cache))
1223 (defun org-publish-cache-ctime-of-src (file)
1224 "Get the ctime of FILE as an integer."
1225 (let ((attr (file-attributes
1226 (expand-file-name (or (file-symlink-p file) file)
1227 (file-name-directory file)))))
1228 (if (not attr) (error "No such file: \"%s\"" file)
1229 (+ (lsh (car (nth 5 attr)) 16)
1230 (cadr (nth 5 attr))))))
1233 (provide 'ox-publish)
1235 ;; Local variables:
1236 ;; generated-autoload-file: "org-loaddefs.el"
1237 ;; End:
1239 ;;; ox-publish.el ends here