org-odt.el 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418
  1. ;;; org-odt.el --- OpenDocumentText export for Org-mode
  2. ;; Copyright (C) 2010-2011 Jambunathan <kjambunathan at gmail dot com>
  3. ;; Author: Jambunathan K <kjambunathan at gmail dot com>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 0.8
  7. ;; This file is not (yet) part of GNU Emacs.
  8. ;; However, it is distributed under the same license.
  9. ;; GNU Emacs is free software: you can redistribute it and/or modify
  10. ;; it under the terms of the GNU General Public License as published by
  11. ;; the Free Software Foundation, either version 3 of the License, or
  12. ;; (at your option) any later version.
  13. ;; GNU Emacs is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  19. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  20. ;;
  21. ;;; Commentary:
  22. ;;; Code:
  23. (eval-when-compile (require 'cl))
  24. (require 'org-lparse)
  25. (defgroup org-export-odt nil
  26. "Options specific for ODT export of Org-mode files."
  27. :tag "Org Export ODT"
  28. :group 'org-export)
  29. (defun org-odt-end-export ()
  30. (org-odt-fixup-label-references)
  31. ;; remove empty paragraphs
  32. (goto-char (point-min))
  33. (while (re-search-forward
  34. "<text:p\\( text:style-name=\"Text_20_body\"\\)?>[ \r\n\t]*</text:p>"
  35. nil t)
  36. (replace-match ""))
  37. (goto-char (point-min))
  38. ;; Convert whitespace place holders
  39. (goto-char (point-min))
  40. (let (beg end n)
  41. (while (setq beg (next-single-property-change (point) 'org-whitespace))
  42. (setq n (get-text-property beg 'org-whitespace)
  43. end (next-single-property-change beg 'org-whitespace))
  44. (goto-char beg)
  45. (delete-region beg end)
  46. (insert (format "<span style=\"visibility:hidden;\">%s</span>"
  47. (make-string n ?x)))))
  48. ;; Remove empty lines at the beginning of the file.
  49. (goto-char (point-min))
  50. (when (looking-at "\\s-+\n") (replace-match ""))
  51. ;; Remove display properties
  52. (remove-text-properties (point-min) (point-max) '(display t)))
  53. (defvar org-odt-suppress-xref nil)
  54. (defconst org-export-odt-special-string-regexps
  55. '(("\\\\-" . "&#x00ad;\\1") ; shy
  56. ("---\\([^-]\\)" . "&#x2014;\\1") ; mdash
  57. ("--\\([^-]\\)" . "&#x2013;\\1") ; ndash
  58. ("\\.\\.\\." . "&#x2026;")) ; hellip
  59. "Regular expressions for special string conversion.")
  60. (defconst org-odt-lib-dir (file-name-directory load-file-name))
  61. (defconst org-odt-data-dir
  62. (let ((dir1 (expand-file-name "../odt" org-odt-lib-dir)) ; git
  63. (dir2 (expand-file-name "./" org-odt-lib-dir))) ; elpa
  64. (cond
  65. ((file-directory-p dir1) dir1)
  66. ((file-directory-p dir2) dir2)
  67. (t (error "Cannot find factory styles file. Check package dir layout"))))
  68. "Directory that holds auxiliary files used by the ODT exporter.
  69. The 'styles' subdir contains the following xml files -
  70. 'OrgOdtStyles.xml' and 'OrgOdtContentTemplate.xml' - which are
  71. used as factory settings of `org-export-odt-styles-file' and
  72. `org-export-odt-content-template-file'.
  73. The 'etc/schema' subdir contains rnc files for validating of
  74. OpenDocument xml files.")
  75. (defvar org-odt-file-extensions
  76. '(("odt" . "OpenDocument Text")
  77. ("ott" . "OpenDocument Text Template")
  78. ("odm" . "OpenDocument Master Document")
  79. ("ods" . "OpenDocument Spreadsheet")
  80. ("ots" . "OpenDocument Spreadsheet Template")
  81. ("odg" . "OpenDocument Drawing (Graphics)")
  82. ("otg" . "OpenDocument Drawing Template")
  83. ("odp" . "OpenDocument Presentation")
  84. ("otp" . "OpenDocument Presentation Template")
  85. ("odi" . "OpenDocument Image")
  86. ("odf" . "OpenDocument Formula")
  87. ("odc" . "OpenDocument Chart")
  88. ("doc" . "Microsoft Text")
  89. ("docx" . "Microsoft Text")
  90. ("xls" . "Microsoft Spreadsheet")
  91. ("xlsx" . "Microsoft Spreadsheet")
  92. ("ppt" . "Microsoft Presentation")
  93. ("pptx" . "Microsoft Presentation")))
  94. (defvar org-odt-ms-file-extensions
  95. '(("doc" . "Microsoft Text")
  96. ("docx" . "Microsoft Text")
  97. ("xls" . "Microsoft Spreadsheet")
  98. ("xlsx" . "Microsoft Spreadsheet")
  99. ("ppt" . "Microsoft Presentation")
  100. ("pptx" . "Microsoft Presentation")))
  101. ;; RelaxNG validation of OpenDocument xml files
  102. (eval-after-load 'rng-nxml
  103. '(setq rng-nxml-auto-validate-flag t))
  104. (eval-after-load 'rng-loc
  105. '(add-to-list 'rng-schema-locating-files
  106. (expand-file-name "etc/schema/schemas.xml" org-odt-data-dir)))
  107. (mapc
  108. (lambda (desc)
  109. ;; Let Org open all OpenDocument files using system-registered app
  110. (add-to-list 'org-file-apps
  111. (cons (concat "\\." (car desc) "\\'") 'system))
  112. ;; Let Emacs open all OpenDocument files in archive mode
  113. (add-to-list 'auto-mode-alist
  114. (cons (concat "\\." (car desc) "\\'") 'archive-mode)))
  115. org-odt-file-extensions)
  116. (mapc
  117. (lambda (desc)
  118. ;; Let Org open all Microsoft files using system-registered app
  119. (add-to-list 'org-file-apps
  120. (cons (concat "\\." (car desc) "\\'") 'system)))
  121. org-odt-ms-file-extensions)
  122. ;; register the odt exporter with the pre-processor
  123. (add-to-list 'org-export-backends 'odt)
  124. ;; register the odt exporter with org-lparse library
  125. (org-lparse-register-backend 'odt)
  126. (defun org-odt-unload-function ()
  127. (org-lparse-unregister-backend 'odt)
  128. (remove-hook 'org-export-preprocess-after-blockquote-hook
  129. 'org-export-odt-preprocess-latex-fragments)
  130. nil)
  131. (defcustom org-export-odt-content-template-file nil
  132. "Template file for \"content.xml\".
  133. The exporter embeds the exported content just before
  134. \"</office:text>\" element.
  135. If unspecified, the file named \"OrgOdtContentTemplate.xml\"
  136. under `org-odt-data-dir' is used."
  137. :type 'file
  138. :group 'org-export-odt)
  139. (defcustom org-export-odt-styles-file nil
  140. "Default styles file for use with ODT export.
  141. Valid values are one of:
  142. 1. nil
  143. 2. path to a styles.xml file
  144. 3. path to a *.odt or a *.ott file
  145. 4. list of the form (ODT-OR-OTT-FILE (FILE-MEMBER-1 FILE-MEMBER-2
  146. ...))
  147. In case of option 1, an in-built styles.xml is used. See
  148. `org-odt-data-dir' for more information.
  149. In case of option 3, the specified file is unzipped and the
  150. styles.xml embedded therein is used.
  151. In case of option 4, the specified ODT-OR-OTT-FILE is unzipped
  152. and FILE-MEMBER-1, FILE-MEMBER-2 etc are copied in to the
  153. generated odt file. Use relative path for specifying the
  154. FILE-MEMBERS. styles.xml must be specified as one of the
  155. FILE-MEMBERS.
  156. Use options 1, 2 or 3 only if styles.xml alone suffices for
  157. achieving the desired formatting. Use option 4, if the styles.xml
  158. references additional files like header and footer images for
  159. achieving the desired formattting.
  160. Use \"#+ODT_STYLES_FILE: ...\" directive to set this variable on
  161. a per-file basis. For example,
  162. #+ODT_STYLES_FILE: \"/path/to/styles.xml\" or
  163. #+ODT_STYLES_FILE: (\"/path/to/file.ott\" (\"styles.xml\" \"image/hdr.png\"))."
  164. :group 'org-export-odt
  165. :type
  166. '(choice
  167. (const :tag "Factory settings" nil)
  168. (file :must-match t :tag "styles.xml")
  169. (file :must-match t :tag "ODT or OTT file")
  170. (list :tag "ODT or OTT file + Members"
  171. (file :must-match t :tag "ODF Text or Text Template file")
  172. (cons :tag "Members"
  173. (file :tag " Member" "styles.xml")
  174. (repeat (file :tag "Member"))))))
  175. (eval-after-load 'org-exp
  176. '(add-to-list 'org-export-inbuffer-options-extra
  177. '("ODT_STYLES_FILE" :odt-styles-file)))
  178. (defconst org-export-odt-tmpdir-prefix "%s-")
  179. (defconst org-export-odt-bookmark-prefix "OrgXref.")
  180. (defvar org-export-odt-embed-images t
  181. "Should the images be copied in to the odt file or just linked?")
  182. (defvar org-export-odt-inline-images 'maybe) ; counterpart of
  183. ; `org-export-html-inline-images'
  184. (defcustom org-export-odt-inline-image-extensions
  185. '("png" "jpeg" "jpg" "gif")
  186. "Extensions of image files that can be inlined into HTML."
  187. :type '(repeat (string :tag "Extension"))
  188. :group 'org-export-odt)
  189. (defcustom org-export-odt-pixels-per-inch display-pixels-per-inch
  190. ;; FIXME add docstring
  191. ""
  192. :type 'float
  193. :group 'org-export-odt)
  194. (defvar org-export-odt-default-org-styles-alist
  195. '((paragraph . ((default . "Text_20_body")
  196. (fixedwidth . "OrgFixedWidthBlock")
  197. (verse . "OrgVerse")
  198. (quote . "Quotations")
  199. (blockquote . "Quotations")
  200. (center . "OrgCenter")
  201. (left . "OrgLeft")
  202. (right . "OrgRight")
  203. (title . "Heading_20_1.title")
  204. (footnote . "Footnote")
  205. (src . "OrgSrcBlock")
  206. (illustration . "Illustration")
  207. (table . "Table")
  208. (definition-term . "Text_20_body_20_bold")
  209. (horizontal-line . "Horizontal_20_Line")))
  210. (character . ((bold . "Bold")
  211. (emphasis . "Emphasis")
  212. (code . "OrgCode")
  213. (verbatim . "OrgCode")
  214. (strike . "Strikethrough")
  215. (underline . "Underline")
  216. (subscript . "OrgSubscript")
  217. (superscript . "OrgSuperscript")))
  218. (list . ((ordered . "OrgNumberedList")
  219. (unordered . "OrgBulletedList")
  220. (description . "OrgDescriptionList"))))
  221. "Default styles for various entities.")
  222. (defvar org-export-odt-org-styles-alist org-export-odt-default-org-styles-alist)
  223. (defun org-odt-get-style-name-for-entity (category &optional entity)
  224. (let ((entity (or entity 'default)))
  225. (or
  226. (cdr (assoc entity (cdr (assoc category
  227. org-export-odt-org-styles-alist))))
  228. (cdr (assoc entity (cdr (assoc category
  229. org-export-odt-default-org-styles-alist))))
  230. (error "Cannot determine style name for entity %s of type %s"
  231. entity category))))
  232. (defcustom org-export-odt-preferred-output-format nil
  233. "Automatically post-process to this format after exporting to \"odt\".
  234. Interactive commands `org-export-as-odt' and
  235. `org-export-as-odt-and-open' export first to \"odt\" format and
  236. then use `org-export-odt-convert-process' to convert the
  237. resulting document to this format. During customization of this
  238. variable, the list of valid values are populated based on
  239. `org-export-odt-convert-capabilities'."
  240. :group 'org-export-odt
  241. :type '(choice :convert-widget
  242. (lambda (w)
  243. (apply 'widget-convert (widget-type w)
  244. (eval (car (widget-get w :args)))))
  245. `((const :tag "None" nil)
  246. ,@(mapcar (lambda (c)
  247. `(const :tag ,c ,c))
  248. (org-lparse-reachable-formats "odt")))))
  249. ;;;###autoload
  250. (defun org-export-as-odt-and-open (arg)
  251. "Export the outline as ODT and immediately open it with a browser.
  252. If there is an active region, export only the region.
  253. The prefix ARG specifies how many levels of the outline should become
  254. headlines. The default is 3. Lower levels will become bulleted lists."
  255. (interactive "P")
  256. (org-lparse-and-open
  257. (or org-export-odt-preferred-output-format "odt") "odt" arg))
  258. ;;;###autoload
  259. (defun org-export-as-odt-batch ()
  260. "Call the function `org-lparse-batch'.
  261. This function can be used in batch processing as:
  262. emacs --batch
  263. --load=$HOME/lib/emacs/org.el
  264. --eval \"(setq org-export-headline-levels 2)\"
  265. --visit=MyFile --funcall org-export-as-odt-batch"
  266. (org-lparse-batch "odt"))
  267. ;;;###autoload
  268. (defun org-export-as-odt-to-buffer (arg)
  269. "Call `org-lparse-odt` with output to a temporary buffer.
  270. No file is created. The prefix ARG is passed through to `org-lparse-to-buffer'."
  271. (interactive "P")
  272. (org-lparse-to-buffer "odt" arg))
  273. ;;;###autoload
  274. (defun org-replace-region-by-odt (beg end)
  275. "Assume the current region has org-mode syntax, and convert it to ODT.
  276. This can be used in any buffer. For example, you could write an
  277. itemized list in org-mode syntax in an ODT buffer and then use this
  278. command to convert it."
  279. (interactive "r")
  280. (org-replace-region-by "odt" beg end))
  281. ;;;###autoload
  282. (defun org-export-region-as-odt (beg end &optional body-only buffer)
  283. "Convert region from BEG to END in org-mode buffer to ODT.
  284. If prefix arg BODY-ONLY is set, omit file header, footer, and table of
  285. contents, and only produce the region of converted text, useful for
  286. cut-and-paste operations.
  287. If BUFFER is a buffer or a string, use/create that buffer as a target
  288. of the converted ODT. If BUFFER is the symbol `string', return the
  289. produced ODT as a string and leave not buffer behind. For example,
  290. a Lisp program could call this function in the following way:
  291. (setq odt (org-export-region-as-odt beg end t 'string))
  292. When called interactively, the output buffer is selected, and shown
  293. in a window. A non-interactive call will only return the buffer."
  294. (interactive "r\nP")
  295. (org-lparse-region "odt" beg end body-only buffer))
  296. ;;; org-export-as-odt
  297. ;;;###autoload
  298. (defun org-export-as-odt (arg &optional hidden ext-plist
  299. to-buffer body-only pub-dir)
  300. "Export the outline as a OpenDocumentText file.
  301. If there is an active region, export only the region. The prefix
  302. ARG specifies how many levels of the outline should become
  303. headlines. The default is 3. Lower levels will become bulleted
  304. lists. HIDDEN is obsolete and does nothing.
  305. EXT-PLIST is a property list with external parameters overriding
  306. org-mode's default settings, but still inferior to file-local
  307. settings. When TO-BUFFER is non-nil, create a buffer with that
  308. name and export to that buffer. If TO-BUFFER is the symbol
  309. `string', don't leave any buffer behind but just return the
  310. resulting XML as a string. When BODY-ONLY is set, don't produce
  311. the file header and footer, simply return the content of
  312. <body>...</body>, without even the body tags themselves. When
  313. PUB-DIR is set, use this as the publishing directory."
  314. (interactive "P")
  315. (org-lparse (or org-export-odt-preferred-output-format "odt")
  316. "odt" arg hidden ext-plist to-buffer body-only pub-dir))
  317. (defvar org-odt-entity-control-callbacks-alist
  318. `((EXPORT
  319. . (org-odt-begin-export org-odt-end-export))
  320. (DOCUMENT-CONTENT
  321. . (org-odt-begin-document-content org-odt-end-document-content))
  322. (DOCUMENT-BODY
  323. . (org-odt-begin-document-body org-odt-end-document-body))
  324. (TOC
  325. . (org-odt-begin-toc org-odt-end-toc))
  326. (ENVIRONMENT
  327. . (org-odt-begin-environment org-odt-end-environment))
  328. (FOOTNOTE-DEFINITION
  329. . (org-odt-begin-footnote-definition org-odt-end-footnote-definition))
  330. (TABLE
  331. . (org-odt-begin-table org-odt-end-table))
  332. (TABLE-ROWGROUP
  333. . (org-odt-begin-table-rowgroup org-odt-end-table-rowgroup))
  334. (LIST
  335. . (org-odt-begin-list org-odt-end-list))
  336. (LIST-ITEM
  337. . (org-odt-begin-list-item org-odt-end-list-item))
  338. (OUTLINE
  339. . (org-odt-begin-outline org-odt-end-outline))
  340. (OUTLINE-TEXT
  341. . (org-odt-begin-outline-text org-odt-end-outline-text))
  342. (PARAGRAPH
  343. . (org-odt-begin-paragraph org-odt-end-paragraph)))
  344. "")
  345. (defvar org-odt-entity-format-callbacks-alist
  346. `((EXTRA-TARGETS . org-lparse-format-extra-targets)
  347. (ORG-TAGS . org-lparse-format-org-tags)
  348. (SECTION-NUMBER . org-lparse-format-section-number)
  349. (HEADLINE . org-odt-format-headline)
  350. (TOC-ENTRY . org-odt-format-toc-entry)
  351. (TOC-ITEM . org-odt-format-toc-item)
  352. (TAGS . org-odt-format-tags)
  353. (SPACES . org-odt-format-spaces)
  354. (TABS . org-odt-format-tabs)
  355. (LINE-BREAK . org-odt-format-line-break)
  356. (FONTIFY . org-odt-format-fontify)
  357. (TODO . org-lparse-format-todo)
  358. (LINK . org-odt-format-link)
  359. (INLINE-IMAGE . org-odt-format-inline-image)
  360. (ORG-LINK . org-odt-format-org-link)
  361. (HEADING . org-odt-format-heading)
  362. (ANCHOR . org-odt-format-anchor)
  363. (TABLE . org-lparse-format-table)
  364. (TABLE-ROW . org-odt-format-table-row)
  365. (TABLE-CELL . org-odt-format-table-cell)
  366. (FOOTNOTES-SECTION . ignore)
  367. (FOOTNOTE-REFERENCE . org-odt-format-footnote-reference)
  368. (HORIZONTAL-LINE . org-odt-format-horizontal-line)
  369. (COMMENT . org-odt-format-comment)
  370. (LINE . org-odt-format-line)
  371. (ORG-ENTITY . org-odt-format-org-entity))
  372. "")
  373. ;;;_. callbacks
  374. ;;;_. control callbacks
  375. ;;;_ , document body
  376. (defun org-odt-begin-office-body ()
  377. ;; automatic styles
  378. (insert-file-contents
  379. (or org-export-odt-content-template-file
  380. (expand-file-name "styles/OrgOdtContentTemplate.xml"
  381. org-odt-data-dir)))
  382. (goto-char (point-min))
  383. (re-search-forward "</office:text>" nil nil)
  384. (delete-region (match-beginning 0) (point-max)))
  385. ;; Following variable is let bound when `org-do-lparse' is in
  386. ;; progress. See org-html.el.
  387. (defvar org-lparse-toc)
  388. (defun org-odt-begin-document-body (opt-plist)
  389. (org-odt-begin-office-body)
  390. (let ((title (plist-get opt-plist :title)))
  391. (when title
  392. (insert
  393. (org-odt-format-stylized-paragraph 'title title))))
  394. ;; insert toc
  395. (when org-lparse-toc
  396. (insert "\n" org-lparse-toc "\n")))
  397. (defvar org-lparse-body-only) ; let bound during org-do-lparse
  398. (defvar org-lparse-to-buffer) ; let bound during org-do-lparse
  399. (defun org-odt-end-document-body (opt-plist)
  400. (unless org-lparse-body-only
  401. (org-lparse-insert-tag "</office:text>")
  402. (org-lparse-insert-tag "</office:body>")))
  403. (defun org-odt-begin-document-content (opt-plist)
  404. (ignore))
  405. (defun org-odt-end-document-content ()
  406. (org-lparse-insert-tag "</office:document-content>"))
  407. (defun org-odt-begin-outline (level1 snumber title tags
  408. target extra-targets class)
  409. (org-lparse-insert
  410. 'HEADING (org-lparse-format
  411. 'HEADLINE title extra-targets tags snumber level1)
  412. level1 target))
  413. (defun org-odt-end-outline ()
  414. (ignore))
  415. (defun org-odt-begin-outline-text (level1 snumber class)
  416. (ignore))
  417. (defun org-odt-end-outline-text ()
  418. (ignore))
  419. (defun org-odt-begin-paragraph (&optional style)
  420. (org-lparse-insert-tag
  421. "<text:p%s>" (org-odt-get-extra-attrs-for-paragraph-style style)))
  422. (defun org-odt-end-paragraph ()
  423. (org-lparse-insert-tag "</text:p>"))
  424. (defun org-odt-get-extra-attrs-for-paragraph-style (style)
  425. (let (style-name)
  426. (setq style-name
  427. (cond
  428. ((stringp style) style)
  429. ((symbolp style) (org-odt-get-style-name-for-entity
  430. 'paragraph style))))
  431. (unless style-name
  432. (error "Don't know how to handle paragraph style %s" style))
  433. (format " text:style-name=\"%s\"" style-name)))
  434. (defun org-odt-format-stylized-paragraph (style text)
  435. (org-odt-format-tags
  436. '("<text:p%s>" . "</text:p>") text
  437. (org-odt-get-extra-attrs-for-paragraph-style style)))
  438. (defvar org-lparse-opt-plist) ; bound during org-do-lparse
  439. (defun org-odt-format-author (&optional author)
  440. (when (setq author (or author (plist-get org-lparse-opt-plist :author)))
  441. (org-odt-format-tags '("<dc:creator>" . "</dc:creator>") author)))
  442. (defun org-odt-iso-date-from-org-timestamp (&optional org-ts)
  443. (save-match-data
  444. (let* ((time
  445. (and (stringp org-ts)
  446. (string-match org-ts-regexp0 org-ts)
  447. (apply 'encode-time
  448. (org-fix-decoded-time
  449. (org-parse-time-string (match-string 0 org-ts) t)))))
  450. (date (format-time-string "%Y-%m-%dT%H:%M:%S%z" time)))
  451. (format "%s:%s" (substring date 0 -2) (substring date -2)))))
  452. (defun org-odt-begin-annotation (&optional author date)
  453. (org-lparse-insert-tag "<office:annotation>")
  454. (when (setq author (org-odt-format-author author))
  455. (insert author))
  456. (insert (org-odt-format-tags
  457. '("<dc:date>" . "</dc:date>")
  458. (org-odt-iso-date-from-org-timestamp
  459. (or date (plist-get org-lparse-opt-plist :date)))))
  460. (org-lparse-begin-paragraph))
  461. (defun org-odt-end-annotation ()
  462. (org-lparse-insert-tag "</office:annotation>"))
  463. (defun org-odt-begin-environment (style env-options-plist)
  464. (case style
  465. (annotation
  466. (org-lparse-stash-save-paragraph-state)
  467. (org-odt-begin-annotation (plist-get env-options-plist 'author)
  468. (plist-get env-options-plist 'date)))
  469. ((blockquote verse center quote)
  470. (org-lparse-begin-paragraph style)
  471. (list))
  472. ((fixedwidth native)
  473. (org-lparse-end-paragraph)
  474. (list))
  475. (t (error "Unknown environment %s" style))))
  476. (defun org-odt-end-environment (style env-options-plist)
  477. (case style
  478. (annotation
  479. (org-lparse-end-paragraph)
  480. (org-odt-end-annotation)
  481. (org-lparse-stash-pop-paragraph-state))
  482. ((blockquote verse center quote)
  483. (org-lparse-end-paragraph)
  484. (list))
  485. ((fixedwidth native)
  486. (org-lparse-begin-paragraph)
  487. (list))
  488. (t (error "Unknown environment %s" style))))
  489. (defvar org-lparse-list-level) ; dynamically bound in org-do-lparse
  490. (defun org-odt-begin-list (ltype)
  491. (setq ltype (or (org-lparse-html-list-type-to-canonical-list-type ltype)
  492. ltype))
  493. (let* ((style-name (org-odt-get-style-name-for-entity 'list ltype))
  494. (extra (concat (when (= org-lparse-list-level 1)
  495. " text:continue-numbering=\"false\"")
  496. (when style-name
  497. (format " text:style-name=\"%s\"" style-name)))))
  498. (case ltype
  499. ((ordered unordered description)
  500. (org-lparse-end-paragraph)
  501. (org-lparse-insert-tag "<text:list%s>" extra))
  502. (t (error "Unknown list type: %s" ltype)))))
  503. (defun org-odt-end-list (ltype)
  504. (setq ltype (or (org-lparse-html-list-type-to-canonical-list-type ltype)
  505. ltype))
  506. (if ltype
  507. (org-lparse-insert-tag "</text:list>")
  508. (error "Unknown list type: %s" ltype)))
  509. (defun org-odt-begin-list-item (ltype &optional arg headline)
  510. (setq ltype (or (org-lparse-html-list-type-to-canonical-list-type ltype)
  511. ltype))
  512. (case ltype
  513. (ordered
  514. (assert (not headline) t)
  515. (let* ((counter arg) (extra ""))
  516. (org-lparse-insert-tag "<text:list-item>")
  517. (org-lparse-begin-paragraph)))
  518. (unordered
  519. (let* ((id arg) (extra ""))
  520. (org-lparse-insert-tag "<text:list-item>")
  521. (org-lparse-begin-paragraph)
  522. (insert (if headline (org-odt-format-target headline id)
  523. (org-odt-format-bookmark "" id)))))
  524. (description
  525. (assert (not headline) t)
  526. (let ((term (or arg "(no term)")))
  527. (insert
  528. (org-odt-format-tags
  529. '("<text:list-item>" . "</text:list-item>")
  530. (org-odt-format-stylized-paragraph 'definition-term term)))
  531. (org-lparse-begin-list-item 'unordered)
  532. (org-lparse-begin-list 'description)
  533. (org-lparse-begin-list-item 'unordered)))
  534. (t (error "Unknown list type"))))
  535. (defun org-odt-end-list-item (ltype)
  536. (setq ltype (or (org-lparse-html-list-type-to-canonical-list-type ltype)
  537. ltype))
  538. (case ltype
  539. ((ordered unordered)
  540. (org-lparse-insert-tag "</text:list-item>"))
  541. (description
  542. (org-lparse-end-list-item-1)
  543. (org-lparse-end-list 'description)
  544. (org-lparse-end-list-item-1))
  545. (t (error "Unknown list type"))))
  546. ;; Following variables are let bound when table emission is in
  547. ;; progress. See org-lparse.el.
  548. (defvar org-lparse-table-begin-marker)
  549. (defvar org-lparse-table-ncols)
  550. (defvar org-lparse-table-rowgrp-open)
  551. (defvar org-lparse-table-rownum)
  552. (defvar org-lparse-table-cur-rowgrp-is-hdr)
  553. (defvar org-lparse-table-is-styled)
  554. (defvar org-lparse-table-rowgrp-info)
  555. (defvar org-lparse-table-colalign-vector)
  556. (defvar org-odt-table-style nil
  557. "Table style specified by \"#+ATTR_ODT: <style-name>\" line.
  558. This is set during `org-odt-begin-table'.")
  559. (defvar org-odt-table-style-spec nil
  560. "Entry for `org-odt-table-style' in `org-export-odt-table-styles'.")
  561. (defcustom org-export-odt-table-styles
  562. '(("OrgEquation" "OrgEquation"
  563. ((use-first-column-styles . t)
  564. (use-last-column-styles . t))))
  565. "Specify how Table Styles should be derived from a Table Template.
  566. This is a list where each element is of the
  567. form (TABLE-STYLE-NAME TABLE-TEMPLATE-NAME TABLE-CELL-OPTIONS).
  568. TABLE-STYLE-NAME is the style associated with the table through
  569. `org-odt-table-style'.
  570. TABLE-TEMPLATE-NAME is a set of - upto 9 - automatic
  571. TABLE-CELL-STYLE-NAMEs and PARAGRAPH-STYLE-NAMEs (as defined
  572. below) that is included in
  573. `org-export-odt-content-template-file'.
  574. TABLE-CELL-STYLE-NAME := TABLE-TEMPLATE-NAME + TABLE-CELL-TYPE +
  575. \"TableCell\"
  576. PARAGRAPH-STYLE-NAME := TABLE-TEMPLATE-NAME + TABLE-CELL-TYPE +
  577. \"TableParagraph\"
  578. TABLE-CELL-TYPE := \"FirstRow\" | \"LastColumn\" |
  579. \"FirstRow\" | \"LastRow\" |
  580. \"EvenRow\" | \"OddRow\" |
  581. \"EvenColumn\" | \"OddColumn\" | \"\"
  582. where \"+\" above denotes string concatenation.
  583. TABLE-CELL-OPTIONS is an alist where each element is of the
  584. form (TABLE-CELL-STYLE-SELECTOR . ON-OR-OFF).
  585. TABLE-CELL-STYLE-SELECTOR := `use-first-row-styles' |
  586. `use-last-row-styles' |
  587. `use-first-column-styles' |
  588. `use-last-column-styles' |
  589. `use-banding-rows-styles' |
  590. `use-banding-columns-styles' |
  591. `use-first-row-styles'
  592. ON-OR-OFF := `t' | `nil'
  593. For example, with the following configuration
  594. \(setq org-export-odt-table-styles
  595. '\(\(\"TableWithHeaderRowsAndColumns\" \"Custom\"
  596. \(\(use-first-row-styles . t\)
  597. \(use-first-column-styles . t\)\)\)
  598. \(\"TableWithHeaderColumns\" \"Custom\"
  599. \(\(use-first-column-styles . t\)\)\)\)\)
  600. 1. A table associated with \"TableWithHeaderRowsAndColumns\"
  601. style will use the following table-cell styles -
  602. \"CustomFirstRowTableCell\", \"CustomFirstColumnTableCell\",
  603. \"CustomTableCell\" and the following paragraph styles
  604. \"CustomFirstRowTableParagraph\",
  605. \"CustomFirstColumnTableParagraph\", \"CustomTableParagraph\"
  606. as appropriate.
  607. 2. A table associated with \"TableWithHeaderColumns\" style will
  608. use the following table-cell styles -
  609. \"CustomFirstColumnTableCell\", \"CustomTableCell\" and the
  610. following paragraph styles
  611. \"CustomFirstColumnTableParagraph\", \"CustomTableParagraph\"
  612. as appropriate..
  613. Note that TABLE-TEMPLATE-NAME corresponds to the
  614. \"<table:table-template>\" elements contained within
  615. \"<office:styles>\". The entries (TABLE-STYLE-NAME
  616. TABLE-TEMPLATE-NAME TABLE-CELL-OPTIONS) correspond to
  617. \"table:template-name\" and \"table:use-first-row-styles\" etc
  618. attributes of \"<table:table>\" element. Refer ODF-1.2
  619. specification for more information. Also consult the
  620. implementation filed under `org-odt-get-table-cell-styles'.
  621. The TABLE-STYLE-NAME \"OrgEquation\" is used internally for
  622. formatting of numbered display equations. Do not delete this
  623. style from the list."
  624. :group 'org-export-odt
  625. :type '(choice
  626. (const :tag "None" nil)
  627. (repeat :tag "Table Styles"
  628. (list :tag "Table Style Specification"
  629. (string :tag "Table Style Name")
  630. (string :tag "Table Template Name")
  631. (alist :options (use-first-row-styles
  632. use-last-row-styles
  633. use-first-column-styles
  634. use-last-column-styles
  635. use-banding-rows-styles
  636. use-banding-columns-styles)
  637. :key-type symbol
  638. :value-type (const :tag "True" t))))))
  639. (defun org-odt-begin-table (caption label attributes)
  640. (setq org-odt-table-style attributes)
  641. (setq org-odt-table-style-spec
  642. (assoc org-odt-table-style org-export-odt-table-styles))
  643. (when label
  644. (insert
  645. (org-odt-format-stylized-paragraph
  646. 'table (org-odt-format-entity-caption label caption "__Table__"))))
  647. (org-lparse-insert-tag
  648. "<table:table table:name=\"%s\" table:style-name=\"%s\">"
  649. (or label "") (or (nth 1 org-odt-table-style-spec) "OrgTable"))
  650. (setq org-lparse-table-begin-marker (point)))
  651. (defvar org-lparse-table-colalign-info)
  652. (defun org-odt-end-table ()
  653. (goto-char org-lparse-table-begin-marker)
  654. (loop for level from 0 below org-lparse-table-ncols
  655. do (let* ((col-cookie (and org-lparse-table-is-styled
  656. (cdr (assoc (1+ level)
  657. org-lparse-table-colalign-info))))
  658. (extra-columns (or (nth 1 col-cookie) 0)))
  659. (dotimes (i (1+ extra-columns))
  660. (insert
  661. (org-odt-format-tags
  662. "<table:table-column table:style-name=\"%sColumn\"/>"
  663. "" (or (nth 1 org-odt-table-style-spec) "OrgTable"))))
  664. (insert "\n")))
  665. ;; fill style attributes for table cells
  666. (when org-lparse-table-is-styled
  667. (while (re-search-forward "@@\\(table-cell:p\\|table-cell:style-name\\)@@\\([0-9]+\\)@@\\([0-9]+\\)@@" nil t)
  668. (let* ((spec (match-string 1))
  669. (r (string-to-number (match-string 2)))
  670. (c (string-to-number (match-string 3)))
  671. (cell-styles (org-odt-get-table-cell-styles
  672. r c org-odt-table-style-spec))
  673. (table-cell-style (car cell-styles))
  674. (table-cell-paragraph-style (cdr cell-styles)))
  675. (cond
  676. ((equal spec "table-cell:p")
  677. (replace-match table-cell-paragraph-style t t))
  678. ((equal spec "table-cell:style-name")
  679. (replace-match table-cell-style t t))))))
  680. (goto-char (point-max))
  681. (org-lparse-insert-tag "</table:table>"))
  682. (defun org-odt-begin-table-rowgroup (&optional is-header-row)
  683. (when org-lparse-table-rowgrp-open
  684. (org-lparse-end 'TABLE-ROWGROUP))
  685. (org-lparse-insert-tag (if is-header-row
  686. "<table:table-header-rows>"
  687. "<table:table-rows>"))
  688. (setq org-lparse-table-rowgrp-open t)
  689. (setq org-lparse-table-cur-rowgrp-is-hdr is-header-row))
  690. (defun org-odt-end-table-rowgroup ()
  691. (when org-lparse-table-rowgrp-open
  692. (setq org-lparse-table-rowgrp-open nil)
  693. (org-lparse-insert-tag
  694. (if org-lparse-table-cur-rowgrp-is-hdr
  695. "</table:table-header-rows>" "</table:table-rows>"))))
  696. (defun org-odt-format-table-row (row)
  697. (org-odt-format-tags
  698. '("<table:table-row>" . "</table:table-row>") row))
  699. (defun org-odt-get-table-cell-styles (r c &optional style-spec)
  700. "Retrieve styles applicable to a table cell.
  701. R and C are (zero-based) row and column numbers of the table
  702. cell. STYLE-SPEC is an entry in `org-export-odt-table-styles'
  703. applicable to the current table. It is `nil' if the table is not
  704. associated with any style attributes.
  705. Return a cons of (TABLE-CELL-STYLE-NAME . PARAGRAPH-STYLE-NAME).
  706. When STYLE-SPEC is nil, style the table cell the conventional way
  707. - choose cell borders based on row and column groupings and
  708. choose paragraph alignment based on `org-col-cookies' text
  709. property. See also
  710. `org-odt-get-paragraph-style-cookie-for-table-cell'.
  711. When STYLE-SPEC is non-nil, ignore the above cookie and return
  712. styles congruent with the ODF-1.2 specification."
  713. (cond
  714. (style-spec
  715. ;; LibreOffice - particularly the Writer - honors neither table
  716. ;; templates nor custom table-cell styles. Inorder to retain
  717. ;; inter-operability with LibreOffice, only automatic styles are
  718. ;; used for styling of table-cells. The current implementation is
  719. ;; congruent with ODF-1.2 specification and hence is
  720. ;; future-compatible.
  721. ;; Additional Note: LibreOffice's AutoFormat facility for tables -
  722. ;; which recognizes as many as 16 different cell types - is much
  723. ;; richer. Unfortunately it is NOT amenable to easy configuration
  724. ;; by hand.
  725. (let* ((template-name (nth 1 style-spec))
  726. (cell-style-selectors (nth 2 style-spec))
  727. (cell-type
  728. (cond
  729. ((and (cdr (assoc 'use-first-column-styles cell-style-selectors))
  730. (= c 0)) "FirstColumn")
  731. ((and (cdr (assoc 'use-last-column-styles cell-style-selectors))
  732. (= c (1- org-lparse-table-ncols))) "LastColumn")
  733. ((and (cdr (assoc 'use-first-row-styles cell-style-selectors))
  734. (= r 0)) "FirstRow")
  735. ((and (cdr (assoc 'use-last-row-styles cell-style-selectors))
  736. (= r org-lparse-table-rownum))
  737. "LastRow")
  738. ((and (cdr (assoc 'use-banding-rows-styles cell-style-selectors))
  739. (= (% r 2) 1)) "EvenRow")
  740. ((and (cdr (assoc 'use-banding-rows-styles cell-style-selectors))
  741. (= (% r 2) 0)) "OddRow")
  742. ((and (cdr (assoc 'use-banding-columns-styles cell-style-selectors))
  743. (= (% c 2) 1)) "EvenColumn")
  744. ((and (cdr (assoc 'use-banding-columns-styles cell-style-selectors))
  745. (= (% c 2) 0)) "OddColumn")
  746. (t ""))))
  747. (cons
  748. (concat template-name cell-type "TableCell")
  749. (concat template-name cell-type "TableParagraph"))))
  750. (t
  751. (cons
  752. (concat
  753. "OrgTblCell"
  754. (cond
  755. ((= r 0) "T")
  756. ((eq (cdr (assoc r org-lparse-table-rowgrp-info)) :start) "T")
  757. (t ""))
  758. (when (= r org-lparse-table-rownum) "B")
  759. (cond
  760. ((= c 0) "")
  761. ((or (memq (nth c org-table-colgroup-info) '(:start :startend))
  762. (memq (nth (1- c) org-table-colgroup-info) '(:end :startend))) "L")
  763. (t "")))
  764. (capitalize (aref org-lparse-table-colalign-vector c))))))
  765. (defun org-odt-get-paragraph-style-cookie-for-table-cell (r c)
  766. (concat
  767. (and (not org-odt-table-style-spec)
  768. (cond
  769. (org-lparse-table-cur-rowgrp-is-hdr "OrgTableHeading")
  770. ((and (= c 0) (org-lparse-get 'TABLE-FIRST-COLUMN-AS-LABELS))
  771. "OrgTableHeading")
  772. (t "OrgTableContents")))
  773. (and org-lparse-table-is-styled
  774. (format "@@table-cell:p@@%03d@@%03d@@" r c))))
  775. (defun org-odt-get-style-name-cookie-for-table-cell (r c)
  776. (when org-lparse-table-is-styled
  777. (format "@@table-cell:style-name@@%03d@@%03d@@" r c)))
  778. (defun org-odt-format-table-cell (data r c horiz-span)
  779. (concat
  780. (let* ((paragraph-style-cookie
  781. (org-odt-get-paragraph-style-cookie-for-table-cell r c))
  782. (style-name-cookie
  783. (org-odt-get-style-name-cookie-for-table-cell r c))
  784. (extra (and style-name-cookie
  785. (format " table:style-name=\"%s\"" style-name-cookie)))
  786. (extra (concat extra
  787. (and (> horiz-span 0)
  788. (format " table:number-columns-spanned=\"%d\""
  789. (1+ horiz-span))))))
  790. (org-odt-format-tags
  791. '("<table:table-cell%s>" . "</table:table-cell>")
  792. (if org-lparse-list-table-p data
  793. (org-odt-format-stylized-paragraph paragraph-style-cookie data)) extra))
  794. (let (s)
  795. (dotimes (i horiz-span)
  796. (setq s (concat s "\n<table:covered-table-cell/>"))) s)
  797. "\n"))
  798. (defun org-odt-begin-footnote-definition (n)
  799. (org-lparse-begin-paragraph 'footnote))
  800. (defun org-odt-end-footnote-definition (n)
  801. (org-lparse-end-paragraph))
  802. (defun org-odt-begin-toc (lang-specific-heading)
  803. (insert
  804. (format "
  805. <text:table-of-content text:style-name=\"Sect2\" text:protected=\"true\" text:name=\"Table of Contents1\">
  806. <text:table-of-content-source text:outline-level=\"10\">
  807. <text:index-title-template text:style-name=\"Contents_20_Heading\">%s</text:index-title-template>
  808. " lang-specific-heading))
  809. (loop for level from 1 upto 10
  810. do (insert (format
  811. "
  812. <text:table-of-content-entry-template text:outline-level=\"%d\" text:style-name=\"Contents_20_%d\">
  813. <text:index-entry-link-start text:style-name=\"Internet_20_link\"/>
  814. <text:index-entry-chapter/>
  815. <text:index-entry-text/>
  816. <text:index-entry-link-end/>
  817. </text:table-of-content-entry-template>
  818. " level level)))
  819. (insert
  820. (format "
  821. </text:table-of-content-source>
  822. <text:index-body>
  823. <text:index-title text:style-name=\"Sect1\" text:name=\"Table of Contents1_Head\">
  824. <text:p text:style-name=\"Contents_20_Heading\">%s</text:p>
  825. </text:index-title>
  826. " lang-specific-heading)))
  827. (defun org-odt-end-toc ()
  828. (insert "
  829. </text:index-body>
  830. </text:table-of-content>
  831. "))
  832. (defun org-odt-format-toc-entry (snumber todo headline tags href)
  833. (setq headline (concat
  834. (and org-export-with-section-numbers
  835. (concat snumber ". "))
  836. headline
  837. (and tags
  838. (concat
  839. (org-lparse-format 'SPACES 3)
  840. (org-lparse-format 'FONTIFY tags "tag")))))
  841. (when todo
  842. (setq headline (org-lparse-format 'FONTIFY headline "todo")))
  843. (let ((org-odt-suppress-xref t))
  844. (org-odt-format-link headline (concat "#" href))))
  845. (defun org-odt-format-toc-item (toc-entry level org-last-level)
  846. (let ((style (format "Contents_20_%d"
  847. (+ level (or (org-lparse-get 'TOPLEVEL-HLEVEL) 1) -1))))
  848. (insert "\n" (org-odt-format-stylized-paragraph style toc-entry) "\n")))
  849. ;; Following variable is let bound during 'ORG-LINK callback. See
  850. ;; org-html.el
  851. (defvar org-lparse-link-description-is-image nil)
  852. (defun org-odt-format-link (desc href &optional attr)
  853. (cond
  854. ((and (= (string-to-char href) ?#) (not org-odt-suppress-xref))
  855. (setq href (concat org-export-odt-bookmark-prefix (substring href 1)))
  856. (let ((xref-format "text"))
  857. (when (numberp desc)
  858. (setq desc (format "%d" desc) xref-format "number"))
  859. (org-odt-format-tags
  860. '("<text:bookmark-ref text:reference-format=\"%s\" text:ref-name=\"%s\">" .
  861. "</text:bookmark-ref>")
  862. desc xref-format href)))
  863. (org-lparse-link-description-is-image
  864. (org-odt-format-tags
  865. '("<draw:a xlink:type=\"simple\" xlink:href=\"%s\" %s>" . "</draw:a>")
  866. desc href (or attr "")))
  867. (t
  868. (org-odt-format-tags
  869. '("<text:a xlink:type=\"simple\" xlink:href=\"%s\" %s>" . "</text:a>")
  870. desc href (or attr "")))))
  871. (defun org-odt-format-spaces (n)
  872. (cond
  873. ((= n 1) " ")
  874. ((> n 1) (concat
  875. " " (org-odt-format-tags "<text:s text:c=\"%d\"/>" "" (1- n))))
  876. (t "")))
  877. (defun org-odt-format-tabs (&optional n)
  878. (let ((tab "<text:tab/>")
  879. (n (or n 1)))
  880. (insert tab)))
  881. (defun org-odt-format-line-break ()
  882. (org-odt-format-tags "<text:line-break/>" ""))
  883. (defun org-odt-format-horizontal-line ()
  884. (org-odt-format-stylized-paragraph 'horizontal-line ""))
  885. (defun org-odt-encode-plain-text (line &optional no-whitespace-filling)
  886. (setq line (org-xml-encode-plain-text line))
  887. (if no-whitespace-filling line
  888. (org-odt-fill-tabs-and-spaces line)))
  889. (defun org-odt-format-line (line)
  890. (case org-lparse-dyn-current-environment
  891. (fixedwidth (concat
  892. (org-odt-format-stylized-paragraph
  893. 'fixedwidth (org-odt-encode-plain-text line)) "\n"))
  894. (t (concat line "\n"))))
  895. (defun org-odt-format-comment (fmt &rest args)
  896. (let ((comment (apply 'format fmt args)))
  897. (format "\n<!-- %s -->\n" comment)))
  898. (defun org-odt-format-org-entity (wd)
  899. (org-entity-get-representation wd 'utf8))
  900. (defun org-odt-fill-tabs-and-spaces (line)
  901. (replace-regexp-in-string
  902. "\\([\t]\\|\\([ ]+\\)\\)" (lambda (s)
  903. (cond
  904. ((string= s "\t") (org-odt-format-tabs))
  905. (t (org-odt-format-spaces (length s))))) line))
  906. (defcustom org-export-odt-fontify-srcblocks t
  907. "Specify whether or not source blocks need to be fontified.
  908. Turn this option on if you want to colorize the source code
  909. blocks in the exported file. For colorization to work, you need
  910. to make available an enhanced version of `htmlfontify' library."
  911. :type 'boolean
  912. :group 'org-export-odt)
  913. (defun org-odt-format-source-line-with-line-number-and-label
  914. (line rpllbl num fontifier par-style)
  915. (let ((keep-label (not (numberp rpllbl)))
  916. (ref (org-find-text-property-in-string 'org-coderef line)))
  917. (setq line (concat line (and keep-label ref (format "(%s)" ref))))
  918. (setq line (funcall fontifier line))
  919. (when ref
  920. (setq line (org-odt-format-target line (concat "coderef-" ref))))
  921. (setq line (org-odt-format-stylized-paragraph par-style line))
  922. (if (not num) line
  923. (org-odt-format-tags '("<text:list-item>" . "</text:list-item>") line))))
  924. (defun org-odt-format-source-code-or-example-plain
  925. (lines lang caption textareap cols rows num cont rpllbl fmt)
  926. "Format source or example blocks much like fixedwidth blocks.
  927. Use this when `org-export-odt-fontify-srcblocks' option is turned
  928. off."
  929. (let* ((lines (org-split-string lines "[\r\n]"))
  930. (line-count (length lines))
  931. (i 0))
  932. (mapconcat
  933. (lambda (line)
  934. (incf i)
  935. (org-odt-format-source-line-with-line-number-and-label
  936. line rpllbl num 'org-odt-encode-plain-text
  937. (if (= i line-count) "OrgFixedWidthBlockLastLine"
  938. "OrgFixedWidthBlock")))
  939. lines "\n")))
  940. (defvar org-src-block-paragraph-format
  941. "<style:style style:name=\"OrgSrcBlock\" style:family=\"paragraph\" style:parent-style-name=\"Preformatted_20_Text\">
  942. <style:paragraph-properties fo:background-color=\"%s\" fo:padding=\"0.049cm\" fo:border=\"0.51pt solid #000000\" style:shadow=\"none\">
  943. <style:background-image/>
  944. </style:paragraph-properties>
  945. <style:text-properties fo:color=\"%s\"/>
  946. </style:style>"
  947. "Custom paragraph style for colorized source and example blocks.
  948. This style is much the same as that of \"OrgFixedWidthBlock\"
  949. except that the foreground and background colors are set
  950. according to the default face identified by the `htmlfontify'.")
  951. (defun org-odt-hfy-face-to-css (fn)
  952. "Create custom style for face FN.
  953. When FN is the default face, use it's foreground and background
  954. properties to create \"OrgSrcBlock\" paragraph style. Otherwise
  955. use it's color attribute to create a character style whose name
  956. is obtained from FN. Currently all attributes of FN other than
  957. color are ignored.
  958. The style name for a face FN is derived using the following
  959. operations on the face name in that order - de-dash, CamelCase
  960. and prefix with \"OrgSrc\". For example,
  961. `font-lock-function-name-face' is associated with
  962. \"OrgSrcFontLockFunctionNameFace\"."
  963. (let* ((css-list (hfy-face-to-style fn))
  964. (style-name ((lambda (fn)
  965. (concat "OrgSrc"
  966. (mapconcat
  967. 'capitalize (split-string
  968. (hfy-face-or-def-to-name fn) "-")
  969. ""))) fn))
  970. (color-val (cdr (assoc "color" css-list)))
  971. (background-color-val (cdr (assoc "background" css-list)))
  972. (style (and org-export-odt-create-custom-styles-for-srcblocks
  973. (cond
  974. ((eq fn 'default)
  975. (format org-src-block-paragraph-format
  976. background-color-val color-val))
  977. (t
  978. (format
  979. "
  980. <style:style style:name=\"%s\" style:family=\"text\">
  981. <style:text-properties fo:color=\"%s\"/>
  982. </style:style>" style-name color-val))))))
  983. (cons style-name style)))
  984. (defcustom org-export-odt-create-custom-styles-for-srcblocks t
  985. "Whether custom styles for colorized source blocks be automatically created.
  986. When this option is turned on, the exporter creates custom styles
  987. for source blocks based on the advice of `htmlfontify'. Creation
  988. of custom styles happen as part of `org-odt-hfy-face-to-css'.
  989. When this option is turned off exporter does not create such
  990. styles.
  991. Use the latter option if you do not want the custom styles to be
  992. based on your current display settings. It is necessary that the
  993. styles.xml already contains needed styles for colorizing to work.
  994. This variable is effective only if
  995. `org-export-odt-fontify-srcblocks' is turned on."
  996. :group 'org-export-odt
  997. :type 'boolean)
  998. (defun org-odt-insert-custom-styles-for-srcblocks (styles)
  999. "Save STYLES used for colorizing of source blocks.
  1000. Update styles.xml with styles that were collected as part of
  1001. `org-odt-hfy-face-to-css' callbacks."
  1002. (when styles
  1003. (with-current-buffer
  1004. (find-file-noselect (expand-file-name "styles.xml") t)
  1005. (goto-char (point-min))
  1006. (when (re-search-forward "</office:styles>" nil t)
  1007. (goto-char (match-beginning 0))
  1008. (insert "\n<!-- Org Htmlfontify Styles -->\n" styles "\n")))))
  1009. (defun org-odt-format-source-code-or-example-colored
  1010. (lines lang caption textareap cols rows num cont rpllbl fmt)
  1011. "Format source or example blocks using `htmlfontify-string'.
  1012. Use this routine when `org-export-odt-fontify-srcblocks' option
  1013. is turned on."
  1014. (let* ((lang-m (and lang (or (cdr (assoc lang org-src-lang-modes)) lang)))
  1015. (mode (and lang-m (intern (concat (if (symbolp lang-m)
  1016. (symbol-name lang-m)
  1017. lang-m) "-mode"))))
  1018. (org-inhibit-startup t)
  1019. (org-startup-folded nil)
  1020. (lines (with-temp-buffer
  1021. (insert lines)
  1022. (if (functionp mode) (funcall mode) (fundamental-mode))
  1023. (font-lock-fontify-buffer)
  1024. (buffer-string)))
  1025. (hfy-html-quote-regex "\\([<\"&> ]\\)")
  1026. (hfy-html-quote-map '(("\"" "&quot;")
  1027. ("<" "&lt;")
  1028. ("&" "&amp;")
  1029. (">" "&gt;")
  1030. (" " "<text:s/>")
  1031. (" " "<text:tab/>")))
  1032. (hfy-face-to-css 'org-odt-hfy-face-to-css)
  1033. (hfy-optimisations-1 (copy-seq hfy-optimisations))
  1034. (hfy-optimisations (add-to-list 'hfy-optimisations-1
  1035. 'body-text-only))
  1036. (hfy-begin-span-handler
  1037. (lambda (style text-block text-id text-begins-block-p)
  1038. (insert (format "<text:span text:style-name=\"%s\">" style))))
  1039. (hfy-end-span-handler (lambda nil (insert "</text:span>"))))
  1040. (when (fboundp 'htmlfontify-string)
  1041. (let* ((lines (org-split-string lines "[\r\n]"))
  1042. (line-count (length lines))
  1043. (i 0))
  1044. (mapconcat
  1045. (lambda (line)
  1046. (incf i)
  1047. (org-odt-format-source-line-with-line-number-and-label
  1048. line rpllbl num 'htmlfontify-string
  1049. (if (= i line-count) "OrgSrcBlockLastLine" "OrgSrcBlock")))
  1050. lines "\n")))))
  1051. (defun org-odt-format-source-code-or-example (lines lang caption textareap
  1052. cols rows num cont
  1053. rpllbl fmt)
  1054. "Format source or example blocks for export.
  1055. Use `org-odt-format-source-code-or-example-plain' or
  1056. `org-odt-format-source-code-or-example-colored' depending on the
  1057. value of `org-export-odt-fontify-srcblocks."
  1058. (setq lines (org-export-number-lines
  1059. lines 0 0 num cont rpllbl fmt 'preprocess)
  1060. lines (funcall
  1061. (or (and org-export-odt-fontify-srcblocks
  1062. (or (featurep 'htmlfontify)
  1063. (require 'htmlfontify))
  1064. (fboundp 'htmlfontify-string)
  1065. 'org-odt-format-source-code-or-example-colored)
  1066. 'org-odt-format-source-code-or-example-plain)
  1067. lines lang caption textareap cols rows num cont rpllbl fmt))
  1068. (if (not num) lines
  1069. (let ((extra (format " text:continue-numbering=\"%s\""
  1070. (if cont "true" "false"))))
  1071. (org-odt-format-tags
  1072. '("<text:list text:style-name=\"OrgSrcBlockNumberedLine\"%s>"
  1073. . "</text:list>") lines extra))))
  1074. (defun org-odt-remap-stylenames (style-name)
  1075. (or
  1076. (cdr (assoc style-name '(("timestamp-wrapper" . "OrgTimestampWrapper")
  1077. ("timestamp" . "OrgTimestamp")
  1078. ("timestamp-kwd" . "OrgTimestampKeyword")
  1079. ("tag" . "OrgTag")
  1080. ("todo" . "OrgTodo")
  1081. ("done" . "OrgDone")
  1082. ("target" . "OrgTarget"))))
  1083. style-name))
  1084. (defun org-odt-format-fontify (text style &optional id)
  1085. (let* ((style-name
  1086. (cond
  1087. ((stringp style)
  1088. (org-odt-remap-stylenames style))
  1089. ((symbolp style)
  1090. (org-odt-get-style-name-for-entity 'character style))
  1091. ((listp style)
  1092. (assert (< 1 (length style)))
  1093. (let ((parent-style (pop style)))
  1094. (mapconcat (lambda (s)
  1095. ;; (assert (stringp s) t)
  1096. (org-odt-remap-stylenames s)) style "")
  1097. (org-odt-remap-stylenames parent-style)))
  1098. (t (error "Don't how to handle style %s" style)))))
  1099. (org-odt-format-tags
  1100. '("<text:span text:style-name=\"%s\">" . "</text:span>")
  1101. text style-name)))
  1102. (defun org-odt-relocate-relative-path (path dir)
  1103. (if (file-name-absolute-p path) path
  1104. (file-relative-name (expand-file-name path dir)
  1105. (expand-file-name "eyecandy" dir))))
  1106. (defun org-odt-format-inline-image (thefile)
  1107. (let* ((thelink (if (file-name-absolute-p thefile) thefile
  1108. (org-xml-format-href
  1109. (org-odt-relocate-relative-path
  1110. thefile org-current-export-file))))
  1111. (href
  1112. (org-odt-format-tags
  1113. "<draw:image xlink:href=\"%s\" xlink:type=\"simple\" xlink:show=\"embed\" xlink:actuate=\"onLoad\"/>" ""
  1114. (if org-export-odt-embed-images
  1115. (org-odt-copy-image-file thefile) thelink))))
  1116. (org-export-odt-format-image thefile href)))
  1117. (defun org-export-odt-format-formula (src href &optional embed-as)
  1118. "Create image tag with source and attributes."
  1119. (save-match-data
  1120. (let* ((caption (org-find-text-property-in-string 'org-caption src))
  1121. (caption (and caption (org-xml-format-desc caption)))
  1122. (label (org-find-text-property-in-string 'org-label src))
  1123. (latex-frag (org-find-text-property-in-string 'org-latex-src src))
  1124. (embed-as (or embed-as
  1125. (and latex-frag
  1126. (org-find-text-property-in-string
  1127. 'org-latex-src-embed-type src))
  1128. (if (or caption label) 'paragraph 'character)))
  1129. width height)
  1130. (when latex-frag
  1131. (setq href (org-propertize href :title "LaTeX Fragment"
  1132. :description latex-frag)))
  1133. (cond
  1134. ((eq embed-as 'character)
  1135. (org-odt-format-entity "InlineFormula" href width height))
  1136. (t
  1137. (org-lparse-end-paragraph)
  1138. (org-lparse-insert-list-table
  1139. `((,(org-odt-format-entity
  1140. (if caption "CaptionedDisplayFormula" "DisplayFormula")
  1141. href width height caption nil)
  1142. ,(if (not label) ""
  1143. (org-odt-format-entity-caption label nil "__MathFormula__"))))
  1144. nil nil nil "OrgEquation" nil '((1 "c" 8) (2 "c" 1)))
  1145. (throw 'nextline nil))))))
  1146. (defvar org-odt-embedded-formulas-count 0)
  1147. (defun org-odt-copy-formula-file (path)
  1148. "Returns the internal name of the file"
  1149. (let* ((src-file (expand-file-name
  1150. path (file-name-directory org-current-export-file)))
  1151. (target-dir (format "Formula-%04d/"
  1152. (incf org-odt-embedded-formulas-count)))
  1153. (target-file (concat target-dir "content.xml")))
  1154. (when (not org-lparse-to-buffer)
  1155. (message "Embedding %s as %s ..."
  1156. (substring-no-properties path) target-file)
  1157. (make-directory target-dir)
  1158. (org-odt-create-manifest-file-entry
  1159. "application/vnd.oasis.opendocument.formula" target-dir "1.2")
  1160. (case (org-odt-is-formula-link-p src-file)
  1161. (mathml
  1162. (copy-file src-file target-file 'overwrite))
  1163. (odf
  1164. (org-odt-zip-extract-one src-file "content.xml" target-dir))
  1165. (t
  1166. (error "%s is not a formula file" src-file)))
  1167. (org-odt-create-manifest-file-entry "text/xml" target-file))
  1168. target-file))
  1169. (defun org-odt-format-inline-formula (thefile)
  1170. (let* ((thelink (if (file-name-absolute-p thefile) thefile
  1171. (org-xml-format-href
  1172. (org-odt-relocate-relative-path
  1173. thefile org-current-export-file))))
  1174. (href
  1175. (org-odt-format-tags
  1176. "<draw:object xlink:href=\"%s\" xlink:type=\"simple\" xlink:show=\"embed\" xlink:actuate=\"onLoad\"/>" ""
  1177. (file-name-directory (org-odt-copy-formula-file thefile)))))
  1178. (org-export-odt-format-formula thefile href)))
  1179. (defun org-odt-is-formula-link-p (file)
  1180. (let ((case-fold-search nil))
  1181. (cond
  1182. ((string-match "\\.\\(mathml\\|mml\\)\\'" file)
  1183. 'mathml)
  1184. ((string-match "\\.odf\\'" file)
  1185. 'odf))))
  1186. (defun org-odt-format-org-link (opt-plist type-1 path fragment desc attr
  1187. descp)
  1188. "Make an HTML link.
  1189. OPT-PLIST is an options list.
  1190. TYPE is the device-type of the link (THIS://foo.html)
  1191. PATH is the path of the link (http://THIS#locationx)
  1192. FRAGMENT is the fragment part of the link, if any (foo.html#THIS)
  1193. DESC is the link description, if any.
  1194. ATTR is a string of other attributes of the a element.
  1195. MAY-INLINE-P allows inlining it as an image."
  1196. (declare (special org-lparse-par-open))
  1197. (save-match-data
  1198. (let* ((may-inline-p
  1199. (and (member type-1 '("http" "https" "file"))
  1200. (org-lparse-should-inline-p path descp)
  1201. (not fragment)))
  1202. (type (if (equal type-1 "id") "file" type-1))
  1203. (filename path)
  1204. (thefile path))
  1205. (cond
  1206. ;; check for inlined images
  1207. ((and (member type '("file"))
  1208. (not fragment)
  1209. (org-file-image-p
  1210. filename org-export-odt-inline-image-extensions)
  1211. (or (eq t org-export-odt-inline-images)
  1212. (and org-export-odt-inline-images (not descp))))
  1213. (org-odt-format-inline-image thefile))
  1214. ;; check for embedded formulas
  1215. ((and (member type '("file"))
  1216. (not fragment)
  1217. (org-odt-is-formula-link-p filename)
  1218. (or (not descp)))
  1219. (org-odt-format-inline-formula thefile))
  1220. ((string= type "coderef")
  1221. (let* ((ref fragment)
  1222. (lineno-or-ref (cdr (assoc ref org-export-code-refs)))
  1223. (desc (and descp desc))
  1224. (org-odt-suppress-xref nil)
  1225. (href (org-xml-format-href (concat "#coderef-" ref))))
  1226. (cond
  1227. ((and (numberp lineno-or-ref) (not desc))
  1228. (org-odt-format-link lineno-or-ref href))
  1229. ((and (numberp lineno-or-ref) desc
  1230. (string-match (regexp-quote (concat "(" ref ")")) desc))
  1231. (format (replace-match "%s" t t desc)
  1232. (org-odt-format-link lineno-or-ref href)))
  1233. (t
  1234. (setq desc (format
  1235. (if (and desc (string-match
  1236. (regexp-quote (concat "(" ref ")"))
  1237. desc))
  1238. (replace-match "%s" t t desc)
  1239. (or desc "%s"))
  1240. lineno-or-ref))
  1241. (org-odt-format-link (org-xml-format-desc desc) href)))))
  1242. (t
  1243. (when (string= type "file")
  1244. (setq thefile
  1245. (cond
  1246. ((file-name-absolute-p path)
  1247. (concat "file://" (expand-file-name path)))
  1248. (t (org-odt-relocate-relative-path
  1249. thefile org-current-export-file)))))
  1250. (when (and (member type '("" "http" "https" "file")) fragment)
  1251. (setq thefile (concat thefile "#" fragment)))
  1252. (setq thefile (org-xml-format-href thefile))
  1253. (when (not (member type '("" "file")))
  1254. (setq thefile (concat type ":" thefile)))
  1255. (let ((org-odt-suppress-xref nil))
  1256. (org-odt-format-link
  1257. (org-xml-format-desc desc) thefile attr)))))))
  1258. (defun org-odt-format-heading (text level &optional id)
  1259. (let* ((text (if id (org-odt-format-target text id) text)))
  1260. (org-odt-format-tags
  1261. '("<text:h text:style-name=\"Heading_20_%s\" text:outline-level=\"%s\">" .
  1262. "</text:h>") text level level)))
  1263. (defun org-odt-format-headline (title extra-targets tags
  1264. &optional snumber level)
  1265. (concat
  1266. (org-lparse-format 'EXTRA-TARGETS extra-targets)
  1267. ;; No need to generate section numbers. They are auto-generated by
  1268. ;; the application
  1269. ;; (concat (org-lparse-format 'SECTION-NUMBER snumber level) " ")
  1270. title
  1271. (and tags (concat (org-lparse-format 'SPACES 3)
  1272. (org-lparse-format 'ORG-TAGS tags)))))
  1273. (defun org-odt-format-anchor (text name &optional class)
  1274. (org-odt-format-target text name))
  1275. (defun org-odt-format-bookmark (text id)
  1276. (if id
  1277. (org-odt-format-tags "<text:bookmark text:name=\"%s\"/>" text id)
  1278. text))
  1279. (defun org-odt-format-target (text id)
  1280. (let ((name (concat org-export-odt-bookmark-prefix id)))
  1281. (concat
  1282. (and id (org-odt-format-tags
  1283. "<text:bookmark-start text:name=\"%s\"/>" "" name))
  1284. (org-odt-format-bookmark text id)
  1285. (and id (org-odt-format-tags
  1286. "<text:bookmark-end text:name=\"%s\"/>" "" name)))))
  1287. (defun org-odt-format-footnote (n def)
  1288. (let ((id (concat "fn" n))
  1289. (note-class "footnote")
  1290. (par-style "Footnote"))
  1291. (org-odt-format-tags
  1292. '("<text:note text:id=\"%s\" text:note-class=\"%s\">" .
  1293. "</text:note>")
  1294. (concat
  1295. (org-odt-format-tags
  1296. '("<text:note-citation>" . "</text:note-citation>")
  1297. n)
  1298. (org-odt-format-tags
  1299. '("<text:note-body>" . "</text:note-body>")
  1300. def))
  1301. id note-class)))
  1302. (defun org-odt-format-footnote-reference (n def refcnt)
  1303. (if (= refcnt 1)
  1304. (org-odt-format-footnote n def)
  1305. (org-odt-format-footnote-ref n)))
  1306. (defun org-odt-format-footnote-ref (n)
  1307. (let ((note-class "footnote")
  1308. (ref-format "text")
  1309. (ref-name (concat "fn" n)))
  1310. (org-odt-format-tags
  1311. '("<text:span text:style-name=\"%s\">" . "</text:span>")
  1312. (org-odt-format-tags
  1313. '("<text:note-ref text:note-class=\"%s\" text:reference-format=\"%s\" text:ref-name=\"%s\">" . "</text:note-ref>")
  1314. n note-class ref-format ref-name)
  1315. "OrgSuperscript")))
  1316. (defun org-odt-get-image-name (file-name)
  1317. (require 'sha1)
  1318. (file-relative-name
  1319. (expand-file-name
  1320. (concat (sha1 file-name) "." (file-name-extension file-name)) "Pictures")))
  1321. (defun org-export-odt-format-image (src href &optional embed-as)
  1322. "Create image tag with source and attributes."
  1323. (save-match-data
  1324. (let* ((caption (org-find-text-property-in-string 'org-caption src))
  1325. (caption (and caption (org-xml-format-desc caption)))
  1326. (attr (org-find-text-property-in-string 'org-attributes src))
  1327. (label (org-find-text-property-in-string 'org-label src))
  1328. (latex-frag (org-find-text-property-in-string
  1329. 'org-latex-src src))
  1330. (category (and latex-frag "__DvipngImage__"))
  1331. (embed-as (or embed-as
  1332. (if latex-frag
  1333. (or (org-find-text-property-in-string
  1334. 'org-latex-src-embed-type src) 'character)
  1335. 'paragraph)))
  1336. (attr-plist (org-lparse-get-block-params attr))
  1337. (size (org-odt-image-size-from-file
  1338. src (plist-get attr-plist :width)
  1339. (plist-get attr-plist :height)
  1340. (plist-get attr-plist :scale) nil embed-as))
  1341. (width (car size)) (height (cdr size)))
  1342. (when latex-frag
  1343. (setq href (org-propertize href :title "LaTeX Fragment"
  1344. :description latex-frag)))
  1345. (cond
  1346. ((not (or caption label))
  1347. (case embed-as
  1348. (paragraph (org-odt-format-entity "DisplayImage" href width height))
  1349. (character (org-odt-format-entity "InlineImage" href width height))
  1350. (t (error "Unknown value for embed-as %S" embed-as))))
  1351. (t
  1352. (org-odt-format-entity
  1353. "CaptionedDisplayImage" href width height caption label category))))))
  1354. (defun org-odt-format-object-description (title description)
  1355. (concat (and title (org-odt-format-tags
  1356. '("<svg:title>" . "</svg:title>")
  1357. (org-odt-encode-plain-text title t)))
  1358. (and description (org-odt-format-tags
  1359. '("<svg:desc>" . "</svg:desc>")
  1360. (org-odt-encode-plain-text description t)))))
  1361. (defun org-odt-format-frame (text width height style &optional
  1362. extra anchor-type)
  1363. (let ((frame-attrs
  1364. (concat
  1365. (if width (format " svg:width=\"%0.2fcm\"" width) "")
  1366. (if height (format " svg:height=\"%0.2fcm\"" height) "")
  1367. extra
  1368. (format " text:anchor-type=\"%s\"" (or anchor-type "paragraph")))))
  1369. (org-odt-format-tags
  1370. '("<draw:frame draw:style-name=\"%s\"%s>" . "</draw:frame>")
  1371. (concat text (org-odt-format-object-description
  1372. (get-text-property 0 :title text)
  1373. (get-text-property 0 :description text)))
  1374. style frame-attrs)))
  1375. (defun org-odt-format-textbox (text width height style &optional
  1376. extra anchor-type)
  1377. (org-odt-format-frame
  1378. (org-odt-format-tags
  1379. '("<draw:text-box %s>" . "</draw:text-box>")
  1380. text (concat (format " fo:min-height=\"%0.2fcm\"" (or height .2))
  1381. (format " fo:min-width=\"%0.2fcm\"" (or width .2))))
  1382. width nil style extra anchor-type))
  1383. (defun org-odt-format-inlinetask (heading content
  1384. &optional todo priority tags)
  1385. (org-odt-format-stylized-paragraph
  1386. nil (org-odt-format-textbox
  1387. (concat (org-odt-format-stylized-paragraph
  1388. "OrgInlineTaskHeading"
  1389. (org-lparse-format
  1390. 'HEADLINE (concat (org-lparse-format-todo todo) " " heading)
  1391. nil tags))
  1392. content) nil nil "OrgInlineTaskFrame" " style:rel-width=\"100%\"")))
  1393. (defvar org-odt-entity-frame-styles
  1394. '(("InlineImage" "__Figure__" ("OrgInlineImage" nil "as-char"))
  1395. ("DisplayImage" "__Figure__" ("OrgDisplayImage" nil "paragraph"))
  1396. ("CaptionedDisplayImage" "__Figure__"
  1397. ("OrgCaptionedImage"
  1398. " style:rel-width=\"100%\" style:rel-height=\"scale\"" "paragraph")
  1399. ("OrgImageCaptionFrame"))
  1400. ("InlineFormula" "__MathFormula__" ("OrgInlineFormula" nil "as-char"))
  1401. ("DisplayFormula" "__MathFormula__" ("OrgDisplayFormula" nil "as-char"))
  1402. ("CaptionedDisplayFormula" "__MathFormula__"
  1403. ("OrgCaptionedFormula" nil "paragraph")
  1404. ("OrgFormulaCaptionFrame" nil "as-char"))))
  1405. (defun org-odt-format-entity (entity href width height
  1406. &optional caption label category)
  1407. (let* ((entity-style (assoc entity org-odt-entity-frame-styles))
  1408. (entity-frame (apply 'org-odt-format-frame
  1409. href width height (nth 2 entity-style))))
  1410. (if (not (or caption label)) entity-frame
  1411. (apply 'org-odt-format-textbox
  1412. (org-odt-format-stylized-paragraph
  1413. 'illustration
  1414. (concat entity-frame
  1415. (org-odt-format-entity-caption
  1416. label caption (or category (nth 1 entity-style)))))
  1417. width height (nth 3 entity-style)))))
  1418. (defvar org-odt-embedded-images-count 0)
  1419. (defun org-odt-copy-image-file (path)
  1420. "Returns the internal name of the file"
  1421. (let* ((image-type (file-name-extension path))
  1422. (media-type (format "image/%s" image-type))
  1423. (src-file (expand-file-name
  1424. path (file-name-directory org-current-export-file)))
  1425. (target-dir "Images/")
  1426. (target-file
  1427. (format "%s%04d.%s" target-dir
  1428. (incf org-odt-embedded-images-count) image-type)))
  1429. (when (not org-lparse-to-buffer)
  1430. (message "Embedding %s as %s ..."
  1431. (substring-no-properties path) target-file)
  1432. (when (= 1 org-odt-embedded-images-count)
  1433. (make-directory target-dir)
  1434. (org-odt-create-manifest-file-entry "" target-dir))
  1435. (copy-file src-file target-file 'overwrite)
  1436. (org-odt-create-manifest-file-entry media-type target-file))
  1437. target-file))
  1438. (defvar org-export-odt-image-size-probe-method
  1439. '(emacs imagemagick force)
  1440. "Ordered list of methods by for determining size of an embedded
  1441. image.")
  1442. (defvar org-export-odt-default-image-sizes-alist
  1443. '(("character" . (5 . 0.4))
  1444. ("paragraph" . (5 . 5)))
  1445. "Hardcoded image dimensions one for each of the anchor
  1446. methods.")
  1447. (defun org-odt-do-image-size (probe-method file &optional dpi anchor-type)
  1448. (setq dpi (or dpi org-export-odt-pixels-per-inch))
  1449. (setq anchor-type (or anchor-type "paragraph"))
  1450. (flet ((size-in-cms (size-in-pixels)
  1451. (flet ((pixels-to-cms (pixels)
  1452. (let* ((cms-per-inch 2.54)
  1453. (inches (/ pixels dpi)))
  1454. (* cms-per-inch inches))))
  1455. (and size-in-pixels
  1456. (cons (pixels-to-cms (car size-in-pixels))
  1457. (pixels-to-cms (cdr size-in-pixels)))))))
  1458. (case probe-method
  1459. (emacs
  1460. (size-in-cms (ignore-errors (image-size (create-image file) 'pixels))))
  1461. (imagemagick
  1462. (size-in-cms
  1463. (let ((dim (shell-command-to-string
  1464. (format "identify -format \"%%w:%%h\" \"%s\"" file))))
  1465. (when (string-match "\\([0-9]+\\):\\([0-9]+\\)" dim)
  1466. (cons (string-to-number (match-string 1 dim))
  1467. (string-to-number (match-string 2 dim)))))))
  1468. (t
  1469. (cdr (assoc-string anchor-type
  1470. org-export-odt-default-image-sizes-alist))))))
  1471. (defun org-odt-image-size-from-file (file &optional user-width
  1472. user-height scale dpi embed-as)
  1473. (unless (file-name-absolute-p file)
  1474. (setq file (expand-file-name
  1475. file (file-name-directory org-current-export-file))))
  1476. (let* (size width height)
  1477. (unless (and user-height user-width)
  1478. (loop for probe-method in org-export-odt-image-size-probe-method
  1479. until size
  1480. do (setq size (org-odt-do-image-size
  1481. probe-method file dpi embed-as)))
  1482. (or size (error "Cannot determine Image size. Aborting ..."))
  1483. (setq width (car size) height (cdr size)))
  1484. (cond
  1485. (scale
  1486. (setq width (* width scale) height (* height scale)))
  1487. ((and user-height user-width)
  1488. (setq width user-width height user-height))
  1489. (user-height
  1490. (setq width (* user-height (/ width height)) height user-height))
  1491. (user-width
  1492. (setq height (* user-width (/ height width)) width user-width))
  1493. (t (ignore)))
  1494. (cons width height)))
  1495. (defvar org-odt-entity-labels-alist nil
  1496. "Associate Labels with the Labelled entities.
  1497. Each element of the alist is of the form (LABEL-NAME
  1498. CATEGORY-NAME SEQNO LABEL-STYLE-NAME). LABEL-NAME is same as
  1499. that specified by \"#+LABEL: ...\" line. CATEGORY-NAME is the
  1500. type of the entity that LABEL-NAME is attached to. CATEGORY-NAME
  1501. can be one of \"Table\", \"Figure\" or \"Equation\". SEQNO is
  1502. the unique number assigned to the referenced entity on a
  1503. per-CATEGORY basis. It is generated sequentially and is 1-based.
  1504. LABEL-STYLE-NAME is a key `org-odt-label-styles'.
  1505. See `org-odt-add-label-definition' and
  1506. `org-odt-fixup-label-references'.")
  1507. (defvar org-odt-entity-counts-plist nil
  1508. "Plist of running counters of SEQNOs for each of the CATEGORY-NAMEs.
  1509. See `org-odt-entity-labels-alist' for known CATEGORY-NAMEs.")
  1510. (defvar org-odt-label-styles
  1511. '(("text" "(%n)" "text" "(%n)")
  1512. ("category-and-value" "%e %n%c" "category-and-value" "%e %n"))
  1513. "Specify how labels are applied and referenced.
  1514. This is an alist where each element is of the
  1515. form (LABEL-STYLE-NAME LABEL-ATTACH-FMT LABEL-REF-MODE
  1516. LABEL-REF-FMT).
  1517. LABEL-ATTACH-FMT controls how labels and captions are attached to
  1518. an entity. It may contain following specifiers - %e, %n and %c.
  1519. %e is replaced with the CATEGORY-NAME. %n is replaced with
  1520. \"<text:sequence ...> SEQNO </text:sequence>\". %c is replaced
  1521. with CAPTION. See `org-odt-format-label-definition'.
  1522. LABEL-REF-MODE and LABEL-REF-FMT controls how label references
  1523. are generated. The following XML is generated for a label
  1524. reference - \"<text:sequence-ref
  1525. text:reference-format=\"LABEL-REF-MODE\" ...> LABEL-REF-FMT
  1526. </text:sequence-ref>\". LABEL-REF-FMT may contain following
  1527. specifiers - %e and %n. %e is replaced with the CATEGORY-NAME.
  1528. %n is replaced with SEQNO. See
  1529. `org-odt-format-label-reference'.")
  1530. (defvar org-odt-category-map-alist
  1531. '(("__Table__" "Table" "category-and-value")
  1532. ("__Figure__" "Figure" "category-and-value")
  1533. ("__MathFormula__" "Equation" "text")
  1534. ("__DvipngImage__" "Equation" "category-and-value"))
  1535. "Map a CATEGORY-HANDLE to CATEGORY-NAME and LABEL-STYLE.
  1536. This is an alist where each element is of the form
  1537. \\(CATEGORY-HANDLE CATEGORY-NAME LABEL-STYLE\\). CATEGORY_HANDLE
  1538. could either be one of the internal handles (as seen above) or be
  1539. derived from the \"#+LABEL:<label-name>\" specification. See
  1540. `org-export-odt-get-category-from-label'. CATEGORY-NAME and
  1541. LABEL-STYLE are used for generating ODT labels. See
  1542. `org-odt-label-styles'.")
  1543. (defvar org-export-odt-user-categories
  1544. '("Illustration" "Table" "Text" "Drawing" "Equation" "Figure"))
  1545. (defvar org-export-odt-get-category-from-label nil
  1546. "Should category of label be inferred from label itself.
  1547. When this option is non-nil, a label is parsed in to two
  1548. component parts delimited by a \":\" (colon) as shown here -
  1549. #+LABEL:[CATEGORY-HANDLE:]EXTRA. The CATEGORY-HANDLE is mapped
  1550. to a CATEGORY-NAME and LABEL-STYLE using
  1551. `org-odt-category-map-alist'. (If no such map is provided and
  1552. CATEGORY-NAME is set to CATEGORY-HANDLE and LABEL-STYLE is set to
  1553. \"category-and-value\"). If CATEGORY-NAME so obtained is listed
  1554. under `org-export-odt-user-categories' then the user specified
  1555. styles are used. Otherwise styles as determined by the internal
  1556. CATEGORY-HANDLE is used. See
  1557. `org-odt-get-label-category-and-style' for details.")
  1558. (defun org-odt-get-label-category-and-style (label default-category)
  1559. "See `org-export-odt-get-category-from-label'."
  1560. (let ((default-category-map
  1561. (assoc default-category org-odt-category-map-alist))
  1562. user-category user-category-map category)
  1563. (cond
  1564. ((not org-export-odt-get-category-from-label)
  1565. default-category-map)
  1566. ((not (setq user-category
  1567. (save-match-data
  1568. (and (string-match "\\`\\(.*\\):.+" label)
  1569. (match-string 1 label)))))
  1570. default-category-map)
  1571. (t
  1572. (setq user-category-map
  1573. (or (assoc user-category org-odt-category-map-alist)
  1574. (list nil user-category "category-and-value"))
  1575. category (nth 1 user-category-map))
  1576. (if (member category org-export-odt-user-categories)
  1577. user-category-map
  1578. default-category-map)))))
  1579. (defun org-odt-add-label-definition (label default-category)
  1580. "Create an entry in `org-odt-entity-labels-alist' and return it."
  1581. (setq label (substring-no-properties label))
  1582. (let* ((label-props (org-odt-get-label-category-and-style
  1583. label default-category))
  1584. (category (nth 1 label-props))
  1585. (counter category)
  1586. (label-style (nth 2 label-props))
  1587. (sequence-var (intern (mapconcat
  1588. 'downcase
  1589. (org-split-string counter) "-")))
  1590. (seqno (1+ (or (plist-get org-odt-entity-counts-plist sequence-var)
  1591. 0)))
  1592. (label-props (list label category seqno label-style)))
  1593. (setq org-odt-entity-counts-plist
  1594. (plist-put org-odt-entity-counts-plist sequence-var seqno))
  1595. (push label-props org-odt-entity-labels-alist)
  1596. label-props))
  1597. (defun org-odt-format-label-definition (caption label category seqno label-style)
  1598. (assert label)
  1599. (format-spec
  1600. (cadr (assoc-string label-style org-odt-label-styles t))
  1601. `((?e . ,category)
  1602. (?n . ,(org-odt-format-tags
  1603. '("<text:sequence text:ref-name=\"%s\" text:name=\"%s\" text:formula=\"ooow:%s+1\" style:num-format=\"1\">" . "</text:sequence>")
  1604. (format "%d" seqno) label category category))
  1605. (?c . ,(or (and caption (concat ": " caption)) "")))))
  1606. (defun org-odt-format-label-reference (label category seqno label-style)
  1607. (assert label)
  1608. (save-match-data
  1609. (let* ((fmt (cddr (assoc-string label-style org-odt-label-styles t)))
  1610. (fmt1 (car fmt))
  1611. (fmt2 (cadr fmt)))
  1612. (org-odt-format-tags
  1613. '("<text:sequence-ref text:reference-format=\"%s\" text:ref-name=\"%s\">"
  1614. . "</text:sequence-ref>")
  1615. (format-spec fmt2 `((?e . ,category)
  1616. (?n . ,(format "%d" seqno)))) fmt1 label))))
  1617. (defun org-odt-fixup-label-references ()
  1618. (goto-char (point-min))
  1619. (while (re-search-forward
  1620. "<text:sequence-ref text:ref-name=\"\\([^\"]+\\)\"/>" nil t)
  1621. (let* ((label (match-string 1))
  1622. (label-def (assoc label org-odt-entity-labels-alist))
  1623. (rpl (and label-def
  1624. (apply 'org-odt-format-label-reference label-def))))
  1625. (if rpl (replace-match rpl t t)
  1626. (org-lparse-warn
  1627. (format "Unable to resolve reference to label \"%s\"" label))))))
  1628. (defun org-odt-format-entity-caption (label caption category)
  1629. (or (and label
  1630. (apply 'org-odt-format-label-definition
  1631. caption (org-odt-add-label-definition label category)))
  1632. caption ""))
  1633. (defun org-odt-format-tags (tag text &rest args)
  1634. (let ((prefix (when org-lparse-encode-pending "@"))
  1635. (suffix (when org-lparse-encode-pending "@")))
  1636. (apply 'org-lparse-format-tags tag text prefix suffix args)))
  1637. (defun org-odt-init-outfile (filename)
  1638. (unless (executable-find "zip")
  1639. ;; Not at all OSes ship with zip by default
  1640. (error "Executable \"zip\" needed for creating OpenDocument files"))
  1641. (let* ((outdir (make-temp-file
  1642. (format org-export-odt-tmpdir-prefix org-lparse-backend) t))
  1643. (content-file (expand-file-name "content.xml" outdir)))
  1644. ;; init conten.xml
  1645. (with-current-buffer (find-file-noselect content-file t))
  1646. ;; reset variables
  1647. (setq org-odt-manifest-file-entries nil
  1648. org-odt-embedded-images-count 0
  1649. org-odt-embedded-formulas-count 0
  1650. org-odt-entity-labels-alist nil
  1651. org-odt-entity-counts-plist nil)
  1652. content-file))
  1653. (defcustom org-export-odt-prettify-xml nil
  1654. "Specify whether or not the xml output should be prettified.
  1655. When this option is turned on, `indent-region' is run on all
  1656. component xml buffers before they are saved. Turn this off for
  1657. regular use. Turn this on if you need to examine the xml
  1658. visually."
  1659. :group 'org-export-odt
  1660. :type 'boolean)
  1661. (defvar hfy-user-sheet-assoc) ; bound during org-do-lparse
  1662. (defun org-odt-save-as-outfile (target opt-plist)
  1663. ;; write meta file
  1664. (org-odt-update-meta-file opt-plist)
  1665. ;; write styles file
  1666. (when (equal org-lparse-backend 'odt)
  1667. (org-odt-update-styles-file opt-plist))
  1668. ;; create mimetype file
  1669. (let ((mimetype (org-odt-write-mimetype-file org-lparse-backend)))
  1670. (org-odt-create-manifest-file-entry mimetype "/" "1.2"))
  1671. ;; create a manifest entry for content.xml
  1672. (org-odt-create-manifest-file-entry "text/xml" "content.xml")
  1673. ;; write out the manifest entries before zipping
  1674. (org-odt-write-manifest-file)
  1675. (let ((xml-files '("mimetype" "META-INF/manifest.xml" "content.xml"
  1676. "meta.xml"))
  1677. (zipdir default-directory))
  1678. (when (equal org-lparse-backend 'odt)
  1679. (push "styles.xml" xml-files))
  1680. (message "Switching to directory %s" (expand-file-name zipdir))
  1681. ;; save all xml files
  1682. (mapc (lambda (file)
  1683. (with-current-buffer
  1684. (find-file-noselect (expand-file-name file) t)
  1685. ;; prettify output if needed
  1686. (when org-export-odt-prettify-xml
  1687. (indent-region (point-min) (point-max)))
  1688. (save-buffer 0)))
  1689. xml-files)
  1690. (let* ((target-name (file-name-nondirectory target))
  1691. (target-dir (file-name-directory target))
  1692. (cmds `(("zip" "-mX0" ,target-name "mimetype")
  1693. ("zip" "-rmTq" ,target-name "."))))
  1694. (when (file-exists-p target)
  1695. ;; FIXME: If the file is locked this throws a cryptic error
  1696. (delete-file target))
  1697. (let ((coding-system-for-write 'no-conversion) exitcode err-string)
  1698. (message "Creating odt file...")
  1699. (mapc
  1700. (lambda (cmd)
  1701. (message "Running %s" (mapconcat 'identity cmd " "))
  1702. (setq err-string
  1703. (with-output-to-string
  1704. (setq exitcode
  1705. (apply 'call-process (car cmd)
  1706. nil standard-output nil (cdr cmd)))))
  1707. (or (zerop exitcode)
  1708. (ignore (message "%s" err-string))
  1709. (error "Unable to create odt file (%S)" exitcode)))
  1710. cmds))
  1711. ;; move the file from outdir to target-dir
  1712. (rename-file target-name target-dir)
  1713. ;; kill all xml buffers
  1714. (mapc (lambda (file)
  1715. (kill-buffer
  1716. (find-file-noselect (expand-file-name file zipdir) t)))
  1717. xml-files)
  1718. (delete-directory zipdir)))
  1719. (message "Created %s" target)
  1720. (set-buffer (find-file-noselect target t)))
  1721. (defconst org-odt-manifest-file-entry-tag
  1722. "
  1723. <manifest:file-entry manifest:media-type=\"%s\" manifest:full-path=\"%s\"%s/>")
  1724. (defvar org-odt-manifest-file-entries nil)
  1725. (defun org-odt-create-manifest-file-entry (&rest args)
  1726. (push args org-odt-manifest-file-entries))
  1727. (defun org-odt-write-manifest-file ()
  1728. (make-directory "META-INF")
  1729. (let ((manifest-file (expand-file-name "META-INF/manifest.xml")))
  1730. (write-region
  1731. "<?xml version=\"1.0\" encoding=\"UTF-8\"?>
  1732. <manifest:manifest xmlns:manifest=\"urn:oasis:names:tc:opendocument:xmlns:manifest:1.0\" manifest:version=\"1.2\">\n"
  1733. nil manifest-file)
  1734. (mapc
  1735. (lambda (file-entry)
  1736. (let* ((version (nth 2 file-entry))
  1737. (extra (if version
  1738. (format " manifest:version=\"%s\"" version)
  1739. "")))
  1740. (write-region
  1741. (format org-odt-manifest-file-entry-tag
  1742. (nth 0 file-entry) (nth 1 file-entry) extra)
  1743. nil manifest-file t))) org-odt-manifest-file-entries)
  1744. (write-region "\n</manifest:manifest>" nil manifest-file t)))
  1745. (defun org-odt-update-meta-file (opt-plist)
  1746. (let ((date (org-odt-iso-date-from-org-timestamp
  1747. (plist-get opt-plist :date)))
  1748. (author (or (plist-get opt-plist :author) ""))
  1749. (email (plist-get opt-plist :email))
  1750. (keywords (plist-get opt-plist :keywords))
  1751. (description (plist-get opt-plist :description))
  1752. (title (plist-get opt-plist :title)))
  1753. (write-region
  1754. (concat
  1755. "<?xml version=\"1.0\" encoding=\"UTF-8\"?>
  1756. <office:document-meta
  1757. xmlns:office=\"urn:oasis:names:tc:opendocument:xmlns:office:1.0\"
  1758. xmlns:xlink=\"http://www.w3.org/1999/xlink\"
  1759. xmlns:dc=\"http://purl.org/dc/elements/1.1/\"
  1760. xmlns:meta=\"urn:oasis:names:tc:opendocument:xmlns:meta:1.0\"
  1761. xmlns:ooo=\"http://openoffice.org/2004/office\"
  1762. office:version=\"1.2\">
  1763. <office:meta>" "\n"
  1764. (org-odt-format-author)
  1765. (org-odt-format-tags
  1766. '("\n<meta:initial-creator>" . "</meta:initial-creator>") author)
  1767. (org-odt-format-tags '("\n<dc:date>" . "</dc:date>") date)
  1768. (org-odt-format-tags
  1769. '("\n<meta:creation-date>" . "</meta:creation-date>") date)
  1770. (org-odt-format-tags '("\n<meta:generator>" . "</meta:generator>")
  1771. (when org-export-creator-info
  1772. (format "Org-%s/Emacs-%s"
  1773. org-version emacs-version)))
  1774. (org-odt-format-tags '("\n<meta:keyword>" . "</meta:keyword>") keywords)
  1775. (org-odt-format-tags '("\n<dc:subject>" . "</dc:subject>") description)
  1776. (org-odt-format-tags '("\n<dc:title>" . "</dc:title>") title)
  1777. "\n"
  1778. " </office:meta>" "</office:document-meta>")
  1779. nil (expand-file-name "meta.xml")))
  1780. ;; create a manifest entry for meta.xml
  1781. (org-odt-create-manifest-file-entry "text/xml" "meta.xml"))
  1782. (defun org-odt-update-styles-file (opt-plist)
  1783. ;; write styles file
  1784. (let ((styles-file (plist-get opt-plist :odt-styles-file)))
  1785. (org-odt-copy-styles-file (and styles-file
  1786. (read (org-trim styles-file)))))
  1787. ;; Update styles.xml - take care of outline numbering
  1788. (with-current-buffer
  1789. (find-file-noselect (expand-file-name "styles.xml") t)
  1790. ;; Don't make automatic backup of styles.xml file. This setting
  1791. ;; prevents the backedup styles.xml file from being zipped in to
  1792. ;; odt file. This is more of a hackish fix. Better alternative
  1793. ;; would be to fix the zip command so that the output odt file
  1794. ;; includes only the needed files and excludes any auto-generated
  1795. ;; extra files like backups and auto-saves etc etc. Note that
  1796. ;; currently the zip command zips up the entire temp directory so
  1797. ;; that any auto-generated files created under the hood ends up in
  1798. ;; the resulting odt file.
  1799. (set (make-local-variable 'backup-inhibited) t)
  1800. ;; Import local setting of `org-export-with-section-numbers'
  1801. (org-lparse-bind-local-variables opt-plist)
  1802. (org-odt-configure-outline-numbering
  1803. (if org-export-with-section-numbers org-export-headline-levels 0)))
  1804. ;; Write custom stlyes for source blocks
  1805. (org-odt-insert-custom-styles-for-srcblocks
  1806. (mapconcat
  1807. (lambda (style)
  1808. (format " %s\n" (cddr style)))
  1809. hfy-user-sheet-assoc "")))
  1810. (defun org-odt-write-mimetype-file (format)
  1811. ;; create mimetype file
  1812. (let ((mimetype
  1813. (case format
  1814. (odt "application/vnd.oasis.opendocument.text")
  1815. (odf "application/vnd.oasis.opendocument.formula")
  1816. (t (error "Unknown OpenDocument backend %S" org-lparse-backend)))))
  1817. (write-region mimetype nil (expand-file-name "mimetype"))
  1818. mimetype))
  1819. (defun org-odt-finalize-outfile ()
  1820. (org-odt-delete-empty-paragraphs))
  1821. (defun org-odt-delete-empty-paragraphs ()
  1822. (goto-char (point-min))
  1823. (let ((open "<text:p[^>]*>")
  1824. (close "</text:p>"))
  1825. (while (re-search-forward (format "%s[ \r\n\t]*%s" open close) nil t)
  1826. (replace-match ""))))
  1827. (defcustom org-export-odt-convert-processes
  1828. '(("BasicODConverter"
  1829. ("soffice" "-norestore" "-invisible" "-headless"
  1830. "\"macro:///BasicODConverter.Main.Convert(%I,%f,%O)\""))
  1831. ("unoconv"
  1832. ("unoconv" "-f" "%f" "-o" "%d" "%i")))
  1833. "Specify a list of document converters and their usage.
  1834. The converters in this list are offered as choices while
  1835. customizing `org-export-odt-convert-process'.
  1836. This variable is an alist where each element is of the
  1837. form (CONVERTER-NAME CONVERTER-PROCESS). CONVERTER-NAME is name
  1838. of the converter. CONVERTER-PROCESS specifies the command-line
  1839. syntax of the converter and is of the form (CONVERTER-PROGRAM
  1840. ARG1 ARG2 ...). CONVERTER-PROGRAM is the name of the executable.
  1841. ARG1, ARG2 etc are command line options that are passed to
  1842. CONVERTER-PROGRAM. Format specifiers can be used in the ARGs and
  1843. they are interpreted as below:
  1844. %i input file name in full
  1845. %I input file name as a URL
  1846. %f format of the output file
  1847. %o output file name in full
  1848. %O output file name as a URL
  1849. %d output dir in full
  1850. %D output dir as a URL."
  1851. :group 'org-export-odt
  1852. :type
  1853. '(choice
  1854. (const :tag "None" nil)
  1855. (alist :tag "Converters"
  1856. :key-type (string :tag "Converter Name")
  1857. :value-type (group (cons (string :tag "Executable")
  1858. (repeat (string :tag "Command line args")))))))
  1859. (defcustom org-export-odt-convert-process nil
  1860. "Use this converter to convert from \"odt\" format to other formats.
  1861. During customization, the list of converter names are populated
  1862. from `org-export-odt-convert-processes'."
  1863. :group 'org-export-odt
  1864. :type '(choice :convert-widget
  1865. (lambda (w)
  1866. (apply 'widget-convert (widget-type w)
  1867. (eval (car (widget-get w :args)))))
  1868. `((const :tag "None" nil)
  1869. ,@(mapcar (lambda (c)
  1870. `(const :tag ,(car c) ,(car c)))
  1871. org-export-odt-convert-processes))))
  1872. (defcustom org-export-odt-convert-capabilities
  1873. '(("Text"
  1874. ("odt" "ott" "doc" "rtf")
  1875. (("pdf" "pdf") ("odt" "odt") ("xhtml" "html") ("rtf" "rtf")
  1876. ("ott" "ott") ("doc" "doc") ("ooxml" "xml") ("html" "html")))
  1877. ("Web"
  1878. ("html" "xhtml") (("pdf" "pdf") ("odt" "txt") ("html" "html")))
  1879. ("Spreadsheet"
  1880. ("ods" "ots" "xls" "csv")
  1881. (("pdf" "pdf") ("ots" "ots") ("html" "html") ("csv" "csv")
  1882. ("ods" "ods") ("xls" "xls") ("xhtml" "xhtml") ("ooxml" "xml")))
  1883. ("Presentation"
  1884. ("odp" "otp" "ppt")
  1885. (("pdf" "pdf") ("swf" "swf") ("odp" "odp") ("xhtml" "xml")
  1886. ("otp" "otp") ("ppt" "ppt") ("odg" "odg") ("html" "html"))))
  1887. "Specify input and output formats of `org-export-odt-convert-process'.
  1888. More correctly, specify the set of input and output formats that
  1889. the user is actually interested in.
  1890. This variable is an alist where each element is of the
  1891. form (DOCUMENT-CLASS INPUT-FMT-LIST OUTPUT-FMT-ALIST).
  1892. INPUT-FMT-LIST is a list of INPUT-FMTs. OUTPUT-FMT-ALIST is an
  1893. alist where each element is of the form (OUTPUT-FMT
  1894. OUTPUT-FILE-EXTENSION).
  1895. The variable is interpreted as follows:
  1896. `org-export-odt-convert-process' can take any document that is in
  1897. INPUT-FMT-LIST and produce any document that is in the
  1898. OUTPUT-FMT-LIST. A document converted to OUTPUT-FMT will have
  1899. OUTPUT-FILE-EXTENSION as the file name extension. OUTPUT-FMT
  1900. serves dual purposes:
  1901. - It is used for populating completion candidates during
  1902. `org-export-odt-convert' commands.
  1903. - It is used as the value of \"%f\" specifier in
  1904. `org-export-odt-convert-process'.
  1905. DOCUMENT-CLASS is used to group a set of file formats in
  1906. INPUT-FMT-LIST in to a single class.
  1907. Note that this variable inherently captures how LibreOffice based
  1908. converters work. LibreOffice maps documents of various formats
  1909. to classes like Text, Web, Spreadsheet, Presentation etc and
  1910. allow document of a given class (irrespective of it's source
  1911. format) to be converted to any of the export formats associated
  1912. with that class.
  1913. See default setting of this variable for an typical
  1914. configuration."
  1915. :group 'org-export-odt
  1916. :type
  1917. '(choice
  1918. (const :tag "None" nil)
  1919. (alist :key-type (string :tag "Document Class")
  1920. :value-type
  1921. (group (repeat :tag "Input formats" (string :tag "Input format"))
  1922. (alist :tag "Output formats"
  1923. :key-type (string :tag "Output format")
  1924. :value-type
  1925. (group (string :tag "Output file extension")))))))
  1926. ;;;###autoload
  1927. (defun org-export-odt-convert (&optional in-file out-fmt prefix-arg)
  1928. "Convert IN-FILE to format OUT-FMT using a command line converter.
  1929. IN-FILE is the file to be converted. If unspecified, it defaults
  1930. to variable `buffer-file-name'. OUT-FMT is the desired output
  1931. format. Use `org-export-odt-convert-process' as the converter.
  1932. If PREFIX-ARG is non-nil then the newly converted file is opened
  1933. using `org-open-file'."
  1934. (interactive
  1935. (append (org-lparse-convert-read-params) current-prefix-arg))
  1936. (org-lparse-do-convert in-file out-fmt prefix-arg))
  1937. (defun org-odt-get (what &optional opt-plist)
  1938. (case what
  1939. (BACKEND 'odt)
  1940. (EXPORT-DIR (org-export-directory :html opt-plist))
  1941. (FILE-NAME-EXTENSION "odt")
  1942. (EXPORT-BUFFER-NAME "*Org ODT Export*")
  1943. (ENTITY-CONTROL org-odt-entity-control-callbacks-alist)
  1944. (ENTITY-FORMAT org-odt-entity-format-callbacks-alist)
  1945. (INIT-METHOD 'org-odt-init-outfile)
  1946. (FINAL-METHOD 'org-odt-finalize-outfile)
  1947. (SAVE-METHOD 'org-odt-save-as-outfile)
  1948. (CONVERT-METHOD
  1949. (and org-export-odt-convert-process
  1950. (cadr (assoc-string org-export-odt-convert-process
  1951. org-export-odt-convert-processes t))))
  1952. (CONVERT-CAPABILITIES
  1953. (and org-export-odt-convert-process
  1954. (cadr (assoc-string org-export-odt-convert-process
  1955. org-export-odt-convert-processes t))
  1956. org-export-odt-convert-capabilities))
  1957. (TOPLEVEL-HLEVEL 1)
  1958. (SPECIAL-STRING-REGEXPS org-export-odt-special-string-regexps)
  1959. (INLINE-IMAGES 'maybe)
  1960. (INLINE-IMAGE-EXTENSIONS '("png" "jpeg" "jpg" "gif" "svg"))
  1961. (PLAIN-TEXT-MAP '(("&" . "&amp;") ("<" . "&lt;") (">" . "&gt;")))
  1962. (TABLE-FIRST-COLUMN-AS-LABELS nil)
  1963. (FOOTNOTE-SEPARATOR (org-lparse-format 'FONTIFY "," 'superscript))
  1964. (CODING-SYSTEM-FOR-WRITE 'utf-8)
  1965. (CODING-SYSTEM-FOR-SAVE 'utf-8)
  1966. (t (error "Unknown property: %s" what))))
  1967. (defvar org-lparse-latex-fragment-fallback) ; set by org-do-lparse
  1968. (defun org-export-odt-do-preprocess-latex-fragments ()
  1969. "Convert LaTeX fragments to images."
  1970. (let* ((latex-frag-opt (plist-get org-lparse-opt-plist :LaTeX-fragments))
  1971. (latex-frag-opt ; massage the options
  1972. (or (and (member latex-frag-opt '(mathjax t))
  1973. (not (and (fboundp 'org-format-latex-mathml-available-p)
  1974. (org-format-latex-mathml-available-p)))
  1975. (prog1 org-lparse-latex-fragment-fallback
  1976. (org-lparse-warn
  1977. (concat
  1978. "LaTeX to MathML converter not available. "
  1979. (format "Using %S instead."
  1980. org-lparse-latex-fragment-fallback)))))
  1981. latex-frag-opt))
  1982. cache-dir display-msg)
  1983. (cond
  1984. ((eq latex-frag-opt 'dvipng)
  1985. (setq cache-dir "ltxpng/")
  1986. (setq display-msg "Creating LaTeX image %s"))
  1987. ((member latex-frag-opt '(mathjax t))
  1988. (setq latex-frag-opt 'mathml)
  1989. (setq cache-dir "ltxmathml/")
  1990. (setq display-msg "Creating MathML formula %s")))
  1991. (when (and org-current-export-file)
  1992. (org-format-latex
  1993. (concat cache-dir (file-name-sans-extension
  1994. (file-name-nondirectory org-current-export-file)))
  1995. org-current-export-dir nil display-msg
  1996. nil nil latex-frag-opt))))
  1997. (defadvice org-format-latex-as-mathml
  1998. (after org-odt-protect-latex-fragment activate)
  1999. "Encode LaTeX fragment as XML.
  2000. Do this when translation to MathML fails."
  2001. (when (or (not (> (length ad-return-value) 0))
  2002. (get-text-property 0 'org-protected ad-return-value))
  2003. (setq ad-return-value
  2004. (org-propertize (org-odt-encode-plain-text (ad-get-arg 0))
  2005. 'org-protected t))))
  2006. (defun org-export-odt-preprocess-latex-fragments ()
  2007. (when (equal org-export-current-backend 'odt)
  2008. (org-export-odt-do-preprocess-latex-fragments)))
  2009. (defun org-export-odt-preprocess-label-references ()
  2010. (goto-char (point-min))
  2011. (let (label label-components category value pretty-label)
  2012. (while (re-search-forward "\\\\ref{\\([^{}\n]+\\)}" nil t)
  2013. (org-if-unprotected-at (match-beginning 1)
  2014. (replace-match
  2015. (let ((org-lparse-encode-pending t)
  2016. (label (match-string 1)))
  2017. ;; markup generated below is mostly an eye-candy. At
  2018. ;; pre-processing stage, there is no information on which
  2019. ;; entity a label reference points to. The actual markup
  2020. ;; is generated as part of `org-odt-fixup-label-references'
  2021. ;; which gets called at the fag end of export. By this
  2022. ;; time we would have seen and collected all the label
  2023. ;; definitions in `org-odt-entity-labels-alist'.
  2024. (org-odt-format-tags
  2025. "<text:sequence-ref text:ref-name=\"%s\"/>" ""
  2026. (org-add-props label '(org-protected t)))) t t)))))
  2027. ;; process latex fragments as part of
  2028. ;; `org-export-preprocess-after-blockquote-hook'. Note that this hook
  2029. ;; is the one that is closest and well before the call to
  2030. ;; `org-export-attach-captions-and-attributes' in
  2031. ;; `org-export-preprocess-stirng'. The above arrangement permits
  2032. ;; captions, labels and attributes to be attached to png images
  2033. ;; generated out of latex equations.
  2034. (add-hook 'org-export-preprocess-after-blockquote-hook
  2035. 'org-export-odt-preprocess-latex-fragments)
  2036. (defun org-export-odt-preprocess (parameters)
  2037. (org-export-odt-preprocess-label-references))
  2038. (declare-function archive-zip-extract "arc-mode.el" (archive name))
  2039. (defun org-odt-zip-extract-one (archive member &optional target)
  2040. (require 'arc-mode)
  2041. (let* ((target (or target default-directory))
  2042. (archive (expand-file-name archive))
  2043. (archive-zip-extract
  2044. (list "unzip" "-qq" "-o" "-d" target))
  2045. exit-code command-output)
  2046. (setq command-output
  2047. (with-temp-buffer
  2048. (setq exit-code (archive-zip-extract archive member))
  2049. (buffer-string)))
  2050. (unless (zerop exit-code)
  2051. (message command-output)
  2052. (error "Extraction failed"))))
  2053. (defun org-odt-zip-extract (archive members &optional target)
  2054. (when (atom members) (setq members (list members)))
  2055. (mapc (lambda (member)
  2056. (org-odt-zip-extract-one archive member target))
  2057. members))
  2058. (defun org-odt-copy-styles-file (&optional styles-file)
  2059. ;; Non-availability of styles.xml is not a critical error. For now
  2060. ;; throw an error purely for aesthetic reasons.
  2061. (setq styles-file (or styles-file
  2062. org-export-odt-styles-file
  2063. (expand-file-name "styles/OrgOdtStyles.xml"
  2064. org-odt-data-dir)
  2065. (error "org-odt: Missing styles file?")))
  2066. (cond
  2067. ((listp styles-file)
  2068. (let ((archive (nth 0 styles-file))
  2069. (members (nth 1 styles-file)))
  2070. (org-odt-zip-extract archive members)
  2071. (mapc
  2072. (lambda (member)
  2073. (when (org-file-image-p member)
  2074. (let* ((image-type (file-name-extension member))
  2075. (media-type (format "image/%s" image-type)))
  2076. (org-odt-create-manifest-file-entry media-type member))))
  2077. members)))
  2078. ((and (stringp styles-file) (file-exists-p styles-file))
  2079. (let ((styles-file-type (file-name-extension styles-file)))
  2080. (cond
  2081. ((string= styles-file-type "xml")
  2082. (copy-file styles-file "styles.xml" t))
  2083. ((member styles-file-type '("odt" "ott"))
  2084. (org-odt-zip-extract styles-file "styles.xml")))))
  2085. (t
  2086. (error (format "Invalid specification of styles.xml file: %S"
  2087. org-export-odt-styles-file))))
  2088. ;; create a manifest entry for styles.xml
  2089. (org-odt-create-manifest-file-entry "text/xml" "styles.xml"))
  2090. (defvar org-export-odt-factory-settings
  2091. "d4328fb9d1b6cb211d4320ff546829f26700dc5e"
  2092. "SHA1 hash of OrgOdtStyles.xml.")
  2093. (defun org-odt-configure-outline-numbering (level)
  2094. "Outline numbering is retained only upto LEVEL.
  2095. To disable outline numbering pass a LEVEL of 0."
  2096. (goto-char (point-min))
  2097. (let ((regex
  2098. "<text:outline-level-style\\([^>]*\\)text:level=\"\\([^\"]*\\)\"\\([^>]*\\)>")
  2099. (replacement
  2100. "<text:outline-level-style\\1text:level=\"\\2\" style:num-format=\"\">"))
  2101. (while (re-search-forward regex nil t)
  2102. (when (> (string-to-number (match-string 2)) level)
  2103. (replace-match replacement t nil))))
  2104. (save-buffer 0))
  2105. ;;;###autoload
  2106. (defun org-export-as-odf (latex-frag &optional odf-file)
  2107. "Export LATEX-FRAG as OpenDocument formula file ODF-FILE.
  2108. Use `org-create-math-formula' to convert LATEX-FRAG first to
  2109. MathML. When invoked as an interactive command, use
  2110. `org-latex-regexps' to infer LATEX-FRAG from currently active
  2111. region. If no LaTeX fragments are found, prompt for it. Push
  2112. MathML source to kill ring, if `org-export-copy-to-kill-ring' is
  2113. non-nil."
  2114. (interactive
  2115. `(,(let (frag)
  2116. (setq frag (and (setq frag (and (region-active-p)
  2117. (buffer-substring (region-beginning)
  2118. (region-end))))
  2119. (loop for e in org-latex-regexps
  2120. thereis (when (string-match (nth 1 e) frag)
  2121. (match-string (nth 2 e) frag)))))
  2122. (read-string "LaTeX Fragment: " frag nil frag))
  2123. ,(let ((odf-filename (expand-file-name
  2124. (concat
  2125. (file-name-sans-extension
  2126. (or (file-name-nondirectory buffer-file-name)))
  2127. "." "odf")
  2128. (file-name-directory buffer-file-name))))
  2129. (message "default val is %s" odf-filename)
  2130. (read-file-name "ODF filename: " nil odf-filename nil
  2131. (file-name-nondirectory odf-filename)))))
  2132. (let* ((org-lparse-backend 'odf)
  2133. org-lparse-opt-plist
  2134. (filename (or odf-file
  2135. (expand-file-name
  2136. (concat
  2137. (file-name-sans-extension
  2138. (or (file-name-nondirectory buffer-file-name)))
  2139. "." "odf")
  2140. (file-name-directory buffer-file-name))))
  2141. (buffer (find-file-noselect (org-odt-init-outfile filename)))
  2142. (coding-system-for-write 'utf-8)
  2143. (save-buffer-coding-system 'utf-8))
  2144. (set-buffer buffer)
  2145. (set-buffer-file-coding-system coding-system-for-write)
  2146. (let ((mathml (org-create-math-formula latex-frag)))
  2147. (unless mathml (error "No Math formula created"))
  2148. (insert mathml)
  2149. (or (org-export-push-to-kill-ring
  2150. (upcase (symbol-name org-lparse-backend)))
  2151. (message "Exporting... done")))
  2152. (org-odt-save-as-outfile filename nil)))
  2153. ;;;###autoload
  2154. (defun org-export-as-odf-and-open ()
  2155. "Export LaTeX fragment as OpenDocument formula and immediately open it.
  2156. Use `org-export-as-odf' to read LaTeX fragment and OpenDocument
  2157. formula file."
  2158. (interactive)
  2159. (org-lparse-and-open
  2160. nil nil nil (call-interactively 'org-export-as-odf)))
  2161. (provide 'org-odt)
  2162. ;;; org-odt.el ends here