diff --git a/build.xml b/build.xml
index 4243d97..aac1115 100644
--- a/build.xml
+++ b/build.xml
@@ -161,6 +161,7 @@
Commandline utility to convert an OpenOffice.org Writer XML file into XHTML/LaTeX/BibTeX
+ *Command line utility to convert an OpenOffice.org Writer XML file into XHTML/LaTeX/BibTeX
*The utility is invoked with the following command line:
*java -jar writer2latex.jar [options] source [target]*
Where the available options are *
-latex
, -bibtex
, -xhtml
,
- -xhtml+mathml
, -xhtml+mathml+xsl
+ -xhtml+mathml
, -xhtml+mathml+xsl
, -epub
* -recurse
* -ultraclean
, -clean
, -pdfscreen
,
* -pdfprint
, -cleanxhtml
@@ -279,6 +279,7 @@ public final class Application {
System.out.println(" -xhtml11");
System.out.println(" -xhtml+mathml");
System.out.println(" -xhtml+mathml+xsl");
+ System.out.println(" -epub");
System.out.println(" -recurse");
System.out.println(" -template[=]");
System.out.println(" -ultraclean");
@@ -312,6 +313,7 @@ public final class Application {
else if ("-xhtml11".equals(sArg)) { sTargetMIME = MIMETypes.XHTML11; }
else if ("-xhtml+mathml".equals(sArg)) { sTargetMIME = MIMETypes.XHTML_MATHML; }
else if ("-xhtml+mathml+xsl".equals(sArg)) { sTargetMIME = MIMETypes.XHTML_MATHML_XSL; }
+ else if ("-epub".equals(sArg)) { sTargetMIME = MIMETypes.EPUB; }
else if ("-recurse".equals(sArg)) { bRecurse = true; }
else if ("-ultraclean".equals(sArg)) { configFileNames.add("*ultraclean.xml"); }
else if ("-clean".equals(sArg)) { configFileNames.add("*clean.xml"); }
diff --git a/source/java/writer2latex/api/ConverterFactory.java b/source/java/writer2latex/api/ConverterFactory.java
index b90411d..70abdb0 100644
--- a/source/java/writer2latex/api/ConverterFactory.java
+++ b/source/java/writer2latex/api/ConverterFactory.java
@@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
- * Version 1.2 (2010-03-12)
+ * Version 1.2 (2010-03-29)
*
*/
@@ -33,11 +33,12 @@ public class ConverterFactory {
// Version information
private static final String VERSION = "1.1.2";
- private static final String DATE = "2010-03-14";
+ private static final String DATE = "2010-03-29";
- /** Return version information
- * @return the Writer2LaTeX version in the form
- * (major version).(minor version).(development version).(patch level)
+ /** Return the Writer2LaTeX version in the form
+ * (major version).(minor version).(patch level)application/xhtml+xml
for XHTML+MathMLapplication/xml
for XHTML+MathML using stylesheets from w3c's
* math working groupapplication/epub+zip
ConverterResult
represent a document, which is the result
* of a conversion performed by a Converter
implementation.
@@ -36,12 +37,16 @@ import java.util.Iterator;
public interface ConverterResult {
/** Get the master document
+ * Deprecated as of Writer2LaTeX 1.2: The master document is always the first document
+ * returned by the iterator
+ *
* @return OutputFile
the master document
*/
- public OutputFile getMasterDocument();
+ @Deprecated public OutputFile getMasterDocument();
/** Gets an Iterator
to access all files in the
- * ConverterResult
. This includes the master document.
+ * ConverterResult
. The iterator will return the master documents first
+ * in logical order (starting with the primary master document)
* @return an Iterator
of all files
*/
public IteratorConverterResult
+ *
+ * @return list view of the content
+ */
+ public ListConverterResult
to a directory.
* Subdirectories are created as required by the individual
* OutputFile
s.
diff --git a/source/java/writer2latex/api/MIMETypes.java b/source/java/writer2latex/api/MIMETypes.java
index 3010aea..97c9bd2 100644
--- a/source/java/writer2latex/api/MIMETypes.java
+++ b/source/java/writer2latex/api/MIMETypes.java
@@ -16,17 +16,17 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
- * Copyright: 2002-2009 by Henrik Just
+ * Copyright: 2002-2010 by Henrik Just
*
* All Rights Reserved.
*
- * Version 1.2 (2009-05-29)
+ * Version 1.2 (2010-03-29)
*
*/
package writer2latex.api;
-/* Some helpers to handle the MIME types used by OOo
+/* Some helpers to handle the MIME types used by OOo and Writer2LaTeX
*/
public class MIMETypes {
@@ -50,6 +50,7 @@ public class MIMETypes {
public static final String XHTML11="application/xhtml11";
public static final String XHTML_MATHML="application/xhtml+xml";
public static final String XHTML_MATHML_XSL="application/xml";
+ public static final String EPUB="application/epub+zip";
public static final String LATEX="application/x-latex";
public static final String BIBTEX="application/x-bibtex";
public static final String TEXT="text";
diff --git a/source/java/writer2latex/api/OutputFile.java b/source/java/writer2latex/api/OutputFile.java
index b008a8c..ae69779 100644
--- a/source/java/writer2latex/api/OutputFile.java
+++ b/source/java/writer2latex/api/OutputFile.java
@@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
- * Version 1.2 (2010-03-15)
+ * Version 1.2 (2010-03-28)
*
*/
@@ -29,7 +29,7 @@ package writer2latex.api;
import java.io.OutputStream;
import java.io.IOException;
-/** An OutputFile
represent a single file in a
+/** An OutputFile
represents a single file in a
* {@link ConverterResult}, which is output from a {@link Converter}
* implementation.
*/
@@ -56,4 +56,10 @@ public interface OutputFile {
*/
public String getMIMEType();
+ /** Test whether this document is part of the main document flow (master documents) or
+ * an auxiliary document
+ *
+ * @return true if this document is a master document
+ */
+ public boolean isMasterDocument();
}
diff --git a/source/java/writer2latex/base/ContentEntryImpl.java b/source/java/writer2latex/base/ContentEntryImpl.java
new file mode 100644
index 0000000..3a56f6c
--- /dev/null
+++ b/source/java/writer2latex/base/ContentEntryImpl.java
@@ -0,0 +1,60 @@
+/************************************************************************
+*
+* ConverterResultImpl.java
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU Lesser General Public
+* License version 2.1, as published by the Free Software Foundation.
+*
+* This library is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this library; if not, write to the Free Software
+* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+* MA 02111-1307 USA
+*
+* Copyright: 2002-2010 by Henrik Just
+*
+* All Rights Reserved.
+*
+* Version 1.2 (2010-03-24)
+*
+*/
+
+package writer2latex.base;
+
+import writer2latex.api.ContentEntry;
+import writer2latex.api.OutputFile;
+
+public class ContentEntryImpl implements ContentEntry {
+ private String sTitle;
+ private int nLevel;
+ private OutputFile file;
+ private String sTarget;
+
+ public ContentEntryImpl(String sTitle, int nLevel, OutputFile file, String sTarget) {
+ this.sTitle = sTitle;
+ this.nLevel = nLevel;
+ this.file = file;
+ this.sTarget = sTarget;
+ }
+
+ public String getTitle() {
+ return sTitle;
+ }
+
+ public int getLevel() {
+ return nLevel;
+ }
+
+ public OutputFile getFile() {
+ return file;
+ }
+
+ public String getTarget() {
+ return sTarget;
+ }
+}
diff --git a/source/java/writer2latex/base/ConverterBase.java b/source/java/writer2latex/base/ConverterBase.java
index 3d0ff68..5f16cae 100644
--- a/source/java/writer2latex/base/ConverterBase.java
+++ b/source/java/writer2latex/base/ConverterBase.java
@@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
- * Copyright: 2002-2008 by Henrik Just
+ * Copyright: 2002-2010 by Henrik Just
*
* All Rights Reserved.
*
- * Version 1.0 (2008-11-23)
+ * Version 1.2 (2010-03-29)
*
*/
@@ -31,7 +31,6 @@ import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;
import java.io.IOException;
-
import writer2latex.api.GraphicConverter;
import writer2latex.api.Converter;
import writer2latex.api.ConverterResult;
@@ -57,12 +56,12 @@ public abstract class ConverterBase implements Converter {
// The output file(s)
protected String sTargetFileName;
- protected ConverterResultImpl convertData;
+ protected ConverterResultImpl converterResult;
// Constructor
public ConverterBase() {
graphicConverter = null;
- convertData = new ConverterResultImpl();
+ converterResult = new ConverterResultImpl();
}
// Implement the interface
@@ -91,11 +90,16 @@ public abstract class ConverterBase implements Converter {
// Prepare output
this.sTargetFileName = sTargetFileName;
- convertData.reset();
+ converterResult.reset();
+
+ converterResult.setMetaData(metaData);
+ if (metaData.getLanguage()==null || metaData.getLanguage().length()==0) {
+ metaData.setLanguage(ofr.getMajorityLanguage());
+ }
convertInner();
-
- return convertData;
+
+ return converterResult;
}
// The subclass must provide the implementation
@@ -105,7 +109,7 @@ public abstract class ConverterBase implements Converter {
public ImageLoader getImageLoader() { return imageLoader; }
- public void addDocument(OutputFile doc) { convertData.addDocument(doc); }
+ public void addDocument(OutputFile doc) { converterResult.addDocument(doc); }
public EmbeddedObject getEmbeddedObject(String sHref) {
return odDoc.getEmbeddedObject(sHref);
diff --git a/source/java/writer2latex/base/ConverterResultImpl.java b/source/java/writer2latex/base/ConverterResultImpl.java
index 95a5b6e..81db1a9 100644
--- a/source/java/writer2latex/base/ConverterResultImpl.java
+++ b/source/java/writer2latex/base/ConverterResultImpl.java
@@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
-* Version 1.2 (2010-03-22)
+* Version 1.2 (2010-03-28)
*
*/
@@ -29,125 +29,164 @@ package writer2latex.base;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
+import java.util.Collections;
+import java.util.List;
import java.util.Vector;
import java.util.Iterator;
import writer2latex.api.ConverterResult;
import writer2latex.api.MetaData;
import writer2latex.api.OutputFile;
+import writer2latex.api.ContentEntry;
-/**
- * ConvertData
is used as a container for passing
- * OutputFile
objects in and out of the Convert
- * class. The ConvertData
contains a String
- * name and a Vector
of OutputFile
objects.
ConverterResultImpl
is a straightforward implementation of ConverterResult
*/
public class ConverterResultImpl implements ConverterResult {
- /**
- * Vector of OutputFile
objects.
- */
- private VectorConvertData
object.
- */
- private String name;
+ private ListOutputFile
- * objects from this class. This allows reuse of a
- * ConvertData
.
- */
- public void reset() {
- name = null;
- v.removeAllElements();
- }
-
- /**
- * Returns the OutputFile
name.
- *
- * @return The OutputFile
name.
- */
- public String getName() {
- return name;
- }
-
-
- /**
- * Sets the OutputFile
name.
- *
- * @param docName The name of the OutputFile
.
- */
- public void setName(String docName) {
- name = docName;
- }
-
- /**
- * Adds a OutputFile
to the vector.
- *
- * @param doc The OutputFile
to add.
- */
- public void addDocument(OutputFile doc) {
- if (v.size()==0) { masterDoc = doc; }
- v.add(doc);
+ private int nMasterCount;
+
+ /** Construct a new ConverterResultImpl
with empty content
+ */
+ public ConverterResultImpl() {
+ reset();
}
- /** Get the master document
+ /** Resets all data. This empties all OutputFile
and ContentEntry
objects
+ * objects from this class. This allows reuse of a ConvertResult
object.
+ */
+ public void reset() {
+ files = new VectorOutputFile
to the list
+ *
+ * @param file The OutputFile
to add.
+ */
+ public void addDocument(OutputFile file) {
+ if (file.isMasterDocument()) {
+ files.add(nMasterCount++, file);
+ }
+ else {
+ files.add(file);
+ }
+ }
+
+ /** Get the first master document
+ *
* @return OutputFile
the master document
*/
public OutputFile getMasterDocument() {
- return masterDoc;
+ return files.size()>0 ? files.get(0) : null;
}
- /** Check if a given document is the master document
- * @param doc The OutputFile
to check
- * @return true if this is the master document
- */
- public boolean isMasterDocument(OutputFile doc) {
- return doc == masterDoc;
- }
-
-
/**
- * Gets an Iterator
to access the Vector
+ * Gets an Iterator
to access the List
* of OutputFile
objects
*
* @return The Iterator
to access the
- * Vector
of OutputFile
objects.
+ * List
of OutputFile
objects.
*/
public IteratorConverterResult
+ *
+ * @param metaData the meta data
+ */
public void setMetaData(MetaData metaData) {
this.metaData = metaData;
}
-
-
- /**
- * Gets the number of OutputFile
objects currently stored
- *
- * @return The number of OutputFile
objects currently
- * stored.
- */
- public int getNumDocuments() {
- return (v.size());
+
+ /** Get the meta data of this ConverterResult
+ *
+ * @return the meta data
+ */
+ public MetaData getMetaData() {
+ return metaData;
}
+ /** Write all files to a given directory
+ *
+ * @param dir the directory to use
+ */
public void write(File dir) throws IOException {
if (dir!=null && !dir.exists()) throw new IOException("Directory does not exist");
IteratorConstructs a new BibTeX Document.
@@ -64,8 +66,9 @@ public class BibTeXDocument implements Document { * * @param sName The name of theBibTeXDocument
.
*/
- public BibTeXDocument(String sName) {
+ public BibTeXDocument(String sName, boolean bIsMaster) {
this.sName = trimDocumentName(sName);
+ this.bIsMaster = bIsMaster;
// Use default config (only ascii, no extra font packages)
i18n = new ClassicI18n(new LaTeXConfig());
}
@@ -105,6 +108,10 @@ public class BibTeXDocument implements Document {
public String getMIMEType() {
return MIMETypes.BIBTEX;
}
+
+ public boolean isMasterDocument() {
+ return bIsMaster;
+ }
/**
* Writes out the Writes out the Get the subject of this document (may be null) This class converts an OpenDocument file to an XHTML(+MathML) document<. This class converts an OpenDocument file to an XHTML(+MathML) document.Document
content to the specified
diff --git a/source/java/writer2latex/bibtex/Converter.java b/source/java/writer2latex/bibtex/Converter.java
index b2b3b2e..c8a36c5 100644
--- a/source/java/writer2latex/bibtex/Converter.java
+++ b/source/java/writer2latex/bibtex/Converter.java
@@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
- * Copyright: 2001-2008 by Henrik Just
+ * Copyright: 2001-2010 by Henrik Just
*
* All Rights Reserved.
*
- * version 1.0 (2008-11-22)
+ * version 1.2 (2010-03-28)
*
*/
@@ -70,7 +70,7 @@ public final class Converter extends ConverterBase {
public void convertInner() throws IOException {
sTargetFileName = Misc.trimDocumentName(sTargetFileName,".bib");
- BibTeXDocument bibDoc = new BibTeXDocument(sTargetFileName);
+ BibTeXDocument bibDoc = new BibTeXDocument(sTargetFileName,true);
// Collect all text:bibliography-mark elements from the content
Element doc = ofr.getContent();
@@ -85,7 +85,7 @@ public final class Converter extends ConverterBase {
}
// Add result
- convertData.addDocument(bibDoc);
+ converterResult.addDocument(bibDoc);
}
}
\ No newline at end of file
diff --git a/source/java/writer2latex/epub/ContainerWriter.java b/source/java/writer2latex/epub/ContainerWriter.java
new file mode 100644
index 0000000..9584e3a
--- /dev/null
+++ b/source/java/writer2latex/epub/ContainerWriter.java
@@ -0,0 +1,77 @@
+/************************************************************************
+ *
+ * ContainerWriter.java
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ * Copyright: 2001-2010 by Henrik Just
+ *
+ * All Rights Reserved.
+ *
+ * version 1.2 (2010-03-29)
+ *
+ */
+
+package writer2latex.epub;
+
+import javax.xml.parsers.DocumentBuilder;
+import javax.xml.parsers.DocumentBuilderFactory;
+import javax.xml.parsers.ParserConfigurationException;
+
+import org.w3c.dom.DOMImplementation;
+import org.w3c.dom.Document;
+import org.w3c.dom.DocumentType;
+import org.w3c.dom.Element;
+
+import writer2latex.xmerge.NewDOMDocument;
+
+/** This class creates the required META-INF/container.xml file for an EPUB package
+ * (see http://www.idpf.org/ocf/ocf1.0/download/ocf10.htm)
+ */
+public class ContainerWriter extends NewDOMDocument {
+
+ public ContainerWriter(String sRootFile) {
+ super("container", "xml");
+
+ // create DOM
+ Document contentDOM = null;
+ try {
+ DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance();
+ DocumentBuilder builder = builderFactory.newDocumentBuilder();
+ DOMImplementation domImpl = builder.getDOMImplementation();
+ DocumentType doctype = domImpl.createDocumentType("container","","");
+ contentDOM = domImpl.createDocument("urn:oasis:names:tc:opendocument:xmlns:container","container",doctype);
+ }
+ catch (ParserConfigurationException t) { // this should never happen
+ throw new RuntimeException(t);
+ }
+
+ // Populate the DOM tree
+ Element container = contentDOM.getDocumentElement();
+ container.setAttribute("version", "1.0");
+ container.setAttribute("xmlns","urn:oasis:names:tc:opendocument:xmlns:container");
+
+ Element rootfiles = contentDOM.createElement("rootfiles");
+ container.appendChild(rootfiles);
+
+ Element rootfile = contentDOM.createElement("rootfile");
+ rootfile.setAttribute("full-path", sRootFile);
+ rootfile.setAttribute("media-type", "application/oebps-package+xml");
+ rootfiles.appendChild(rootfile);
+
+ setContentDOM(contentDOM);
+ }
+
+}
diff --git a/source/java/writer2latex/epub/EPUBConverter.java b/source/java/writer2latex/epub/EPUBConverter.java
new file mode 100644
index 0000000..281c9a4
--- /dev/null
+++ b/source/java/writer2latex/epub/EPUBConverter.java
@@ -0,0 +1,55 @@
+/************************************************************************
+ *
+ * EPUBConverter.java
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ * Copyright: 2001-2010 by Henrik Just
+ *
+ * All Rights Reserved.
+ *
+ * version 1.2 (2010-03-28)
+ *
+ */
+
+package writer2latex.epub;
+
+import java.io.IOException;
+import java.io.InputStream;
+
+import writer2latex.api.ConverterResult;
+import writer2latex.base.ConverterResultImpl;
+import writer2latex.xhtml.Xhtml11Converter;
+
+
+/** This class converts an OpenDocument file to an EPUB document.
+ */
+public final class EPUBConverter extends Xhtml11Converter {
+
+ // Constructor
+ public EPUBConverter() {
+ super();
+ }
+
+ @Override public ConverterResult convert(InputStream is, String sTargetFileName) throws IOException {
+ ConverterResult xhtmlResult = super.convert(is, sTargetFileName);
+
+ ConverterResultImpl epubResult = new ConverterResultImpl();
+ epubResult.addDocument(new EPUBWriter(xhtmlResult,sTargetFileName));
+ epubResult.setMetaData(xhtmlResult.getMetaData());
+ return epubResult;
+ }
+
+}
\ No newline at end of file
diff --git a/source/java/writer2latex/epub/EPUBWriter.java b/source/java/writer2latex/epub/EPUBWriter.java
new file mode 100644
index 0000000..b250e42
--- /dev/null
+++ b/source/java/writer2latex/epub/EPUBWriter.java
@@ -0,0 +1,122 @@
+/************************************************************************
+ *
+ * EPUBWriter.java
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ * Copyright: 2001-2010 by Henrik Just
+ *
+ * All Rights Reserved.
+ *
+ * version 1.2 (2010-03-29)
+ *
+ */
+
+package writer2latex.epub;
+
+import java.io.ByteArrayOutputStream;
+import java.io.IOException;
+import java.io.OutputStream;
+import java.util.Iterator;
+import java.util.zip.ZipEntry;
+import java.util.zip.ZipOutputStream;
+
+import writer2latex.api.ConverterResult;
+import writer2latex.api.OutputFile;
+import writer2latex.util.Misc;
+
+/** This class repackages an XHTML document into EPUB format
+ *
+ */
+public class EPUBWriter implements OutputFile {
+
+ private static final byte[] mimeBytes = { 'a', 'p', 'p', 'l', 'i', 'c', 'a', 't', 'i', 'o', 'n', '/',
+ 'e', 'p', 'u', 'b', '+', 'z', 'i', 'p'};
+
+ private ConverterResult xhtmlResult;
+ private String sFileName;
+
+ public EPUBWriter(ConverterResult xhtmlResult, String sFileName) {
+ this.xhtmlResult = xhtmlResult;
+ this.sFileName = Misc.removeExtension(sFileName);
+ }
+
+ public String getFileName() {
+ return sFileName+".epub";
+ }
+
+ public String getMIMEType() {
+ return "application/epub+zip";
+ }
+
+ public boolean isMasterDocument() {
+ return true;
+ }
+
+ public void write(OutputStream os) throws IOException {
+ ZipOutputStream zos = new ZipOutputStream(os);
+
+ // Write MIME type as first entry
+ ZipEntry mimeEntry = new ZipEntry("mimetype");
+ mimeEntry.setMethod(ZipEntry.STORED);
+ mimeEntry.setCrc(0x2CAB616F);
+ mimeEntry.setSize(mimeBytes.length);
+ zos.putNextEntry(mimeEntry);
+ zos.write(mimeBytes, 0, mimeBytes.length);
+ zos.closeEntry();
+
+ // Write container entry next
+ OutputFile containerWriter = new ContainerWriter("OEBPS/book.opf");
+ ZipEntry containerEntry = new ZipEntry("META-INF/container.xml");
+ zos.putNextEntry(containerEntry);
+ writeZipEntry(containerWriter,zos);
+ zos.closeEntry();
+
+ // Then manifest
+ OutputFile manifest = new OPFWriter(xhtmlResult, "xxx", "book.ncx", "book.opf");
+ ZipEntry manifestEntry = new ZipEntry("OEBPS/book.opf");
+ zos.putNextEntry(manifestEntry);
+ writeZipEntry(manifest,zos);
+ zos.closeEntry();
+
+ // And content table
+ OutputFile ncx = new NCXWriter(xhtmlResult, "xxx", "book.ncx");
+ ZipEntry ncxEntry = new ZipEntry("OEBPS/book.ncx");
+ zos.putNextEntry(ncxEntry);
+ writeZipEntry(ncx,zos);
+ zos.closeEntry();
+
+ // Finally XHTML content in the OEBPS sub directory
+ IteratorLaTeXDocument
.
* @param nWrap Lines should be wrapped after this position
+ * @param bIsMaster true if this is a master document
*/
- public LaTeXDocument(String sName,int nWrap) {
+ public LaTeXDocument(String sName,int nWrap,boolean bIsMaster) {
this.nWrap = nWrap;
this.sName = trimDocumentName(sName);
+ this.bIsMaster = bIsMaster;
contents = new LaTeXDocumentPortion(true);
}
@@ -99,6 +103,10 @@ public class LaTeXDocument implements Document {
public String getMIMEType() {
return MIMETypes.LATEX;
}
+
+ public boolean isMasterDocument() {
+ return bIsMaster;
+ }
/**
* Document
content to the specified
diff --git a/source/java/writer2latex/latex/SectionConverter.java b/source/java/writer2latex/latex/SectionConverter.java
index 3fff3c6..1ad40f7 100644
--- a/source/java/writer2latex/latex/SectionConverter.java
+++ b/source/java/writer2latex/latex/SectionConverter.java
@@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
- * Version 1.2 (2010-03-15)
+ * Version 1.2 (2010-03-28)
*
*/
@@ -80,7 +80,7 @@ public class SectionConverter extends ConverterHelper {
LaTeXDocumentPortion sectionLdp = ldp;
if (sFileName!=null) {
- LaTeXDocument newDoc = new LaTeXDocument(sFileName,config.getWrapLinesAfter());
+ LaTeXDocument newDoc = new LaTeXDocument(sFileName,config.getWrapLinesAfter(),false);
if (config.getBackend()!=LaTeXConfig.XETEX) {
newDoc.setEncoding(ClassicI18n.writeJavaEncoding(config.getInputencoding()));
}
diff --git a/source/java/writer2latex/office/MetaData.java b/source/java/writer2latex/office/MetaData.java
index 052c8b5..111aba8 100644
--- a/source/java/writer2latex/office/MetaData.java
+++ b/source/java/writer2latex/office/MetaData.java
@@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
- * Version 1.2 (2010-03-15)
+ * Version 1.2 (2010-03-29)
*
*/
@@ -142,6 +142,10 @@ public class MetaData implements writer2latex.api.MetaData {
* @return the language of the document
*/
public String getLanguage() { return sLanguage; }
+
+ public void setLanguage(String sLanguage) {
+ this.sLanguage = sLanguage;
+ }
/**