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