x-1_0-rt.tld 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <!DOCTYPE taglib
  3. PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
  4. "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">
  5. <taglib>
  6. <tlib-version>1.0</tlib-version>
  7. <jsp-version>1.2</jsp-version>
  8. <short-name>x_rt</short-name>
  9. <uri>http://java.sun.com/jstl/xml_rt</uri>
  10. <display-name>JSTL XML RT</display-name>
  11. <description>JSTL 1.0 XML library</description>
  12. <validator>
  13. <validator-class>
  14. org.apache.taglibs.standard.tlv.JstlXmlTLV
  15. </validator-class>
  16. <description>
  17. Provides validation features for JSTL XML tags.
  18. </description>
  19. </validator>
  20. <tag>
  21. <name>choose</name>
  22. <tag-class>org.apache.taglibs.standard.tag.common.core.ChooseTag</tag-class>
  23. <body-content>JSP</body-content>
  24. <description>
  25. Simple conditional tag that establishes a context for
  26. mutually exclusive conditional operations, marked by
  27. &lt;when&gt; and &lt;otherwise&gt;
  28. </description>
  29. </tag>
  30. <tag>
  31. <name>out</name>
  32. <tag-class>org.apache.taglibs.standard.tag.rt.xml.ExprTag</tag-class>
  33. <body-content>empty</body-content>
  34. <description>
  35. Like &lt;%= ... &gt;, but for XPath expressions.
  36. </description>
  37. <attribute>
  38. <name>select</name>
  39. <required>true</required>
  40. <rtexprvalue>false</rtexprvalue>
  41. </attribute>
  42. <attribute>
  43. <name>escapeXml</name>
  44. <required>false</required>
  45. <rtexprvalue>true</rtexprvalue>
  46. </attribute>
  47. </tag>
  48. <tag>
  49. <name>if</name>
  50. <tag-class>org.apache.taglibs.standard.tag.common.xml.IfTag</tag-class>
  51. <body-content>JSP</body-content>
  52. <description>
  53. XML conditional tag, which evalutes its body if the
  54. supplied XPath expression evalutes to 'true' as a boolean
  55. </description>
  56. <attribute>
  57. <name>select</name>
  58. <required>true</required>
  59. <rtexprvalue>false</rtexprvalue>
  60. </attribute>
  61. <attribute>
  62. <name>var</name>
  63. <required>false</required>
  64. <rtexprvalue>false</rtexprvalue>
  65. </attribute>
  66. <attribute>
  67. <name>scope</name>
  68. <required>false</required>
  69. <rtexprvalue>false</rtexprvalue>
  70. </attribute>
  71. </tag>
  72. <tag>
  73. <name>forEach</name>
  74. <tag-class>org.apache.taglibs.standard.tag.common.xml.ForEachTag</tag-class>
  75. <body-content>JSP</body-content>
  76. <description>
  77. XML iteration tag.
  78. </description>
  79. <attribute>
  80. <name>var</name>
  81. <required>false</required>
  82. <rtexprvalue>false</rtexprvalue>
  83. </attribute>
  84. <attribute>
  85. <name>select</name>
  86. <required>true</required>
  87. <rtexprvalue>false</rtexprvalue>
  88. </attribute>
  89. </tag>
  90. <tag>
  91. <name>otherwise</name>
  92. <tag-class>org.apache.taglibs.standard.tag.common.core.OtherwiseTag</tag-class>
  93. <body-content>JSP</body-content>
  94. <description>
  95. Subtag of &lt;choose&gt; that follows &lt;when&gt; tags
  96. and runs only if all of the prior conditions evaluated to
  97. 'false'
  98. </description>
  99. </tag>
  100. <tag>
  101. <name>param</name>
  102. <tag-class>org.apache.taglibs.standard.tag.rt.xml.ParamTag</tag-class>
  103. <body-content>JSP</body-content>
  104. <description>
  105. Adds a parameter to a containing 'transform' tag's Transformer
  106. </description>
  107. <attribute>
  108. <name>name</name>
  109. <required>true</required>
  110. <rtexprvalue>true</rtexprvalue>
  111. </attribute>
  112. <attribute>
  113. <name>value</name>
  114. <required>false</required>
  115. <rtexprvalue>true</rtexprvalue>
  116. </attribute>
  117. </tag>
  118. <tag>
  119. <name>parse</name>
  120. <tag-class>org.apache.taglibs.standard.tag.rt.xml.ParseTag</tag-class>
  121. <tei-class>org.apache.taglibs.standard.tei.XmlParseTEI</tei-class>
  122. <body-content>JSP</body-content>
  123. <description>
  124. Parses XML content from 'source' attribute or 'body'
  125. </description>
  126. <attribute>
  127. <name>var</name>
  128. <required>false</required>
  129. <rtexprvalue>false</rtexprvalue>
  130. </attribute>
  131. <attribute>
  132. <name>varDom</name>
  133. <required>false</required>
  134. <rtexprvalue>false</rtexprvalue>
  135. </attribute>
  136. <attribute>
  137. <name>scope</name>
  138. <required>false</required>
  139. <rtexprvalue>false</rtexprvalue>
  140. </attribute>
  141. <attribute>
  142. <name>scopeDom</name>
  143. <required>false</required>
  144. <rtexprvalue>false</rtexprvalue>
  145. </attribute>
  146. <attribute>
  147. <name>xml</name>
  148. <required>false</required>
  149. <rtexprvalue>true</rtexprvalue>
  150. </attribute>
  151. <attribute>
  152. <name>systemId</name>
  153. <required>false</required>
  154. <rtexprvalue>true</rtexprvalue>
  155. </attribute>
  156. <attribute>
  157. <name>filter</name>
  158. <required>false</required>
  159. <rtexprvalue>true</rtexprvalue>
  160. </attribute>
  161. </tag>
  162. <tag>
  163. <name>set</name>
  164. <tag-class>org.apache.taglibs.standard.tag.common.xml.SetTag</tag-class>
  165. <body-content>empty</body-content>
  166. <description>
  167. Saves the result of an XPath expression evaluation in a 'scope'
  168. </description>
  169. <attribute>
  170. <name>var</name>
  171. <required>true</required>
  172. <rtexprvalue>false</rtexprvalue>
  173. </attribute>
  174. <attribute>
  175. <name>select</name>
  176. <required>false</required>
  177. <rtexprvalue>false</rtexprvalue>
  178. </attribute>
  179. <attribute>
  180. <name>scope</name>
  181. <required>false</required>
  182. <rtexprvalue>false</rtexprvalue>
  183. </attribute>
  184. </tag>
  185. <tag>
  186. <name>transform</name>
  187. <tag-class>org.apache.taglibs.standard.tag.rt.xml.TransformTag</tag-class>
  188. <tei-class>org.apache.taglibs.standard.tei.XmlTransformTEI</tei-class>
  189. <body-content>JSP</body-content>
  190. <description>
  191. Conducts a transformation given a source XML document
  192. and an XSLT stylesheet
  193. </description>
  194. <attribute>
  195. <name>var</name>
  196. <required>false</required>
  197. <rtexprvalue>false</rtexprvalue>
  198. </attribute>
  199. <attribute>
  200. <name>scope</name>
  201. <required>false</required>
  202. <rtexprvalue>false</rtexprvalue>
  203. </attribute>
  204. <attribute>
  205. <name>result</name>
  206. <required>false</required>
  207. <rtexprvalue>true</rtexprvalue>
  208. </attribute>
  209. <attribute>
  210. <name>xml</name>
  211. <required>false</required>
  212. <rtexprvalue>true</rtexprvalue>
  213. </attribute>
  214. <attribute>
  215. <name>xmlSystemId</name>
  216. <required>false</required>
  217. <rtexprvalue>true</rtexprvalue>
  218. </attribute>
  219. <attribute>
  220. <name>xslt</name>
  221. <required>false</required>
  222. <rtexprvalue>true</rtexprvalue>
  223. </attribute>
  224. <attribute>
  225. <name>xsltSystemId</name>
  226. <required>false</required>
  227. <rtexprvalue>true</rtexprvalue>
  228. </attribute>
  229. </tag>
  230. <tag>
  231. <name>when</name>
  232. <tag-class>org.apache.taglibs.standard.tag.common.xml.WhenTag</tag-class>
  233. <body-content>JSP</body-content>
  234. <description>
  235. Subtag of &lt;choose&gt; that includes its body if its
  236. expression evalutes to 'true'
  237. </description>
  238. <attribute>
  239. <name>select</name>
  240. <required>true</required>
  241. <rtexprvalue>false</rtexprvalue>
  242. </attribute>
  243. </tag>
  244. </taglib>