History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: IDEADEV-6386
Type: Bug Bug
Status: Reopened Reopened
Priority: Normal Normal
Assignee: Eugene Zhuravlev
Reporter: Serge Baranov
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
IDEA: Development

Spurious closing angle brackets in xml files don't show up as errors

Created: 13 Jun 06 22:53   Updated: 06 Nov 08 23:33
Component/s: Ant Integration, XML editing
Fix Version/s: Undefined

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown

Build: 4,192
Fixed in build: 5,334
Severity: Medium


 Description  « Hide
Miguel Munoz reports:

In an xml file, if I follow a valid > with another > character, the file won't work anymore,
but IntelliJ's error checking doesn't mark it as an error.



 All   Comments   Work Log   Change History      Sort Order:
Maxim Mossienko - 14 Jun 06 19:45
This is in fact legal XML: <a>></a>

Maxim Mossienko - 15 Jun 06 20:08
This is indead a problem for ANT file, like
<project default="aaa">
<property name="bin" location="bin"/>>

<fileset id="lib.jars" dir="${lib}">
<include name="*/.jar"/>
</fileset>
<target name="aaa">

</target>
</project>