Robert B. wrote:
We are running xmlmind from the command line using a custom msbuild task. This is working well, apart from one (minor) niggle.During executing of xmlmind, the following text gets sent to stderr, rather than to stdout: Making portrait pages on A4 paper (210mmx297mm) The result of this is that even though the rendering process executed correctly, the msbuild task fails because it has received error output. We work around it by ignoring the error, but it isn’t ideal. I think this is a defect.
This message is "printed" by XSL code: --- <xsl:template name="root.messages"> <!-- redefine this any way you'd like to output messages --> <!-- DO NOT OUTPUT ANYTHING FROM THIS TEMPLATE --> <xsl:message> <xsl:text>Making </xsl:text> <xsl:value-of select="$page.orientation"/> <xsl:text> pages on </xsl:text> <xsl:value-of select="$paper.type"/> <xsl:text> paper (</xsl:text> <xsl:value-of select="$page.width"/> <xsl:text>x</xsl:text> <xsl:value-of select="$page.height"/> <xsl:text>)</xsl:text> </xsl:message> </xsl:template> --- found in <XXE_install_dir>/addon/config/docbook5/xsl/fo/docbook.xsl.We, XMLmind, have no way to control where (stderr, stdout) go the messages "printed" by standard XSL function xsl:message.
The simplest to redefine <xsl:template name="root.messages"> as an empty xsl:template. This will suppress the "Making..." message.
This is also done in attached "docbook_MB.xsl", so this customization file should solve both the two issues you have reported.
docbook_MB.xsl
Description: application/xslt
-- XMLmind XML Editor Support List xmleditor-support@xmlmind.com http://www.xmlmind.com/mailman/listinfo/xmleditor-support