This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 108549 - JSP Core c:if tag does not recognise closing tag
Summary: JSP Core c:if tag does not recognise closing tag
Status: RESOLVED DUPLICATE of bug 104413
Alias: None
Product: javaee
Classification: Unclassified
Component: JSP (show other bugs)
Version: 6.x
Hardware: PC Windows XP
: P3 blocker (vote)
Assignee: Marek Fukala
URL:
Keywords:
: 101746 (view as bug list)
Depends on: 87014
Blocks:
  Show dependency tree
 
Reported: 2007-06-29 22:55 UTC by massenz
Modified: 2007-07-13 11:13 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description massenz 2007-06-29 22:55:33 UTC
in the following code snippet:
<PRE>
<INPUT TYPE="checkbox" 
        <c:if test="${serviceType.selected}" >
                   checked
        </c:if>
   >${serviceType.techDesc} <br>
</PRE>
the closing tag of the c:if (NOT of the INPUT) is not recognised by the editor (syntax coloring) and is
flagged as an error ('unpaired end tag')
However, if saved and run under (eg) SJAS the resulting HTML is rendered correctly (with check boxes appropriately checked)

A few lines above, it looks as if in

<c:if test="${! empty param.message}" >

the closing tag is not recognised (syntax coloring is not correct) BUT no error is flagged.
Comment 1 Marek Fukala 2007-07-02 10:15:56 UTC
The problem is with the embedded Expression language which currently break the JSP lexing. Resolution depends on issue
#87014
Comment 2 Marek Fukala 2007-07-13 11:10:49 UTC
*** Issue 101746 has been marked as a duplicate of this issue. ***
Comment 3 Marek Fukala 2007-07-13 11:13:49 UTC

*** This issue has been marked as a duplicate of 104413 ***