This commit is contained in:
Georgy Litvinov 2020-02-19 21:06:55 +01:00
parent b2fa6ec2d5
commit 78f822d90f
3 changed files with 7 additions and 6 deletions

View file

@ -43,13 +43,13 @@ public final class EPUB3Converter extends Html5Converter {
} }
@Override public ConverterResult convert(InputStream is, String sTargetFileName) throws IOException { @Override public ConverterResult convert(InputStream is, String sTargetFileName) throws IOException {
setOPS(true); setOpenPubStructure(true);
ConverterResult xhtmlResult = super.convert(is, "chapter"); ConverterResult xhtmlResult = super.convert(is, "chapter");
return createPackage(xhtmlResult,sTargetFileName); return createPackage(xhtmlResult,sTargetFileName);
} }
@Override public ConverterResult convert(org.w3c.dom.Document dom, String sTargetFileName, boolean bDestructive) throws IOException { @Override public ConverterResult convert(org.w3c.dom.Document dom, String sTargetFileName, boolean bDestructive) throws IOException {
setOPS(true); setOpenPubStructure(true);
ConverterResult xhtmlResult = super.convert(dom, "chapter", bDestructive); ConverterResult xhtmlResult = super.convert(dom, "chapter", bDestructive);
return createPackage(xhtmlResult,sTargetFileName); return createPackage(xhtmlResult,sTargetFileName);
} }

View file

@ -43,13 +43,13 @@ public final class EPUBConverter extends Xhtml11Converter {
} }
@Override public ConverterResult convert(InputStream is, String sTargetFileName) throws IOException { @Override public ConverterResult convert(InputStream is, String sTargetFileName) throws IOException {
setOPS(true); setOpenPubStructure(true);
ConverterResult xhtmlResult = super.convert(is, "chapter"); ConverterResult xhtmlResult = super.convert(is, "chapter");
return createPackage(xhtmlResult,sTargetFileName); return createPackage(xhtmlResult,sTargetFileName);
} }
@Override public ConverterResult convert(org.w3c.dom.Document dom, String sTargetFileName, boolean bDestructive) throws IOException { @Override public ConverterResult convert(org.w3c.dom.Document dom, String sTargetFileName, boolean bDestructive) throws IOException {
setOPS(true); setOpenPubStructure(true);
ConverterResult xhtmlResult = super.convert(dom, "chapter", bDestructive); ConverterResult xhtmlResult = super.convert(dom, "chapter", bDestructive);
return createPackage(xhtmlResult,sTargetFileName); return createPackage(xhtmlResult,sTargetFileName);
} }

View file

@ -100,11 +100,12 @@ public class Converter extends BasicConverter {
// The xhtml output file(s) // The xhtml output file(s)
public int nType = XhtmlDocument.XHTML10; // the doctype public int nType = XhtmlDocument.XHTML10; // the doctype
private boolean bOPS = false; // Do we need to be OPS conforming? private boolean bOPS = false; // Do we need to be OPS conforming?
Vector<XhtmlDocument> outFiles; public Vector<XhtmlDocument> outFiles;
private int outFileIndex; private int outFileIndex;
private XhtmlDocument htmlDoc; // current outfile private XhtmlDocument htmlDoc; // current outfile
private Document htmlDOM; // current DOM, usually within htmlDoc private Document htmlDOM; // current DOM, usually within htmlDoc
public PageContainer pageContainer = null; public PageContainer pageContainer = null;
public boolean isRDF = false;
//private int nTocFileIndex = -1; //private int nTocFileIndex = -1;
//private int nAlphabeticalIndex = -1; //private int nAlphabeticalIndex = -1;
@ -242,7 +243,7 @@ public class Converter extends BasicConverter {
public L10n getL10n() { return l10n; } public L10n getL10n() { return l10n; }
public void setOPS(boolean b) { bOPS = true; } public void setOpenPubStructure(boolean b) { bOPS = true; }
public boolean isOPS() { return bOPS; } public boolean isOPS() { return bOPS; }