Mantis Bugtracker
  

Viewing Issue Advanced Details Jump to Notes ] View Simple ] Issue History ] Print ]
ID Category Severity Reproducibility Date Submitted Last Update
0000465 [Resin] minor always 11-25-05 00:00 11-30-05 10:21
Reporter anonymous View Status public  
Assigned To ferg
Priority normal Resolution fixed Platform
Status closed   OS
Projection none   OS Version
ETA none Fixed in Version 3.0.16 Product Version 3.0.15
  Product Build 3.0.15
Summary 0000465: c:forEach works incorrectly unless <jsp/> is present
Description RSN-514
This seems to be similar to RSN-492. The following JSP code:

  <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" [^] %>
  <%
  java.util.List list = new java.util.ArrayList();
  list.add("a");
  list.add("b");
  list.add("c");
  pageContext.setAttribute("list", list);
  %>

  <c:forEach items="${list}" var="element">
    <c:out value="${element}"/>

  </c:forEach>

Erroneously produces:

  ${list}

Unless the <jsp/> directive is included in web.xml:

  <web-app>
    <jsp/>
  </web-app>

In which case it produces:

  a
  b
  c
Steps To Reproduce
Additional Information Windows XP, Sun Java 1.5.0_02-b09
Attached Files

- Relationships

- Notes
(0000487)
ferg
11-25-05 00:00

Yes, it's the same issue.

jsp/1cm7
 

- Issue History
Date Modified Username Field Change
11-25-05 00:00 user475 New Issue
11-30-05 00:00 administrator Fixed in Version  => 3.0.16
11-30-05 08:35 ferg Reporter user475 => anonymous
11-30-05 08:35 ferg Assigned To  => ferg
11-30-05 10:21 ferg Status resolved => closed


Mantis 1.0.0rc3[^]
Copyright © 2000 - 2005 Mantis Group
32 total queries executed.
27 unique queries executed.
Powered by Mantis Bugtracker