Mercurial > emacs
annotate lisp/textmodes/org-publish.el @ 92893:5c84b9c7e7a2
*** empty log message ***
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Fri, 14 Mar 2008 02:40:21 +0000 |
parents | a95e4488a3fe |
children |
rev | line source |
---|---|
81170 | 1 ;;; org-publish.el --- publish related org-mode files as a website |
2 | |
87665 | 3 ;; Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc. |
81170 | 4 |
5 ;; Author: David O'Toole <dto@gnu.org> | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
6 ;; Maintainer: Bastien Guerry <bzg AT altern DOT org> |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
7 ;; Keywords: hypermedia, outlines, wp |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
8 ;; Version: 5.23a |
81170 | 9 |
87830
f2c7a4c1771d
(org-publish-current-project): Fix bug
Carsten Dominik <dominik@science.uva.nl>
parents:
87665
diff
changeset
|
10 ;; This file is part of GNU Emacs. |
f2c7a4c1771d
(org-publish-current-project): Fix bug
Carsten Dominik <dominik@science.uva.nl>
parents:
87665
diff
changeset
|
11 ;; |
f2c7a4c1771d
(org-publish-current-project): Fix bug
Carsten Dominik <dominik@science.uva.nl>
parents:
87665
diff
changeset
|
12 ;; GNU Emacs is free software; you can redistribute it and/or modify |
81170 | 13 ;; it under the terms of the GNU General Public License as published by |
84391
d47318b5ff25
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
84384
diff
changeset
|
14 ;; the Free Software Foundation; either version 3, or (at your option) |
81170 | 15 ;; any later version. |
16 | |
87830
f2c7a4c1771d
(org-publish-current-project): Fix bug
Carsten Dominik <dominik@science.uva.nl>
parents:
87665
diff
changeset
|
17 ;; GNU Emacs is distributed in the hope that it will be useful, |
81170 | 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. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
87830
f2c7a4c1771d
(org-publish-current-project): Fix bug
Carsten Dominik <dominik@science.uva.nl>
parents:
87665
diff
changeset
|
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
f2c7a4c1771d
(org-publish-current-project): Fix bug
Carsten Dominik <dominik@science.uva.nl>
parents:
87665
diff
changeset
|
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
81170 | 25 ;; Boston, MA 02110-1301, USA. |
26 | |
27 ;;; Commentary: | |
28 | |
29 ;; Requires at least version 4.27 of org.el | |
30 | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
31 ;; This program allow configurable publishing of related sets of |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
32 ;; Org-mode files as a complete website. |
81170 | 33 ;; |
34 ;; org-publish.el can do the following: | |
35 ;; | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
36 ;; + Publish all one's org-files to HTML or LaTeX |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
37 ;; + Upload HTML, images, attachments and other files to a web server |
81170 | 38 ;; + Exclude selected private pages from publishing |
39 ;; + Publish a clickable index of pages | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
40 ;; + Manage local timestamps for publishing only changed files |
81170 | 41 ;; + Accept plugin functions to extend range of publishable content |
42 ;; | |
43 ;; Special thanks to the org-mode maintainer Carsten Dominik for his | |
44 ;; ideas, enthusiasm, and cooperation. | |
45 | |
46 ;;; Installation: | |
47 | |
48 ;; Put org-publish.el in your load path, byte-compile it, and then add | |
49 ;; the following lines to your emacs initialization file: | |
50 | |
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) | |
55 | |
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. | |
59 | |
60 ;;; Usage: | |
61 ;; | |
62 ;; The program's main configuration variable is | |
63 ;; `org-publish-project-alist'. See below for example configurations | |
64 ;; with commentary. | |
65 | |
66 ;; The main interactive functions are: | |
67 ;; | |
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 | |
72 | |
73 ;;;; Simple example configuration: | |
74 | |
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 | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
82 ;; :recursive t |
81170 | 83 ;; :style "<link rel=stylesheet href=\"../other/mystyle.css\" type=\"text/css\">"))) |
84 | |
85 ;;;; More complex example configuration: | |
86 | |
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) | |
94 | |
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. | |
100 | |
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")))) | |
123 | |
124 ;; For more information, see the documentation for the variable | |
125 ;; `org-publish-project-alist'. | |
126 | |
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. | |
130 | |
131 ;;; List of user-visible changes since version 1.27 | |
132 | |
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) | |
150 | |
151 ;;; Code: | |
152 | |
153 (eval-when-compile | |
154 (require 'cl)) | |
155 | |
92886
a95e4488a3fe
(declare-function): Add compatibility stub.
Glenn Morris <rgm@gnu.org>
parents:
92874
diff
changeset
|
156 (eval-and-compile |
a95e4488a3fe
(declare-function): Add compatibility stub.
Glenn Morris <rgm@gnu.org>
parents:
92874
diff
changeset
|
157 (unless (fboundp 'declare-function) |
a95e4488a3fe
(declare-function): Add compatibility stub.
Glenn Morris <rgm@gnu.org>
parents:
92874
diff
changeset
|
158 (defmacro declare-function (fn file &optional arglist fileonly)))) |
a95e4488a3fe
(declare-function): Add compatibility stub.
Glenn Morris <rgm@gnu.org>
parents:
92874
diff
changeset
|
159 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
160 (require 'dired-aux) |
81170 | 161 |
162 (defgroup org-publish nil | |
163 "Options for publishing a set of Org-mode and related files." | |
164 :tag "Org Publishing" | |
165 :group 'org) | |
166 | |
167 (defcustom org-publish-project-alist nil | |
168 "Association list to control publishing behavior. | |
169 Each element of the alist is a publishing 'project.' The CAR of | |
170 each element is a string, uniquely identifying the project. The | |
171 CDR of each element is in one of the following forms: | |
172 | |
173 (:property value :property value ... ) | |
174 | |
175 OR, | |
176 | |
177 (:components (\"project-1\" \"project-2\" ...)) | |
178 | |
179 When the CDR of an element of org-publish-project-alist is in | |
180 this second form, the elements of the list after :components are | |
181 taken to be components of the project, which group together files | |
182 requiring different publishing options. When you publish such a | |
183 project with M-x org-publish, the components all publish. | |
184 | |
185 When a property is given a value in org-publish-project-alist, its | |
186 setting overrides the value of the corresponding user variable | |
187 (if any) during publishing. However, options set within a file | |
188 override everything. | |
189 | |
190 Most properties are optional, but some should always be set: | |
191 | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
192 :base-directory Directory containing publishing source files |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
193 :base-extension Extension (without the dot!) of source files. |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
194 This can be a regular expression. |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
195 :publishing-directory Directory (possibly remote) where output |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
196 files will be published |
81170 | 197 |
198 The :exclude property may be used to prevent certain files from | |
199 being published. Its value may be a string or regexp matching | |
200 file names you don't want to be published. | |
201 | |
202 The :include property may be used to include extra files. Its | |
203 value may be a list of filenames to include. The filenames are | |
204 considered relative to the publishing directory. | |
205 | |
206 When both :include and :exclude properties are given values, the | |
207 exclusion step happens first. | |
208 | |
209 One special property controls which back-end function to use for | |
210 publishing files in the project. This can be used to extend the | |
211 set of file types publishable by org-publish, as well as the set | |
212 of output formats. | |
213 | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
214 :publishing-function Function to publish file. The default is |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
215 org-publish-org-to-html, but other |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
216 values are possible. May also be a |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
217 list of functions, in which case |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
218 each function in the list is invoked |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
219 in turn. |
81170 | 220 |
221 Another property allows you to insert code that prepares a | |
222 project for publishing. For example, you could call GNU Make on a | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
223 certain makefile, to ensure published files are built up to date. |
81170 | 224 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
225 :preparation-function Function to be called before publishing |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
226 this project. |
81170 | 227 |
228 Some properties control details of the Org publishing process, | |
229 and are equivalent to the corresponding user variables listed in | |
230 the right column. See the documentation for those variables to | |
231 learn more about their use and default values. | |
232 | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
233 :language org-export-default-language |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
234 :headline-levels org-export-headline-levels |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
235 :section-numbers org-export-with-section-numbers |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
236 :table-of-contents org-export-with-toc |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
237 :emphasize org-export-with-emphasize |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
238 :sub-superscript org-export-with-sub-superscripts |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
239 :TeX-macros org-export-with-TeX-macros |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
240 :fixed-width org-export-with-fixed-width |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
241 :tables org-export-with-tables |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
242 :table-auto-headline org-export-highlight-first-table-line |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
243 :style org-export-html-style |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
244 :convert-org-links org-export-html-link-org-files-as-html |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
245 :inline-images org-export-html-inline-images |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
246 :expand-quoted-html org-export-html-expand |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
247 :timestamp org-export-html-with-timestamp |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
248 :publishing-directory org-export-publishing-directory |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
249 :preamble org-export-html-preamble |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
250 :postamble org-export-html-postamble |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
251 :auto-preamble org-export-html-auto-preamble |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
252 :auto-postamble org-export-html-auto-postamble |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
253 :author user-full-name |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
254 :email user-mail-address |
81170 | 255 |
256 The following properties may be used to control publishing of an | |
257 index of files or summary page for a given project. | |
258 | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
259 :auto-index Whether to publish an index during |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
260 org-publish-current-project or org-publish-all. |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
261 :index-filename Filename for output of index. Defaults |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
262 to 'index.org' (which becomes 'index.html') |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
263 :index-title Title of index page. Defaults to name of file. |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
264 :index-function Plugin function to use for generation of index. |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
265 Defaults to 'org-publish-org-index', which |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
266 generates a plain list of links to all files |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
267 in the project." |
81170 | 268 :group 'org-publish |
269 :type 'alist) | |
270 | |
271 (defcustom org-publish-use-timestamps-flag t | |
272 "When non-nil, use timestamp checking to publish only changed files. | |
273 When nil, do no timestamp checking and always publish all | |
274 files." | |
275 :group 'org-publish | |
276 :type 'boolean) | |
277 | |
278 (defcustom org-publish-timestamp-directory "~/.org-timestamps/" | |
279 "Name of directory in which to store publishing timestamps." | |
280 :group 'org-publish | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
281 :type 'directory) |
81170 | 282 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
283 (defcustom org-publish-before-export-hook nil |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
284 "Hook run before export on the Org file. |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
285 If the functions in this hook modify the original Org buffer, the |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
286 modified buffer will be used for export, but the buffer will be |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
287 restored and saved back to its initial state after export." |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
288 :group 'org-publish |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
289 :type 'hook) |
81170 | 290 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
291 (defcustom org-publish-after-export-hook nil |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
292 "Hook run after export on the exported buffer. |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
293 If functions in this hook modify the buffer, it will be saved." |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
294 :group 'org-publish |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
295 :type 'hook) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
296 |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
297 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
298 ;;; Timestamp-related functions |
81170 | 299 |
300 (defun org-publish-timestamp-filename (filename) | |
301 "Return path to timestamp file for filename FILENAME." | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
302 (while (string-match |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
303 (if (eq system-type 'windows-nt) "~\\|/\\|:" "~\\|/") filename) |
81170 | 304 (setq filename (replace-match "_" nil t filename))) |
305 (concat org-publish-timestamp-directory filename ".timestamp")) | |
306 | |
307 (defun org-publish-needed-p (filename) | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
308 "Return `t' if FILENAME should be published." |
81170 | 309 (if org-publish-use-timestamps-flag |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
310 (if (file-exists-p org-publish-timestamp-directory) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
311 ;; first handle possible wrong timestamp directory |
81170 | 312 (if (not (file-directory-p org-publish-timestamp-directory)) |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
313 (error "Org publish timestamp: %s is not a directory" |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
314 org-publish-timestamp-directory) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
315 ;; there is a timestamp, check if FILENAME is newer |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
316 (file-newer-than-file-p |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
317 filename (org-publish-timestamp-filename filename)))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
318 ;; don't use timestamps, always return t |
81170 | 319 t)) |
320 | |
321 (defun org-publish-update-timestamp (filename) | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
322 "Update publishing timestamp for file FILENAME. |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
323 If there is no timestamp, create one." |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
324 (let ((timestamp-file (org-publish-timestamp-filename filename)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
325 newly-created-timestamp) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
326 (if (not (file-exists-p timestamp-file)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
327 ;; create timestamp file if needed |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
328 (with-temp-buffer |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
329 (make-directory (file-name-directory timestamp-file) t) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
330 (write-file timestamp-file) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
331 (setq newly-created-timestamp t))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
332 ;; Emacs 21 doesn't have `set-file-times' |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
333 (if (and (fboundp 'set-file-times) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
334 (not newly-created-timestamp)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
335 (set-file-times timestamp-file) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
336 (call-process "touch" nil 0 nil timestamp-file)))) |
81170 | 337 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
338 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
339 ;;; Mapping files to project names |
81170 | 340 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
341 (defvar org-publish-files-alist nil |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
342 "Alist of files and their parent project. |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
343 Each element of this alist is of the form: |
81170 | 344 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
345 (file-name . project-name)") |
81170 | 346 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
347 (defun org-publish-initialize-files-alist (&optional refresh) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
348 "Set `org-publish-files-alist' if it is not set. |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
349 Also set it if the optional argument REFRESH is non-nil." |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
350 (interactive "P") |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
351 (when (or refresh (not org-publish-files-alist)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
352 (setq org-publish-files-alist |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
353 (org-publish-get-files org-publish-project-alist)))) |
81170 | 354 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
355 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
356 ;;; Compatibility aliases |
81170 | 357 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
358 ;; Delete-dups is not in Emacs <22 |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
359 (if (fboundp 'delete-dups) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
360 (defalias 'org-publish-delete-dups 'delete-dups) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
361 (defun org-publish-delete-dups (list) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
362 "Destructively remove `equal' duplicates from LIST. |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
363 Store the result in LIST and return it. LIST must be a proper list. |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
364 Of several `equal' occurrences of an element in LIST, the first |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
365 one is kept. |
81170 | 366 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
367 This is a compatibility function for Emacsen without `delete-dups'." |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
368 ;; Code from `subr.el' in Emacs 22: |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
369 (let ((tail list)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
370 (while tail |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
371 (setcdr tail (delete (car tail) (cdr tail))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
372 (setq tail (cdr tail)))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
373 list)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
374 |
92886
a95e4488a3fe
(declare-function): Add compatibility stub.
Glenn Morris <rgm@gnu.org>
parents:
92874
diff
changeset
|
375 (declare-function org-publish-delete-dups "org-publish" (list)) |
a95e4488a3fe
(declare-function): Add compatibility stub.
Glenn Morris <rgm@gnu.org>
parents:
92874
diff
changeset
|
376 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
377 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
378 ;;; Getting project information out of org-publish-project-alist |
81170 | 379 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
380 (defun org-publish-get-files (projects-alist &optional no-exclusion) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
381 "Return the list of all publishable files for PROJECTS-ALIST. |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
382 If NO-EXCLUSION is non-nil, don't exclude files." |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
383 (let (all-files) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
384 ;; add all projects |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
385 (mapc |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
386 (lambda(p) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
387 (let* ((exclude (plist-get (cdr p) :exclude)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
388 (files (and p (org-publish-get-base-files p exclude)))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
389 ;; add all files from this project |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
390 (mapc (lambda(f) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
391 (add-to-list 'all-files |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
392 (cons (expand-file-name f) (car p)))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
393 files))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
394 (org-publish-expand-projects projects-alist)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
395 all-files)) |
81170 | 396 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
397 (defun org-publish-expand-projects (projects-alist) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
398 "Expand projects contained in PROJECTS-ALIST." |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
399 (let (without-component with-component) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
400 (mapc (lambda(p) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
401 (add-to-list |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
402 (if (plist-get (cdr p) :components) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
403 'with-component 'without-component) p)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
404 projects-alist) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
405 (org-publish-delete-dups |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
406 (append without-component |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
407 (car (mapcar (lambda(p) (org-publish-expand-components p)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
408 with-component)))))) |
81170 | 409 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
410 (defun org-publish-expand-components (project) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
411 "Expand PROJECT into an alist of its components." |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
412 (let* ((components (plist-get (cdr project) :components))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
413 (org-publish-delete-dups |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
414 (delq nil (mapcar (lambda(c) (assoc c org-publish-project-alist)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
415 components))))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
416 |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
417 (defun org-publish-get-base-files (project &optional exclude-regexp) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
418 "Return a list of all files in PROJECT. |
81170 | 419 If EXCLUDE-REGEXP is set, this will be used to filter out |
420 matching filenames." | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
421 (let* ((project-plist (cdr project)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
422 (base-dir (file-name-as-directory |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
423 (plist-get project-plist :base-directory))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
424 (include-list (plist-get project-plist :include)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
425 (recursive-p (plist-get project-plist :recursive)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
426 (extension (or (plist-get project-plist :base-extension) "org")) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
427 (regexp (concat "^[^\\.].*\\.\\(" extension "\\)$")) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
428 alldirs allfiles files dir) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
429 ;; Get all files and directories in base-directory |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
430 (setq files (dired-files-attributes base-dir)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
431 ;; Get all subdirectories if recursive-p |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
432 (setq alldirs |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
433 (if recursive-p |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
434 (delq nil (mapcar (lambda(f) (if (caaddr f) (cadr f))) files)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
435 (list base-dir))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
436 (while (setq dir (pop alldirs)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
437 (setq files (directory-files dir t regexp)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
438 ;; Exclude files |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
439 (setq files |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
440 (if (not exclude-regexp) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
441 files |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
442 (delq nil |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
443 (mapcar (lambda (x) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
444 (if (string-match exclude-regexp x) nil x)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
445 files)))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
446 ;; Include extra files |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
447 (let (inc) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
448 (while (setq inc (pop include-list)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
449 (setq files (cons (expand-file-name inc dir) files)))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
450 (setq allfiles (append allfiles files))) |
81170 | 451 allfiles)) |
452 | |
453 (defun org-publish-get-project-from-filename (filename) | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
454 "Return the project FILENAME belongs." |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
455 (let* ((project-name (cdr (assoc (expand-file-name filename) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
456 org-publish-files-alist)))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
457 (assoc project-name org-publish-project-alist))) |
81170 | 458 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
459 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
460 ;;; Pluggable publishing back-end functions |
81170 | 461 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
462 (defun org-publish-org-to (format plist filename pub-dir) |
82757
00bb6352b55a
* textmodes/org-publish.el (org-publish-org-to-latex): New
Carsten Dominik <dominik@science.uva.nl>
parents:
82162
diff
changeset
|
463 "Publish an org file to FORMAT. |
00bb6352b55a
* textmodes/org-publish.el (org-publish-org-to-latex): New
Carsten Dominik <dominik@science.uva.nl>
parents:
82162
diff
changeset
|
464 PLIST is the property list for the given project. |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
465 FILENAME is the filename of the org file to be published. |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
466 PUB-DIR is the publishing directory." |
85554
5b20f92e9f29
Installed org-mode 5.13d
John Wiegley <johnw@newartisans.com>
parents:
85500
diff
changeset
|
467 (require 'org) |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
468 (unless (file-exists-p pub-dir) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
469 (make-directory pub-dir t)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
470 (find-file filename) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
471 (let ((init-buf (current-buffer)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
472 (init-point (point)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
473 (init-buf-string (buffer-string)) export-buf) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
474 ;; run hooks before exporting |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
475 (run-hooks 'org-publish-before-export-hook) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
476 ;; export the possibly modified buffer |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
477 (setq export-buf |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
478 (funcall (intern (concat "org-export-as-" format)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
479 (plist-get plist :headline-levels) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
480 nil plist nil nil pub-dir)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
481 (set-buffer export-buf) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
482 ;; run hooks after export and save export |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
483 (and (run-hooks 'org-publish-after-export-hook) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
484 (if (buffer-modified-p) (save-buffer))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
485 ;; maybe restore buffer's content |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
486 (set-buffer init-buf) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
487 (when (buffer-modified-p init-buf) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
488 (erase-buffer) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
489 (insert init-buf-string) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
490 (save-buffer) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
491 (goto-char init-point)))) |
82757
00bb6352b55a
* textmodes/org-publish.el (org-publish-org-to-latex): New
Carsten Dominik <dominik@science.uva.nl>
parents:
82162
diff
changeset
|
492 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
493 (defun org-publish-org-to-latex (plist filename pub-dir) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
494 "Publish an org file to LaTeX. |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
495 See `org-publish-org-to' to the list of arguments." |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
496 (org-publish-org-to "latex" plist filename pub-dir)) |
82757
00bb6352b55a
* textmodes/org-publish.el (org-publish-org-to-latex): New
Carsten Dominik <dominik@science.uva.nl>
parents:
82162
diff
changeset
|
497 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
498 (defun org-publish-org-to-html (plist filename pub-dir) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
499 "Publish an org file to HTML. |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
500 See `org-publish-org-to' to the list of arguments." |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
501 (org-publish-org-to "html" plist filename pub-dir)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
502 |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
503 (defun org-publish-attachment (plist filename pub-dir) |
81170 | 504 "Publish a file with no transformation of any kind. |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
505 See `org-publish-org-to' to the list of arguments." |
81170 | 506 ;; make sure eshell/cp code is loaded |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
507 (eval-and-compile |
85613
ae9da278f53b
(org-publish-attachment): Re-install
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85554
diff
changeset
|
508 (require 'eshell) |
ae9da278f53b
(org-publish-attachment): Re-install
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85554
diff
changeset
|
509 (require 'esh-maint) |
ae9da278f53b
(org-publish-attachment): Re-install
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85554
diff
changeset
|
510 (require 'em-unix)) |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
511 (eshell/cp filename pub-dir)) |
81170 | 512 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
513 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
514 ;;; Publishing files, sets of files, and indices |
81170 | 515 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
516 (defun org-publish-file (filename &optional project) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
517 "Publish file FILENAME from PROJECT." |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
518 (when (org-publish-needed-p filename) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
519 (let* ((project |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
520 (or project |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
521 (or (org-publish-get-project-from-filename filename) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
522 (if (y-or-n-p |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
523 (format "%s is not in a project. Re-read the list of projects files? " |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
524 (abbreviate-file-name filename))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
525 ;; If requested, re-initialize the list of projects files |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
526 (progn (org-publish-initialize-files-alist t) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
527 (or (org-publish-get-project-from-filename filename) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
528 (error "File %s not part of any known project" |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
529 (abbreviate-file-name filename)))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
530 (error "Can't publish file outside of a project"))))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
531 (project-plist (cdr project)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
532 (publishing-function |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
533 (or (plist-get project-plist :publishing-function) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
534 'org-publish-org-to-html)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
535 (base-dir (file-name-as-directory |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
536 (file-truename (plist-get project-plist :base-directory)))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
537 (pub-dir (file-name-as-directory |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
538 (file-truename (plist-get project-plist :publishing-directory)))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
539 tmp-pub-dir) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
540 (setq tmp-pub-dir |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
541 (file-name-directory |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
542 (concat pub-dir |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
543 (and (string-match (regexp-quote base-dir) filename) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
544 (substring filename (match-end 0)))))) |
81170 | 545 (if (listp publishing-function) |
546 ;; allow chain of publishing functions | |
547 (mapc (lambda (f) | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
548 (funcall f project-plist filename tmp-pub-dir)) |
81170 | 549 publishing-function) |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
550 (funcall publishing-function project-plist filename tmp-pub-dir))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
551 (org-publish-update-timestamp filename))) |
81170 | 552 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
553 (defun org-publish-projects (projects) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
554 "Publish all files belonging to the PROJECTS alist. |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
555 If :auto-index is set, publish the index too." |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
556 (mapc |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
557 (lambda (project) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
558 (let* ((project-plist (cdr project)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
559 (exclude-regexp (plist-get project-plist :exclude)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
560 (index-p (plist-get project-plist :auto-index)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
561 (index-filename (or (plist-get project-plist :index-filename) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
562 "index.org")) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
563 (index-function (or (plist-get project-plist :index-function) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
564 'org-publish-org-index)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
565 (preparation-function (plist-get project-plist :preparation-function)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
566 (files (org-publish-get-base-files project exclude-regexp)) file) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
567 (when preparation-function (funcall preparation-function)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
568 (if index-p (funcall index-function project index-filename)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
569 (while (setq file (pop files)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
570 (org-publish-file file project)))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
571 (org-publish-expand-projects projects))) |
81170 | 572 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
573 (defun org-publish-org-index (project &optional index-filename) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
574 "Create an index of pages in set defined by PROJECT. |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
575 Optionally set the filename of the index with INDEX-FILENAME. |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
576 Default for INDEX-FILENAME is 'index.org'." |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
577 (let* ((project-plist (cdr project)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
578 (dir (file-name-as-directory |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
579 (plist-get project-plist :base-directory))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
580 (exclude-regexp (plist-get project-plist :exclude)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
581 (files (org-publish-get-base-files project exclude-regexp)) |
81170 | 582 (index-filename (concat dir (or index-filename "index.org"))) |
583 (index-buffer (find-buffer-visiting index-filename)) | |
584 (ifn (file-name-nondirectory index-filename)) | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
585 file) |
81170 | 586 ;; if buffer is already open, kill it to prevent error message |
587 (if index-buffer | |
588 (kill-buffer index-buffer)) | |
589 (with-temp-buffer | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
590 (while (setq file (pop files)) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
591 (let ((fn (file-name-nondirectory file))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
592 ;; index shouldn't index itself |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
593 (unless (string= fn ifn) |
81170 | 594 (insert (concat " + [[file:" fn "][" |
595 (file-name-sans-extension fn) | |
596 "]]\n"))))) | |
597 (write-file index-filename) | |
598 (kill-buffer (current-buffer))))) | |
599 | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
600 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
601 ;;; Interactive publishing functions |
81170 | 602 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
603 (defalias 'org-publish-project 'org-publish "Publish project.") |
81170 | 604 |
605 ;;;###autoload | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
606 (defun org-publish (project &optional force) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
607 "Publish PROJECT." |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
608 (interactive "P") |
81170 | 609 (save-window-excursion |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
610 (let* ((force current-prefix-arg) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
611 (org-publish-use-timestamps-flag |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
612 (if force nil org-publish-use-timestamps-flag))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
613 (org-publish-projects |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
614 (list (or project |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
615 (assoc (completing-read |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
616 "Publish project: " |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
617 org-publish-project-alist nil t) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
618 org-publish-project-alist))))))) |
81170 | 619 |
620 ;;;###autoload | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
621 (defun org-publish-all (&optional force) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
622 "Publish all projects. |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
623 With prefix argument, force publish all files." |
81170 | 624 (interactive "P") |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
625 (org-publish-initialize-files-alist) |
81170 | 626 (save-window-excursion |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
627 (let ((org-publish-use-timestamps-flag |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
628 (if force nil org-publish-use-timestamps-flag))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
629 (org-publish-projects org-publish-project-alist)))) |
81170 | 630 |
631 ;;;###autoload | |
632 (defun org-publish-current-file (&optional force) | |
633 "Publish the current file. | |
634 With prefix argument, force publish the file." | |
635 (interactive "P") | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
636 (org-publish-initialize-files-alist) |
81170 | 637 (save-window-excursion |
638 (let ((org-publish-use-timestamps-flag | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
639 (if force nil org-publish-use-timestamps-flag))) |
81170 | 640 (org-publish-file (buffer-file-name))))) |
641 | |
642 ;;;###autoload | |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
643 (defun org-publish-current-project (&optional force) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
644 "Publish the project associated with the current file. |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
645 With a prefix argument, force publishing of all files in |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
646 the project." |
81170 | 647 (interactive "P") |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
648 (org-publish-initialize-files-alist) |
81170 | 649 (save-window-excursion |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
650 (let ((project (org-publish-get-project-from-filename (buffer-file-name))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
651 (org-publish-use-timestamps-flag |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
652 (if force nil org-publish-use-timestamps-flag))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
653 (if (not project) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
654 (error "File %s is not part of any known project" (buffer-file-name))) |
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
655 (org-publish project)))) |
84933
d6e2d9d9924a
2007-09-26 Bastien Guerry <bzg@altern.org>
John Wiegley <johnw@newartisans.com>
parents:
84500
diff
changeset
|
656 |
84391
d47318b5ff25
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
84384
diff
changeset
|
657 (provide 'org-publish) |
84392
a796776e3ec3
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
84391
diff
changeset
|
658 |
92874
0b7a393a962c
* textmodes/org-publish.el: (org-publish-expand-components):
Carsten Dominik <dominik@science.uva.nl>
parents:
91824
diff
changeset
|
659 |
84391
d47318b5ff25
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
84384
diff
changeset
|
660 ;; arch-tag: 72807f3c-8af0-4a6b-8dca-c3376eb25adb |
81170 | 661 ;;; org-publish.el ends here |