Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[wtp-dev] Submission for PMC approval (1.5.1) 87143 - JSP does not respect TEI VariableInfo


https://bugs.eclipse.org/bugs/show_bug.cgi?id=87143

The subject bug involves incorrect content assist proposals, validation, and searching for Java variables declared by JSP custom tags.  A custom tag can declare Java variables for scripting using an associated TagExtraInfo class.  Those variables can have scopes of AT_BEGIN, AT_END, and NESTED, specifying that the variable should be declared from the beginning of the tag's execution, at its end, or for use only within its body, respectively.  The prior behavior was incorrectly always scoping declared variables, scriptlets, and expressions to only being within the start and end tags when a start and end tag were present, in violation of the JSP specification.  The changes are contained to the internal translation code that generates the Java servlet source for use within the JSP model (it has no bearing on what is run on a server) and changes no APIs.

---
Nitin Dahyabhai

Back to the top