Renaming
This commit is contained in:
parent
b2fa6ec2d5
commit
78f822d90f
3 changed files with 7 additions and 6 deletions
|
@ -43,13 +43,13 @@ public final class EPUB3Converter extends Html5Converter {
|
|||
}
|
||||
|
||||
@Override public ConverterResult convert(InputStream is, String sTargetFileName) throws IOException {
|
||||
setOPS(true);
|
||||
setOpenPubStructure(true);
|
||||
ConverterResult xhtmlResult = super.convert(is, "chapter");
|
||||
return createPackage(xhtmlResult,sTargetFileName);
|
||||
}
|
||||
|
||||
@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);
|
||||
return createPackage(xhtmlResult,sTargetFileName);
|
||||
}
|
||||
|
|
|
@ -43,13 +43,13 @@ public final class EPUBConverter extends Xhtml11Converter {
|
|||
}
|
||||
|
||||
@Override public ConverterResult convert(InputStream is, String sTargetFileName) throws IOException {
|
||||
setOPS(true);
|
||||
setOpenPubStructure(true);
|
||||
ConverterResult xhtmlResult = super.convert(is, "chapter");
|
||||
return createPackage(xhtmlResult,sTargetFileName);
|
||||
}
|
||||
|
||||
@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);
|
||||
return createPackage(xhtmlResult,sTargetFileName);
|
||||
}
|
||||
|
|
|
@ -100,11 +100,12 @@ public class Converter extends BasicConverter {
|
|||
// The xhtml output file(s)
|
||||
public int nType = XhtmlDocument.XHTML10; // the doctype
|
||||
private boolean bOPS = false; // Do we need to be OPS conforming?
|
||||
Vector<XhtmlDocument> outFiles;
|
||||
public Vector<XhtmlDocument> outFiles;
|
||||
private int outFileIndex;
|
||||
private XhtmlDocument htmlDoc; // current outfile
|
||||
private Document htmlDOM; // current DOM, usually within htmlDoc
|
||||
public PageContainer pageContainer = null;
|
||||
public boolean isRDF = false;
|
||||
//private int nTocFileIndex = -1;
|
||||
//private int nAlphabeticalIndex = -1;
|
||||
|
||||
|
@ -242,7 +243,7 @@ public class Converter extends BasicConverter {
|
|||
|
||||
public L10n getL10n() { return l10n; }
|
||||
|
||||
public void setOPS(boolean b) { bOPS = true; }
|
||||
public void setOpenPubStructure(boolean b) { bOPS = true; }
|
||||
|
||||
public boolean isOPS() { return bOPS; }
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue