On 07/09/2019 09:11 AM, Luis Gustavo Nardin wrote:

I am using the Ebook Compiler v1.3.2 (ebookc-1_3_2-plus-fop.zip).

When I compile my ebook using the command

./bin/ebookc -fop ./plus/fop-2.3/fop/fop ExperimentsTutorial.ebook
ExperimentsTutorial.pdf

Note that if you have installed the "ebookc-1_3_2-plus-fop.zip" distribution, there is no need to specify "-fop ./plus/fop-2.3/fop/fop". Ebookc will automatically find the bundled FOP.




I receive the following error

ebookc: ERROR: [ERROR] FOUserAgent - *Invalid property value encountered
in margin-top="auto"*: org.apache.fop.fo.expr.PropertyException:
file:/tmp/ebookc17627159888600828070_d/ExperimentsTutorial.fo:1:13450:
No conversion defined auto; property:'margin-top' (See position 1:13682)
<org.apache.fop.fo.expr.PropertyException:
file:/tmp/ebookc17627159888600828070_d/ExperimentsTutorial.fo:1:13450:
*No conversion defined auto;
property:'margin-top'*>org.apache.fop.fo.expr.PropertyException:
file:/tmp/ebookc17627159888600828070_d/ExperimentsTutorial.fo:1:13450:
*No conversion defined auto; property:'margin-top'*
ebookc: ERROR:  at
org.apache.fop.fo.properties.PropertyMaker.make(PropertyMaker.java:446)
ebookc: ERROR:  at
org.apache.fop.fo.PropertyList.convertAttributeToProperty(PropertyList.java:499)
ebookc: ERROR:  at
org.apache.fop.fo.PropertyList.addAttributesToList(PropertyList.java:386)
ebookc: ERROR:  at org.apache.fop.fo.FObj.processNode(FObj.java:124)
ebookc: ERROR:  at
org.apache.fop.fo.FOTreeBuilder$MainFOHandler.startElement(FOTreeBuilder.java:291)
ebookc: ERROR:  at
org.apache.fop.fo.FOTreeBuilder.startElement(FOTreeBuilder.java:179)
ebookc: ERROR:  at
org.apache.xalan.transformer.TransformerIdentityImpl.startElement(TransformerIdentityImpl.java:1073)
ebookc: ERROR:  at
org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
ebookc: ERROR:  at
org.apache.xerces.xinclude.XIncludeHandler.startElement(Unknown Source)
ebookc: ERROR:  at
org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanStartElement(Unknown
Source)
ebookc: ERROR:  at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown
Source)
ebookc: ERROR:  at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown
Source)
ebookc: ERROR:  at
org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
ebookc: ERROR:  at
org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
ebookc: ERROR:  at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
ebookc: ERROR:  at
org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
ebookc: ERROR:  at
org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
ebookc: ERROR:  at
org.apache.xalan.transformer.TransformerIdentityImpl.transform(TransformerIdentityImpl.java:485)
ebookc: ERROR:  at
org.apache.fop.cli.InputHandler.transformTo(InputHandler.java:293)
ebookc: ERROR:  at
org.apache.fop.cli.InputHandler.renderTo(InputHandler.java:116)
ebookc: ERROR:  at org.apache.fop.cli.Main.startFOP(Main.java:186)
ebookc: ERROR:  at org.apache.fop.cli.Main.main(Main.java:217)
ebookc: ERROR:


Yes, that's right.




I commented out the "margin-top: auto;" in the CSS file (see the
ebook.css file attached) and the Ebook compiles successfully.

I then remove the comments to the "margin-top: auto;" statement in the
CSS file and used the XMLEditor to convert the same Ebook to PDF.
Surprisingly the conversion was successful even with the margin-top set
to auto.

Ebookc and XMLmind XML Editor behave the same in that respect. The only difference is that you haven't noticed the FOP errors reported by XMLmind XML Editor. See attached screenshot showing XMLmind XML Editor command execution log. (More info here: https://www.xmlmind.com/xmleditor/_distrib/doc/help/statusTool.html)




I would like to continue using the Ebookc instead of the XMLEditor to
convert the Ebook to PDF, so I can automate the process. Hence, is there
a workaround to use Ebookc and have the margin-top set to auto?


These "Invalid property value" errors are specific to FOP and you can ignore them. They are not fatal errors. The PDF file is anyway successfully generated. Therefore you may continue using ebookc.



--> If you really want to suppress these ugly errors, simply add a "@media FOP" block as a workaround. We already did that for margin-left=auto and margin-right=auto. Example:

---
@media FOP {
    /*
     * FOP complains about margin:auto.
     */
    .xmtable,
    table[border="1"],
    figure {
        margin-left: 0;
        margin-right: 0;
    }
}
---



--> Alternatively, XMLmind XML Editor may be used as a command line tool. The command line version of XMLmind XML Editor is called "xxetool". See "The xxetool command-line utility". https://www.xmlmind.com/xmleditor/_distrib/doc/xxetool/index.html


--
XMLmind XML Editor Support List
xmleditor-support@xmlmind.com
https://www.xmlmind.com/mailman/listinfo/xmleditor-support

Reply via email to