GRAILS-1019: Allowing expressions to be used with the 'disabled' attribute for g...
[grails.git] / src / war / WEB-INF / tld / 2.4 / spring.tld
bloba6f7bffac625ac8a117acbdd35e03cc10841b1ba
1 <?xml version="1.0" encoding="ISO-8859-1" ?>
2 <!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN" "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">
4 <taglib>
6 <tlib-version>1.1.1</tlib-version>
8 <jsp-version>1.2</jsp-version>
10 <short-name>Spring</short-name>
12 <uri>http://www.springframework.org/tags</uri>
14 <description>Spring Framework JSP Tag Library. Authors: Rod Johnson, Juergen Hoeller</description>
17 <tag>
19 <name>htmlEscape</name>
20 <tag-class>org.springframework.web.servlet.tags.HtmlEscapeTag</tag-class>
21 <body-content>JSP</body-content>
23 <description>
24 Sets default HTML escape value for the current page.
25 Overrides a "defaultHtmlEscape" context-param in web.xml, if any.
26 </description>
28 <attribute>
29 <name>defaultHtmlEscape</name>
30 <required>true</required>
31 <rtexprvalue>true</rtexprvalue>
32 </attribute>
34 </tag>
37 <tag>
39 <name>escapeBody</name>
40 <tag-class>org.springframework.web.servlet.tags.EscapeBodyTag</tag-class>
41 <body-content>JSP</body-content>
43 <description>
44 Escapes its enclosed body content, applying HTML escaping and/or JavaScript escaping.
45 The HTML escaping flag participates in a page-wide or application-wide setting
46 (i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
47 </description>
49 <attribute>
50 <name>htmlEscape</name>
51 <required>false</required>
52 <rtexprvalue>true</rtexprvalue>
53 </attribute>
55 <attribute>
56 <name>javaScriptEscape</name>
57 <required>false</required>
58 <rtexprvalue>true</rtexprvalue>
59 </attribute>
61 </tag>
64 <tag>
66 <name>message</name>
67 <tag-class>org.springframework.web.servlet.tags.MessageTag</tag-class>
68 <body-content>JSP</body-content>
70 <description>
71 Retrieves the message with the given code, or text if code isn't resolvable.
72 The HTML escaping flag participates in a page-wide or application-wide setting
73 (i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
74 </description>
76 <attribute>
77 <name>code</name>
78 <required>false</required>
79 <rtexprvalue>true</rtexprvalue>
80 </attribute>
82 <attribute>
83 <name>arguments</name>
84 <required>false</required>
85 <rtexprvalue>true</rtexprvalue>
86 </attribute>
88 <attribute>
89 <name>text</name>
90 <required>false</required>
91 <rtexprvalue>true</rtexprvalue>
92 </attribute>
94 <attribute>
95 <name>var</name>
96 <required>false</required>
97 <rtexprvalue>true</rtexprvalue>
98 </attribute>
100 <attribute>
101 <name>scope</name>
102 <required>false</required>
103 <rtexprvalue>true</rtexprvalue>
104 </attribute>
106 <attribute>
107 <name>htmlEscape</name>
108 <required>false</required>
109 <rtexprvalue>true</rtexprvalue>
110 </attribute>
112 <attribute>
113 <name>javaScriptEscape</name>
114 <required>false</required>
115 <rtexprvalue>true</rtexprvalue>
116 </attribute>
118 </tag>
121 <tag>
123 <name>theme</name>
124 <tag-class>org.springframework.web.servlet.tags.ThemeTag</tag-class>
125 <body-content>JSP</body-content>
127 <description>
128 Retrieves the theme message with the given code, or text if code isn't resolvable.
129 The HTML escaping flag participates in a page-wide or application-wide setting
130 (i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
131 </description>
133 <attribute>
134 <name>code</name>
135 <required>false</required>
136 <rtexprvalue>true</rtexprvalue>
137 </attribute>
139 <attribute>
140 <name>arguments</name>
141 <required>false</required>
142 <rtexprvalue>true</rtexprvalue>
143 </attribute>
145 <attribute>
146 <name>text</name>
147 <required>false</required>
148 <rtexprvalue>true</rtexprvalue>
149 </attribute>
151 <attribute>
152 <name>var</name>
153 <required>false</required>
154 <rtexprvalue>true</rtexprvalue>
155 </attribute>
157 <attribute>
158 <name>scope</name>
159 <required>false</required>
160 <rtexprvalue>true</rtexprvalue>
161 </attribute>
163 <attribute>
164 <name>htmlEscape</name>
165 <required>false</required>
166 <rtexprvalue>true</rtexprvalue>
167 </attribute>
169 <attribute>
170 <name>javaScriptEscape</name>
171 <required>false</required>
172 <rtexprvalue>true</rtexprvalue>
173 </attribute>
175 </tag>
178 <tag>
180 <name>hasBindErrors</name>
181 <tag-class>org.springframework.web.servlet.tags.BindErrorsTag</tag-class>
182 <body-content>JSP</body-content>
184 <description>
185 Provides Errors instance in case of bind errors.
186 The HTML escaping flag participates in a page-wide or application-wide setting
187 (i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
188 </description>
190 <variable>
191 <name-given>errors</name-given>
192 <variable-class>org.springframework.validation.Errors</variable-class>
193 </variable>
195 <attribute>
196 <name>name</name>
197 <required>true</required>
198 <rtexprvalue>true</rtexprvalue>
199 </attribute>
201 <attribute>
202 <name>htmlEscape</name>
203 <required>false</required>
204 <rtexprvalue>true</rtexprvalue>
205 </attribute>
207 </tag>
210 <tag>
212 <name>nestedPath</name>
213 <tag-class>org.springframework.web.servlet.tags.NestedPathTag</tag-class>
214 <body-content>JSP</body-content>
216 <description>
217 Sets a nested path to be used by the bind tag's path.
218 </description>
220 <variable>
221 <name-given>nestedPath</name-given>
222 <variable-class>java.lang.String</variable-class>
223 </variable>
225 <attribute>
226 <name>path</name>
227 <required>true</required>
228 <rtexprvalue>true</rtexprvalue>
229 </attribute>
231 </tag>
234 <tag>
236 <name>bind</name>
237 <tag-class>org.springframework.web.servlet.tags.BindTag</tag-class>
238 <body-content>JSP</body-content>
240 <description>
241 Provides BindStatus object for the given bind path.
242 The HTML escaping flag participates in a page-wide or application-wide setting
243 (i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
244 </description>
246 <variable>
247 <name-given>status</name-given>
248 <variable-class>org.springframework.web.servlet.support.BindStatus</variable-class>
249 </variable>
251 <attribute>
252 <name>path</name>
253 <required>true</required>
254 <rtexprvalue>true</rtexprvalue>
255 </attribute>
257 <attribute>
258 <name>ignoreNestedPath</name>
259 <required>false</required>
260 <rtexprvalue>true</rtexprvalue>
261 </attribute>
263 <attribute>
264 <name>htmlEscape</name>
265 <required>false</required>
266 <rtexprvalue>true</rtexprvalue>
267 </attribute>
269 </tag>
272 <tag>
274 <name>transform</name>
275 <tag-class>org.springframework.web.servlet.tags.TransformTag</tag-class>
276 <body-content>JSP</body-content>
278 <description>
279 Provides transformation of variables to Strings, using an appropriate
280 custom PropertyEditor from BindTag (can only be used inside BindTag).
281 The HTML escaping flag participates in a page-wide or application-wide setting
282 (i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
283 </description>
285 <attribute>
286 <name>value</name>
287 <required>true</required>
288 <rtexprvalue>true</rtexprvalue>
289 </attribute>
291 <attribute>
292 <name>var</name>
293 <required>false</required>
294 <rtexprvalue>true</rtexprvalue>
295 </attribute>
297 <attribute>
298 <name>scope</name>
299 <required>false</required>
300 <rtexprvalue>true</rtexprvalue>
301 </attribute>
303 <attribute>
304 <name>htmlEscape</name>
305 <required>false</required>
306 <rtexprvalue>true</rtexprvalue>
307 </attribute>
309 </tag>
311 </taglib>