org-odt.el: Make category component of captions configurable
[org-mode.git] / lisp / org-odt.el
blob7565172956819c65a173bc4d336e01dc71d4658c
1 ;;; org-odt.el --- OpenDocument Text exporter for Org-mode
3 ;; Copyright (C) 2010-2012 Free Software Foundation, Inc.
5 ;; Author: Jambunathan K <kjambunathan at gmail dot com>
6 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; Homepage: http://orgmode.org
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;;; Code:
27 (eval-when-compile
28 (require 'cl))
29 (require 'org-lparse)
31 (defgroup org-export-odt nil
32 "Options specific for ODT export of Org-mode files."
33 :tag "Org Export ODT"
34 :group 'org-export
35 :version "24.1")
37 (defvar org-lparse-dyn-first-heading-pos) ; let bound during org-do-lparse
38 (defun org-odt-insert-toc ()
39 (goto-char (point-min))
40 (cond
41 ((re-search-forward
42 "\\(<text:p [^>]*>\\)?\\s-*\\[TABLE-OF-CONTENTS\\]\\s-*\\(</text:p>\\)?"
43 nil t)
44 (replace-match ""))
46 (goto-char org-lparse-dyn-first-heading-pos)))
47 (insert (org-odt-format-toc)))
49 (defun org-odt-end-export ()
50 (org-odt-insert-toc)
51 (org-odt-fixup-label-references)
53 ;; remove empty paragraphs
54 (goto-char (point-min))
55 (while (re-search-forward
56 "<text:p\\( text:style-name=\"Text_20_body\"\\)?>[ \r\n\t]*</text:p>"
57 nil t)
58 (replace-match ""))
59 (goto-char (point-min))
61 ;; Convert whitespace place holders
62 (goto-char (point-min))
63 (let (beg end n)
64 (while (setq beg (next-single-property-change (point) 'org-whitespace))
65 (setq n (get-text-property beg 'org-whitespace)
66 end (next-single-property-change beg 'org-whitespace))
67 (goto-char beg)
68 (delete-region beg end)
69 (insert (format "<span style=\"visibility:hidden;\">%s</span>"
70 (make-string n ?x)))))
72 ;; Remove empty lines at the beginning of the file.
73 (goto-char (point-min))
74 (when (looking-at "\\s-+\n") (replace-match ""))
76 ;; Remove display properties
77 (remove-text-properties (point-min) (point-max) '(display t)))
79 (defvar org-odt-suppress-xref nil)
80 (defconst org-export-odt-special-string-regexps
81 '(("\\\\-" . "&#x00ad;\\1") ; shy
82 ("---\\([^-]\\)" . "&#x2014;\\1") ; mdash
83 ("--\\([^-]\\)" . "&#x2013;\\1") ; ndash
84 ("\\.\\.\\." . "&#x2026;")) ; hellip
85 "Regular expressions for special string conversion.")
87 (defconst org-odt-lib-dir (file-name-directory load-file-name)
88 "Location of ODT exporter.
89 Use this to infer values of `org-odt-styles-dir' and
90 `org-export-odt-schema-dir'.")
92 (defvar org-odt-data-dir nil
93 "Data directory for ODT exporter.
94 Use this to infer values of `org-odt-styles-dir' and
95 `org-export-odt-schema-dir'.")
97 (defconst org-odt-schema-dir-list
98 (list
99 (and org-odt-data-dir
100 (expand-file-name "./schema/" org-odt-data-dir)) ; bail out
101 (eval-when-compile
102 (and (boundp 'org-odt-data-dir) org-odt-data-dir ; see make install
103 (expand-file-name "./schema/" org-odt-data-dir)))
104 (expand-file-name "../contrib/odt/etc/schema/" org-odt-lib-dir) ; git
106 "List of directories to search for OpenDocument schema files.
107 Use this list to set the default value of
108 `org-export-odt-schema-dir'. The entries in this list are
109 populated heuristically based on the values of `org-odt-lib-dir'
110 and `org-odt-data-dir'.")
112 (defcustom org-export-odt-schema-dir
113 (let* ((schema-dir
114 (catch 'schema-dir
115 (message "Debug (org-odt): Searching for OpenDocument schema files...")
116 (mapc
117 (lambda (schema-dir)
118 (when schema-dir
119 (message "Debug (org-odt): Trying %s..." schema-dir)
120 (when (and (file-readable-p
121 (expand-file-name "od-manifest-schema-v1.2-cs01.rnc"
122 schema-dir))
123 (file-readable-p
124 (expand-file-name "od-schema-v1.2-cs01.rnc"
125 schema-dir))
126 (file-readable-p
127 (expand-file-name "schemas.xml" schema-dir)))
128 (message "Debug (org-odt): Using schema files under %s"
129 schema-dir)
130 (throw 'schema-dir schema-dir))))
131 org-odt-schema-dir-list)
132 (message "Debug (org-odt): No OpenDocument schema files installed")
133 nil)))
134 schema-dir)
135 "Directory that contains OpenDocument schema files.
137 This directory contains:
138 1. rnc files for OpenDocument schema
139 2. a \"schemas.xml\" file that specifies locating rules needed
140 for auto validation of OpenDocument XML files.
142 Use the customize interface to set this variable. This ensures
143 that `rng-schema-locating-files' is updated and auto-validation
144 of OpenDocument XML takes place based on the value
145 `rng-nxml-auto-validate-flag'.
147 The default value of this variable varies depending on the
148 version of org in use and is initialized from
149 `org-odt-schema-dir-list'. The OASIS schema files are available
150 only in the org's private git repository. It is *not* bundled
151 with GNU ELPA tar or standard Emacs distribution."
152 :type '(choice
153 (const :tag "Not set" nil)
154 (directory :tag "Schema directory"))
155 :group 'org-export-odt
156 :version "24.1"
157 :set
158 (lambda (var value)
159 "Set `org-export-odt-schema-dir'.
160 Also add it to `rng-schema-locating-files'."
161 (let ((schema-dir value))
162 (set var
163 (if (and
164 (file-readable-p
165 (expand-file-name "od-manifest-schema-v1.2-cs01.rnc" schema-dir))
166 (file-readable-p
167 (expand-file-name "od-schema-v1.2-cs01.rnc" schema-dir))
168 (file-readable-p
169 (expand-file-name "schemas.xml" schema-dir)))
170 schema-dir
171 (when value
172 (message "Error (org-odt): %s has no OpenDocument schema files"
173 value))
174 nil)))
175 (when org-export-odt-schema-dir
176 (eval-after-load 'rng-loc
177 '(add-to-list 'rng-schema-locating-files
178 (expand-file-name "schemas.xml"
179 org-export-odt-schema-dir))))))
181 (defconst org-odt-styles-dir-list
182 (list
183 (and org-odt-data-dir
184 (expand-file-name "./styles/" org-odt-data-dir)) ; bail out
185 (eval-when-compile
186 (and (boundp 'org-odt-data-dir) org-odt-data-dir ; see make install
187 (expand-file-name "./styles/" org-odt-data-dir)))
188 (expand-file-name "../etc/styles/" org-odt-lib-dir) ; git
189 (expand-file-name "./etc/styles/" org-odt-lib-dir) ; elpa
190 (expand-file-name "./org/" data-directory) ; system
192 "List of directories to search for OpenDocument styles files.
193 See `org-odt-styles-dir'. The entries in this list are populated
194 heuristically based on the values of `org-odt-lib-dir' and
195 `org-odt-data-dir'.")
197 (defconst org-odt-styles-dir
198 (let* ((styles-dir
199 (catch 'styles-dir
200 (message "Debug (org-odt): Searching for OpenDocument styles files...")
201 (mapc (lambda (styles-dir)
202 (when styles-dir
203 (message "Debug (org-odt): Trying %s..." styles-dir)
204 (when (and (file-readable-p
205 (expand-file-name
206 "OrgOdtContentTemplate.xml" styles-dir))
207 (file-readable-p
208 (expand-file-name
209 "OrgOdtStyles.xml" styles-dir)))
210 (message "Debug (org-odt): Using styles under %s"
211 styles-dir)
212 (throw 'styles-dir styles-dir))))
213 org-odt-styles-dir-list)
214 nil)))
215 (unless styles-dir
216 (error "Error (org-odt): Cannot find factory styles files. Aborting."))
217 styles-dir)
218 "Directory that holds auxiliary XML files used by the ODT exporter.
220 This directory contains the following XML files -
221 \"OrgOdtStyles.xml\" and \"OrgOdtContentTemplate.xml\". These
222 XML files are used as the default values of
223 `org-export-odt-styles-file' and
224 `org-export-odt-content-template-file'.
226 The default value of this variable varies depending on the
227 version of org in use and is initialized from
228 `org-odt-styles-dir-list'. Note that the user could be using org
229 from one of: org's own private git repository, GNU ELPA tar or
230 standard Emacs.")
232 (defvar org-odt-file-extensions
233 '(("odt" . "OpenDocument Text")
234 ("ott" . "OpenDocument Text Template")
235 ("odm" . "OpenDocument Master Document")
236 ("ods" . "OpenDocument Spreadsheet")
237 ("ots" . "OpenDocument Spreadsheet Template")
238 ("odg" . "OpenDocument Drawing (Graphics)")
239 ("otg" . "OpenDocument Drawing Template")
240 ("odp" . "OpenDocument Presentation")
241 ("otp" . "OpenDocument Presentation Template")
242 ("odi" . "OpenDocument Image")
243 ("odf" . "OpenDocument Formula")
244 ("odc" . "OpenDocument Chart")))
246 (mapc
247 (lambda (desc)
248 ;; Let Org open all OpenDocument files using system-registered app
249 (add-to-list 'org-file-apps
250 (cons (concat "\\." (car desc) "\\'") 'system))
251 ;; Let Emacs open all OpenDocument files in archive mode
252 (add-to-list 'auto-mode-alist
253 (cons (concat "\\." (car desc) "\\'") 'archive-mode)))
254 org-odt-file-extensions)
256 ;; register the odt exporter with the pre-processor
257 (add-to-list 'org-export-backends 'odt)
259 ;; register the odt exporter with org-lparse library
260 (org-lparse-register-backend 'odt)
262 (defun org-odt-unload-function ()
263 (org-lparse-unregister-backend 'odt)
264 (remove-hook 'org-export-preprocess-after-blockquote-hook
265 'org-export-odt-preprocess-latex-fragments)
266 nil)
268 (defcustom org-export-odt-content-template-file nil
269 "Template file for \"content.xml\".
270 The exporter embeds the exported content just before
271 \"</office:text>\" element.
273 If unspecified, the file named \"OrgOdtContentTemplate.xml\"
274 under `org-odt-styles-dir' is used."
275 :type 'file
276 :group 'org-export-odt
277 :version "24.1")
279 (defcustom org-export-odt-styles-file nil
280 "Default styles file for use with ODT export.
281 Valid values are one of:
282 1. nil
283 2. path to a styles.xml file
284 3. path to a *.odt or a *.ott file
285 4. list of the form (ODT-OR-OTT-FILE (FILE-MEMBER-1 FILE-MEMBER-2
286 ...))
288 In case of option 1, an in-built styles.xml is used. See
289 `org-odt-styles-dir' for more information.
291 In case of option 3, the specified file is unzipped and the
292 styles.xml embedded therein is used.
294 In case of option 4, the specified ODT-OR-OTT-FILE is unzipped
295 and FILE-MEMBER-1, FILE-MEMBER-2 etc are copied in to the
296 generated odt file. Use relative path for specifying the
297 FILE-MEMBERS. styles.xml must be specified as one of the
298 FILE-MEMBERS.
300 Use options 1, 2 or 3 only if styles.xml alone suffices for
301 achieving the desired formatting. Use option 4, if the styles.xml
302 references additional files like header and footer images for
303 achieving the desired formatting.
305 Use \"#+ODT_STYLES_FILE: ...\" directive to set this variable on
306 a per-file basis. For example,
308 #+ODT_STYLES_FILE: \"/path/to/styles.xml\" or
309 #+ODT_STYLES_FILE: (\"/path/to/file.ott\" (\"styles.xml\" \"image/hdr.png\"))."
310 :group 'org-export-odt
311 :version "24.1"
312 :type
313 '(choice
314 (const :tag "Factory settings" nil)
315 (file :must-match t :tag "styles.xml")
316 (file :must-match t :tag "ODT or OTT file")
317 (list :tag "ODT or OTT file + Members"
318 (file :must-match t :tag "ODF Text or Text Template file")
319 (cons :tag "Members"
320 (file :tag " Member" "styles.xml")
321 (repeat (file :tag "Member"))))))
323 (eval-after-load 'org-exp
324 '(add-to-list 'org-export-inbuffer-options-extra
325 '("ODT_STYLES_FILE" :odt-styles-file)))
327 (defconst org-export-odt-tmpdir-prefix "%s-")
328 (defconst org-export-odt-bookmark-prefix "OrgXref.")
330 (defvar org-export-odt-embed-images t
331 "Should the images be copied in to the odt file or just linked?")
333 (defvar org-export-odt-inline-images 'maybe)
334 (defcustom org-export-odt-inline-image-extensions
335 '("png" "jpeg" "jpg" "gif")
336 "Extensions of image files that can be inlined into HTML."
337 :type '(repeat (string :tag "Extension"))
338 :group 'org-export-odt
339 :version "24.1")
341 (defcustom org-export-odt-pixels-per-inch display-pixels-per-inch
342 "Scaling factor for converting images pixels to inches.
343 Use this for sizing of embedded images. See Info node `(org)
344 Images in ODT export' for more information."
345 :type 'float
346 :group 'org-export-odt
347 :version "24.1")
349 (defcustom org-export-odt-create-custom-styles-for-srcblocks t
350 "Whether custom styles for colorized source blocks be automatically created.
351 When this option is turned on, the exporter creates custom styles
352 for source blocks based on the advice of `htmlfontify'. Creation
353 of custom styles happen as part of `org-odt-hfy-face-to-css'.
355 When this option is turned off exporter does not create such
356 styles.
358 Use the latter option if you do not want the custom styles to be
359 based on your current display settings. It is necessary that the
360 styles.xml already contains needed styles for colorizing to work.
362 This variable is effective only if
363 `org-export-odt-fontify-srcblocks' is turned on."
364 :group 'org-export-odt
365 :version "24.1"
366 :type 'boolean)
368 (defvar org-export-odt-default-org-styles-alist
369 '((paragraph . ((default . "Text_20_body")
370 (fixedwidth . "OrgFixedWidthBlock")
371 (verse . "OrgVerse")
372 (quote . "Quotations")
373 (blockquote . "Quotations")
374 (center . "OrgCenter")
375 (left . "OrgLeft")
376 (right . "OrgRight")
377 (title . "OrgTitle")
378 (subtitle . "OrgSubtitle")
379 (footnote . "Footnote")
380 (src . "OrgSrcBlock")
381 (illustration . "Illustration")
382 (table . "Table")
383 (definition-term . "Text_20_body_20_bold")
384 (horizontal-line . "Horizontal_20_Line")))
385 (character . ((bold . "Bold")
386 (emphasis . "Emphasis")
387 (code . "OrgCode")
388 (verbatim . "OrgCode")
389 (strike . "Strikethrough")
390 (underline . "Underline")
391 (subscript . "OrgSubscript")
392 (superscript . "OrgSuperscript")))
393 (list . ((ordered . "OrgNumberedList")
394 (unordered . "OrgBulletedList")
395 (description . "OrgDescriptionList"))))
396 "Default styles for various entities.")
398 (defvar org-export-odt-org-styles-alist org-export-odt-default-org-styles-alist)
399 (defun org-odt-get-style-name-for-entity (category &optional entity)
400 (let ((entity (or entity 'default)))
402 (cdr (assoc entity (cdr (assoc category
403 org-export-odt-org-styles-alist))))
404 (cdr (assoc entity (cdr (assoc category
405 org-export-odt-default-org-styles-alist))))
406 (error "Cannot determine style name for entity %s of type %s"
407 entity category))))
409 (defcustom org-export-odt-preferred-output-format nil
410 "Automatically post-process to this format after exporting to \"odt\".
411 Interactive commands `org-export-as-odt' and
412 `org-export-as-odt-and-open' export first to \"odt\" format and
413 then use `org-export-odt-convert-process' to convert the
414 resulting document to this format. During customization of this
415 variable, the list of valid values are populated based on
416 `org-export-odt-convert-capabilities'."
417 :group 'org-export-odt
418 :version "24.1"
419 :type '(choice :convert-widget
420 (lambda (w)
421 (apply 'widget-convert (widget-type w)
422 (eval (car (widget-get w :args)))))
423 `((const :tag "None" nil)
424 ,@(mapcar (lambda (c)
425 `(const :tag ,c ,c))
426 (org-lparse-reachable-formats "odt")))))
428 ;;;###autoload
429 (defun org-export-as-odt-and-open (arg)
430 "Export the outline as ODT and immediately open it with a browser.
431 If there is an active region, export only the region.
432 The prefix ARG specifies how many levels of the outline should become
433 headlines. The default is 3. Lower levels will become bulleted lists."
434 (interactive "P")
435 (org-lparse-and-open
436 (or org-export-odt-preferred-output-format "odt") "odt" arg))
438 ;;;###autoload
439 (defun org-export-as-odt-batch ()
440 "Call the function `org-lparse-batch'.
441 This function can be used in batch processing as:
442 emacs --batch
443 --load=$HOME/lib/emacs/org.el
444 --eval \"(setq org-export-headline-levels 2)\"
445 --visit=MyFile --funcall org-export-as-odt-batch"
446 (org-lparse-batch "odt"))
448 ;;; org-export-as-odt
449 ;;;###autoload
450 (defun org-export-as-odt (arg &optional hidden ext-plist
451 to-buffer body-only pub-dir)
452 "Export the outline as a OpenDocumentText file.
453 If there is an active region, export only the region. The prefix
454 ARG specifies how many levels of the outline should become
455 headlines. The default is 3. Lower levels will become bulleted
456 lists. HIDDEN is obsolete and does nothing.
457 EXT-PLIST is a property list with external parameters overriding
458 org-mode's default settings, but still inferior to file-local
459 settings. When TO-BUFFER is non-nil, create a buffer with that
460 name and export to that buffer. If TO-BUFFER is the symbol
461 `string', don't leave any buffer behind but just return the
462 resulting XML as a string. When BODY-ONLY is set, don't produce
463 the file header and footer, simply return the content of
464 <body>...</body>, without even the body tags themselves. When
465 PUB-DIR is set, use this as the publishing directory."
466 (interactive "P")
467 (org-lparse (or org-export-odt-preferred-output-format "odt")
468 "odt" arg hidden ext-plist to-buffer body-only pub-dir))
470 (defvar org-odt-entity-control-callbacks-alist
471 `((EXPORT
472 . (org-odt-begin-export org-odt-end-export))
473 (DOCUMENT-CONTENT
474 . (org-odt-begin-document-content org-odt-end-document-content))
475 (DOCUMENT-BODY
476 . (org-odt-begin-document-body org-odt-end-document-body))
477 (TOC
478 . (org-odt-begin-toc org-odt-end-toc))
479 (ENVIRONMENT
480 . (org-odt-begin-environment org-odt-end-environment))
481 (FOOTNOTE-DEFINITION
482 . (org-odt-begin-footnote-definition org-odt-end-footnote-definition))
483 (TABLE
484 . (org-odt-begin-table org-odt-end-table))
485 (TABLE-ROWGROUP
486 . (org-odt-begin-table-rowgroup org-odt-end-table-rowgroup))
487 (LIST
488 . (org-odt-begin-list org-odt-end-list))
489 (LIST-ITEM
490 . (org-odt-begin-list-item org-odt-end-list-item))
491 (OUTLINE
492 . (org-odt-begin-outline org-odt-end-outline))
493 (OUTLINE-TEXT
494 . (org-odt-begin-outline-text org-odt-end-outline-text))
495 (PARAGRAPH
496 . (org-odt-begin-paragraph org-odt-end-paragraph)))
499 (defvar org-odt-entity-format-callbacks-alist
500 `((EXTRA-TARGETS . org-lparse-format-extra-targets)
501 (ORG-TAGS . org-lparse-format-org-tags)
502 (SECTION-NUMBER . org-lparse-format-section-number)
503 (HEADLINE . org-odt-format-headline)
504 (TOC-ENTRY . org-odt-format-toc-entry)
505 (TOC-ITEM . org-odt-format-toc-item)
506 (TAGS . org-odt-format-tags)
507 (SPACES . org-odt-format-spaces)
508 (TABS . org-odt-format-tabs)
509 (LINE-BREAK . org-odt-format-line-break)
510 (FONTIFY . org-odt-format-fontify)
511 (TODO . org-lparse-format-todo)
512 (LINK . org-odt-format-link)
513 (INLINE-IMAGE . org-odt-format-inline-image)
514 (ORG-LINK . org-odt-format-org-link)
515 (HEADING . org-odt-format-heading)
516 (ANCHOR . org-odt-format-anchor)
517 (TABLE . org-lparse-format-table)
518 (TABLE-ROW . org-odt-format-table-row)
519 (TABLE-CELL . org-odt-format-table-cell)
520 (FOOTNOTES-SECTION . ignore)
521 (FOOTNOTE-REFERENCE . org-odt-format-footnote-reference)
522 (HORIZONTAL-LINE . org-odt-format-horizontal-line)
523 (COMMENT . org-odt-format-comment)
524 (LINE . org-odt-format-line)
525 (ORG-ENTITY . org-odt-format-org-entity))
528 ;;;_. callbacks
529 ;;;_. control callbacks
530 ;;;_ , document body
531 (defun org-odt-begin-office-body ()
532 ;; automatic styles
533 (insert-file-contents
534 (or org-export-odt-content-template-file
535 (expand-file-name "OrgOdtContentTemplate.xml"
536 org-odt-styles-dir)))
537 (goto-char (point-min))
538 (re-search-forward "</office:text>" nil nil)
539 (delete-region (match-beginning 0) (point-max)))
541 ;; Following variable is let bound when `org-do-lparse' is in
542 ;; progress. See org-html.el.
543 (defvar org-lparse-toc)
544 (defun org-odt-format-toc ()
545 (if (not org-lparse-toc) "" (concat "\n" org-lparse-toc "\n")))
547 (defun org-odt-format-preamble (opt-plist)
548 (let* ((title (plist-get opt-plist :title))
549 (author (plist-get opt-plist :author))
550 (date (plist-get opt-plist :date))
551 (iso-date (org-odt-format-date date))
552 (date (org-odt-format-date date "%d %b %Y"))
553 (email (plist-get opt-plist :email))
554 ;; switch on or off above vars based on user settings
555 (author (and (plist-get opt-plist :author-info) (or author email)))
556 (email (and (plist-get opt-plist :email-info) email))
557 (date (and (plist-get opt-plist :time-stamp-file) date)))
558 (concat
559 ;; title
560 (when title
561 (concat
562 (org-odt-format-stylized-paragraph
563 'title (org-odt-format-tags
564 '("<text:title>" . "</text:title>") title))
565 ;; separator
566 "<text:p text:style-name=\"OrgTitle\"/>"))
567 (cond
568 ((and author (not email))
569 ;; author only
570 (concat
571 (org-odt-format-stylized-paragraph
572 'subtitle
573 (org-odt-format-tags
574 '("<text:initial-creator>" . "</text:initial-creator>")
575 author))
576 ;; separator
577 "<text:p text:style-name=\"OrgSubtitle\"/>"))
578 ((and author email)
579 ;; author and email
580 (concat
581 (org-odt-format-stylized-paragraph
582 'subtitle
583 (org-odt-format-link
584 (org-odt-format-tags
585 '("<text:initial-creator>" . "</text:initial-creator>")
586 author) (concat "mailto:" email)))
587 ;; separator
588 "<text:p text:style-name=\"OrgSubtitle\"/>")))
589 ;; date
590 (when date
591 (concat
592 (org-odt-format-stylized-paragraph
593 'subtitle
594 (org-odt-format-tags
595 '("<text:date style:data-style-name=\"%s\" text:date-value=\"%s\">"
596 . "</text:date>") date "N75" iso-date))
597 ;; separator
598 "<text:p text:style-name=\"OrgSubtitle\"/>")))))
600 (defun org-odt-begin-document-body (opt-plist)
601 (org-odt-begin-office-body)
602 (insert (org-odt-format-preamble opt-plist))
603 (setq org-lparse-dyn-first-heading-pos (point)))
605 (defvar org-lparse-body-only) ; let bound during org-do-lparse
606 (defvar org-lparse-to-buffer) ; let bound during org-do-lparse
607 (defun org-odt-end-document-body (opt-plist)
608 (unless org-lparse-body-only
609 (org-lparse-insert-tag "</office:text>")
610 (org-lparse-insert-tag "</office:body>")))
612 (defun org-odt-begin-document-content (opt-plist)
613 (ignore))
615 (defun org-odt-end-document-content ()
616 (org-lparse-insert-tag "</office:document-content>"))
618 (defun org-odt-begin-outline (level1 snumber title tags
619 target extra-targets class)
620 (org-lparse-insert
621 'HEADING (org-lparse-format
622 'HEADLINE title extra-targets tags snumber level1)
623 level1 target))
625 (defun org-odt-end-outline ()
626 (ignore))
628 (defun org-odt-begin-outline-text (level1 snumber class)
629 (ignore))
631 (defun org-odt-end-outline-text ()
632 (ignore))
634 (defun org-odt-begin-section (style &optional name)
635 (let ((default-name (car (org-odt-add-automatic-style "Section"))))
636 (org-lparse-insert-tag
637 "<text:section text:style-name=\"%s\" text:name=\"%s\">"
638 style (or name default-name))))
640 (defun org-odt-end-section ()
641 (org-lparse-insert-tag "</text:section>"))
643 (defun org-odt-begin-paragraph (&optional style)
644 (org-lparse-insert-tag
645 "<text:p%s>" (org-odt-get-extra-attrs-for-paragraph-style style)))
647 (defun org-odt-end-paragraph ()
648 (org-lparse-insert-tag "</text:p>"))
650 (defun org-odt-get-extra-attrs-for-paragraph-style (style)
651 (let (style-name)
652 (setq style-name
653 (cond
654 ((stringp style) style)
655 ((symbolp style) (org-odt-get-style-name-for-entity
656 'paragraph style))))
657 (unless style-name
658 (error "Don't know how to handle paragraph style %s" style))
659 (format " text:style-name=\"%s\"" style-name)))
661 (defun org-odt-format-stylized-paragraph (style text)
662 (org-odt-format-tags
663 '("<text:p%s>" . "</text:p>") text
664 (org-odt-get-extra-attrs-for-paragraph-style style)))
666 (defvar org-lparse-opt-plist) ; bound during org-do-lparse
667 (defun org-odt-format-author (&optional author)
668 (when (setq author (or author (plist-get org-lparse-opt-plist :author)))
669 (org-odt-format-tags '("<dc:creator>" . "</dc:creator>") author)))
671 (defun org-odt-format-date (&optional org-ts fmt)
672 (save-match-data
673 (let* ((time
674 (and (stringp org-ts)
675 (string-match org-ts-regexp0 org-ts)
676 (apply 'encode-time
677 (org-fix-decoded-time
678 (org-parse-time-string (match-string 0 org-ts) t)))))
679 date)
680 (cond
681 (fmt (format-time-string fmt time))
682 (t (setq date (format-time-string "%Y-%m-%dT%H:%M:%S%z" time))
683 (format "%s:%s" (substring date 0 -2) (substring date -2)))))))
685 (defun org-odt-begin-annotation (&optional author date)
686 (org-lparse-insert-tag "<office:annotation>")
687 (when (setq author (org-odt-format-author author))
688 (insert author))
689 (insert (org-odt-format-tags
690 '("<dc:date>" . "</dc:date>")
691 (org-odt-format-date
692 (or date (plist-get org-lparse-opt-plist :date)))))
693 (org-lparse-begin-paragraph))
695 (defun org-odt-end-annotation ()
696 (org-lparse-insert-tag "</office:annotation>"))
698 (defun org-odt-begin-environment (style env-options-plist)
699 (case style
700 (annotation
701 (org-lparse-stash-save-paragraph-state)
702 (org-odt-begin-annotation (plist-get env-options-plist 'author)
703 (plist-get env-options-plist 'date)))
704 ((blockquote verse center quote)
705 (org-lparse-begin-paragraph style)
706 (list))
707 ((fixedwidth native)
708 (org-lparse-end-paragraph)
709 (list))
710 (t (error "Unknown environment %s" style))))
712 (defun org-odt-end-environment (style env-options-plist)
713 (case style
714 (annotation
715 (org-lparse-end-paragraph)
716 (org-odt-end-annotation)
717 (org-lparse-stash-pop-paragraph-state))
718 ((blockquote verse center quote)
719 (org-lparse-end-paragraph)
720 (list))
721 ((fixedwidth native)
722 (org-lparse-begin-paragraph)
723 (list))
724 (t (error "Unknown environment %s" style))))
726 (defvar org-lparse-list-stack) ; dynamically bound in org-do-lparse
727 (defvar org-odt-list-stack-stashed)
728 (defun org-odt-begin-list (ltype)
729 (setq ltype (or (org-lparse-html-list-type-to-canonical-list-type ltype)
730 ltype))
731 (let* ((style-name (org-odt-get-style-name-for-entity 'list ltype))
732 (extra (concat (if (or org-lparse-list-table-p
733 (and (= 1 (length org-lparse-list-stack))
734 (null org-odt-list-stack-stashed)))
735 " text:continue-numbering=\"false\""
736 " text:continue-numbering=\"true\"")
737 (when style-name
738 (format " text:style-name=\"%s\"" style-name)))))
739 (case ltype
740 ((ordered unordered description)
741 (org-lparse-end-paragraph)
742 (org-lparse-insert-tag "<text:list%s>" extra))
743 (t (error "Unknown list type: %s" ltype)))))
745 (defun org-odt-end-list (ltype)
746 (setq ltype (or (org-lparse-html-list-type-to-canonical-list-type ltype)
747 ltype))
748 (if ltype
749 (org-lparse-insert-tag "</text:list>")
750 (error "Unknown list type: %s" ltype)))
752 (defun org-odt-begin-list-item (ltype &optional arg headline)
753 (setq ltype (or (org-lparse-html-list-type-to-canonical-list-type ltype)
754 ltype))
755 (case ltype
756 (ordered
757 (assert (not headline) t)
758 (let* ((counter arg) (extra ""))
759 (org-lparse-insert-tag (if (= (length org-lparse-list-stack)
760 (length org-odt-list-stack-stashed))
761 "<text:list-header>" "<text:list-item>"))
762 (org-lparse-begin-paragraph)))
763 (unordered
764 (let* ((id arg) (extra ""))
765 (org-lparse-insert-tag (if (= (length org-lparse-list-stack)
766 (length org-odt-list-stack-stashed))
767 "<text:list-header>" "<text:list-item>"))
768 (org-lparse-begin-paragraph)
769 (insert (if headline (org-odt-format-target headline id)
770 (org-odt-format-bookmark "" id)))))
771 (description
772 (assert (not headline) t)
773 (let ((term (or arg "(no term)")))
774 (insert
775 (org-odt-format-tags
776 '("<text:list-item>" . "</text:list-item>")
777 (org-odt-format-stylized-paragraph 'definition-term term)))
778 (org-lparse-begin-list-item 'unordered)
779 (org-lparse-begin-list 'description)
780 (org-lparse-begin-list-item 'unordered)))
781 (t (error "Unknown list type"))))
783 (defun org-odt-end-list-item (ltype)
784 (setq ltype (or (org-lparse-html-list-type-to-canonical-list-type ltype)
785 ltype))
786 (case ltype
787 ((ordered unordered)
788 (org-lparse-insert-tag (if (= (length org-lparse-list-stack)
789 (length org-odt-list-stack-stashed))
790 (prog1 "</text:list-header>"
791 (setq org-odt-list-stack-stashed nil))
792 "</text:list-item>")))
793 (description
794 (org-lparse-end-list-item-1)
795 (org-lparse-end-list 'description)
796 (org-lparse-end-list-item-1))
797 (t (error "Unknown list type"))))
799 (defun org-odt-discontinue-list ()
800 (let ((stashed-stack org-lparse-list-stack))
801 (loop for list-type in stashed-stack
802 do (org-lparse-end-list-item-1 list-type)
803 (org-lparse-end-list list-type))
804 (setq org-odt-list-stack-stashed stashed-stack)))
806 (defun org-odt-continue-list ()
807 (setq org-odt-list-stack-stashed (nreverse org-odt-list-stack-stashed))
808 (loop for list-type in org-odt-list-stack-stashed
809 do (org-lparse-begin-list list-type)
810 (org-lparse-begin-list-item list-type)))
812 ;; Following variables are let bound when table emission is in
813 ;; progress. See org-lparse.el.
814 (defvar org-lparse-table-begin-marker)
815 (defvar org-lparse-table-ncols)
816 (defvar org-lparse-table-rowgrp-open)
817 (defvar org-lparse-table-rownum)
818 (defvar org-lparse-table-cur-rowgrp-is-hdr)
819 (defvar org-lparse-table-is-styled)
820 (defvar org-lparse-table-rowgrp-info)
821 (defvar org-lparse-table-colalign-vector)
823 (defvar org-odt-table-style nil
824 "Table style specified by \"#+ATTR_ODT: <style-name>\" line.
825 This is set during `org-odt-begin-table'.")
827 (defvar org-odt-table-style-spec nil
828 "Entry for `org-odt-table-style' in `org-export-odt-table-styles'.")
830 (defcustom org-export-odt-table-styles
831 '(("OrgEquation" "OrgEquation"
832 ((use-first-column-styles . t)
833 (use-last-column-styles . t))))
834 "Specify how Table Styles should be derived from a Table Template.
835 This is a list where each element is of the
836 form (TABLE-STYLE-NAME TABLE-TEMPLATE-NAME TABLE-CELL-OPTIONS).
838 TABLE-STYLE-NAME is the style associated with the table through
839 `org-odt-table-style'.
841 TABLE-TEMPLATE-NAME is a set of - upto 9 - automatic
842 TABLE-CELL-STYLE-NAMEs and PARAGRAPH-STYLE-NAMEs (as defined
843 below) that is included in
844 `org-export-odt-content-template-file'.
846 TABLE-CELL-STYLE-NAME := TABLE-TEMPLATE-NAME + TABLE-CELL-TYPE +
847 \"TableCell\"
848 PARAGRAPH-STYLE-NAME := TABLE-TEMPLATE-NAME + TABLE-CELL-TYPE +
849 \"TableParagraph\"
850 TABLE-CELL-TYPE := \"FirstRow\" | \"LastColumn\" |
851 \"FirstRow\" | \"LastRow\" |
852 \"EvenRow\" | \"OddRow\" |
853 \"EvenColumn\" | \"OddColumn\" | \"\"
854 where \"+\" above denotes string concatenation.
856 TABLE-CELL-OPTIONS is an alist where each element is of the
857 form (TABLE-CELL-STYLE-SELECTOR . ON-OR-OFF).
858 TABLE-CELL-STYLE-SELECTOR := `use-first-row-styles' |
859 `use-last-row-styles' |
860 `use-first-column-styles' |
861 `use-last-column-styles' |
862 `use-banding-rows-styles' |
863 `use-banding-columns-styles' |
864 `use-first-row-styles'
865 ON-OR-OFF := `t' | `nil'
867 For example, with the following configuration
869 \(setq org-export-odt-table-styles
870 '\(\(\"TableWithHeaderRowsAndColumns\" \"Custom\"
871 \(\(use-first-row-styles . t\)
872 \(use-first-column-styles . t\)\)\)
873 \(\"TableWithHeaderColumns\" \"Custom\"
874 \(\(use-first-column-styles . t\)\)\)\)\)
876 1. A table associated with \"TableWithHeaderRowsAndColumns\"
877 style will use the following table-cell styles -
878 \"CustomFirstRowTableCell\", \"CustomFirstColumnTableCell\",
879 \"CustomTableCell\" and the following paragraph styles
880 \"CustomFirstRowTableParagraph\",
881 \"CustomFirstColumnTableParagraph\", \"CustomTableParagraph\"
882 as appropriate.
884 2. A table associated with \"TableWithHeaderColumns\" style will
885 use the following table-cell styles -
886 \"CustomFirstColumnTableCell\", \"CustomTableCell\" and the
887 following paragraph styles
888 \"CustomFirstColumnTableParagraph\", \"CustomTableParagraph\"
889 as appropriate..
891 Note that TABLE-TEMPLATE-NAME corresponds to the
892 \"<table:table-template>\" elements contained within
893 \"<office:styles>\". The entries (TABLE-STYLE-NAME
894 TABLE-TEMPLATE-NAME TABLE-CELL-OPTIONS) correspond to
895 \"table:template-name\" and \"table:use-first-row-styles\" etc
896 attributes of \"<table:table>\" element. Refer ODF-1.2
897 specification for more information. Also consult the
898 implementation filed under `org-odt-get-table-cell-styles'.
900 The TABLE-STYLE-NAME \"OrgEquation\" is used internally for
901 formatting of numbered display equations. Do not delete this
902 style from the list."
903 :group 'org-export-odt
904 :version "24.1"
905 :type '(choice
906 (const :tag "None" nil)
907 (repeat :tag "Table Styles"
908 (list :tag "Table Style Specification"
909 (string :tag "Table Style Name")
910 (string :tag "Table Template Name")
911 (alist :options (use-first-row-styles
912 use-last-row-styles
913 use-first-column-styles
914 use-last-column-styles
915 use-banding-rows-styles
916 use-banding-columns-styles)
917 :key-type symbol
918 :value-type (const :tag "True" t))))))
920 (defvar org-odt-table-style-format
922 <style:style style:name=\"%s\" style:family=\"table\">
923 <style:table-properties style:rel-width=\"%d%%\" fo:margin-top=\"0cm\" fo:margin-bottom=\"0.20cm\" table:align=\"center\"/>
924 </style:style>
926 "Template for auto-generated Table styles.")
928 (defvar org-odt-automatic-styles '()
929 "Registry of automatic styles for various OBJECT-TYPEs.
930 The variable has the following form:
931 \(\(OBJECT-TYPE-A
932 \(\(OBJECT-NAME-A.1 OBJECT-PROPS-A.1\)
933 \(OBJECT-NAME-A.2 OBJECT-PROPS-A.2\) ...\)\)
934 \(OBJECT-TYPE-B
935 \(\(OBJECT-NAME-B.1 OBJECT-PROPS-B.1\)
936 \(OBJECT-NAME-B.2 OBJECT-PROPS-B.2\) ...\)\)
937 ...\).
939 OBJECT-TYPEs could be \"Section\", \"Table\", \"Figure\" etc.
940 OBJECT-PROPS is (typically) a plist created by passing
941 \"#+ATTR_ODT: \" option to `org-lparse-get-block-params'.
943 Use `org-odt-add-automatic-style' to add update this variable.'")
945 (defvar org-odt-object-counters nil
946 "Running counters for various OBJECT-TYPEs.
947 Use this to generate automatic names and style-names. See
948 `org-odt-add-automatic-style'.")
950 (defun org-odt-write-automatic-styles ()
951 "Write automatic styles to \"content.xml\"."
952 (with-current-buffer
953 (find-file-noselect (expand-file-name "content.xml") t)
954 ;; position the cursor
955 (goto-char (point-min))
956 (re-search-forward " </office:automatic-styles>" nil t)
957 (goto-char (match-beginning 0))
958 ;; write automatic table styles
959 (loop for (style-name props) in
960 (plist-get org-odt-automatic-styles 'Table) do
961 (when (setq props (or (plist-get props :rel-width) 96))
962 (insert (format org-odt-table-style-format style-name props))))))
964 (defun org-odt-add-automatic-style (object-type &optional object-props)
965 "Create an automatic style of type OBJECT-TYPE with param OBJECT-PROPS.
966 OBJECT-PROPS is (typically) a plist created by passing
967 \"#+ATTR_ODT: \" option of the object in question to
968 `org-lparse-get-block-params'.
970 Use `org-odt-object-counters' to generate an automatic
971 OBJECT-NAME and STYLE-NAME. If OBJECT-PROPS is non-nil, add a
972 new entry in `org-odt-automatic-styles'. Return (OBJECT-NAME
973 . STYLE-NAME)."
974 (assert (stringp object-type))
975 (let* ((object (intern object-type))
976 (seqvar object)
977 (seqno (1+ (or (plist-get org-odt-object-counters seqvar) 0)))
978 (object-name (format "%s%d" object-type seqno)) style-name)
979 (setq org-odt-object-counters
980 (plist-put org-odt-object-counters seqvar seqno))
981 (when object-props
982 (setq style-name (format "Org%s" object-name))
983 (setq org-odt-automatic-styles
984 (plist-put org-odt-automatic-styles object
985 (append (list (list style-name object-props))
986 (plist-get org-odt-automatic-styles object)))))
987 (cons object-name style-name)))
989 (defvar org-odt-table-indentedp nil)
990 (defun org-odt-begin-table (caption label attributes)
991 (setq org-odt-table-indentedp (not (null org-lparse-list-stack)))
992 (when org-odt-table-indentedp
993 ;; Within the Org file, the table is appearing within a list item.
994 ;; OpenDocument doesn't allow table to appear within list items.
995 ;; Temporarily terminate the list, emit the table and then
996 ;; re-continue the list.
997 (org-odt-discontinue-list)
998 ;; Put the Table in an indented section.
999 (let ((level (length org-odt-list-stack-stashed)))
1000 (org-odt-begin-section (format "OrgIndentedSection-Level-%d" level))))
1001 (setq attributes (org-lparse-get-block-params attributes))
1002 (setq org-odt-table-style (plist-get attributes :style))
1003 (setq org-odt-table-style-spec
1004 (assoc org-odt-table-style org-export-odt-table-styles))
1005 (when (or label caption)
1006 (insert
1007 (org-odt-format-stylized-paragraph
1008 'table (org-odt-format-entity-caption label caption "__Table__"))))
1009 (let ((name-and-style (org-odt-add-automatic-style "Table" attributes)))
1010 (org-lparse-insert-tag
1011 "<table:table table:name=\"%s\" table:style-name=\"%s\">"
1012 (car name-and-style) (or (nth 1 org-odt-table-style-spec)
1013 (cdr name-and-style) "OrgTable")))
1014 (setq org-lparse-table-begin-marker (point)))
1016 (defvar org-lparse-table-colalign-info)
1017 (defun org-odt-end-table ()
1018 (goto-char org-lparse-table-begin-marker)
1019 (loop for level from 0 below org-lparse-table-ncols
1020 do (let* ((col-cookie (and org-lparse-table-is-styled
1021 (cdr (assoc (1+ level)
1022 org-lparse-table-colalign-info))))
1023 (extra-columns (or (nth 1 col-cookie) 0)))
1024 (dotimes (i (1+ extra-columns))
1025 (insert
1026 (org-odt-format-tags
1027 "<table:table-column table:style-name=\"%sColumn\"/>"
1028 "" (or (nth 1 org-odt-table-style-spec) "OrgTable"))))
1029 (insert "\n")))
1030 ;; fill style attributes for table cells
1031 (when org-lparse-table-is-styled
1032 (while (re-search-forward "@@\\(table-cell:p\\|table-cell:style-name\\)@@\\([0-9]+\\)@@\\([0-9]+\\)@@" nil t)
1033 (let* ((spec (match-string 1))
1034 (r (string-to-number (match-string 2)))
1035 (c (string-to-number (match-string 3)))
1036 (cell-styles (org-odt-get-table-cell-styles
1037 r c org-odt-table-style-spec))
1038 (table-cell-style (car cell-styles))
1039 (table-cell-paragraph-style (cdr cell-styles)))
1040 (cond
1041 ((equal spec "table-cell:p")
1042 (replace-match table-cell-paragraph-style t t))
1043 ((equal spec "table-cell:style-name")
1044 (replace-match table-cell-style t t))))))
1045 (goto-char (point-max))
1046 (org-lparse-insert-tag "</table:table>")
1047 (when org-odt-table-indentedp
1048 (org-odt-end-section)
1049 (org-odt-continue-list)))
1051 (defun org-odt-begin-table-rowgroup (&optional is-header-row)
1052 (when org-lparse-table-rowgrp-open
1053 (org-lparse-end 'TABLE-ROWGROUP))
1054 (org-lparse-insert-tag (if is-header-row
1055 "<table:table-header-rows>"
1056 "<table:table-rows>"))
1057 (setq org-lparse-table-rowgrp-open t)
1058 (setq org-lparse-table-cur-rowgrp-is-hdr is-header-row))
1060 (defun org-odt-end-table-rowgroup ()
1061 (when org-lparse-table-rowgrp-open
1062 (setq org-lparse-table-rowgrp-open nil)
1063 (org-lparse-insert-tag
1064 (if org-lparse-table-cur-rowgrp-is-hdr
1065 "</table:table-header-rows>" "</table:table-rows>"))))
1067 (defun org-odt-format-table-row (row)
1068 (org-odt-format-tags
1069 '("<table:table-row>" . "</table:table-row>") row))
1071 (defun org-odt-get-table-cell-styles (r c &optional style-spec)
1072 "Retrieve styles applicable to a table cell.
1073 R and C are (zero-based) row and column numbers of the table
1074 cell. STYLE-SPEC is an entry in `org-export-odt-table-styles'
1075 applicable to the current table. It is `nil' if the table is not
1076 associated with any style attributes.
1078 Return a cons of (TABLE-CELL-STYLE-NAME . PARAGRAPH-STYLE-NAME).
1080 When STYLE-SPEC is nil, style the table cell the conventional way
1081 - choose cell borders based on row and column groupings and
1082 choose paragraph alignment based on `org-col-cookies' text
1083 property. See also
1084 `org-odt-get-paragraph-style-cookie-for-table-cell'.
1086 When STYLE-SPEC is non-nil, ignore the above cookie and return
1087 styles congruent with the ODF-1.2 specification."
1088 (cond
1089 (style-spec
1091 ;; LibreOffice - particularly the Writer - honors neither table
1092 ;; templates nor custom table-cell styles. Inorder to retain
1093 ;; inter-operability with LibreOffice, only automatic styles are
1094 ;; used for styling of table-cells. The current implementation is
1095 ;; congruent with ODF-1.2 specification and hence is
1096 ;; future-compatible.
1098 ;; Additional Note: LibreOffice's AutoFormat facility for tables -
1099 ;; which recognizes as many as 16 different cell types - is much
1100 ;; richer. Unfortunately it is NOT amenable to easy configuration
1101 ;; by hand.
1103 (let* ((template-name (nth 1 style-spec))
1104 (cell-style-selectors (nth 2 style-spec))
1105 (cell-type
1106 (cond
1107 ((and (cdr (assoc 'use-first-column-styles cell-style-selectors))
1108 (= c 0)) "FirstColumn")
1109 ((and (cdr (assoc 'use-last-column-styles cell-style-selectors))
1110 (= c (1- org-lparse-table-ncols))) "LastColumn")
1111 ((and (cdr (assoc 'use-first-row-styles cell-style-selectors))
1112 (= r 0)) "FirstRow")
1113 ((and (cdr (assoc 'use-last-row-styles cell-style-selectors))
1114 (= r org-lparse-table-rownum))
1115 "LastRow")
1116 ((and (cdr (assoc 'use-banding-rows-styles cell-style-selectors))
1117 (= (% r 2) 1)) "EvenRow")
1118 ((and (cdr (assoc 'use-banding-rows-styles cell-style-selectors))
1119 (= (% r 2) 0)) "OddRow")
1120 ((and (cdr (assoc 'use-banding-columns-styles cell-style-selectors))
1121 (= (% c 2) 1)) "EvenColumn")
1122 ((and (cdr (assoc 'use-banding-columns-styles cell-style-selectors))
1123 (= (% c 2) 0)) "OddColumn")
1124 (t ""))))
1125 (cons
1126 (concat template-name cell-type "TableCell")
1127 (concat template-name cell-type "TableParagraph"))))
1129 (cons
1130 (concat
1131 "OrgTblCell"
1132 (cond
1133 ((= r 0) "T")
1134 ((eq (cdr (assoc r org-lparse-table-rowgrp-info)) :start) "T")
1135 (t ""))
1136 (when (= r org-lparse-table-rownum) "B")
1137 (cond
1138 ((= c 0) "")
1139 ((or (memq (nth c org-table-colgroup-info) '(:start :startend))
1140 (memq (nth (1- c) org-table-colgroup-info) '(:end :startend))) "L")
1141 (t "")))
1142 (capitalize (aref org-lparse-table-colalign-vector c))))))
1144 (defun org-odt-get-paragraph-style-cookie-for-table-cell (r c)
1145 (concat
1146 (and (not org-odt-table-style-spec)
1147 (cond
1148 (org-lparse-table-cur-rowgrp-is-hdr "OrgTableHeading")
1149 ((and (= c 0) (org-lparse-get 'TABLE-FIRST-COLUMN-AS-LABELS))
1150 "OrgTableHeading")
1151 (t "OrgTableContents")))
1152 (and org-lparse-table-is-styled
1153 (format "@@table-cell:p@@%03d@@%03d@@" r c))))
1155 (defun org-odt-get-style-name-cookie-for-table-cell (r c)
1156 (when org-lparse-table-is-styled
1157 (format "@@table-cell:style-name@@%03d@@%03d@@" r c)))
1159 (defun org-odt-format-table-cell (data r c horiz-span)
1160 (concat
1161 (let* ((paragraph-style-cookie
1162 (org-odt-get-paragraph-style-cookie-for-table-cell r c))
1163 (style-name-cookie
1164 (org-odt-get-style-name-cookie-for-table-cell r c))
1165 (extra (and style-name-cookie
1166 (format " table:style-name=\"%s\"" style-name-cookie)))
1167 (extra (concat extra
1168 (and (> horiz-span 0)
1169 (format " table:number-columns-spanned=\"%d\""
1170 (1+ horiz-span))))))
1171 (org-odt-format-tags
1172 '("<table:table-cell%s>" . "</table:table-cell>")
1173 (if org-lparse-list-table-p data
1174 (org-odt-format-stylized-paragraph paragraph-style-cookie data)) extra))
1175 (let (s)
1176 (dotimes (i horiz-span)
1177 (setq s (concat s "\n<table:covered-table-cell/>"))) s)
1178 "\n"))
1180 (defun org-odt-begin-footnote-definition (n)
1181 (org-lparse-begin-paragraph 'footnote))
1183 (defun org-odt-end-footnote-definition (n)
1184 (org-lparse-end-paragraph))
1186 (defun org-odt-begin-toc (lang-specific-heading max-level)
1187 ;; Strings in `org-export-language-setup' can contain named html
1188 ;; entities. Replace those with utf-8 equivalents.
1189 (let ((i 0) entity rpl)
1190 (while (string-match "&\\([^#].*?\\);" lang-specific-heading i)
1191 (setq entity (match-string 1 lang-specific-heading))
1192 (if (not (setq rpl (org-entity-get-representation entity 'utf8)))
1193 (setq i (match-end 0))
1194 (setq i (+ (match-beginning 0) (length rpl)))
1195 (setq lang-specific-heading
1196 (replace-match rpl t t lang-specific-heading)))))
1197 (insert
1198 (format "
1199 <text:table-of-content text:style-name=\"Sect2\" text:protected=\"true\" text:name=\"Table of Contents1\">
1200 <text:table-of-content-source text:outline-level=\"%d\">
1201 <text:index-title-template text:style-name=\"Contents_20_Heading\">%s</text:index-title-template>
1202 " max-level lang-specific-heading))
1203 (loop for level from 1 upto 10
1204 do (insert (format
1206 <text:table-of-content-entry-template text:outline-level=\"%d\" text:style-name=\"Contents_20_%d\">
1207 <text:index-entry-link-start text:style-name=\"Internet_20_link\"/>
1208 <text:index-entry-chapter/>
1209 <text:index-entry-text/>
1210 <text:index-entry-link-end/>
1211 </text:table-of-content-entry-template>
1212 " level level)))
1214 (insert
1215 (format "
1216 </text:table-of-content-source>
1218 <text:index-body>
1219 <text:index-title text:style-name=\"Sect1\" text:name=\"Table of Contents1_Head\">
1220 <text:p text:style-name=\"Contents_20_Heading\">%s</text:p>
1221 </text:index-title>
1222 " lang-specific-heading)))
1224 (defun org-odt-end-toc ()
1225 (insert "
1226 </text:index-body>
1227 </text:table-of-content>
1230 (defun org-odt-format-toc-entry (snumber todo headline tags href)
1231 (setq headline (concat
1232 (and org-export-with-section-numbers
1233 (concat snumber ". "))
1234 headline
1235 (and tags
1236 (concat
1237 (org-lparse-format 'SPACES 3)
1238 (org-lparse-format 'FONTIFY tags "tag")))))
1239 (when todo
1240 (setq headline (org-lparse-format 'FONTIFY headline "todo")))
1242 (let ((org-odt-suppress-xref t))
1243 (org-odt-format-link headline (concat "#" href))))
1245 (defun org-odt-format-toc-item (toc-entry level org-last-level)
1246 (let ((style (format "Contents_20_%d"
1247 (+ level (or (org-lparse-get 'TOPLEVEL-HLEVEL) 1) -1))))
1248 (insert "\n" (org-odt-format-stylized-paragraph style toc-entry) "\n")))
1250 ;; Following variable is let bound during 'ORG-LINK callback. See
1251 ;; org-html.el
1252 (defvar org-lparse-link-description-is-image nil)
1253 (defun org-odt-format-link (desc href &optional attr)
1254 (cond
1255 ((and (= (string-to-char href) ?#) (not org-odt-suppress-xref))
1256 (setq href (substring href 1))
1257 (let ((xref-format "text"))
1258 (when (numberp desc)
1259 (setq desc (format "%d" desc) xref-format "number"))
1260 (when (listp desc)
1261 (setq desc (mapconcat 'identity desc ".") xref-format "chapter"))
1262 (setq href (concat org-export-odt-bookmark-prefix href))
1263 (org-odt-format-tags
1264 '("<text:bookmark-ref text:reference-format=\"%s\" text:ref-name=\"%s\">" .
1265 "</text:bookmark-ref>")
1266 desc xref-format href)))
1267 (org-lparse-link-description-is-image
1268 (org-odt-format-tags
1269 '("<draw:a xlink:type=\"simple\" xlink:href=\"%s\" %s>" . "</draw:a>")
1270 desc href (or attr "")))
1272 (org-odt-format-tags
1273 '("<text:a xlink:type=\"simple\" xlink:href=\"%s\" %s>" . "</text:a>")
1274 desc href (or attr "")))))
1276 (defun org-odt-format-spaces (n)
1277 (cond
1278 ((= n 1) " ")
1279 ((> n 1) (concat
1280 " " (org-odt-format-tags "<text:s text:c=\"%d\"/>" "" (1- n))))
1281 (t "")))
1283 (defun org-odt-format-tabs (&optional n)
1284 (let ((tab "<text:tab/>")
1285 (n (or n 1)))
1286 (insert tab)))
1288 (defun org-odt-format-line-break ()
1289 (org-odt-format-tags "<text:line-break/>" ""))
1291 (defun org-odt-format-horizontal-line ()
1292 (org-odt-format-stylized-paragraph 'horizontal-line ""))
1294 (defun org-odt-encode-plain-text (line &optional no-whitespace-filling)
1295 (setq line (org-xml-encode-plain-text line))
1296 (if no-whitespace-filling line
1297 (org-odt-fill-tabs-and-spaces line)))
1299 (defun org-odt-format-line (line)
1300 (case org-lparse-dyn-current-environment
1301 (fixedwidth (concat
1302 (org-odt-format-stylized-paragraph
1303 'fixedwidth (org-odt-encode-plain-text line)) "\n"))
1304 (t (concat line "\n"))))
1306 (defun org-odt-format-comment (fmt &rest args)
1307 (let ((comment (apply 'format fmt args)))
1308 (format "\n<!-- %s -->\n" comment)))
1310 (defun org-odt-format-org-entity (wd)
1311 (org-entity-get-representation wd 'utf8))
1313 (defun org-odt-fill-tabs-and-spaces (line)
1314 (replace-regexp-in-string
1315 "\\([\t]\\|\\([ ]+\\)\\)" (lambda (s)
1316 (cond
1317 ((string= s "\t") (org-odt-format-tabs))
1318 (t (org-odt-format-spaces (length s))))) line))
1320 (defcustom org-export-odt-fontify-srcblocks t
1321 "Specify whether or not source blocks need to be fontified.
1322 Turn this option on if you want to colorize the source code
1323 blocks in the exported file. For colorization to work, you need
1324 to make available an enhanced version of `htmlfontify' library."
1325 :type 'boolean
1326 :group 'org-export-odt
1327 :version "24.1")
1329 (defun org-odt-format-source-line-with-line-number-and-label
1330 (line rpllbl num fontifier par-style)
1332 (let ((keep-label (not (numberp rpllbl)))
1333 (ref (org-find-text-property-in-string 'org-coderef line)))
1334 (setq line (concat line (and keep-label ref (format "(%s)" ref))))
1335 (setq line (funcall fontifier line))
1336 (when ref
1337 (setq line (org-odt-format-target line (concat "coderef-" ref))))
1338 (setq line (org-odt-format-stylized-paragraph par-style line))
1339 (if (not num) line
1340 (org-odt-format-tags '("<text:list-item>" . "</text:list-item>") line))))
1342 (defun org-odt-format-source-code-or-example-plain
1343 (lines lang caption textareap cols rows num cont rpllbl fmt)
1344 "Format source or example blocks much like fixedwidth blocks.
1345 Use this when `org-export-odt-fontify-srcblocks' option is turned
1346 off."
1347 (let* ((lines (org-split-string lines "[\r\n]"))
1348 (line-count (length lines))
1349 (i 0))
1350 (mapconcat
1351 (lambda (line)
1352 (incf i)
1353 (org-odt-format-source-line-with-line-number-and-label
1354 line rpllbl num 'org-odt-encode-plain-text
1355 (if (= i line-count) "OrgFixedWidthBlockLastLine"
1356 "OrgFixedWidthBlock")))
1357 lines "\n")))
1359 (defvar org-src-block-paragraph-format
1360 "<style:style style:name=\"OrgSrcBlock\" style:family=\"paragraph\" style:parent-style-name=\"Preformatted_20_Text\">
1361 <style:paragraph-properties fo:background-color=\"%s\" fo:padding=\"0.049cm\" fo:border=\"0.51pt solid #000000\" style:shadow=\"none\">
1362 <style:background-image/>
1363 </style:paragraph-properties>
1364 <style:text-properties fo:color=\"%s\"/>
1365 </style:style>"
1366 "Custom paragraph style for colorized source and example blocks.
1367 This style is much the same as that of \"OrgFixedWidthBlock\"
1368 except that the foreground and background colors are set
1369 according to the default face identified by the `htmlfontify'.")
1371 (defvar hfy-optimisations)
1372 (declare-function hfy-face-to-style "htmlfontify" (fn))
1373 (declare-function hfy-face-or-def-to-name "htmlfontify" (fn))
1375 (defun org-odt-hfy-face-to-css (fn)
1376 "Create custom style for face FN.
1377 When FN is the default face, use it's foreground and background
1378 properties to create \"OrgSrcBlock\" paragraph style. Otherwise
1379 use it's color attribute to create a character style whose name
1380 is obtained from FN. Currently all attributes of FN other than
1381 color are ignored.
1383 The style name for a face FN is derived using the following
1384 operations on the face name in that order - de-dash, CamelCase
1385 and prefix with \"OrgSrc\". For example,
1386 `font-lock-function-name-face' is associated with
1387 \"OrgSrcFontLockFunctionNameFace\"."
1388 (let* ((css-list (hfy-face-to-style fn))
1389 (style-name ((lambda (fn)
1390 (concat "OrgSrc"
1391 (mapconcat
1392 'capitalize (split-string
1393 (hfy-face-or-def-to-name fn) "-")
1394 ""))) fn))
1395 (color-val (cdr (assoc "color" css-list)))
1396 (background-color-val (cdr (assoc "background" css-list)))
1397 (style (and org-export-odt-create-custom-styles-for-srcblocks
1398 (cond
1399 ((eq fn 'default)
1400 (format org-src-block-paragraph-format
1401 background-color-val color-val))
1403 (format
1405 <style:style style:name=\"%s\" style:family=\"text\">
1406 <style:text-properties fo:color=\"%s\"/>
1407 </style:style>" style-name color-val))))))
1408 (cons style-name style)))
1410 (defun org-odt-insert-custom-styles-for-srcblocks (styles)
1411 "Save STYLES used for colorizing of source blocks.
1412 Update styles.xml with styles that were collected as part of
1413 `org-odt-hfy-face-to-css' callbacks."
1414 (when styles
1415 (with-current-buffer
1416 (find-file-noselect (expand-file-name "styles.xml") t)
1417 (goto-char (point-min))
1418 (when (re-search-forward "</office:styles>" nil t)
1419 (goto-char (match-beginning 0))
1420 (insert "\n<!-- Org Htmlfontify Styles -->\n" styles "\n")))))
1422 (defun org-odt-format-source-code-or-example-colored
1423 (lines lang caption textareap cols rows num cont rpllbl fmt)
1424 "Format source or example blocks using `htmlfontify-string'.
1425 Use this routine when `org-export-odt-fontify-srcblocks' option
1426 is turned on."
1427 (let* ((lang-m (and lang (or (cdr (assoc lang org-src-lang-modes)) lang)))
1428 (mode (and lang-m (intern (concat (if (symbolp lang-m)
1429 (symbol-name lang-m)
1430 lang-m) "-mode"))))
1431 (org-inhibit-startup t)
1432 (org-startup-folded nil)
1433 (lines (with-temp-buffer
1434 (insert lines)
1435 (if (functionp mode) (funcall mode) (fundamental-mode))
1436 (font-lock-fontify-buffer)
1437 (buffer-string)))
1438 (hfy-html-quote-regex "\\([<\"&> ]\\)")
1439 (hfy-html-quote-map '(("\"" "&quot;")
1440 ("<" "&lt;")
1441 ("&" "&amp;")
1442 (">" "&gt;")
1443 (" " "<text:s/>")
1444 (" " "<text:tab/>")))
1445 (hfy-face-to-css 'org-odt-hfy-face-to-css)
1446 (hfy-optimisations-1 (copy-seq hfy-optimisations))
1447 (hfy-optimisations (add-to-list 'hfy-optimisations-1
1448 'body-text-only))
1449 (hfy-begin-span-handler
1450 (lambda (style text-block text-id text-begins-block-p)
1451 (insert (format "<text:span text:style-name=\"%s\">" style))))
1452 (hfy-end-span-handler (lambda nil (insert "</text:span>"))))
1453 (when (fboundp 'htmlfontify-string)
1454 (let* ((lines (org-split-string lines "[\r\n]"))
1455 (line-count (length lines))
1456 (i 0))
1457 (mapconcat
1458 (lambda (line)
1459 (incf i)
1460 (org-odt-format-source-line-with-line-number-and-label
1461 line rpllbl num 'htmlfontify-string
1462 (if (= i line-count) "OrgSrcBlockLastLine" "OrgSrcBlock")))
1463 lines "\n")))))
1465 (defun org-odt-format-source-code-or-example (lines lang caption textareap
1466 cols rows num cont
1467 rpllbl fmt)
1468 "Format source or example blocks for export.
1469 Use `org-odt-format-source-code-or-example-plain' or
1470 `org-odt-format-source-code-or-example-colored' depending on the
1471 value of `org-export-odt-fontify-srcblocks."
1472 (setq lines (org-export-number-lines
1473 lines 0 0 num cont rpllbl fmt 'preprocess)
1474 lines (funcall
1475 (or (and org-export-odt-fontify-srcblocks
1476 (or (featurep 'htmlfontify)
1477 ;; htmlfontify.el was introduced in Emacs 23.2
1478 ;; So load it with some caution
1479 (require 'htmlfontify nil t))
1480 (fboundp 'htmlfontify-string)
1481 'org-odt-format-source-code-or-example-colored)
1482 'org-odt-format-source-code-or-example-plain)
1483 lines lang caption textareap cols rows num cont rpllbl fmt))
1484 (if (not num) lines
1485 (let ((extra (format " text:continue-numbering=\"%s\""
1486 (if cont "true" "false"))))
1487 (org-odt-format-tags
1488 '("<text:list text:style-name=\"OrgSrcBlockNumberedLine\"%s>"
1489 . "</text:list>") lines extra))))
1491 (defun org-odt-remap-stylenames (style-name)
1493 (cdr (assoc style-name '(("timestamp-wrapper" . "OrgTimestampWrapper")
1494 ("timestamp" . "OrgTimestamp")
1495 ("timestamp-kwd" . "OrgTimestampKeyword")
1496 ("tag" . "OrgTag")
1497 ("todo" . "OrgTodo")
1498 ("done" . "OrgDone")
1499 ("target" . "OrgTarget"))))
1500 style-name))
1502 (defun org-odt-format-fontify (text style &optional id)
1503 (let* ((style-name
1504 (cond
1505 ((stringp style)
1506 (org-odt-remap-stylenames style))
1507 ((symbolp style)
1508 (org-odt-get-style-name-for-entity 'character style))
1509 ((listp style)
1510 (assert (< 1 (length style)))
1511 (let ((parent-style (pop style)))
1512 (mapconcat (lambda (s)
1513 ;; (assert (stringp s) t)
1514 (org-odt-remap-stylenames s)) style "")
1515 (org-odt-remap-stylenames parent-style)))
1516 (t (error "Don't how to handle style %s" style)))))
1517 (org-odt-format-tags
1518 '("<text:span text:style-name=\"%s\">" . "</text:span>")
1519 text style-name)))
1521 (defun org-odt-relocate-relative-path (path dir)
1522 (if (file-name-absolute-p path) path
1523 (file-relative-name (expand-file-name path dir)
1524 (expand-file-name "eyecandy" dir))))
1526 (defun org-odt-format-inline-image (thefile)
1527 (let* ((thelink (if (file-name-absolute-p thefile) thefile
1528 (org-xml-format-href
1529 (org-odt-relocate-relative-path
1530 thefile org-current-export-file))))
1531 (href
1532 (org-odt-format-tags
1533 "<draw:image xlink:href=\"%s\" xlink:type=\"simple\" xlink:show=\"embed\" xlink:actuate=\"onLoad\"/>" ""
1534 (if org-export-odt-embed-images
1535 (org-odt-copy-image-file thefile) thelink))))
1536 (org-export-odt-format-image thefile href)))
1538 (defun org-export-odt-format-formula (src href)
1539 (save-match-data
1540 (let* ((caption (org-find-text-property-in-string 'org-caption src))
1541 (caption (and caption (org-xml-format-desc caption)))
1542 (label (org-find-text-property-in-string 'org-label src))
1543 (latex-frag (org-find-text-property-in-string 'org-latex-src src))
1544 (embed-as (or (and latex-frag
1545 (org-find-text-property-in-string
1546 'org-latex-src-embed-type src))
1547 (if (or caption label) 'paragraph 'character)))
1548 width height)
1549 (when latex-frag
1550 (setq href (org-propertize href :title "LaTeX Fragment"
1551 :description latex-frag)))
1552 (cond
1553 ((eq embed-as 'character)
1554 (org-odt-format-entity "InlineFormula" href width height))
1556 (org-lparse-end-paragraph)
1557 (org-lparse-insert-list-table
1558 `((,(org-odt-format-entity
1559 (if caption "CaptionedDisplayFormula" "DisplayFormula")
1560 href width height :caption caption :label nil)
1561 ,(if (not label) ""
1562 (org-odt-format-entity-caption label nil "__MathFormula__"))))
1563 nil nil nil ":style \"OrgEquation\"" nil '((1 "c" 8) (2 "c" 1)))
1564 (throw 'nextline nil))))))
1566 (defvar org-odt-embedded-formulas-count 0)
1567 (defun org-odt-copy-formula-file (path)
1568 "Returns the internal name of the file"
1569 (let* ((src-file (expand-file-name
1570 path (file-name-directory org-current-export-file)))
1571 (target-dir (format "Formula-%04d/"
1572 (incf org-odt-embedded-formulas-count)))
1573 (target-file (concat target-dir "content.xml")))
1574 (when (not org-lparse-to-buffer)
1575 (message "Embedding %s as %s ..."
1576 (substring-no-properties path) target-file)
1578 (make-directory target-dir)
1579 (org-odt-create-manifest-file-entry
1580 "application/vnd.oasis.opendocument.formula" target-dir "1.2")
1582 (case (org-odt-is-formula-link-p src-file)
1583 (mathml
1584 (copy-file src-file target-file 'overwrite))
1585 (odf
1586 (org-odt-zip-extract-one src-file "content.xml" target-dir))
1588 (error "%s is not a formula file" src-file)))
1590 (org-odt-create-manifest-file-entry "text/xml" target-file))
1591 target-file))
1593 (defun org-odt-format-inline-formula (thefile)
1594 (let* ((thelink (if (file-name-absolute-p thefile) thefile
1595 (org-xml-format-href
1596 (org-odt-relocate-relative-path
1597 thefile org-current-export-file))))
1598 (href
1599 (org-odt-format-tags
1600 "<draw:object xlink:href=\"%s\" xlink:type=\"simple\" xlink:show=\"embed\" xlink:actuate=\"onLoad\"/>" ""
1601 (file-name-directory (org-odt-copy-formula-file thefile)))))
1602 (org-export-odt-format-formula thefile href)))
1604 (defun org-odt-is-formula-link-p (file)
1605 (let ((case-fold-search nil))
1606 (cond
1607 ((string-match "\\.\\(mathml\\|mml\\)\\'" file)
1608 'mathml)
1609 ((string-match "\\.odf\\'" file)
1610 'odf))))
1612 (defun org-odt-format-org-link (opt-plist type-1 path fragment desc attr
1613 descp)
1614 "Make a OpenDocument link.
1615 OPT-PLIST is an options list.
1616 TYPE-1 is the device-type of the link (THIS://foo.html).
1617 PATH is the path of the link (http://THIS#location).
1618 FRAGMENT is the fragment part of the link, if any (foo.html#THIS).
1619 DESC is the link description, if any.
1620 ATTR is a string of other attributes of the a element."
1621 (declare (special org-lparse-par-open))
1622 (save-match-data
1623 (let* ((may-inline-p
1624 (and (member type-1 '("http" "https" "file"))
1625 (org-lparse-should-inline-p path descp)
1626 (not fragment)))
1627 (type (if (equal type-1 "id") "file" type-1))
1628 (filename path)
1629 (thefile path)
1630 sec-frag sec-nos)
1631 (cond
1632 ;; check for inlined images
1633 ((and (member type '("file"))
1634 (not fragment)
1635 (org-file-image-p
1636 filename org-export-odt-inline-image-extensions)
1637 (or (eq t org-export-odt-inline-images)
1638 (and org-export-odt-inline-images (not descp))))
1639 (org-odt-format-inline-image thefile))
1640 ;; check for embedded formulas
1641 ((and (member type '("file"))
1642 (not fragment)
1643 (org-odt-is-formula-link-p filename)
1644 (or (not descp)))
1645 (org-odt-format-inline-formula thefile))
1646 ;; code references
1647 ((string= type "coderef")
1648 (let* ((ref fragment)
1649 (lineno-or-ref (cdr (assoc ref org-export-code-refs)))
1650 (desc (and descp desc))
1651 (org-odt-suppress-xref nil)
1652 (href (org-xml-format-href (concat "#coderef-" ref))))
1653 (cond
1654 ((and (numberp lineno-or-ref) (not desc))
1655 (org-odt-format-link lineno-or-ref href))
1656 ((and (numberp lineno-or-ref) desc
1657 (string-match (regexp-quote (concat "(" ref ")")) desc))
1658 (format (replace-match "%s" t t desc)
1659 (org-odt-format-link lineno-or-ref href)))
1661 (setq desc (format
1662 (if (and desc (string-match
1663 (regexp-quote (concat "(" ref ")"))
1664 desc))
1665 (replace-match "%s" t t desc)
1666 (or desc "%s"))
1667 lineno-or-ref))
1668 (org-odt-format-link (org-xml-format-desc desc) href)))))
1669 ;; links to headlines
1670 ((and (string= type "")
1671 (or (not thefile) (string= thefile ""))
1672 (plist-get org-lparse-opt-plist :section-numbers)
1673 (setq sec-frag fragment)
1674 (org-find-text-property-in-string 'org-no-description fragment)
1675 (or (string-match "\\`sec\\(\\(-[0-9]+\\)+\\)" sec-frag)
1676 (and (setq sec-frag
1677 (loop for alias in org-export-target-aliases do
1678 (when (member fragment (cdr alias))
1679 (return (car alias)))))
1680 (string-match "\\`sec\\(\\(-[0-9]+\\)+\\)" sec-frag)))
1681 (setq sec-nos (org-split-string (match-string 1 sec-frag) "-"))
1682 (<= (length sec-nos) (plist-get org-lparse-opt-plist
1683 :headline-levels)))
1684 (let ((org-odt-suppress-xref nil))
1685 (org-odt-format-link sec-nos (concat "#" sec-frag) attr)))
1687 (when (string= type "file")
1688 (setq thefile
1689 (cond
1690 ((file-name-absolute-p path)
1691 (concat "file://" (expand-file-name path)))
1692 (t (org-odt-relocate-relative-path
1693 thefile org-current-export-file)))))
1695 (when (and (member type '("" "http" "https" "file")) fragment)
1696 (setq thefile (concat thefile "#" fragment)))
1698 (setq thefile (org-xml-format-href thefile))
1700 (when (not (member type '("" "file")))
1701 (setq thefile (concat type ":" thefile)))
1703 (let ((org-odt-suppress-xref nil))
1704 (org-odt-format-link
1705 (org-xml-format-desc desc) thefile attr)))))))
1707 (defun org-odt-format-heading (text level &optional id)
1708 (let* ((text (if id (org-odt-format-target text id) text)))
1709 (org-odt-format-tags
1710 '("<text:h text:style-name=\"Heading_20_%s\" text:outline-level=\"%s\">" .
1711 "</text:h>") text level level)))
1713 (defun org-odt-format-headline (title extra-targets tags
1714 &optional snumber level)
1715 (concat
1716 (org-lparse-format 'EXTRA-TARGETS extra-targets)
1718 ;; No need to generate section numbers. They are auto-generated by
1719 ;; the application
1721 ;; (concat (org-lparse-format 'SECTION-NUMBER snumber level) " ")
1722 title
1723 (and tags (concat (org-lparse-format 'SPACES 3)
1724 (org-lparse-format 'ORG-TAGS tags)))))
1726 (defun org-odt-format-anchor (text name &optional class)
1727 (org-odt-format-target text name))
1729 (defun org-odt-format-bookmark (text id)
1730 (if id
1731 (org-odt-format-tags "<text:bookmark text:name=\"%s\"/>" text id)
1732 text))
1734 (defun org-odt-format-target (text id)
1735 (let ((name (concat org-export-odt-bookmark-prefix id)))
1736 (concat
1737 (and id (org-odt-format-tags
1738 "<text:bookmark-start text:name=\"%s\"/>" "" name))
1739 (org-odt-format-bookmark text id)
1740 (and id (org-odt-format-tags
1741 "<text:bookmark-end text:name=\"%s\"/>" "" name)))))
1743 (defun org-odt-format-footnote (n def)
1744 (let ((id (concat "fn" n))
1745 (note-class "footnote")
1746 (par-style "Footnote"))
1747 (org-odt-format-tags
1748 '("<text:note text:id=\"%s\" text:note-class=\"%s\">" .
1749 "</text:note>")
1750 (concat
1751 (org-odt-format-tags
1752 '("<text:note-citation>" . "</text:note-citation>")
1754 (org-odt-format-tags
1755 '("<text:note-body>" . "</text:note-body>")
1756 def))
1757 id note-class)))
1759 (defun org-odt-format-footnote-reference (n def refcnt)
1760 (if (= refcnt 1)
1761 (org-odt-format-footnote n def)
1762 (org-odt-format-footnote-ref n)))
1764 (defun org-odt-format-footnote-ref (n)
1765 (let ((note-class "footnote")
1766 (ref-format "text")
1767 (ref-name (concat "fn" n)))
1768 (org-odt-format-tags
1769 '("<text:span text:style-name=\"%s\">" . "</text:span>")
1770 (org-odt-format-tags
1771 '("<text:note-ref text:note-class=\"%s\" text:reference-format=\"%s\" text:ref-name=\"%s\">" . "</text:note-ref>")
1772 n note-class ref-format ref-name)
1773 "OrgSuperscript")))
1775 (defun org-odt-get-image-name (file-name)
1776 (require 'sha1)
1777 (file-relative-name
1778 (expand-file-name
1779 (concat (sha1 file-name) "." (file-name-extension file-name)) "Pictures")))
1781 (defun org-export-odt-format-image (src href)
1782 "Create image tag with source and attributes."
1783 (save-match-data
1784 (let* ((caption (org-find-text-property-in-string 'org-caption src))
1785 (caption (and caption (org-xml-format-desc caption)))
1786 (attr (org-find-text-property-in-string 'org-attributes src))
1787 (label (org-find-text-property-in-string 'org-label src))
1788 (latex-frag (org-find-text-property-in-string
1789 'org-latex-src src))
1790 (category (and latex-frag "__DvipngImage__"))
1791 (attr-plist (org-lparse-get-block-params attr))
1792 (user-frame-anchor
1793 (car (assoc-string (plist-get attr-plist :anchor)
1794 '(("as-char") ("paragraph") ("page")) t)))
1795 (user-frame-style
1796 (and user-frame-anchor (plist-get attr-plist :style)))
1797 (user-frame-attrs
1798 (and user-frame-anchor (plist-get attr-plist :attributes)))
1799 (user-frame-params
1800 (list user-frame-style user-frame-attrs user-frame-anchor))
1801 (embed-as (cond
1802 (latex-frag
1803 (symbol-name
1804 (case (org-find-text-property-in-string
1805 'org-latex-src-embed-type src)
1806 (paragraph 'paragraph)
1807 (t 'as-char))))
1808 (user-frame-anchor)
1809 (t "paragraph")))
1810 (size (org-odt-image-size-from-file
1811 src (plist-get attr-plist :width)
1812 (plist-get attr-plist :height)
1813 (plist-get attr-plist :scale) nil embed-as))
1814 (width (car size)) (height (cdr size)))
1815 (when latex-frag
1816 (setq href (org-propertize href :title "LaTeX Fragment"
1817 :description latex-frag)))
1818 (let ((frame-style-handle (concat (and (or caption label) "Captioned")
1819 embed-as "Image")))
1820 (org-odt-format-entity
1821 frame-style-handle href width height
1822 :caption caption :label label :category category
1823 :user-frame-params user-frame-params)))))
1825 (defun org-odt-format-object-description (title description)
1826 (concat (and title (org-odt-format-tags
1827 '("<svg:title>" . "</svg:title>")
1828 (org-odt-encode-plain-text title t)))
1829 (and description (org-odt-format-tags
1830 '("<svg:desc>" . "</svg:desc>")
1831 (org-odt-encode-plain-text description t)))))
1833 (defun org-odt-format-frame (text width height style &optional
1834 extra anchor-type)
1835 (let ((frame-attrs
1836 (concat
1837 (if width (format " svg:width=\"%0.2fcm\"" width) "")
1838 (if height (format " svg:height=\"%0.2fcm\"" height) "")
1839 extra
1840 (format " text:anchor-type=\"%s\"" (or anchor-type "paragraph")))))
1841 (org-odt-format-tags
1842 '("<draw:frame draw:style-name=\"%s\"%s>" . "</draw:frame>")
1843 (concat text (org-odt-format-object-description
1844 (get-text-property 0 :title text)
1845 (get-text-property 0 :description text)))
1846 style frame-attrs)))
1848 (defun org-odt-format-textbox (text width height style &optional
1849 extra anchor-type)
1850 (org-odt-format-frame
1851 (org-odt-format-tags
1852 '("<draw:text-box %s>" . "</draw:text-box>")
1853 text (concat (format " fo:min-height=\"%0.2fcm\"" (or height .2))
1854 (unless width
1855 (format " fo:min-width=\"%0.2fcm\"" (or width .2)))))
1856 width nil style extra anchor-type))
1858 (defun org-odt-format-inlinetask (heading content
1859 &optional todo priority tags)
1860 (org-odt-format-stylized-paragraph
1861 nil (org-odt-format-textbox
1862 (concat (org-odt-format-stylized-paragraph
1863 "OrgInlineTaskHeading"
1864 (org-lparse-format
1865 'HEADLINE (concat (org-lparse-format-todo todo) " " heading)
1866 nil tags))
1867 content) nil nil "OrgInlineTaskFrame" " style:rel-width=\"100%\"")))
1869 (defvar org-odt-entity-frame-styles
1870 '(("As-CharImage" "__Figure__" ("OrgInlineImage" nil "as-char"))
1871 ("ParagraphImage" "__Figure__" ("OrgDisplayImage" nil "paragraph"))
1872 ("PageImage" "__Figure__" ("OrgPageImage" nil "page"))
1873 ("CaptionedAs-CharImage" "__Figure__"
1874 ("OrgCaptionedImage"
1875 " style:rel-width=\"100%\" style:rel-height=\"scale\"" "paragraph")
1876 ("OrgInlineImage" nil "as-char"))
1877 ("CaptionedParagraphImage" "__Figure__"
1878 ("OrgCaptionedImage"
1879 " style:rel-width=\"100%\" style:rel-height=\"scale\"" "paragraph")
1880 ("OrgImageCaptionFrame" nil "paragraph"))
1881 ("CaptionedPageImage" "__Figure__"
1882 ("OrgCaptionedImage"
1883 " style:rel-width=\"100%\" style:rel-height=\"scale\"" "paragraph")
1884 ("OrgPageImageCaptionFrame" nil "page"))
1885 ("InlineFormula" "__MathFormula__" ("OrgInlineFormula" nil "as-char"))
1886 ("DisplayFormula" "__MathFormula__" ("OrgDisplayFormula" nil "as-char"))
1887 ("CaptionedDisplayFormula" "__MathFormula__"
1888 ("OrgCaptionedFormula" nil "paragraph")
1889 ("OrgFormulaCaptionFrame" nil "as-char"))))
1891 (defun org-odt-merge-frame-params(default-frame-params user-frame-params)
1892 (if (not user-frame-params) default-frame-params
1893 (assert (= (length default-frame-params) 3))
1894 (assert (= (length user-frame-params) 3))
1895 (loop for user-frame-param in user-frame-params
1896 for default-frame-param in default-frame-params
1897 collect (or user-frame-param default-frame-param))))
1899 (defun* org-odt-format-entity (entity href width height
1900 &key caption label category
1901 user-frame-params)
1902 (let* ((entity-style (assoc-string entity org-odt-entity-frame-styles t))
1903 default-frame-params frame-params)
1904 (cond
1905 ((not (or caption label))
1906 (setq default-frame-params (nth 2 entity-style))
1907 (setq frame-params (org-odt-merge-frame-params
1908 default-frame-params user-frame-params))
1909 (apply 'org-odt-format-frame href width height frame-params))
1911 (setq default-frame-params (nth 3 entity-style))
1912 (setq frame-params (org-odt-merge-frame-params
1913 default-frame-params user-frame-params))
1914 (apply 'org-odt-format-textbox
1915 (org-odt-format-stylized-paragraph
1916 'illustration
1917 (concat
1918 (apply 'org-odt-format-frame href width height
1919 (nth 2 entity-style))
1920 (org-odt-format-entity-caption
1921 label caption (or category (nth 1 entity-style)))))
1922 width height frame-params)))))
1924 (defvar org-odt-embedded-images-count 0)
1925 (defun org-odt-copy-image-file (path)
1926 "Returns the internal name of the file"
1927 (let* ((image-type (file-name-extension path))
1928 (media-type (format "image/%s" image-type))
1929 (src-file (expand-file-name
1930 path (file-name-directory org-current-export-file)))
1931 (target-dir "Images/")
1932 (target-file
1933 (format "%s%04d.%s" target-dir
1934 (incf org-odt-embedded-images-count) image-type)))
1935 (when (not org-lparse-to-buffer)
1936 (message "Embedding %s as %s ..."
1937 (substring-no-properties path) target-file)
1939 (when (= 1 org-odt-embedded-images-count)
1940 (make-directory target-dir)
1941 (org-odt-create-manifest-file-entry "" target-dir))
1943 (copy-file src-file target-file 'overwrite)
1944 (org-odt-create-manifest-file-entry media-type target-file))
1945 target-file))
1947 (defvar org-export-odt-image-size-probe-method
1948 (append (and (executable-find "identify") '(imagemagick)) ; See Bug#10675
1949 '(emacs fixed))
1950 "Ordered list of methods for determining image sizes.")
1952 (defvar org-export-odt-default-image-sizes-alist
1953 '(("as-char" . (5 . 0.4))
1954 ("paragraph" . (5 . 5)))
1955 "Hardcoded image dimensions one for each of the anchor
1956 methods.")
1958 ;; A4 page size is 21.0 by 29.7 cms
1959 ;; The default page settings has 2cm margin on each of the sides. So
1960 ;; the effective text area is 17.0 by 25.7 cm
1961 (defvar org-export-odt-max-image-size '(17.0 . 20.0)
1962 "Limiting dimensions for an embedded image.")
1964 (defun org-odt-do-image-size (probe-method file &optional dpi anchor-type)
1965 (setq dpi (or dpi org-export-odt-pixels-per-inch))
1966 (setq anchor-type (or anchor-type "paragraph"))
1967 (flet ((size-in-cms (size-in-pixels)
1968 (flet ((pixels-to-cms (pixels)
1969 (let* ((cms-per-inch 2.54)
1970 (inches (/ pixels dpi)))
1971 (* cms-per-inch inches))))
1972 (and size-in-pixels
1973 (cons (pixels-to-cms (car size-in-pixels))
1974 (pixels-to-cms (cdr size-in-pixels)))))))
1975 (case probe-method
1976 (emacs
1977 (size-in-cms (ignore-errors ; Emacs could be in batch mode
1978 (clear-image-cache)
1979 (image-size (create-image file) 'pixels))))
1980 (imagemagick
1981 (size-in-cms
1982 (let ((dim (shell-command-to-string
1983 (format "identify -format \"%%w:%%h\" \"%s\"" file))))
1984 (when (string-match "\\([0-9]+\\):\\([0-9]+\\)" dim)
1985 (cons (string-to-number (match-string 1 dim))
1986 (string-to-number (match-string 2 dim)))))))
1988 (cdr (assoc-string anchor-type
1989 org-export-odt-default-image-sizes-alist))))))
1991 (defun org-odt-image-size-from-file (file &optional user-width
1992 user-height scale dpi embed-as)
1993 (unless (file-name-absolute-p file)
1994 (setq file (expand-file-name
1995 file (file-name-directory org-current-export-file))))
1996 (let* (size width height)
1997 (unless (and user-height user-width)
1998 (loop for probe-method in org-export-odt-image-size-probe-method
1999 until size
2000 do (setq size (org-odt-do-image-size
2001 probe-method file dpi embed-as)))
2002 (or size (error "Cannot determine Image size. Aborting ..."))
2003 (setq width (car size) height (cdr size)))
2004 (cond
2005 (scale
2006 (setq width (* width scale) height (* height scale)))
2007 ((and user-height user-width)
2008 (setq width user-width height user-height))
2009 (user-height
2010 (setq width (* user-height (/ width height)) height user-height))
2011 (user-width
2012 (setq height (* user-width (/ height width)) width user-width))
2013 (t (ignore)))
2014 ;; ensure that an embedded image fits comfortably within a page
2015 (let ((max-width (car org-export-odt-max-image-size))
2016 (max-height (cdr org-export-odt-max-image-size)))
2017 (when (or (> width max-width) (> height max-height))
2018 (let* ((scale1 (/ max-width width))
2019 (scale2 (/ max-height height))
2020 (scale (min scale1 scale2)))
2021 (setq width (* scale width) height (* scale height)))))
2022 (cons width height)))
2024 (defvar org-odt-entity-labels-alist nil
2025 "Associate Labels with the Labeled entities.
2026 Each element of the alist is of the form (LABEL-NAME
2027 CATEGORY-NAME SEQNO LABEL-STYLE-NAME). LABEL-NAME is same as
2028 that specified by \"#+LABEL: ...\" line. CATEGORY-NAME is the
2029 type of the entity that LABEL-NAME is attached to. CATEGORY-NAME
2030 can be one of \"Table\", \"Figure\" or \"Equation\". SEQNO is
2031 the unique number assigned to the referenced entity on a
2032 per-CATEGORY basis. It is generated sequentially and is 1-based.
2033 LABEL-STYLE-NAME is a key `org-odt-label-styles'.
2035 See `org-odt-add-label-definition' and
2036 `org-odt-fixup-label-references'.")
2038 (defvar org-odt-entity-counts-plist nil
2039 "Plist of running counters of SEQNOs for each of the CATEGORY-NAMEs.
2040 See `org-odt-entity-labels-alist' for known CATEGORY-NAMEs.")
2042 (defvar org-odt-label-styles
2043 '(("text" "(%n)" "text" "(%n)")
2044 ("category-and-value" "%e %n%c" "category-and-value" "%e %n")
2045 ("value" "%e %n%c" "value" "%n"))
2046 "Specify how labels are applied and referenced.
2047 This is an alist where each element is of the
2048 form (LABEL-STYLE-NAME LABEL-ATTACH-FMT LABEL-REF-MODE
2049 LABEL-REF-FMT).
2051 LABEL-ATTACH-FMT controls how labels and captions are attached to
2052 an entity. It may contain following specifiers - %e, %n and %c.
2053 %e is replaced with the CATEGORY-NAME. %n is replaced with
2054 \"<text:sequence ...> SEQNO </text:sequence>\". %c is replaced
2055 with CAPTION. See `org-odt-format-label-definition'.
2057 LABEL-REF-MODE and LABEL-REF-FMT controls how label references
2058 are generated. The following XML is generated for a label
2059 reference - \"<text:sequence-ref
2060 text:reference-format=\"LABEL-REF-MODE\" ...> LABEL-REF-FMT
2061 </text:sequence-ref>\". LABEL-REF-FMT may contain following
2062 specifiers - %e and %n. %e is replaced with the CATEGORY-NAME.
2063 %n is replaced with SEQNO. See
2064 `org-odt-format-label-reference'.")
2066 (defcustom org-export-odt-category-strings
2067 '(("en" "Table" "Figure" "Equation" "Equation"))
2068 "Specify category strings for various captionable entities.
2069 Captionable entity can be one of a Table, an Embedded Image, a
2070 LaTeX fragment (generated with dvipng) or a Math Formula.
2072 For example, when `org-export-default-language' is \"en\", an
2073 embedded image will be captioned as \"Figure 1: Orgmode Logo\".
2074 If you want the images to be captioned instead as \"Illustration
2075 1: Orgmode Logo\", then modify the entry for \"en\" as shown
2076 below.
2078 \(setq org-export-odt-category-strings
2079 '\(\(\"en\" \"Table\" \"Illustration\"
2080 \"Equation\" \"Equation\"\)\)\)"
2081 :group 'org-export-odt
2082 :version "24.1"
2083 :type '(repeat (list (string :tag "Language tag")
2084 (choice :tag "Table"
2085 (const :tag "Use Default" nil)
2086 (string :tag "Category string"))
2087 (choice :tag "Figure"
2088 (const :tag "Use Default" nil)
2089 (string :tag "Category string"))
2090 (choice :tag "Math Formula"
2091 (const :tag "Use Default" nil)
2092 (string :tag "Category string"))
2093 (choice :tag "Dvipng Image"
2094 (const :tag "Use Default" nil)
2095 (string :tag "Category string")))))
2097 (defvar org-odt-category-map-alist
2098 '(("__Table__" "Table" "value")
2099 ("__Figure__" "Illustration" "value")
2100 ("__MathFormula__" "Text" "text")
2101 ("__DvipngImage__" "Equation" "value")
2102 ;; ("__Table__" "Table" "category-and-value")
2103 ;; ("__Figure__" "Figure" "category-and-value")
2104 ;; ("__DvipngImage__" "Equation" "category-and-value")
2106 "Map a CATEGORY-HANDLE to OD-VARIABLE and LABEL-STYLE.
2107 This is a list where each entry is of the form \\(CATEGORY-HANDLE
2108 OD-VARIABLE LABEL-STYLE\\). CATEGORY_HANDLE identifies the
2109 captionable entity in question. OD-VARIABLE is the OpenDocument
2110 sequence counter associated with the entity. These counters are
2111 declared within
2112 \"<text:sequence-decls>...</text:sequence-decls>\" block of
2113 `org-export-odt-content-template-file'. LABEL-STYLE is a key
2114 into `org-odt-label-styles' and specifies how a given entity
2115 should be captioned and referenced.
2117 The position of a CATEGORY-HANDLE in this list is used as an
2118 index in to per-language entry for
2119 `org-export-odt-category-strings' to retrieve a CATEGORY-NAME.
2120 This CATEGORY-NAME is then used for qualifying the user-specified
2121 captions on export.")
2123 (defun org-odt-add-label-definition (label default-category)
2124 "Create an entry in `org-odt-entity-labels-alist' and return it."
2125 (let* ((label-props (assoc default-category org-odt-category-map-alist))
2126 ;; identify the sequence number
2127 (counter (nth 1 label-props))
2128 (sequence-var (intern counter))
2129 (seqno (1+ (or (plist-get org-odt-entity-counts-plist sequence-var)
2130 0)))
2131 ;; assign an internal label, if user has not provided one
2132 (label (if label (substring-no-properties label)
2133 (format "%s-%s" default-category seqno)))
2134 ;; identify label style
2135 (label-style (nth 2 label-props))
2136 ;; grok language setting
2137 (en-strings (assoc-default "en" org-export-odt-category-strings))
2138 (lang (plist-get org-lparse-opt-plist :language))
2139 (lang-strings (assoc-default lang org-export-odt-category-strings))
2140 ;; retrieve localized category sting
2141 (pos (- (length org-odt-category-map-alist)
2142 (length (memq label-props org-odt-category-map-alist))))
2143 (category (or (nth pos lang-strings) (nth pos en-strings)))
2144 (label-props (list label category counter seqno label-style)))
2145 ;; synchronize internal counters
2146 (setq org-odt-entity-counts-plist
2147 (plist-put org-odt-entity-counts-plist sequence-var seqno))
2148 ;; stash label properties for later retrieval
2149 (push label-props org-odt-entity-labels-alist)
2150 label-props))
2152 (defun org-odt-format-label-definition (caption label category counter
2153 seqno label-style)
2154 (assert label)
2155 (format-spec
2156 (cadr (assoc-string label-style org-odt-label-styles t))
2157 `((?e . ,category)
2158 (?n . ,(org-odt-format-tags
2159 '("<text:sequence text:ref-name=\"%s\" text:name=\"%s\" text:formula=\"ooow:%s+1\" style:num-format=\"1\">" . "</text:sequence>")
2160 (format "%d" seqno) label counter counter))
2161 (?c . ,(or (and caption (concat ": " caption)) "")))))
2163 (defun org-odt-format-label-reference (label category counter
2164 seqno label-style)
2165 (assert label)
2166 (save-match-data
2167 (let* ((fmt (cddr (assoc-string label-style org-odt-label-styles t)))
2168 (fmt1 (car fmt))
2169 (fmt2 (cadr fmt)))
2170 (org-odt-format-tags
2171 '("<text:sequence-ref text:reference-format=\"%s\" text:ref-name=\"%s\">"
2172 . "</text:sequence-ref>")
2173 (format-spec fmt2 `((?e . ,category)
2174 (?n . ,(format "%d" seqno)))) fmt1 label))))
2176 (defun org-odt-fixup-label-references ()
2177 (goto-char (point-min))
2178 (while (re-search-forward
2179 "<text:sequence-ref text:ref-name=\"\\([^\"]+\\)\">[ \t\n]*</text:sequence-ref>"
2180 nil t)
2181 (let* ((label (match-string 1))
2182 (label-def (assoc label org-odt-entity-labels-alist))
2183 (rpl (and label-def
2184 (apply 'org-odt-format-label-reference label-def))))
2185 (if rpl (replace-match rpl t t)
2186 (org-lparse-warn
2187 (format "Unable to resolve reference to label \"%s\"" label))))))
2189 (defun org-odt-format-entity-caption (label caption category)
2190 (or (and label
2191 (apply 'org-odt-format-label-definition
2192 caption (org-odt-add-label-definition label category)))
2193 caption ""))
2195 (defun org-odt-format-tags (tag text &rest args)
2196 (let ((prefix (when org-lparse-encode-pending "@"))
2197 (suffix (when org-lparse-encode-pending "@")))
2198 (apply 'org-lparse-format-tags tag text prefix suffix args)))
2200 (defvar org-odt-manifest-file-entries nil)
2201 (defun org-odt-init-outfile (filename)
2202 (unless (executable-find "zip")
2203 ;; Not at all OSes ship with zip by default
2204 (error "Executable \"zip\" needed for creating OpenDocument files"))
2206 (let* ((outdir (make-temp-file
2207 (format org-export-odt-tmpdir-prefix org-lparse-backend) t))
2208 (content-file (expand-file-name "content.xml" outdir)))
2210 ;; init conten.xml
2211 (with-current-buffer (find-file-noselect content-file t))
2213 ;; reset variables
2214 (setq org-odt-manifest-file-entries nil
2215 org-odt-embedded-images-count 0
2216 org-odt-embedded-formulas-count 0
2217 org-odt-entity-labels-alist nil
2218 org-odt-list-stack-stashed nil
2219 org-odt-automatic-styles nil
2220 org-odt-object-counters nil
2221 org-odt-entity-counts-plist nil)
2222 content-file))
2224 (defcustom org-export-odt-prettify-xml nil
2225 "Specify whether or not the xml output should be prettified.
2226 When this option is turned on, `indent-region' is run on all
2227 component xml buffers before they are saved. Turn this off for
2228 regular use. Turn this on if you need to examine the xml
2229 visually."
2230 :group 'org-export-odt
2231 :version "24.1"
2232 :type 'boolean)
2234 (defvar hfy-user-sheet-assoc) ; bound during org-do-lparse
2235 (defun org-odt-save-as-outfile (target opt-plist)
2236 ;; write automatic styles
2237 (org-odt-write-automatic-styles)
2239 ;; write meta file
2240 (org-odt-update-meta-file opt-plist)
2242 ;; write styles file
2243 (when (equal org-lparse-backend 'odt)
2244 (org-odt-update-styles-file opt-plist))
2246 ;; create mimetype file
2247 (let ((mimetype (org-odt-write-mimetype-file org-lparse-backend)))
2248 (org-odt-create-manifest-file-entry mimetype "/" "1.2"))
2250 ;; create a manifest entry for content.xml
2251 (org-odt-create-manifest-file-entry "text/xml" "content.xml")
2253 ;; write out the manifest entries before zipping
2254 (org-odt-write-manifest-file)
2256 (let ((xml-files '("mimetype" "META-INF/manifest.xml" "content.xml"
2257 "meta.xml"))
2258 (zipdir default-directory))
2259 (when (equal org-lparse-backend 'odt)
2260 (push "styles.xml" xml-files))
2261 (message "Switching to directory %s" (expand-file-name zipdir))
2263 ;; save all xml files
2264 (mapc (lambda (file)
2265 (with-current-buffer
2266 (find-file-noselect (expand-file-name file) t)
2267 ;; prettify output if needed
2268 (when org-export-odt-prettify-xml
2269 (indent-region (point-min) (point-max)))
2270 (save-buffer 0)))
2271 xml-files)
2273 (let* ((target-name (file-name-nondirectory target))
2274 (target-dir (file-name-directory target))
2275 (cmds `(("zip" "-mX0" ,target-name "mimetype")
2276 ("zip" "-rmTq" ,target-name "."))))
2277 (when (file-exists-p target)
2278 ;; FIXME: If the file is locked this throws a cryptic error
2279 (delete-file target))
2281 (let ((coding-system-for-write 'no-conversion) exitcode err-string)
2282 (message "Creating odt file...")
2283 (mapc
2284 (lambda (cmd)
2285 (message "Running %s" (mapconcat 'identity cmd " "))
2286 (setq err-string
2287 (with-output-to-string
2288 (setq exitcode
2289 (apply 'call-process (car cmd)
2290 nil standard-output nil (cdr cmd)))))
2291 (or (zerop exitcode)
2292 (ignore (message "%s" err-string))
2293 (error "Unable to create odt file (%S)" exitcode)))
2294 cmds))
2296 ;; move the file from outdir to target-dir
2297 (rename-file target-name target-dir)
2299 ;; kill all xml buffers
2300 (mapc (lambda (file)
2301 (kill-buffer
2302 (find-file-noselect (expand-file-name file zipdir) t)))
2303 xml-files)
2305 (delete-directory zipdir)))
2306 (message "Created %s" target)
2307 (set-buffer (find-file-noselect target t)))
2309 (defconst org-odt-manifest-file-entry-tag
2311 <manifest:file-entry manifest:media-type=\"%s\" manifest:full-path=\"%s\"%s/>")
2313 (defun org-odt-create-manifest-file-entry (&rest args)
2314 (push args org-odt-manifest-file-entries))
2316 (defun org-odt-write-manifest-file ()
2317 (make-directory "META-INF")
2318 (let ((manifest-file (expand-file-name "META-INF/manifest.xml")))
2319 (with-current-buffer
2320 (find-file-noselect manifest-file t)
2321 (insert
2322 "<?xml version=\"1.0\" encoding=\"UTF-8\"?>
2323 <manifest:manifest xmlns:manifest=\"urn:oasis:names:tc:opendocument:xmlns:manifest:1.0\" manifest:version=\"1.2\">\n")
2324 (mapc
2325 (lambda (file-entry)
2326 (let* ((version (nth 2 file-entry))
2327 (extra (if version
2328 (format " manifest:version=\"%s\"" version)
2329 "")))
2330 (insert
2331 (format org-odt-manifest-file-entry-tag
2332 (nth 0 file-entry) (nth 1 file-entry) extra))))
2333 org-odt-manifest-file-entries)
2334 (insert "\n</manifest:manifest>"))))
2336 (defun org-odt-update-meta-file (opt-plist)
2337 (let ((date (org-odt-format-date (plist-get opt-plist :date)))
2338 (author (or (plist-get opt-plist :author) ""))
2339 (email (plist-get opt-plist :email))
2340 (keywords (plist-get opt-plist :keywords))
2341 (description (plist-get opt-plist :description))
2342 (title (plist-get opt-plist :title)))
2343 (write-region
2344 (concat
2345 "<?xml version=\"1.0\" encoding=\"UTF-8\"?>
2346 <office:document-meta
2347 xmlns:office=\"urn:oasis:names:tc:opendocument:xmlns:office:1.0\"
2348 xmlns:xlink=\"http://www.w3.org/1999/xlink\"
2349 xmlns:dc=\"http://purl.org/dc/elements/1.1/\"
2350 xmlns:meta=\"urn:oasis:names:tc:opendocument:xmlns:meta:1.0\"
2351 xmlns:ooo=\"http://openoffice.org/2004/office\"
2352 office:version=\"1.2\">
2353 <office:meta>" "\n"
2354 (org-odt-format-author)
2355 (org-odt-format-tags
2356 '("\n<meta:initial-creator>" . "</meta:initial-creator>") author)
2357 (org-odt-format-tags '("\n<dc:date>" . "</dc:date>") date)
2358 (org-odt-format-tags
2359 '("\n<meta:creation-date>" . "</meta:creation-date>") date)
2360 (org-odt-format-tags '("\n<meta:generator>" . "</meta:generator>")
2361 (when org-export-creator-info
2362 (format "Org-%s/Emacs-%s"
2363 org-version emacs-version)))
2364 (org-odt-format-tags '("\n<meta:keyword>" . "</meta:keyword>") keywords)
2365 (org-odt-format-tags '("\n<dc:subject>" . "</dc:subject>") description)
2366 (org-odt-format-tags '("\n<dc:title>" . "</dc:title>") title)
2367 "\n"
2368 " </office:meta>" "</office:document-meta>")
2369 nil (expand-file-name "meta.xml")))
2371 ;; create a manifest entry for meta.xml
2372 (org-odt-create-manifest-file-entry "text/xml" "meta.xml"))
2374 (defun org-odt-update-styles-file (opt-plist)
2375 ;; write styles file
2376 (let ((styles-file (plist-get opt-plist :odt-styles-file)))
2377 (org-odt-copy-styles-file (and styles-file
2378 (read (org-trim styles-file)))))
2380 ;; Update styles.xml - take care of outline numbering
2381 (with-current-buffer
2382 (find-file-noselect (expand-file-name "styles.xml") t)
2383 ;; Don't make automatic backup of styles.xml file. This setting
2384 ;; prevents the backed-up styles.xml file from being zipped in to
2385 ;; odt file. This is more of a hackish fix. Better alternative
2386 ;; would be to fix the zip command so that the output odt file
2387 ;; includes only the needed files and excludes any auto-generated
2388 ;; extra files like backups and auto-saves etc etc. Note that
2389 ;; currently the zip command zips up the entire temp directory so
2390 ;; that any auto-generated files created under the hood ends up in
2391 ;; the resulting odt file.
2392 (set (make-local-variable 'backup-inhibited) t)
2394 ;; Import local setting of `org-export-with-section-numbers'
2395 (org-lparse-bind-local-variables opt-plist)
2396 (org-odt-configure-outline-numbering
2397 (if org-export-with-section-numbers org-export-headline-levels 0)))
2399 ;; Write custom styles for source blocks
2400 (org-odt-insert-custom-styles-for-srcblocks
2401 (mapconcat
2402 (lambda (style)
2403 (format " %s\n" (cddr style)))
2404 hfy-user-sheet-assoc "")))
2406 (defun org-odt-write-mimetype-file (format)
2407 ;; create mimetype file
2408 (let ((mimetype
2409 (case format
2410 (odt "application/vnd.oasis.opendocument.text")
2411 (odf "application/vnd.oasis.opendocument.formula")
2412 (t (error "Unknown OpenDocument backend %S" org-lparse-backend)))))
2413 (write-region mimetype nil (expand-file-name "mimetype"))
2414 mimetype))
2416 (defun org-odt-finalize-outfile ()
2417 (org-odt-delete-empty-paragraphs))
2419 (defun org-odt-delete-empty-paragraphs ()
2420 (goto-char (point-min))
2421 (let ((open "<text:p[^>]*>")
2422 (close "</text:p>"))
2423 (while (re-search-forward (format "%s[ \r\n\t]*%s" open close) nil t)
2424 (replace-match ""))))
2426 (defcustom org-export-odt-convert-processes
2427 '(("LibreOffice"
2428 "soffice --headless --convert-to %f%x --outdir %d %i")
2429 ("unoconv"
2430 "unoconv -f %f -o %d %i"))
2431 "Specify a list of document converters and their usage.
2432 The converters in this list are offered as choices while
2433 customizing `org-export-odt-convert-process'.
2435 This variable is a list where each element is of the
2436 form (CONVERTER-NAME CONVERTER-CMD). CONVERTER-NAME is the name
2437 of the converter. CONVERTER-CMD is the shell command for the
2438 converter and can contain format specifiers. These format
2439 specifiers are interpreted as below:
2441 %i input file name in full
2442 %I input file name as a URL
2443 %f format of the output file
2444 %o output file name in full
2445 %O output file name as a URL
2446 %d output dir in full
2447 %D output dir as a URL.
2448 %x extra options as set in `org-export-odt-convert-capabilities'."
2449 :group 'org-export-odt
2450 :version "24.1"
2451 :type
2452 '(choice
2453 (const :tag "None" nil)
2454 (alist :tag "Converters"
2455 :key-type (string :tag "Converter Name")
2456 :value-type (group (string :tag "Command line")))))
2458 (defcustom org-export-odt-convert-process "LibreOffice"
2459 "Use this converter to convert from \"odt\" format to other formats.
2460 During customization, the list of converter names are populated
2461 from `org-export-odt-convert-processes'."
2462 :group 'org-export-odt
2463 :version "24.1"
2464 :type '(choice :convert-widget
2465 (lambda (w)
2466 (apply 'widget-convert (widget-type w)
2467 (eval (car (widget-get w :args)))))
2468 `((const :tag "None" nil)
2469 ,@(mapcar (lambda (c)
2470 `(const :tag ,(car c) ,(car c)))
2471 org-export-odt-convert-processes))))
2473 (defcustom org-export-odt-convert-capabilities
2474 '(("Text"
2475 ("odt" "ott" "doc" "rtf" "docx")
2476 (("pdf" "pdf") ("odt" "odt") ("rtf" "rtf") ("ott" "ott")
2477 ("doc" "doc" ":\"MS Word 97\"") ("docx" "docx") ("html" "html")))
2478 ("Web"
2479 ("html")
2480 (("pdf" "pdf") ("odt" "odt") ("html" "html")))
2481 ("Spreadsheet"
2482 ("ods" "ots" "xls" "csv" "xlsx")
2483 (("pdf" "pdf") ("ots" "ots") ("html" "html") ("csv" "csv") ("ods" "ods")
2484 ("xls" "xls") ("xlsx" "xlsx")))
2485 ("Presentation"
2486 ("odp" "otp" "ppt" "pptx")
2487 (("pdf" "pdf") ("swf" "swf") ("odp" "odp") ("otp" "otp") ("ppt" "ppt")
2488 ("pptx" "pptx") ("odg" "odg"))))
2489 "Specify input and output formats of `org-export-odt-convert-process'.
2490 More correctly, specify the set of input and output formats that
2491 the user is actually interested in.
2493 This variable is an alist where each element is of the
2494 form (DOCUMENT-CLASS INPUT-FMT-LIST OUTPUT-FMT-ALIST).
2495 INPUT-FMT-LIST is a list of INPUT-FMTs. OUTPUT-FMT-ALIST is an
2496 alist where each element is of the form (OUTPUT-FMT
2497 OUTPUT-FILE-EXTENSION EXTRA-OPTIONS).
2499 The variable is interpreted as follows:
2500 `org-export-odt-convert-process' can take any document that is in
2501 INPUT-FMT-LIST and produce any document that is in the
2502 OUTPUT-FMT-LIST. A document converted to OUTPUT-FMT will have
2503 OUTPUT-FILE-EXTENSION as the file name extension. OUTPUT-FMT
2504 serves dual purposes:
2505 - It is used for populating completion candidates during
2506 `org-export-odt-convert' commands.
2507 - It is used as the value of \"%f\" specifier in
2508 `org-export-odt-convert-process'.
2510 EXTRA-OPTIONS is used as the value of \"%x\" specifier in
2511 `org-export-odt-convert-process'.
2513 DOCUMENT-CLASS is used to group a set of file formats in
2514 INPUT-FMT-LIST in to a single class.
2516 Note that this variable inherently captures how LibreOffice based
2517 converters work. LibreOffice maps documents of various formats
2518 to classes like Text, Web, Spreadsheet, Presentation etc and
2519 allow document of a given class (irrespective of it's source
2520 format) to be converted to any of the export formats associated
2521 with that class.
2523 See default setting of this variable for an typical
2524 configuration."
2525 :group 'org-export-odt
2526 :version "24.1"
2527 :type
2528 '(choice
2529 (const :tag "None" nil)
2530 (alist :tag "Capabilities"
2531 :key-type (string :tag "Document Class")
2532 :value-type
2533 (group (repeat :tag "Input formats" (string :tag "Input format"))
2534 (alist :tag "Output formats"
2535 :key-type (string :tag "Output format")
2536 :value-type
2537 (group (string :tag "Output file extension")
2538 (choice
2539 (const :tag "None" nil)
2540 (string :tag "Extra options"))))))))
2542 (declare-function org-create-math-formula "org"
2543 (latex-frag &optional mathml-file))
2545 ;;;###autoload
2546 (defun org-export-odt-convert (&optional in-file out-fmt prefix-arg)
2547 "Convert IN-FILE to format OUT-FMT using a command line converter.
2548 IN-FILE is the file to be converted. If unspecified, it defaults
2549 to variable `buffer-file-name'. OUT-FMT is the desired output
2550 format. Use `org-export-odt-convert-process' as the converter.
2551 If PREFIX-ARG is non-nil then the newly converted file is opened
2552 using `org-open-file'."
2553 (interactive
2554 (append (org-lparse-convert-read-params) current-prefix-arg))
2555 (org-lparse-do-convert in-file out-fmt prefix-arg))
2557 (defun org-odt-get (what &optional opt-plist)
2558 (case what
2559 (BACKEND 'odt)
2560 (EXPORT-DIR (org-export-directory :html opt-plist))
2561 (FILE-NAME-EXTENSION "odt")
2562 (EXPORT-BUFFER-NAME "*Org ODT Export*")
2563 (ENTITY-CONTROL org-odt-entity-control-callbacks-alist)
2564 (ENTITY-FORMAT org-odt-entity-format-callbacks-alist)
2565 (INIT-METHOD 'org-odt-init-outfile)
2566 (FINAL-METHOD 'org-odt-finalize-outfile)
2567 (SAVE-METHOD 'org-odt-save-as-outfile)
2568 (CONVERT-METHOD
2569 (and org-export-odt-convert-process
2570 (cadr (assoc-string org-export-odt-convert-process
2571 org-export-odt-convert-processes t))))
2572 (CONVERT-CAPABILITIES
2573 (and org-export-odt-convert-process
2574 (cadr (assoc-string org-export-odt-convert-process
2575 org-export-odt-convert-processes t))
2576 org-export-odt-convert-capabilities))
2577 (TOPLEVEL-HLEVEL 1)
2578 (SPECIAL-STRING-REGEXPS org-export-odt-special-string-regexps)
2579 (INLINE-IMAGES 'maybe)
2580 (INLINE-IMAGE-EXTENSIONS '("png" "jpeg" "jpg" "gif" "svg"))
2581 (PLAIN-TEXT-MAP '(("&" . "&amp;") ("<" . "&lt;") (">" . "&gt;")))
2582 (TABLE-FIRST-COLUMN-AS-LABELS nil)
2583 (FOOTNOTE-SEPARATOR (org-lparse-format 'FONTIFY "," 'superscript))
2584 (CODING-SYSTEM-FOR-WRITE 'utf-8)
2585 (CODING-SYSTEM-FOR-SAVE 'utf-8)
2586 (t (error "Unknown property: %s" what))))
2588 (defvar org-lparse-latex-fragment-fallback) ; set by org-do-lparse
2589 (defun org-export-odt-do-preprocess-latex-fragments ()
2590 "Convert LaTeX fragments to images."
2591 (let* ((latex-frag-opt (plist-get org-lparse-opt-plist :LaTeX-fragments))
2592 (latex-frag-opt ; massage the options
2593 (or (and (member latex-frag-opt '(mathjax t))
2594 (not (and (fboundp 'org-format-latex-mathml-available-p)
2595 (org-format-latex-mathml-available-p)))
2596 (prog1 org-lparse-latex-fragment-fallback
2597 (org-lparse-warn
2598 (concat
2599 "LaTeX to MathML converter not available. "
2600 (format "Using %S instead."
2601 org-lparse-latex-fragment-fallback)))))
2602 latex-frag-opt))
2603 cache-dir display-msg)
2604 (cond
2605 ((eq latex-frag-opt 'dvipng)
2606 (setq cache-dir "ltxpng/")
2607 (setq display-msg "Creating LaTeX image %s"))
2608 ((member latex-frag-opt '(mathjax t))
2609 (setq latex-frag-opt 'mathml)
2610 (setq cache-dir "ltxmathml/")
2611 (setq display-msg "Creating MathML formula %s")))
2612 (when (and org-current-export-file)
2613 (org-format-latex
2614 (concat cache-dir (file-name-sans-extension
2615 (file-name-nondirectory org-current-export-file)))
2616 org-current-export-dir nil display-msg
2617 nil nil latex-frag-opt))))
2619 (defadvice org-format-latex-as-mathml
2620 (after org-odt-protect-latex-fragment activate)
2621 "Encode LaTeX fragment as XML.
2622 Do this when translation to MathML fails."
2623 (when (or (not (> (length ad-return-value) 0))
2624 (get-text-property 0 'org-protected ad-return-value))
2625 (setq ad-return-value
2626 (org-propertize (org-odt-encode-plain-text (ad-get-arg 0))
2627 'org-protected t))))
2629 (defun org-export-odt-preprocess-latex-fragments ()
2630 (when (equal org-export-current-backend 'odt)
2631 (org-export-odt-do-preprocess-latex-fragments)))
2633 (defun org-export-odt-preprocess-label-references ()
2634 (goto-char (point-min))
2635 (let (label label-components category value pretty-label)
2636 (while (re-search-forward "\\\\ref{\\([^{}\n]+\\)}" nil t)
2637 (org-if-unprotected-at (match-beginning 1)
2638 (replace-match
2639 (let ((org-lparse-encode-pending t)
2640 (label (match-string 1)))
2641 ;; markup generated below is mostly an eye-candy. At
2642 ;; pre-processing stage, there is no information on which
2643 ;; entity a label reference points to. The actual markup
2644 ;; is generated as part of `org-odt-fixup-label-references'
2645 ;; which gets called at the fag end of export. By this
2646 ;; time we would have seen and collected all the label
2647 ;; definitions in `org-odt-entity-labels-alist'.
2648 (org-odt-format-tags
2649 '("<text:sequence-ref text:ref-name=\"%s\">" .
2650 "</text:sequence-ref>")
2651 "" (org-add-props label '(org-protected t)))) t t)))))
2653 ;; process latex fragments as part of
2654 ;; `org-export-preprocess-after-blockquote-hook'. Note that this hook
2655 ;; is the one that is closest and well before the call to
2656 ;; `org-export-attach-captions-and-attributes' in
2657 ;; `org-export-preprocess-string'. The above arrangement permits
2658 ;; captions, labels and attributes to be attached to png images
2659 ;; generated out of latex equations.
2660 (add-hook 'org-export-preprocess-after-blockquote-hook
2661 'org-export-odt-preprocess-latex-fragments)
2663 (defun org-export-odt-preprocess (parameters)
2664 (org-export-odt-preprocess-label-references))
2666 (declare-function archive-zip-extract "arc-mode.el" (archive name))
2667 (defun org-odt-zip-extract-one (archive member &optional target)
2668 (require 'arc-mode)
2669 (let* ((target (or target default-directory))
2670 (archive (expand-file-name archive))
2671 (archive-zip-extract
2672 (list "unzip" "-qq" "-o" "-d" target))
2673 exit-code command-output)
2674 (setq command-output
2675 (with-temp-buffer
2676 (setq exit-code (archive-zip-extract archive member))
2677 (buffer-string)))
2678 (unless (zerop exit-code)
2679 (message command-output)
2680 (error "Extraction failed"))))
2682 (defun org-odt-zip-extract (archive members &optional target)
2683 (when (atom members) (setq members (list members)))
2684 (mapc (lambda (member)
2685 (org-odt-zip-extract-one archive member target))
2686 members))
2688 (defun org-odt-copy-styles-file (&optional styles-file)
2689 ;; Non-availability of styles.xml is not a critical error. For now
2690 ;; throw an error purely for aesthetic reasons.
2691 (setq styles-file (or styles-file
2692 org-export-odt-styles-file
2693 (expand-file-name "OrgOdtStyles.xml"
2694 org-odt-styles-dir)
2695 (error "org-odt: Missing styles file?")))
2696 (cond
2697 ((listp styles-file)
2698 (let ((archive (nth 0 styles-file))
2699 (members (nth 1 styles-file)))
2700 (org-odt-zip-extract archive members)
2701 (mapc
2702 (lambda (member)
2703 (when (org-file-image-p member)
2704 (let* ((image-type (file-name-extension member))
2705 (media-type (format "image/%s" image-type)))
2706 (org-odt-create-manifest-file-entry media-type member))))
2707 members)))
2708 ((and (stringp styles-file) (file-exists-p styles-file))
2709 (let ((styles-file-type (file-name-extension styles-file)))
2710 (cond
2711 ((string= styles-file-type "xml")
2712 (copy-file styles-file "styles.xml" t))
2713 ((member styles-file-type '("odt" "ott"))
2714 (org-odt-zip-extract styles-file "styles.xml")))))
2716 (error (format "Invalid specification of styles.xml file: %S"
2717 org-export-odt-styles-file))))
2719 ;; create a manifest entry for styles.xml
2720 (org-odt-create-manifest-file-entry "text/xml" "styles.xml"))
2722 (defun org-odt-configure-outline-numbering (level)
2723 "Outline numbering is retained only upto LEVEL.
2724 To disable outline numbering pass a LEVEL of 0."
2725 (goto-char (point-min))
2726 (let ((regex
2727 "<text:outline-level-style\\([^>]*\\)text:level=\"\\([^\"]*\\)\"\\([^>]*\\)>")
2728 (replacement
2729 "<text:outline-level-style\\1text:level=\"\\2\" style:num-format=\"\">"))
2730 (while (re-search-forward regex nil t)
2731 (when (> (string-to-number (match-string 2)) level)
2732 (replace-match replacement t nil))))
2733 (save-buffer 0))
2735 ;;;###autoload
2736 (defun org-export-as-odf (latex-frag &optional odf-file)
2737 "Export LATEX-FRAG as OpenDocument formula file ODF-FILE.
2738 Use `org-create-math-formula' to convert LATEX-FRAG first to
2739 MathML. When invoked as an interactive command, use
2740 `org-latex-regexps' to infer LATEX-FRAG from currently active
2741 region. If no LaTeX fragments are found, prompt for it. Push
2742 MathML source to kill ring, if `org-export-copy-to-kill-ring' is
2743 non-nil."
2744 (interactive
2745 `(,(let (frag)
2746 (setq frag (and (setq frag (and (region-active-p)
2747 (buffer-substring (region-beginning)
2748 (region-end))))
2749 (loop for e in org-latex-regexps
2750 thereis (when (string-match (nth 1 e) frag)
2751 (match-string (nth 2 e) frag)))))
2752 (read-string "LaTeX Fragment: " frag nil frag))
2753 ,(let ((odf-filename (expand-file-name
2754 (concat
2755 (file-name-sans-extension
2756 (or (file-name-nondirectory buffer-file-name)))
2757 "." "odf")
2758 (file-name-directory buffer-file-name))))
2759 (read-file-name "ODF filename: " nil odf-filename nil
2760 (file-name-nondirectory odf-filename)))))
2761 (let* ((org-lparse-backend 'odf)
2762 org-lparse-opt-plist
2763 (filename (or odf-file
2764 (expand-file-name
2765 (concat
2766 (file-name-sans-extension
2767 (or (file-name-nondirectory buffer-file-name)))
2768 "." "odf")
2769 (file-name-directory buffer-file-name))))
2770 (buffer (find-file-noselect (org-odt-init-outfile filename)))
2771 (coding-system-for-write 'utf-8)
2772 (save-buffer-coding-system 'utf-8))
2773 (set-buffer buffer)
2774 (set-buffer-file-coding-system coding-system-for-write)
2775 (let ((mathml (org-create-math-formula latex-frag)))
2776 (unless mathml (error "No Math formula created"))
2777 (insert mathml)
2778 (or (org-export-push-to-kill-ring
2779 (upcase (symbol-name org-lparse-backend)))
2780 (message "Exporting... done")))
2781 (org-odt-save-as-outfile filename nil)))
2783 ;;;###autoload
2784 (defun org-export-as-odf-and-open ()
2785 "Export LaTeX fragment as OpenDocument formula and immediately open it.
2786 Use `org-export-as-odf' to read LaTeX fragment and OpenDocument
2787 formula file."
2788 (interactive)
2789 (org-lparse-and-open
2790 nil nil nil (call-interactively 'org-export-as-odf)))
2792 (provide 'org-odt)
2794 ;;; org-odt.el ends here