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 188408 - Code completion for JSTL tag-lib directives is currently using old URLs
Summary: Code completion for JSTL tag-lib directives is currently using old URLs
Status: RESOLVED FIXED
Alias: None
Product: javaee
Classification: Unclassified
Component: JSP (show other bugs)
Version: 6.x
Hardware: PC Mac OS X
: P2 normal (vote)
Assignee: Tomasz Slota
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-07-06 14:42 UTC by Troy Giunipero
Modified: 2010-07-08 03:26 UTC (History)
1 user (show)

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 Troy Giunipero 2010-07-06 14:42:34 UTC
Code completion for JSTL tag-lib directives is currently using old URLs.

  <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
  <%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt" %>

  [ applies to JSTL 1.0 ]

 should be:

  <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  <%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>

  [ applies to JSTL 1.1 and 1.2 ]


To test:

  1. In a JSP page, type in '<c:set' then press Ctrl-Space.
  2. ...  ...  ...  ...  .. '<fmt:setLocale' then press Ctrl-Space.
Comment 1 Tomasz Slota 2010-07-07 12:40:48 UTC
confirmed
Comment 2 Tomasz Slota 2010-07-07 14:01:58 UTC
fixed (the fix will be available in NB 6.10)

http://hg.netbeans.org/web-main/rev/0fdfa90b5939
Comment 3 Quality Engineering 2010-07-08 03:26:45 UTC
Integrated into 'main-golden', will be available in build *201007080001* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)
Changeset: http://hg.netbeans.org/main/rev/0fdfa90b5939
User: Tomasz Slota <tslota@netbeans.org>
Log: #188408: Code completion for JSTL tag-lib directives is currently using old URLs