EPUB 3 support

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@240 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2015-05-05 08:55:48 +00:00
parent d141619053
commit 9c99999ad1
16 changed files with 154 additions and 64 deletions

View file

@ -4,6 +4,9 @@ Changelog for Writer2LaTeX version 1.4 -> 1.6
Items marked with * are work in progress
[all] API change: The interface OutputFile now defines an additional method containsMath() which returns true if the file
contains mathematical formulas (only implemented for XHTML, currently always returns true for LaTeX)
[w2x] The template page in the configuration now displays an error message if the template is not well-formed XML.
[w2x] Added toolbar configuration dialog: Select XHTML and EPUB export format and behavior after export (do nothing,
@ -11,7 +14,7 @@ Items marked with * are work in progress
[w2x] New option include_ncx to include a NCX file even if the export format is EPUB 3
[w2x] *Added EPUB 3 as export format and changed default export format for the toolbar to EPUB 3
[w2x] Added EPUB 3 as export format and changed default export format for the toolbar to EPUB 3
[all] Implementation detail: Moved descriptions to a separate folder within the extensions

View file

@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
* Version 1.6 (2015-04-24)
* Version 1.6 (2015-05-05)
*
*/
package org.openoffice.da.comp.w2lcommon.filter;
@ -308,7 +308,7 @@ public class UNOPublisher {
case xhtml_mathml:
case html5: return "org.openoffice.da.comp.writer2xhtml.XhtmlOptionsDialogMath";
case epub: return "org.openoffice.da.comp.writer2xhtml.EpubOptionsDialog";
case epub3: return "org.openoffice.da.comp.writer2xhtml.EpubOptionsDialog";
case epub3: return "org.openoffice.da.comp.writer2xhtml.Epub3OptionsDialog";
case latex: return "org.openoffice.da.comp.writer2latex.LaTeXOptionsDialog";
default: return null;
}

View file

@ -1,6 +1,6 @@
/************************************************************************
*
* EpubOptionsDialog.java
* Epub3OptionsDialog.java
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
* Version 1.6 (2015-04-28)
* Version 1.6 (2015-05-05)
*
*/
package org.openoffice.da.comp.writer2xhtml;
@ -38,7 +38,7 @@ public class Epub3OptionsDialog extends EpubOptionsDialog {
/** The component should also have an implementation name.
*/
public static String __implementationName = "org.openoffice.da.comp.writer2xhtml.EpubOptionsDialog3";
public static String __implementationName = "org.openoffice.da.comp.writer2xhtml.Epub3OptionsDialog";
/** Create a new Epub3OptionsDialog */
public Epub3OptionsDialog(XComponentContext xContext) {

View file

@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
* Version 1.6 (2015-04-14)
* Version 1.6 (2015-05-05)
*
*/
@ -33,7 +33,7 @@ public class ConverterFactory {
// Version information
private static final String VERSION = "1.5.2";
private static final String DATE = "2015-04-14";
private static final String DATE = "2015-05-05";
/** Return the Writer2LaTeX version in the form
* (major version).(minor version).(patch level)<br/>

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
* Copyright: 2002-2010 by Henrik Just
* Copyright: 2002-2015 by Henrik Just
*
* All Rights Reserved.
*
* Version 1.2 (2010-03-28)
* Version 1.6 (2015-05-05)
*
*/
@ -62,4 +62,10 @@ public interface OutputFile {
* @return true if this document is a master document
*/
public boolean isMasterDocument();
/** Test whether this document contains mathematical formulas
*
* @return true if the document contains formulas
*/
public boolean containsMath();
}

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
* Copyright: 2002-2014 by Henrik Just
* Copyright: 2002-2015 by Henrik Just
*
* All Rights Reserved.
*
* Version 1.4 (2014-09-05)
* Version 1.6 (2015-05-05)
*
*/
@ -150,7 +150,7 @@ public class BinaryGraphicsDocument implements OutputFile {
*
* @return The document name or URL
*/
public String getFileName() {
@Override public String getFileName() {
return sFileName;
}
@ -158,7 +158,7 @@ public class BinaryGraphicsDocument implements OutputFile {
*
* @return The MIME type or null if this is unknown
*/
public String getMIMEType() {
@Override public String getMIMEType() {
return sMimeType;
}
@ -166,7 +166,15 @@ public class BinaryGraphicsDocument implements OutputFile {
*
* @return false - a graphics file is never a master document
*/
public boolean isMasterDocument() {
@Override public boolean isMasterDocument() {
return false;
}
/** Does this document contain formulas?
*
* @return false - a graphics file does not contain formulas
*/
@Override public boolean containsMath() {
return false;
}
}

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
* Copyright: 2002-2014 by Henrik Just
* Copyright: 2002-2015 by Henrik Just
*
* All Rights Reserved.
*
* Version 1.4 (2014-08-26)
* Version 1.6 (2015-05-05)
*
*/
@ -177,7 +177,7 @@ public class DOMDocument implements OutputFile {
*
* @return The file name of <code>Document</code>.
*/
public String getFileName() {
@Override public String getFileName() {
return fileName;
}
@ -351,11 +351,15 @@ public class DOMDocument implements OutputFile {
}
// We need these because we implement OutputFile
public String getMIMEType() {
@Override public String getMIMEType() {
return "";
}
public boolean isMasterDocument() {
@Override public boolean isMasterDocument() {
return false;
}
@Override public boolean containsMath() {
return false;
}

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
* Copyright: 2002-2014 by Henrik Just
* Copyright: 2002-2015 by Henrik Just
*
* All Rights Reserved.
*
* Version 1.6 (2014-11-28)
* Version 1.6 (2015-05-05)
*
*/
@ -86,17 +86,21 @@ public class BibTeXDocument implements OutputFile {
*
* @return The <code>Document</code> name with file extension.
*/
public String getFileName() {
@Override public String getFileName() {
return new String(sName + FILE_EXTENSION);
}
public String getMIMEType() {
@Override public String getMIMEType() {
return MIMETypes.BIBTEX;
}
public boolean isMasterDocument() {
@Override public boolean isMasterDocument() {
return bIsMaster;
}
@Override public boolean containsMath() {
return false;
}
/**
* <p>Writes out the <code>Document</code> content to the specified

View file

@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
* version 1.6 (2015-04-21)
* version 1.6 (2015-05-05)
*
*/
@ -40,7 +40,8 @@ import writer2latex.xhtml.XhtmlConfig;
/** This class repackages an XHTML document into EPUB format.
* Some filenames are hard wired in this implementation: The main directory is OEBPS and
* the OPF and NCX files are book.opf and book.ncx respectively
* the OPF and NCX files are book.opf and book.ncx respectively; finally the EPUB 3 navigation
* document is nav.xhtml
*/
public class EPUBWriter implements OutputFile {
@ -50,7 +51,7 @@ public class EPUBWriter implements OutputFile {
private ConverterResult xhtmlResult;
private String sFileName;
private int nVersion;
//private XhtmlConfig config;
private XhtmlConfig config;
/** Create a new <code>EPUBWriter</code> based on a <code>ConverterResult</code>.
*
@ -63,7 +64,7 @@ public class EPUBWriter implements OutputFile {
this.xhtmlResult = xhtmlResult;
this.sFileName = Misc.removeExtension(sFileName);
this.nVersion = nVersion;
//this.config = config;
this.config = config;
}
// Implement OutputFile
@ -79,6 +80,11 @@ public class EPUBWriter implements OutputFile {
@Override public boolean isMasterDocument() {
return true;
}
@Override public boolean containsMath() {
// We don't really care about this
return nVersion==3;
}
@Override public void write(OutputStream os) throws IOException {
ZipOutputStream zos = new ZipOutputStream(os);
@ -100,7 +106,7 @@ public class EPUBWriter implements OutputFile {
zos.closeEntry();
// Then manifest
OPFWriter manifest = new OPFWriter(xhtmlResult,nVersion);
OPFWriter manifest = new OPFWriter(xhtmlResult,nVersion,config);
ZipEntry manifestEntry = new ZipEntry("OEBPS/book.opf");
zos.putNextEntry(manifestEntry);
writeZipEntry(manifest,zos);
@ -114,7 +120,7 @@ public class EPUBWriter implements OutputFile {
writeZipEntry(navigation,zos);
zos.closeEntry();
}
else {
if (nVersion!=3 || config.includeNCX()) {
OutputFile ncx = new NCXWriter(xhtmlResult, manifest.getUid());
ZipEntry ncxEntry = new ZipEntry("OEBPS/book.ncx");
zos.putNextEntry(ncxEntry);

View file

@ -20,15 +20,20 @@
*
* All Rights Reserved.
*
* version 1.6 (2015-04-21)
* version 1.6 (2015-05-05)
*
*/
package writer2latex.epub;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.TimeZone;
import java.util.UUID;
import javax.xml.parsers.DocumentBuilder;
@ -45,13 +50,14 @@ import writer2latex.api.ConverterResult;
import writer2latex.api.OutputFile;
import writer2latex.base.DOMDocument;
import writer2latex.util.Misc;
import writer2latex.xhtml.XhtmlConfig;
/** This class writes an OPF-file for an EPUB document (see http://www.idpf.org/2007/opf/OPF_2.0_final_spec.html).
*/
public class OPFWriter extends DOMDocument {
private String sUID=null;
public OPFWriter(ConverterResult cr, int nVersion) {
public OPFWriter(ConverterResult cr, int nVersion, XhtmlConfig config) {
super("book", "opf");
// create DOM
@ -78,8 +84,6 @@ public class OPFWriter extends DOMDocument {
pack.setAttribute("xmlns","http://www.idpf.org/2007/opf");
pack.setAttribute("unique-identifier", "BookId");
// TODO: http://sketchytech.blogspot.dk/2014/03/epub2-to-epub3-lessons-learnt-in.html
// Meta data, at least dc:title, dc:language and dc:identifier are required by the specification
// For EPUB 3, also dcterms:modified is required
Element metadata = contentDOM.createElement("metadata");
@ -94,9 +98,10 @@ public class OPFWriter extends DOMDocument {
appendElement(contentDOM, metadata, "dc:language", cr.getMetaData().getLanguage());
// Modification (required in EPUB 3)
appendElement(contentDOM, metadata, "meta", cr.getMetaData().getDate())
.setAttribute("property", "dcterms:modified");
if (nVersion==3) {
appendElement(contentDOM, metadata, "meta", getCurrentDateTime())
.setAttribute("property", "dcterms:modified");
}
// Subject and keywords in ODF both map to Dublin core subjects
if (cr.getMetaData().getSubject().length()>0) {
@ -286,7 +291,7 @@ public class OPFWriter extends DOMDocument {
pack.appendChild(manifest);
Element spine = contentDOM.createElement("spine");
if (nVersion!=3) { // Use old NCX file for navigation
if (nVersion!=3 || config.includeNCX()) { // Use old NCX file for navigation
spine.setAttribute("toc", "ncx");
}
pack.appendChild(spine);
@ -321,6 +326,10 @@ public class OPFWriter extends DOMDocument {
String sId = "text"+(++nMasterCount);
item.setAttribute("id", sId);
if (nVersion==3 && file.containsMath()) {
item.setAttribute("properties","mathml");
}
Element itemref = contentDOM.createElement("itemref");
itemref.setAttribute("idref", sId);
spine.appendChild(itemref);
@ -338,7 +347,7 @@ public class OPFWriter extends DOMDocument {
item.setAttribute("properties", "nav");
manifest.appendChild(item);
}
else { // Include old NCX file
if (nVersion!=3 || config.includeNCX()) { // Include old NCX file
Element item = contentDOM.createElement("item");
item.setAttribute("href", "book.ncx");
item.setAttribute("media-type", "application/x-dtbncx+xml");
@ -398,5 +407,13 @@ public class OPFWriter extends DOMDocument {
guide.appendChild(reference);
}
}
// Get the current date and time in the required format
private String getCurrentDateTime() {
Date date = Calendar.getInstance().getTime();
DateFormat formatter = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
formatter.setTimeZone(TimeZone.getTimeZone("UTC"));
return formatter.format(date);
}
}

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
* Copyright: 2002-2014 by Henrik Just
* Copyright: 2002-2015 by Henrik Just
*
* All Rights Reserved.
*
* Version 1.4 (2014-08-27)
* Version 1.6 (2015-05-05)
*
*/
@ -81,17 +81,22 @@ public class LaTeXDocument implements OutputFile {
*
* @return The <code>Document</code> name with file extension.
*/
public String getFileName() {
@Override public String getFileName() {
return new String(sName + FILE_EXTENSION);
}
public String getMIMEType() {
@Override public String getMIMEType() {
return MIMETypes.LATEX;
}
public boolean isMasterDocument() {
@Override public boolean isMasterDocument() {
return bIsMaster;
}
@Override public boolean containsMath() {
// We don't use this information currently
return true;
}
/**
* <p>Writes out the <code>Document</code> content to the specified

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
* Copyright: 2002-2014 by Henrik Just
* Copyright: 2002-2015 by Henrik Just
*
* All Rights Reserved.
*
* Version 1.4 (2014-09-16)
* Version 1.6 (2015-05-05)
*
*/
@ -54,15 +54,19 @@ public class CssDocument implements OutputFile {
sContent = "";
}
public String getFileName() {
@Override public String getFileName() {
return sName;
}
public String getMIMEType() {
@Override public String getMIMEType() {
return "text/css";
}
public boolean isMasterDocument() {
@Override public boolean isMasterDocument() {
return false;
}
@Override public boolean containsMath() {
return false;
}

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
* Copyright: 2002-2014 by Henrik Just
* Copyright: 2002-2015 by Henrik Just
*
* All Rights Reserved.
*
* Version 1.4 (2014-11-24)
* Version 1.6 (2015-05-05)
*
*/
@ -187,8 +187,8 @@ public class MathConverter extends ConverterHelper {
if (onode.hasAttribute("xmlns:math")) {
math.setAttribute("xmlns", onode.getAttribute("xmlns:math"));
}
else if (onode.hasAttribute("xmlns") && converter.nType!=XhtmlDocument.HTML5) {
// Don't include xmlns attribute in HTML5
else if (onode.hasAttribute("xmlns") && (converter.nType!=XhtmlDocument.HTML5 || converter.isOPS())) {
// Don't include xmlns attribute in HTML5, unless we are creating EPUB 3
math.setAttribute("xmlns", onode.getAttribute("xmlns"));
}
if (bAllowDisplay && onode.hasAttribute("display")) {

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
* Copyright: 2002-2010 by Henrik Just
* Copyright: 2002-2015 by Henrik Just
*
* All Rights Reserved.
*
* Version 1.2 (2010-12-21)
* Version 1.5 (2015-05-05)
*
*/
@ -33,8 +33,7 @@ import java.io.OutputStream;
import writer2latex.api.OutputFile;
import writer2latex.util.Misc;
/**
* An implementation of <code>OutputFile</code> for resource documents.
/** An implementation of <code>OutputFile</code> for resource documents.
* (A resource document is an arbitrary binary file to include in the converter result)
*/
public class ResourceDocument implements OutputFile {
@ -55,22 +54,33 @@ public class ResourceDocument implements OutputFile {
content = new byte[0];
}
public String getFileName() {
// Implement OutputFile
@Override public String getFileName() {
return sFileName;
}
public String getMIMEType() {
@Override public String getMIMEType() {
return sMediaType;
}
public boolean isMasterDocument() {
@Override public boolean isMasterDocument() {
return false;
}
@Override public boolean containsMath() {
return false;
}
public void write(OutputStream os) throws IOException {
@Override public void write(OutputStream os) throws IOException {
os.write(content);
}
/** Load the resource document bytes from an arbitrary input stream
*
* @param is the input stream
* @throws IOException if any error occurs reading the input stream
*/
public void read(InputStream is) throws IOException {
content = Misc.inputStreamToByteArray(is);
}

View file

@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
* Version 1.6 (2015-04-21)
* Version 1.6 (2015-05-05)
*
*/
@ -302,6 +302,10 @@ public class XhtmlDocument extends DOMDocument {
return true;
}
@Override public boolean containsMath() {
return bodyNode!=null ? containsMath(bodyNode) : false;
}
public Element getHeadNode() { return headNode; }
public Element getBodyNode() { return bodyNode; }
@ -959,6 +963,25 @@ public class XhtmlDocument extends DOMDocument {
default: return null;
}
}
private boolean containsMath(Element node) {
// First check the node itself
if (node.getTagName().equals("math")) {
return true;
}
// The check the children
Node child = node.getFirstChild();
while (child!=null) {
if (child.getNodeType()==Node.ELEMENT_NODE) {
if (containsMath((Element)child)) {
return true;
}
}
child = child.getNextSibling();
}
// And then look no further
return false;
}
}

View file

@ -105,7 +105,7 @@
<prop oor:name="FileFormatVersion"><value>0</value></prop>
<prop oor:name="Type"><value>writer_epub3_File</value></prop>
<prop oor:name="DocumentService"><value>com.sun.star.text.TextDocument</value></prop>
<prop oor:name="UIComponent"><value>org.openoffice.da.comp.writer2xhtml.EpubOptionsDialog</value></prop>
<prop oor:name="UIComponent"><value>org.openoffice.da.comp.writer2xhtml.Epub3OptionsDialog</value></prop>
<prop oor:name="UserData"><value>org.openoffice.da.comp.writer2xhtml.W2XExportFilter unused com.sun.star.comp.Writer.XMLOasisImporter com.sun.star.comp.Writer.XMLOasisExporter staroffice/sxw epub3</value></prop>
<prop oor:name="FilterService"><value>com.sun.star.comp.Writer.XmlFilterAdaptor</value></prop>
<prop oor:name="TemplateName"/>