diff --git a/source/distro/changelog.txt b/source/distro/changelog.txt
index b8f024f..a3eedfb 100644
--- a/source/distro/changelog.txt
+++ b/source/distro/changelog.txt
@@ -2,6 +2,9 @@ Changelog for Writer2LaTeX version 1.0 -> 1.2
---------- version 1.1.2 ----------
+[all] API change: New methods getMIMEType() and getSequenceNumber() added
+ to the OutputFile interface
+
[w2x] Added user interface to edit custom configuration
---------- version 1.1.1 ----------
diff --git a/source/java/writer2latex/api/OutputFile.java b/source/java/writer2latex/api/OutputFile.java
index 78c94a5..08b1cd7 100644
--- a/source/java/writer2latex/api/OutputFile.java
+++ b/source/java/writer2latex/api/OutputFile.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-15)
*
*/
@@ -49,5 +49,20 @@ public interface OutputFile {
* @return the file name of this OutputFile
*/
public String getFileName();
+
+ /** Get the MIME type of the OutputFile
.
+ *
+ * @return string reprensentation of the MIME type
+ */
+ public String getMIMEType();
+
+ /** Get the sequence number of this OutputFile
.
+ * The master document has the sequence number 0.
+ * Other files which are part of the main document flow has a unique, positive sequence number.
+ * Auxiliary files like images always has the sequence number -1.
+ *
+ * @return the sequence number
+ */
+ public int getSequenceNumber();
}
diff --git a/source/java/writer2latex/bibtex/BibTeXDocument.java b/source/java/writer2latex/bibtex/BibTeXDocument.java
index acb4ff0..5e9270d 100644
--- a/source/java/writer2latex/bibtex/BibTeXDocument.java
+++ b/source/java/writer2latex/bibtex/BibTeXDocument.java
@@ -16,11 +16,11 @@
* 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-06-05)
+ * Version 1.2 (2010-03-15)
*
*/
@@ -36,6 +36,7 @@ import java.io.OutputStream;
import java.io.OutputStreamWriter;
import writer2latex.api.ConverterFactory;
+import writer2latex.api.MIMETypes;
import writer2latex.latex.LaTeXConfig;
import writer2latex.latex.i18n.ClassicI18n;
import writer2latex.latex.i18n.I18n;
@@ -101,6 +102,13 @@ public class BibTeXDocument implements Document {
return new String(sName + FILE_EXTENSION);
}
+ public String getMIMEType() {
+ return MIMETypes.BIBTEX;
+ }
+
+ public int getSequenceNumber() {
+ return -1;
+ }
/**
*
Writes out the Document
content to the specified
@@ -234,5 +242,6 @@ public class BibTeXDocument implements Document {
return name;
}
+
}
\ No newline at end of file
diff --git a/source/java/writer2latex/latex/ConverterPalette.java b/source/java/writer2latex/latex/ConverterPalette.java
index 812c9eb..2eb8921 100644
--- a/source/java/writer2latex/latex/ConverterPalette.java
+++ b/source/java/writer2latex/latex/ConverterPalette.java
@@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
- * Version 1.2 (2010-02-26)
+ * Version 1.2 (2010-03-15)
*
*/
@@ -57,7 +57,7 @@ public final class ConverterPalette extends ConverterBase {
// The main outfile
private LaTeXDocument texDoc;
-
+
// Various data used in conversion
private Context mainContext; // main context
private CSVList globalOptions; // global options
@@ -174,7 +174,7 @@ public final class ConverterPalette extends ConverterBase {
info = new Info(ofr,config,this);
// Create master document and add this
- this.texDoc = new LaTeXDocument(sTargetFileName,config.getWrapLinesAfter());
+ this.texDoc = new LaTeXDocument(sTargetFileName,config.getWrapLinesAfter(),0);
if (config.getBackend()!=LaTeXConfig.XETEX) {
texDoc.setEncoding(ClassicI18n.writeJavaEncoding(config.getInputencoding()));
}
diff --git a/source/java/writer2latex/latex/DrawConverter.java b/source/java/writer2latex/latex/DrawConverter.java
index d4a6799..310428d 100644
--- a/source/java/writer2latex/latex/DrawConverter.java
+++ b/source/java/writer2latex/latex/DrawConverter.java
@@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
- * Version 1.2 (2010-02-19)
+ * Version 1.2 (2010-03-15)
*
*/
@@ -490,7 +490,7 @@ public class DrawConverter extends ConverterHelper {
public void flushFloatingFrames(LaTeXDocumentPortion ldp, Context oc) {
// todo: fix language
- LinkedList floatingFrames = floatingFramesStack.peek();
+ LinkedList
LaTeXDocument
.
* @param nWrap Lines should be wrapped after this position
+ * @param nSequenceNumber this file has this sequence number in the result
*/
- public LaTeXDocument(String sName,int nWrap) {
+ public LaTeXDocument(String sName,int nWrap, int nSequenceNumber) {
this.nWrap = nWrap;
this.sName = trimDocumentName(sName);
+ this.nSequenceNumber = nSequenceNumber;
contents = new LaTeXDocumentPortion(true);
}
@@ -95,7 +100,14 @@ public class LaTeXDocument implements Document {
return new String(sName + FILE_EXTENSION);
}
-
+ public String getMIMEType() {
+ return MIMETypes.LATEX;
+ }
+
+ public int getSequenceNumber() {
+ return nSequenceNumber;
+ }
+
/**
* Writes out the Document
content to the specified
* OutputStream
.
Constructs a new SectionStyleConverter
.
Document
name.
* @param nType the type of document
+ * @param nSequenceNumber the sequence number of this file in the export
*/
- public XhtmlDocument(String name, int nType) {
+ public XhtmlDocument(String name, int nType, int nSequenceNumber) {
super(name,sExtension[nType]);
this.nType = nType;
+ this.nSequenceNumber = nSequenceNumber;
// Define publicId and systemId
String sPublicId = null;
String sSystemId = null;
@@ -161,6 +167,20 @@ public class XhtmlDocument extends DOMDocument {
setContentDOM(contentDOM);
}
+
+ @Override public String getMIMEType() {
+ switch (nType) {
+ case XHTML10: return MIMETypes.XHTML;
+ case XHTML11: return MIMETypes.XHTML_MATHML; // TODO: Change the constant names in MIMETypes, this is a bit confusing...
+ case XHTML_MATHML: return MIMETypes.XHTML_MATHML;
+ case XHTML_MATHML_XSL: return MIMETypes.XHTML_MATHML_XSL;
+ }
+ return "";
+ }
+
+ @Override public int getSequenceNumber() {
+ return nSequenceNumber;
+ }
public Element getHeadNode() { return headNode; }
diff --git a/source/java/writer2latex/xmerge/BinaryGraphicsDocument.java b/source/java/writer2latex/xmerge/BinaryGraphicsDocument.java
index c1e05a0..f4c7756 100644
--- a/source/java/writer2latex/xmerge/BinaryGraphicsDocument.java
+++ b/source/java/writer2latex/xmerge/BinaryGraphicsDocument.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-15)
*
*/
@@ -161,5 +161,15 @@ public class BinaryGraphicsDocument implements Document {
* @return String The document's MIME type.
*/
public String getDocumentMIMEType(){ return sMimeType; }
+
+
+ public String getMIMEType() {
+ return sMimeType;
+ }
+
+
+ public int getSequenceNumber() {
+ return -1;
+ }
}
\ No newline at end of file
diff --git a/source/java/writer2latex/xmerge/DOMDocument.java b/source/java/writer2latex/xmerge/DOMDocument.java
index 04f2acd..060914e 100644
--- a/source/java/writer2latex/xmerge/DOMDocument.java
+++ b/source/java/writer2latex/xmerge/DOMDocument.java
@@ -37,7 +37,7 @@
************************************************************************/
// This version is adapted for writer2latex
-// Version 1.0 (2008-11-23)
+// Version 1.2 (2010-03-15)
package writer2latex.xmerge;
@@ -393,6 +393,15 @@ public class DOMDocument
return doc;
}
+ // TODO: We need these because we implement OutputFile (don't do that..)
+ public String getMIMEType() {
+ return "";
+ }
+
+ public int getSequenceNumber() {
+ return -1;
+ }
+
}
diff --git a/source/java/writer2latex/xmerge/OfficeDocument.java b/source/java/writer2latex/xmerge/OfficeDocument.java
index df50dfe..09ce812 100644
--- a/source/java/writer2latex/xmerge/OfficeDocument.java
+++ b/source/java/writer2latex/xmerge/OfficeDocument.java
@@ -37,7 +37,7 @@
************************************************************************/
// This version is adapted for Writer2LaTeX
-// Version 1.0 (2008-11-22)
+// Version 1.2 (2010-03-15)
package writer2latex.xmerge;
@@ -1282,5 +1282,15 @@ public class OfficeDocument
manifestRoot.appendChild(docRoot);
}
+
+ // TODO: We need these because we implement OutputFile (but in fact we shouldn't)
+ public String getMIMEType() {
+ return "";
+ }
+
+
+ public int getSequenceNumber() {
+ return -1;
+ }
}
diff --git a/source/oxt/writer2latex/W2LDialogs2/Characters.xdl b/source/oxt/writer2latex/W2LDialogs2/Characters.xdl
index 65eb2c9..68d14f1 100644
--- a/source/oxt/writer2latex/W2LDialogs2/Characters.xdl
+++ b/source/oxt/writer2latex/W2LDialogs2/Characters.xdl
@@ -8,7 +8,7 @@