从14.04搬到16.04后,项目不再有效。 <fr:xforms-inspector />
与* .xsl文件中的<script></script>
冲突。请参阅下面的代码。
(Ubuntu 16.04 / tomcat8 / Orbeon Forms 2016.3.201612302139 / firefox)
问题
<fr:xforms-inspector />
突然与此标记冲突?blubb.xhtml
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:xf="http://www.w3.org/2002/xforms"
xmlns:fr="http://orbeon.org/oxf/xml/form-runner"
>
<head>
<title>Blubb</title>
<xf:model>
<xf:instance id="instance_stylesheet" src="blubb.xsl" />
</xf:model>
</head>
<body>
<fr:xforms-inspector />
</body></html>
blubb.xsl
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" indent="no" omit-xml-declaration="yes" encoding="UTF-8"/>
<xsl:template>
<html>
<!-- inserting the script tag, results in the error.
It does not matter, whats in it. -->
<script>
</script>
<head></head>
<body></body>
</html>
</xsl:template>
</xsl:stylesheet>
由orbeon从文件创建的网页下方。检查员没有代码视图,\n
也属于它。其他所有行为也是随机发生的。