source: branches/TaskRewrite/gnuMims/web-app/WEB-INF/tld/grails.tld @ 56

Last change on this file since 56 was 56, checked in by gav, 15 years ago

Create Grails app (manual recursion to get everything in)

File size: 31.6 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
3        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4        xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
5            http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
6        version="2.0">
7    <description>The Grails (Groovy on Rails) custom tag library</description>
8    <tlib-version>0.2</tlib-version>
9    <short-name>grails</short-name>
10    <uri>http://grails.codehaus.org/tags</uri>
11
12    <tag>
13        <description>
14                Includes a javascript src file, library or inline script
15                if the tag has no src or library attributes its assumed to be an inline script
16        </description>
17        <name>javascript</name>
18        <tag-class>org.codehaus.groovy.grails.plugins.web.taglib.JavascriptTagLib</tag-class>
19        <body-content>JSP</body-content>
20        <attribute>
21            <description>A predefined JavaScript or AJAX library to load</description>
22            <name>library</name>
23            <required>false</required>
24            <rtexprvalue>true</rtexprvalue>
25        </attribute>
26        <attribute>
27            <description>A custom (or unknown to Grails) JavaScript source file</description>
28            <name>src</name>
29            <required>false</required>
30            <rtexprvalue>true</rtexprvalue>
31        </attribute>
32        <attribute>
33            <description>Since 0.6 Specifies the full base url to prepend to the library name</description>
34            <name>base</name>
35            <required>false</required>
36            <rtexprvalue>true</rtexprvalue>
37        </attribute>
38        <dynamic-attributes>false</dynamic-attributes>
39    </tag>
40   
41    <!-- 
42    <tag>
43        <description>
44        </description>
45        <name></name>
46        <tag-class></tag-class>
47        <body-content></body-content>
48        <attribute>
49                <description></description>
50                <name></name>
51                <required></required>
52                <rtexprvalue></rtexprvalue>
53        </attribute>
54    </tag>
55    -->
56    <tag>
57        <description>Escapes a javasacript string replacing single/double quotes and new lines
58        </description>
59        <name>escapeJavascript</name>
60        <tag-class>org.codehaus.groovy.grails.plugins.web.taglib.JavascriptTagLib</tag-class>
61        <body-content>JSP</body-content>
62    </tag>
63   
64    <tag>
65        <description>Creates a form submit button that submits the current form to a remote ajax call
66        </description>
67        <name>submitToRemote</name>
68        <tag-class>org.codehaus.groovy.grails.plugins.web.taglib.JavascriptTagLib</tag-class>
69        <body-content>JSP</body-content>
70        <attribute>
71            <name>name</name>
72            <required>true</required>
73            <rtexprvalue>true</rtexprvalue>
74        </attribute>
75        <attribute>
76            <name>value</name>
77            <required>false</required>
78            <rtexprvalue>true</rtexprvalue>
79        </attribute>
80        <attribute>
81            <name>id</name>
82            <required>false</required>
83            <rtexprvalue>true</rtexprvalue>
84        </attribute>
85        <attribute>
86            <name>class</name>
87            <required>false</required>
88            <rtexprvalue>true</rtexprvalue>
89        </attribute>
90    </tag>
91   
92    <tag>
93        <description>A field that sends its value to a remote link
94        </description>
95        <name>remoteField</name>
96        <tag-class>org.codehaus.groovy.grails.plugins.web.taglib.JavascriptTagLib</tag-class>
97        <body-content>JSP</body-content>
98        <attribute>
99            <name>name</name>
100            <required>true</required>
101            <rtexprvalue>true</rtexprvalue>
102        </attribute>
103        <attribute>
104            <name>value</name>
105            <required>false</required>
106            <rtexprvalue>true</rtexprvalue>
107        </attribute>
108        <attribute>
109            <name>paramName</name>
110            <required>false</required>
111            <rtexprvalue>true</rtexprvalue>
112        </attribute>
113        <attribute>
114            <name>before</name>
115            <required>false</required>
116            <rtexprvalue>true</rtexprvalue>
117        </attribute>
118        <attribute>
119            <name>after</name>
120            <required>false</required>
121            <rtexprvalue>true</rtexprvalue>
122        </attribute>
123        <attribute>
124            <name>action</name>
125            <required>false</required>
126            <rtexprvalue>true</rtexprvalue>
127        </attribute>
128        <attribute>
129            <name>controller</name>
130            <required>false</required>
131            <rtexprvalue>true</rtexprvalue>
132        </attribute>
133        <attribute>
134            <name>id</name>
135            <required>false</required>
136            <rtexprvalue>true</rtexprvalue>
137        </attribute>
138        <attribute>
139            <name>params</name>
140            <required>false</required>
141            <rtexprvalue>true</rtexprvalue>
142        </attribute>
143        <attribute>
144            <name>asynchronous</name>
145            <required>false</required>
146            <rtexprvalue>true</rtexprvalue>
147        </attribute>
148        <attribute>
149            <name>method</name>
150            <required>false</required>
151            <rtexprvalue>true</rtexprvalue>
152        </attribute>
153        <attribute>
154            <name>update</name>
155            <required>false</required>
156            <rtexprvalue>true</rtexprvalue>
157        </attribute>
158        <attribute>
159            <name>onSuccess</name>
160            <required>false</required>
161            <rtexprvalue>true</rtexprvalue>
162        </attribute>
163        <attribute>
164            <name>onFailure</name>
165            <required>false</required>
166            <rtexprvalue>true</rtexprvalue>
167        </attribute>
168        <attribute>
169            <name>onComplete</name>
170            <required>false</required>
171            <rtexprvalue>true</rtexprvalue>
172        </attribute>
173        <attribute>
174            <name>onLoading</name>
175            <required>false</required>
176            <rtexprvalue>true</rtexprvalue>
177        </attribute>
178        <attribute>
179            <name>onLoaded</name>
180            <required>false</required>
181            <rtexprvalue>true</rtexprvalue>
182        </attribute>
183        <attribute>
184            <name>onUninitialized</name>
185            <required>false</required>
186            <rtexprvalue>true</rtexprvalue>
187        </attribute>
188        <attribute>
189            <name>on_ERROR_CODE</name>
190            <required>false</required>
191            <rtexprvalue>true</rtexprvalue>
192        </attribute>
193        <dynamic-attributes>true</dynamic-attributes>
194    </tag>
195    <tag>
196        <description>
197                Enables the storing of a value into the given ${var}
198        </description>
199        <name>set</name>
200        <tag-class>org.codehaus.groovy.grails.web.taglib.GroovySetTag</tag-class>
201        <body-content>JSP</body-content>
202        <attribute>
203            <description>The value to store</description>
204            <name>value</name>
205            <required>true</required>
206            <rtexprvalue>true</rtexprvalue>
207        </attribute>
208        <attribute>
209            <description>The name of the variable to store the value in</description>
210            <name>var</name>
211            <required>true</required>
212            <rtexprvalue>true</rtexprvalue>
213        </attribute>
214        <dynamic-attributes>false</dynamic-attributes>
215    </tag>
216
217    <tag>
218        <description>
219                Enables the storing of a value into the given ${var} into the page context
220        </description>
221        <name>def</name>
222        <tag-class>org.codehaus.groovy.grails.web.taglib.GroovyDefTag</tag-class>
223        <body-content>JSP</body-content>
224        <attribute>
225            <description>The value to store</description>
226            <name>value</name>
227            <required>true</required>
228            <rtexprvalue>true</rtexprvalue>
229        </attribute>
230        <attribute>
231            <description>The name of the variable to store the value in</description>
232            <name>var</name>
233            <required>true</required>
234            <rtexprvalue>true</rtexprvalue>
235        </attribute>
236        <dynamic-attributes>false</dynamic-attributes>
237    </tag>
238
239    <tag>
240        <description>
241                Logical if tag to test whether the given condition is true
242        </description>
243        <name>if</name>
244        <tag-class>org.codehaus.groovy.grails.web.taglib.GroovyIfTag</tag-class>
245        <body-content>JSP</body-content>
246        <attribute>
247            <description>The condition to test</description>
248            <name>test</name>
249            <required>true</required>
250            <rtexprvalue>true</rtexprvalue>
251        </attribute>
252        <dynamic-attributes>false</dynamic-attributes>
253    </tag>
254
255    <tag>
256        <description>
257                Logical else tag as fallback if the if condition fails
258        </description>
259        <name>else</name>
260        <tag-class>org.codehaus.groovy.grails.web.taglib.GroovyElseTag</tag-class>
261        <body-content>JSP</body-content>
262        <dynamic-attributes>false</dynamic-attributes>
263    </tag>
264
265    <tag>
266        <description>
267                Logical elseif tag to test whether the given condition is true
268        </description>
269        <name>elseif</name>
270        <tag-class>org.codehaus.groovy.grails.web.taglib.GroovyElseIfTag</tag-class>
271        <body-content>JSP</body-content>
272        <attribute>
273            <description>The condition to test</description>
274            <name>test</name>
275            <required>true</required>
276            <rtexprvalue>true</rtexprvalue>
277        </attribute>
278        <dynamic-attributes>false</dynamic-attributes>
279    </tag>
280
281        <tag>
282        <description>
283                Tag to loop over a collection while the test expression returns true
284        </description>
285        <name>while</name>
286        <tag-class>org.codehaus.groovy.grails.web.taglib.GroovyWhileTag</tag-class>
287        <body-content>JSP</body-content>
288        <attribute>
289            <description>The condition to test</description>
290            <name>test</name>
291            <required>true</required>
292            <rtexprvalue>true</rtexprvalue>
293        </attribute>
294        <dynamic-attributes>false</dynamic-attributes>
295    </tag>
296
297    <tag>
298        <description>Iterates over the given collection</description>
299        <name>each</name>
300        <tag-class>org.codehaus.groovy.grails.web.taglib.GroovyEachTag</tag-class>
301        <body-content>JSP</body-content>
302        <attribute>
303                <description>The collection to iterate over</description>
304            <name>in</name>
305            <required>true</required>
306            <rtexprvalue>true</rtexprvalue>
307        </attribute>
308        <attribute>
309                <description>An optional var-name to reference onto the elements</description>
310            <name>var</name>
311            <required>false</required>
312            <rtexprvalue>true</rtexprvalue>
313        </attribute>
314        <attribute>
315            <name>status</name>
316            <required>false</required>
317            <rtexprvalue>true</rtexprvalue>
318        </attribute>
319        <dynamic-attributes>true</dynamic-attributes>
320    </tag>
321
322    <tag>
323        <description>Iterates over the given collection</description>
324        <name>findAll</name>
325        <tag-class>org.codehaus.groovy.grails.web.taglib.GroovyFindAllTag</tag-class>
326        <body-content>JSP</body-content>
327        <attribute>
328                <description>The collection to iterate over</description>
329            <name>in</name>
330            <required>true</required>
331            <rtexprvalue>true</rtexprvalue>
332        </attribute>
333        <attribute>
334                <description>An optional var-name to reference onto the elements</description>
335            <name>var</name>
336            <required>false</required>
337            <rtexprvalue>true</rtexprvalue>
338        </attribute>
339        <attribute>
340                <description>The expression to filter the elements to iterate over</description>
341            <name>expr</name>
342            <required>true</required>
343            <rtexprvalue>true</rtexprvalue>
344        </attribute>
345        <attribute>
346            <name>status</name>
347            <required>false</required>
348            <rtexprvalue>true</rtexprvalue>
349        </attribute>
350        <dynamic-attributes>true</dynamic-attributes>
351    </tag>
352
353        <tag>
354        <description>Iterates over the given collection and collects the elements
355                you want to work with</description>
356        <name>collect</name>
357        <tag-class>org.codehaus.groovy.grails.web.taglib.GroovyCollectTag</tag-class>
358        <body-content>JSP</body-content>
359        <attribute>
360                <description>The collection to iterate over</description>
361            <name>in</name>
362            <required>true</required>
363            <rtexprvalue>true</rtexprvalue>
364        </attribute>
365        <attribute>
366                <description>An optional var-name to reference onto the elements</description>
367            <name>var</name>
368            <required>false</required>
369            <rtexprvalue>true</rtexprvalue>
370        </attribute>
371        <attribute>
372                <description>The expression to use to collect the elements. The
373                expression must retur true to add the element to the
374                collection</description>
375            <name>expr</name>
376            <required>true</required>
377            <rtexprvalue>true</rtexprvalue>
378        </attribute>
379        <attribute>
380            <name>status</name>
381            <required>false</required>
382            <rtexprvalue>true</rtexprvalue>
383        </attribute>
384        <dynamic-attributes>false</dynamic-attributes>
385    </tag>
386
387    <tag>
388        <description>Iterates over the given collection and filters the elements
389        with a regular expression</description>
390        <name>grep</name>
391        <tag-class>org.codehaus.groovy.grails.web.taglib.GroovyGrepTag</tag-class>
392        <body-content>JSP</body-content>
393        <attribute>
394                <description>The collection to iterate over</description>
395            <name>in</name>
396            <required>true</required>
397            <rtexprvalue>true</rtexprvalue>
398        </attribute>
399        <attribute>
400                <description>An optional var-name to reference onto the elements</description>
401            <name>var</name>
402            <required>false</required>
403            <rtexprvalue>true</rtexprvalue>
404        </attribute>
405        <attribute>
406                <description>The regular expression to filter the element with. The
407                filter is a simple Groovy Regex</description>
408            <name>filter</name>
409            <required>true</required>
410            <rtexprvalue>true</rtexprvalue>
411        </attribute>
412        <attribute>
413            <name>status</name>
414            <required>false</required>
415            <rtexprvalue>true</rtexprvalue>
416        </attribute>
417        <dynamic-attributes>false</dynamic-attributes>
418    </tag>
419
420
421    <tag>
422        <name>link</name>
423        <tag-class>org.codehaus.groovy.grails.web.taglib.jsp.JspLinkTag</tag-class>
424        <body-content>JSP</body-content>
425        <attribute>
426            <name>action</name>
427            <required>false</required>
428            <rtexprvalue>true</rtexprvalue>
429        </attribute>
430        <attribute>
431            <name>controller</name>
432            <required>false</required>
433            <rtexprvalue>true</rtexprvalue>
434        </attribute>
435        <attribute>
436            <name>id</name>
437            <required>false</required>
438            <rtexprvalue>true</rtexprvalue>
439        </attribute>
440        <attribute>
441            <name>url</name>
442            <required>false</required>
443            <rtexprvalue>true</rtexprvalue>
444        </attribute>
445        <attribute>
446            <name>params</name>
447            <required>false</required>
448            <rtexprvalue>true</rtexprvalue>
449        </attribute>
450        <dynamic-attributes>true</dynamic-attributes>
451    </tag>
452    <tag>
453        <name>form</name>
454        <tag-class>org.codehaus.groovy.grails.web.taglib.jsp.JspFormTag</tag-class>
455        <body-content>JSP</body-content>
456        <attribute>
457            <name>action</name>
458            <required>false</required>
459            <rtexprvalue>true</rtexprvalue>
460        </attribute>
461        <attribute>
462            <name>controller</name>
463            <required>false</required>
464            <rtexprvalue>true</rtexprvalue>
465        </attribute>
466        <attribute>
467            <name>id</name>
468            <required>false</required>
469            <rtexprvalue>true</rtexprvalue>
470        </attribute>
471        <attribute>
472            <name>url</name>
473            <required>false</required>
474            <rtexprvalue>true</rtexprvalue>
475        </attribute>
476        <attribute>
477            <name>method</name>
478            <required>true</required>
479            <rtexprvalue>true</rtexprvalue>
480        </attribute>
481        <dynamic-attributes>true</dynamic-attributes>
482    </tag>
483    <tag>
484        <name>select</name>
485        <tag-class>org.codehaus.groovy.grails.web.taglib.jsp.JspSelectTag</tag-class>
486        <body-content>JSP</body-content>
487        <attribute>
488            <name>name</name>
489            <required>true</required>
490            <rtexprvalue>true</rtexprvalue>
491        </attribute>
492        <attribute>
493            <name>value</name>
494            <required>false</required>
495            <rtexprvalue>true</rtexprvalue>
496        </attribute>
497        <attribute>
498            <name>optionKey</name>
499            <required>false</required>
500            <rtexprvalue>true</rtexprvalue>
501        </attribute>
502        <attribute>
503            <name>optionValue</name>
504            <required>false</required>
505            <rtexprvalue>true</rtexprvalue>
506        </attribute>
507        <dynamic-attributes>true</dynamic-attributes>
508    </tag>
509    <tag>
510        <name>datePicker</name>
511        <tag-class>org.codehaus.groovy.grails.web.taglib.jsp.JspDatePickerTag</tag-class>
512        <body-content>empty</body-content>
513        <attribute>
514            <name>name</name>
515            <required>true</required>
516            <rtexprvalue>true</rtexprvalue>
517        </attribute>
518        <attribute>
519            <name>value</name>
520            <required>false</required>
521            <rtexprvalue>true</rtexprvalue>
522        </attribute>
523        <attribute>
524            <name>precision</name>
525            <required>false</required>
526            <rtexprvalue>true</rtexprvalue>
527        </attribute>
528        <dynamic-attributes>false</dynamic-attributes>
529    </tag>
530    <tag>
531        <name>currencySelect</name>
532        <tag-class>org.codehaus.groovy.grails.web.taglib.jsp.JspCurrencySelectTag</tag-class>
533        <body-content>empty</body-content>
534        <attribute>
535            <name>name</name>
536            <required>true</required>
537            <rtexprvalue>true</rtexprvalue>
538        </attribute>
539        <attribute>
540            <name>value</name>
541            <required>false</required>
542            <rtexprvalue>true</rtexprvalue>
543        </attribute>
544        <dynamic-attributes>true</dynamic-attributes>
545    </tag>
546    <tag>
547        <name>localeSelect</name>
548        <tag-class>org.codehaus.groovy.grails.web.taglib.jsp.JspLocaleSelectTag</tag-class>
549        <body-content>empty</body-content>
550        <attribute>
551            <name>name</name>
552            <required>true</required>
553            <rtexprvalue>true</rtexprvalue>
554        </attribute>
555        <attribute>
556            <name>value</name>
557            <required>false</required>
558            <rtexprvalue>true</rtexprvalue>
559        </attribute>
560        <dynamic-attributes>true</dynamic-attributes>
561    </tag>
562    <tag>
563        <name>timeZoneSelect</name>
564        <tag-class>org.codehaus.groovy.grails.web.taglib.jsp.JspTimeZoneSelectTag</tag-class>
565        <body-content>empty</body-content>
566        <attribute>
567            <name>name</name>
568            <required>true</required>
569            <rtexprvalue>true</rtexprvalue>
570        </attribute>
571        <attribute>
572            <name>value</name>
573            <required>false</required>
574            <rtexprvalue>true</rtexprvalue>
575        </attribute>
576        <dynamic-attributes>true</dynamic-attributes>
577    </tag>
578    <tag>
579        <name>checkBox</name>
580        <tag-class>org.codehaus.groovy.grails.web.taglib.jsp.JspCheckboxTag</tag-class>
581        <body-content>empty</body-content>
582        <attribute>
583            <name>name</name>
584            <required>true</required>
585            <rtexprvalue>true</rtexprvalue>
586        </attribute>
587        <attribute>
588            <name>value</name>
589            <required>true</required>
590            <rtexprvalue>true</rtexprvalue>
591        </attribute>
592        <dynamic-attributes>true</dynamic-attributes>
593    </tag>
594    <tag>
595        <name>hasErrors</name>
596        <tag-class>org.codehaus.groovy.grails.web.taglib.jsp.JspHasErrorsTag</tag-class>
597        <body-content>JSP</body-content>
598        <attribute>
599            <name>model</name>
600            <required>false</required>
601            <rtexprvalue>true</rtexprvalue>
602        </attribute>
603        <attribute>
604            <name>bean</name>
605            <required>false</required>
606            <rtexprvalue>true</rtexprvalue>
607        </attribute>
608        <attribute>
609            <name>field</name>
610            <required>false</required>
611            <rtexprvalue>true</rtexprvalue>
612        </attribute>
613        <dynamic-attributes>false</dynamic-attributes>
614    </tag>
615    <tag>
616        <name>eachError</name>
617        <tag-class>org.codehaus.groovy.grails.web.taglib.jsp.JspEachErrorTag</tag-class>
618        <body-content>JSP</body-content>
619        <attribute>
620            <name>model</name>
621            <required>false</required>
622            <rtexprvalue>true</rtexprvalue>
623        </attribute>
624        <attribute>
625            <name>bean</name>
626            <required>false</required>
627            <rtexprvalue>true</rtexprvalue>
628        </attribute>
629        <attribute>
630            <name>field</name>
631            <required>false</required>
632            <rtexprvalue>true</rtexprvalue>
633        </attribute>
634        <dynamic-attributes>false</dynamic-attributes>
635    </tag>
636    <tag>
637        <name>renderErrors</name>
638        <tag-class>org.codehaus.groovy.grails.web.taglib.jsp.JspEachErrorTag</tag-class>
639        <body-content>JSP</body-content>
640        <attribute>
641            <name>model</name>
642            <required>false</required>
643            <rtexprvalue>true</rtexprvalue>
644        </attribute>
645        <attribute>
646            <name>bean</name>
647            <required>false</required>
648            <rtexprvalue>true</rtexprvalue>
649        </attribute>
650        <attribute>
651            <name>field</name>
652            <required>false</required>
653            <rtexprvalue>true</rtexprvalue>
654        </attribute>
655        <attribute>
656            <name>as</name>
657            <required>true</required>
658            <rtexprvalue>true</rtexprvalue>
659        </attribute>
660        <dynamic-attributes>false</dynamic-attributes>
661    </tag>
662    <tag>
663        <name>message</name>
664        <tag-class>org.codehaus.groovy.grails.web.taglib.jsp.JspMessageTag</tag-class>
665        <body-content>JSP</body-content>
666        <attribute>
667            <name>code</name>
668            <required>false</required>
669            <rtexprvalue>true</rtexprvalue>
670        </attribute>
671        <attribute>
672            <name>error</name>
673            <required>false</required>
674            <rtexprvalue>true</rtexprvalue>
675        </attribute>
676        <attribute>
677            <name>default</name>
678            <required>false</required>
679            <rtexprvalue>true</rtexprvalue>
680        </attribute>
681        <dynamic-attributes>false</dynamic-attributes>
682    </tag>
683    <tag>
684        <name>remoteFunction</name>
685        <tag-class>org.codehaus.groovy.grails.web.taglib.jsp.JspRemoteFunctionTag</tag-class>
686        <body-content>empty</body-content>
687        <attribute>
688            <name>before</name>
689            <required>false</required>
690            <rtexprvalue>true</rtexprvalue>
691        </attribute>
692        <attribute>
693            <name>after</name>
694            <required>false</required>
695            <rtexprvalue>true</rtexprvalue>
696        </attribute>
697        <attribute>
698            <name>action</name>
699            <required>false</required>
700            <rtexprvalue>true</rtexprvalue>
701        </attribute>
702        <attribute>
703            <name>controller</name>
704            <required>false</required>
705            <rtexprvalue>true</rtexprvalue>
706        </attribute>
707        <attribute>
708            <name>id</name>
709            <required>false</required>
710            <rtexprvalue>true</rtexprvalue>
711        </attribute>
712        <attribute>
713            <name>url</name>
714            <required>false</required>
715            <rtexprvalue>true</rtexprvalue>
716        </attribute>
717        <attribute>
718            <name>params</name>
719            <required>false</required>
720            <rtexprvalue>true</rtexprvalue>
721        </attribute>
722        <attribute>
723            <name>asynchronous</name>
724            <required>false</required>
725            <rtexprvalue>true</rtexprvalue>
726        </attribute>
727        <attribute>
728            <name>method</name>
729            <required>false</required>
730            <rtexprvalue>true</rtexprvalue>
731        </attribute>
732        <attribute>
733            <name>update</name>
734            <required>false</required>
735            <rtexprvalue>true</rtexprvalue>
736        </attribute>
737        <attribute>
738            <name>onSuccess</name>
739            <required>false</required>
740            <rtexprvalue>true</rtexprvalue>
741        </attribute>
742        <attribute>
743            <name>onFailure</name>
744            <required>false</required>
745            <rtexprvalue>true</rtexprvalue>
746        </attribute>
747        <attribute>
748            <name>onComplete</name>
749            <required>false</required>
750            <rtexprvalue>true</rtexprvalue>
751        </attribute>
752        <attribute>
753            <name>onLoading</name>
754            <required>false</required>
755            <rtexprvalue>true</rtexprvalue>
756        </attribute>
757        <attribute>
758            <name>onLoaded</name>
759            <required>false</required>
760            <rtexprvalue>true</rtexprvalue>
761        </attribute>
762        <attribute>
763            <name>onInteractive</name>
764            <required>false</required>
765            <rtexprvalue>true</rtexprvalue>
766        </attribute>
767        <dynamic-attributes>true</dynamic-attributes>
768    </tag>
769    <tag>
770        <name>remoteLink</name>
771        <tag-class>org.codehaus.groovy.grails.web.taglib.jsp.JspRemoteLinkTag</tag-class>
772        <body-content>JSP</body-content>
773        <attribute>
774            <name>before</name>
775            <required>false</required>
776            <rtexprvalue>true</rtexprvalue>
777        </attribute>
778        <attribute>
779            <name>after</name>
780            <required>false</required>
781            <rtexprvalue>true</rtexprvalue>
782        </attribute>
783        <attribute>
784            <name>action</name>
785            <required>false</required>
786            <rtexprvalue>true</rtexprvalue>
787        </attribute>
788        <attribute>
789            <name>controller</name>
790            <required>false</required>
791            <rtexprvalue>true</rtexprvalue>
792        </attribute>
793        <attribute>
794            <name>id</name>
795            <required>false</required>
796            <rtexprvalue>true</rtexprvalue>
797        </attribute>
798        <attribute>
799            <name>url</name>
800            <required>false</required>
801            <rtexprvalue>true</rtexprvalue>
802        </attribute>
803        <attribute>
804            <name>params</name>
805            <required>false</required>
806            <rtexprvalue>true</rtexprvalue>
807        </attribute>
808        <attribute>
809            <name>asynchronous</name>
810            <required>false</required>
811            <rtexprvalue>true</rtexprvalue>
812        </attribute>
813        <attribute>
814            <name>method</name>
815            <required>false</required>
816            <rtexprvalue>true</rtexprvalue>
817        </attribute>
818        <attribute>
819            <name>update</name>
820            <required>false</required>
821            <rtexprvalue>true</rtexprvalue>
822        </attribute>
823        <attribute>
824            <name>onSuccess</name>
825            <required>false</required>
826            <rtexprvalue>true</rtexprvalue>
827        </attribute>
828        <attribute>
829            <name>onFailure</name>
830            <required>false</required>
831            <rtexprvalue>true</rtexprvalue>
832        </attribute>
833        <attribute>
834            <name>onComplete</name>
835            <required>false</required>
836            <rtexprvalue>true</rtexprvalue>
837        </attribute>
838        <attribute>
839            <name>onLoading</name>
840            <required>false</required>
841            <rtexprvalue>true</rtexprvalue>
842        </attribute>
843        <attribute>
844            <name>onLoaded</name>
845            <required>false</required>
846            <rtexprvalue>true</rtexprvalue>
847        </attribute>
848        <attribute>
849            <name>onInteractive</name>
850            <required>false</required>
851            <rtexprvalue>true</rtexprvalue>
852        </attribute>
853        <dynamic-attributes>true</dynamic-attributes>
854    </tag>
855    <tag>
856        <name>formRemote</name>
857        <tag-class>org.codehaus.groovy.grails.web.taglib.jsp.JspFormRemoteTag</tag-class>
858        <body-content>JSP</body-content>
859        <attribute>
860            <name>before</name>
861            <required>false</required>
862            <rtexprvalue>true</rtexprvalue>
863        </attribute>
864        <attribute>
865            <name>after</name>
866            <required>false</required>
867            <rtexprvalue>true</rtexprvalue>
868        </attribute>
869        <attribute>
870            <name>action</name>
871            <required>false</required>
872            <rtexprvalue>true</rtexprvalue>
873        </attribute>
874        <attribute>
875            <name>controller</name>
876            <required>false</required>
877            <rtexprvalue>true</rtexprvalue>
878        </attribute>
879        <attribute>
880            <name>id</name>
881            <required>false</required>
882            <rtexprvalue>true</rtexprvalue>
883        </attribute>
884        <attribute>
885            <name>url</name>
886            <required>false</required>
887            <rtexprvalue>true</rtexprvalue>
888        </attribute>
889        <attribute>
890            <name>params</name>
891            <required>false</required>
892            <rtexprvalue>true</rtexprvalue>
893        </attribute>
894        <attribute>
895            <name>asynchronous</name>
896            <required>false</required>
897            <rtexprvalue>true</rtexprvalue>
898        </attribute>
899        <attribute>
900            <name>method</name>
901            <required>false</required>
902            <rtexprvalue>true</rtexprvalue>
903        </attribute>
904        <attribute>
905            <name>update</name>
906            <required>false</required>
907            <rtexprvalue>true</rtexprvalue>
908        </attribute>
909        <attribute>
910            <name>onSuccess</name>
911            <required>false</required>
912            <rtexprvalue>true</rtexprvalue>
913        </attribute>
914        <attribute>
915            <name>onFailure</name>
916            <required>false</required>
917            <rtexprvalue>true</rtexprvalue>
918        </attribute>
919        <attribute>
920            <name>onComplete</name>
921            <required>false</required>
922            <rtexprvalue>true</rtexprvalue>
923        </attribute>
924        <attribute>
925            <name>onLoading</name>
926            <required>false</required>
927            <rtexprvalue>true</rtexprvalue>
928        </attribute>
929        <attribute>
930            <name>onLoaded</name>
931            <required>false</required>
932            <rtexprvalue>true</rtexprvalue>
933        </attribute>
934        <attribute>
935            <name>onInteractive</name>
936            <required>false</required>
937            <rtexprvalue>true</rtexprvalue>
938        </attribute>
939        <dynamic-attributes>true</dynamic-attributes>
940    </tag>
941    <tag>
942        <name>invokeTag</name>
943        <tag-class>org.codehaus.groovy.grails.web.taglib.jsp.JspInvokeGrailsTagLibTag</tag-class>
944        <body-content>JSP</body-content>
945        <variable>
946            <name-given>it</name-given>
947            <variable-class>java.lang.Object</variable-class>
948            <declare>true</declare>
949            <scope>NESTED</scope>
950        </variable>
951        <attribute>
952            <name>name</name>
953            <required>true</required>
954            <rtexprvalue>true</rtexprvalue>
955        </attribute>
956        <dynamic-attributes>true</dynamic-attributes>
957    </tag>
958</taglib>
959
Note: See TracBrowser for help on using the repository browser.