Skip to content

Commit

Permalink
org-odt.el: Create mimetype file towards the end of export
Browse files Browse the repository at this point in the history
* contrib/lisp/org-odt.el (org-odt-init-outfile): Don't create
mimetype file here.
(org-odt-save-as-outfile): Create mimetype file here.  Note
that this routine gets called towards the end of the export
just before files are zipped.
  • Loading branch information
kjambunathan committed Sep 5, 2011
1 parent c08183d commit 82cf5d5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contrib/lisp/org-odt.el
Expand Up @@ -1422,10 +1422,6 @@ MAY-INLINE-P allows inlining it as an image."
(save-excursion
(insert (mapconcat 'identity (cdr org-export-odt-manifest-lines) "\n"))))

;; mimetype
(with-current-buffer (find-file-noselect mimetype-file t)
(insert "application/vnd.oasis.opendocument.text"))

;; styles file
;; (copy-file org-export-odt-styles-file styles-file t)

Expand All @@ -1451,6 +1447,10 @@ visually."

(defvar hfy-user-sheet-assoc) ; bound during org-do-lparse
(defun org-odt-save-as-outfile (target opt-plist)
;; create mimetype file
(write-region "application/vnd.oasis.opendocument.text" nil
(expand-file-name "mimetype"))

;; write meta file
(org-odt-update-meta-file opt-plist)

Expand Down

0 comments on commit 82cf5d5

Please sign in to comment.