multiple CDATA sections in a label are not displayed
an Open Source BPMN 2.0 / DMN 1.1 Modeler
Brought to you by:
blenta
Found in 4.0.37.
After converting BPMN files from 2.x to 4.x, I noticed the following:
Old content (encoding="UTF-8"): <conditionExpression><![CDATA[FK ≠ PAG]]></conditionExpression> (with the special character being UTF U+2260, E2 89 A0 (NOT EQUAL TO)
When converted to 4.x (encoding="WINDOWS-1252"), this is translated to:
<conditionExpression><![CDATA[FK ]]>≠<![CDATA[ PAG]]></conditionExpression>
When this file is opened in BPMN, only the first CDATA section („FK “) is displayed.
Anonymous
the web browser page changed the line that I wrote in the ticked. To be correct, the translated line is:
<conditionExpression><![CDATA[FK ]]> & # 8800 ; <![CDATA[ PAG]]>
without the spaces.
View and moderate all "bugs Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Bugs"
please start the editor using java -jar -Dfile.encoding=UTF-8 yaoqiang.jar and convert old files again.
This works. Thanks!