Writer2xhtml custom config ui + EPUB export

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@55 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2010-03-29 11:07:24 +00:00
parent a58ea7fa19
commit ce61f7bc3b
41 changed files with 1118 additions and 212 deletions

View file

@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
* Version 1.2 (2010-03-15)
* Version 1.2 (2010-03-28)
*
*/
@ -166,5 +166,9 @@ public class BinaryGraphicsDocument implements Document {
public String getMIMEType() {
return sMimeType;
}
public boolean isMasterDocument() {
return false;
}
}

View file

@ -393,10 +393,14 @@ public class DOMDocument
return doc;
}
// We need this because we implement OutputFile
// We need these because we implement OutputFile
public String getMIMEType() {
return "";
}
public boolean isMasterDocument() {
return false;
}
}

View file

@ -37,7 +37,7 @@
************************************************************************/
// This version is adapted for Writer2LaTeX
// Version 1.2 (2010-03-15)
// Version 1.2 (2010-03-28)
package writer2latex.xmerge;
@ -1287,6 +1287,10 @@ public class OfficeDocument
public String getMIMEType() {
return "";
}
public boolean isMasterDocument() {
return false;
}
}