PageRenderTime 105ms CodeModel.GetById 25ms RepoModel.GetById 1ms app.codeStats 0ms

/web-app/WEB-INF/tld/c.tld

http://github.com/jdmr/mateo
text | 572 lines | 553 code | 19 blank | 0 comment | 0 complexity | 8e63760b5a26b1e7cacb96e925f75ab9 MD5 | raw file
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <taglib xmlns="http://java.sun.com/xml/ns/javaee"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_1.xsd"
  5. version="2.1">
  6. <description>JSTL 1.2 core library</description>
  7. <display-name>JSTL core</display-name>
  8. <tlib-version>1.2</tlib-version>
  9. <short-name>c</short-name>
  10. <uri>http://java.sun.com/jsp/jstl/core</uri>
  11. <validator>
  12. <description>
  13. Provides core validation features for JSTL tags.
  14. </description>
  15. <validator-class>
  16. org.apache.taglibs.standard.tlv.JstlCoreTLV
  17. </validator-class>
  18. </validator>
  19. <tag>
  20. <description>
  21. Catches any Throwable that occurs in its body and optionally
  22. exposes it.
  23. </description>
  24. <name>catch</name>
  25. <tag-class>org.apache.taglibs.standard.tag.common.core.CatchTag</tag-class>
  26. <body-content>JSP</body-content>
  27. <attribute>
  28. <description>
  29. Name of the exported scoped variable for the
  30. exception thrown from a nested action. The type of the
  31. scoped variable is the type of the exception thrown.
  32. </description>
  33. <name>var</name>
  34. <required>false</required>
  35. <rtexprvalue>false</rtexprvalue>
  36. </attribute>
  37. </tag>
  38. <tag>
  39. <description>
  40. Simple conditional tag that establishes a context for
  41. mutually exclusive conditional operations, marked by
  42. &lt;when&gt; and &lt;otherwise&gt;
  43. </description>
  44. <name>choose</name>
  45. <tag-class>org.apache.taglibs.standard.tag.common.core.ChooseTag</tag-class>
  46. <body-content>JSP</body-content>
  47. </tag>
  48. <tag>
  49. <description>
  50. Simple conditional tag, which evalutes its body if the
  51. supplied condition is true and optionally exposes a Boolean
  52. scripting variable representing the evaluation of this condition
  53. </description>
  54. <name>if</name>
  55. <tag-class>org.apache.taglibs.standard.tag.rt.core.IfTag</tag-class>
  56. <body-content>JSP</body-content>
  57. <attribute>
  58. <description>
  59. The test condition that determines whether or
  60. not the body content should be processed.
  61. </description>
  62. <name>test</name>
  63. <required>true</required>
  64. <rtexprvalue>true</rtexprvalue>
  65. <type>boolean</type>
  66. </attribute>
  67. <attribute>
  68. <description>
  69. Name of the exported scoped variable for the
  70. resulting value of the test condition. The type
  71. of the scoped variable is Boolean.
  72. </description>
  73. <name>var</name>
  74. <required>false</required>
  75. <rtexprvalue>false</rtexprvalue>
  76. </attribute>
  77. <attribute>
  78. <description>
  79. Scope for var.
  80. </description>
  81. <name>scope</name>
  82. <required>false</required>
  83. <rtexprvalue>false</rtexprvalue>
  84. </attribute>
  85. </tag>
  86. <tag>
  87. <description>
  88. Retrieves an absolute or relative URL and exposes its contents
  89. to either the page, a String in 'var', or a Reader in 'varReader'.
  90. </description>
  91. <name>import</name>
  92. <tag-class>org.apache.taglibs.standard.tag.rt.core.ImportTag</tag-class>
  93. <tei-class>org.apache.taglibs.standard.tei.ImportTEI</tei-class>
  94. <body-content>JSP</body-content>
  95. <attribute>
  96. <description>
  97. The URL of the resource to import.
  98. </description>
  99. <name>url</name>
  100. <required>true</required>
  101. <rtexprvalue>true</rtexprvalue>
  102. </attribute>
  103. <attribute>
  104. <description>
  105. Name of the exported scoped variable for the
  106. resource's content. The type of the scoped
  107. variable is String.
  108. </description>
  109. <name>var</name>
  110. <required>false</required>
  111. <rtexprvalue>false</rtexprvalue>
  112. </attribute>
  113. <attribute>
  114. <description>
  115. Scope for var.
  116. </description>
  117. <name>scope</name>
  118. <required>false</required>
  119. <rtexprvalue>false</rtexprvalue>
  120. </attribute>
  121. <attribute>
  122. <description>
  123. Name of the exported scoped variable for the
  124. resource's content. The type of the scoped
  125. variable is Reader.
  126. </description>
  127. <name>varReader</name>
  128. <required>false</required>
  129. <rtexprvalue>false</rtexprvalue>
  130. </attribute>
  131. <attribute>
  132. <description>
  133. Name of the context when accessing a relative
  134. URL resource that belongs to a foreign
  135. context.
  136. </description>
  137. <name>context</name>
  138. <required>false</required>
  139. <rtexprvalue>true</rtexprvalue>
  140. </attribute>
  141. <attribute>
  142. <description>
  143. Character encoding of the content at the input
  144. resource.
  145. </description>
  146. <name>charEncoding</name>
  147. <required>false</required>
  148. <rtexprvalue>true</rtexprvalue>
  149. </attribute>
  150. </tag>
  151. <tag>
  152. <description>
  153. The basic iteration tag, accepting many different
  154. collection types and supporting subsetting and other
  155. functionality
  156. </description>
  157. <name>forEach</name>
  158. <tag-class>org.apache.taglibs.standard.tag.rt.core.ForEachTag</tag-class>
  159. <tei-class>org.apache.taglibs.standard.tei.ForEachTEI</tei-class>
  160. <body-content>JSP</body-content>
  161. <attribute>
  162. <description>
  163. Collection of items to iterate over.
  164. </description>
  165. <name>items</name>
  166. <required>false</required>
  167. <rtexprvalue>true</rtexprvalue>
  168. <type>java.lang.Object</type>
  169. <deferred-value>
  170. <type>java.lang.Object</type>
  171. </deferred-value>
  172. </attribute>
  173. <attribute>
  174. <description>
  175. If items specified:
  176. Iteration begins at the item located at the
  177. specified index. First item of the collection has
  178. index 0.
  179. If items not specified:
  180. Iteration begins with index set at the value
  181. specified.
  182. </description>
  183. <name>begin</name>
  184. <required>false</required>
  185. <rtexprvalue>true</rtexprvalue>
  186. <type>int</type>
  187. </attribute>
  188. <attribute>
  189. <description>
  190. If items specified:
  191. Iteration ends at the item located at the
  192. specified index (inclusive).
  193. If items not specified:
  194. Iteration ends when index reaches the value
  195. specified.
  196. </description>
  197. <name>end</name>
  198. <required>false</required>
  199. <rtexprvalue>true</rtexprvalue>
  200. <type>int</type>
  201. </attribute>
  202. <attribute>
  203. <description>
  204. Iteration will only process every step items of
  205. the collection, starting with the first one.
  206. </description>
  207. <name>step</name>
  208. <required>false</required>
  209. <rtexprvalue>true</rtexprvalue>
  210. <type>int</type>
  211. </attribute>
  212. <attribute>
  213. <description>
  214. Name of the exported scoped variable for the
  215. current item of the iteration. This scoped
  216. variable has nested visibility. Its type depends
  217. on the object of the underlying collection.
  218. </description>
  219. <name>var</name>
  220. <required>false</required>
  221. <rtexprvalue>false</rtexprvalue>
  222. </attribute>
  223. <attribute>
  224. <description>
  225. Name of the exported scoped variable for the
  226. status of the iteration. Object exported is of type
  227. javax.servlet.jsp.jstl.core.LoopTagStatus. This scoped variable has nested
  228. visibility.
  229. </description>
  230. <name>varStatus</name>
  231. <required>false</required>
  232. <rtexprvalue>false</rtexprvalue>
  233. </attribute>
  234. </tag>
  235. <tag>
  236. <description>
  237. Iterates over tokens, separated by the supplied delimeters
  238. </description>
  239. <name>forTokens</name>
  240. <tag-class>org.apache.taglibs.standard.tag.rt.core.ForTokensTag</tag-class>
  241. <body-content>JSP</body-content>
  242. <attribute>
  243. <description>
  244. String of tokens to iterate over.
  245. </description>
  246. <name>items</name>
  247. <required>true</required>
  248. <rtexprvalue>true</rtexprvalue>
  249. <type>java.lang.String</type>
  250. <deferred-value>
  251. <type>java.lang.String</type>
  252. </deferred-value>
  253. </attribute>
  254. <attribute>
  255. <description>
  256. The set of delimiters (the characters that
  257. separate the tokens in the string).
  258. </description>
  259. <name>delims</name>
  260. <required>true</required>
  261. <rtexprvalue>true</rtexprvalue>
  262. <type>java.lang.String</type>
  263. </attribute>
  264. <attribute>
  265. <description>
  266. Iteration begins at the token located at the
  267. specified index. First token has index 0.
  268. </description>
  269. <name>begin</name>
  270. <required>false</required>
  271. <rtexprvalue>true</rtexprvalue>
  272. <type>int</type>
  273. </attribute>
  274. <attribute>
  275. <description>
  276. Iteration ends at the token located at the
  277. specified index (inclusive).
  278. </description>
  279. <name>end</name>
  280. <required>false</required>
  281. <rtexprvalue>true</rtexprvalue>
  282. <type>int</type>
  283. </attribute>
  284. <attribute>
  285. <description>
  286. Iteration will only process every step tokens
  287. of the string, starting with the first one.
  288. </description>
  289. <name>step</name>
  290. <required>false</required>
  291. <rtexprvalue>true</rtexprvalue>
  292. <type>int</type>
  293. </attribute>
  294. <attribute>
  295. <description>
  296. Name of the exported scoped variable for the
  297. current item of the iteration. This scoped
  298. variable has nested visibility.
  299. </description>
  300. <name>var</name>
  301. <required>false</required>
  302. <rtexprvalue>false</rtexprvalue>
  303. </attribute>
  304. <attribute>
  305. <description>
  306. Name of the exported scoped variable for the
  307. status of the iteration. Object exported is of
  308. type
  309. javax.servlet.jsp.jstl.core.LoopTag
  310. Status. This scoped variable has nested
  311. visibility.
  312. </description>
  313. <name>varStatus</name>
  314. <required>false</required>
  315. <rtexprvalue>false</rtexprvalue>
  316. </attribute>
  317. </tag>
  318. <tag>
  319. <description>
  320. Like &lt;%= ... &gt;, but for expressions.
  321. </description>
  322. <name>out</name>
  323. <tag-class>org.apache.taglibs.standard.tag.rt.core.OutTag</tag-class>
  324. <body-content>JSP</body-content>
  325. <attribute>
  326. <description>
  327. Expression to be evaluated.
  328. </description>
  329. <name>value</name>
  330. <required>true</required>
  331. <rtexprvalue>true</rtexprvalue>
  332. </attribute>
  333. <attribute>
  334. <description>
  335. Default value if the resulting value is null.
  336. </description>
  337. <name>default</name>
  338. <required>false</required>
  339. <rtexprvalue>true</rtexprvalue>
  340. </attribute>
  341. <attribute>
  342. <description>
  343. Determines whether characters &lt;,&gt;,&amp;,'," in the
  344. resulting string should be converted to their
  345. corresponding character entity codes. Default value is
  346. true.
  347. </description>
  348. <name>escapeXml</name>
  349. <required>false</required>
  350. <rtexprvalue>true</rtexprvalue>
  351. </attribute>
  352. </tag>
  353. <tag>
  354. <description>
  355. Subtag of &lt;choose&gt; that follows &lt;when&gt; tags
  356. and runs only if all of the prior conditions evaluated to
  357. 'false'
  358. </description>
  359. <name>otherwise</name>
  360. <tag-class>org.apache.taglibs.standard.tag.common.core.OtherwiseTag</tag-class>
  361. <body-content>JSP</body-content>
  362. </tag>
  363. <tag>
  364. <description>
  365. Adds a parameter to a containing 'import' tag's URL.
  366. </description>
  367. <name>param</name>
  368. <tag-class>org.apache.taglibs.standard.tag.rt.core.ParamTag</tag-class>
  369. <body-content>JSP</body-content>
  370. <attribute>
  371. <description>
  372. Name of the query string parameter.
  373. </description>
  374. <name>name</name>
  375. <required>true</required>
  376. <rtexprvalue>true</rtexprvalue>
  377. </attribute>
  378. <attribute>
  379. <description>
  380. Value of the parameter.
  381. </description>
  382. <name>value</name>
  383. <required>false</required>
  384. <rtexprvalue>true</rtexprvalue>
  385. </attribute>
  386. </tag>
  387. <tag>
  388. <description>
  389. Redirects to a new URL.
  390. </description>
  391. <name>redirect</name>
  392. <tag-class>org.apache.taglibs.standard.tag.rt.core.RedirectTag</tag-class>
  393. <body-content>JSP</body-content>
  394. <attribute>
  395. <description>
  396. The URL of the resource to redirect to.
  397. </description>
  398. <name>url</name>
  399. <required>false</required>
  400. <rtexprvalue>true</rtexprvalue>
  401. </attribute>
  402. <attribute>
  403. <description>
  404. Name of the context when redirecting to a relative URL
  405. resource that belongs to a foreign context.
  406. </description>
  407. <name>context</name>
  408. <required>false</required>
  409. <rtexprvalue>true</rtexprvalue>
  410. </attribute>
  411. </tag>
  412. <tag>
  413. <description>
  414. Removes a scoped variable (from a particular scope, if specified).
  415. </description>
  416. <name>remove</name>
  417. <tag-class>org.apache.taglibs.standard.tag.common.core.RemoveTag</tag-class>
  418. <body-content>empty</body-content>
  419. <attribute>
  420. <description>
  421. Name of the scoped variable to be removed.
  422. </description>
  423. <name>var</name>
  424. <required>true</required>
  425. <rtexprvalue>false</rtexprvalue>
  426. </attribute>
  427. <attribute>
  428. <description>
  429. Scope for var.
  430. </description>
  431. <name>scope</name>
  432. <required>false</required>
  433. <rtexprvalue>false</rtexprvalue>
  434. </attribute>
  435. </tag>
  436. <tag>
  437. <description>
  438. Sets the result of an expression evaluation in a 'scope'
  439. </description>
  440. <name>set</name>
  441. <tag-class>org.apache.taglibs.standard.tag.rt.core.SetTag</tag-class>
  442. <body-content>JSP</body-content>
  443. <attribute>
  444. <description>
  445. Name of the exported scoped variable to hold the value
  446. specified in the action. The type of the scoped variable is
  447. whatever type the value expression evaluates to.
  448. </description>
  449. <name>var</name>
  450. <required>false</required>
  451. <rtexprvalue>false</rtexprvalue>
  452. </attribute>
  453. <attribute>
  454. <description>
  455. Expression to be evaluated.
  456. </description>
  457. <name>value</name>
  458. <required>false</required>
  459. <rtexprvalue>true</rtexprvalue>
  460. <deferred-value>
  461. <type>java.lang.Object</type>
  462. </deferred-value>
  463. </attribute>
  464. <attribute>
  465. <description>
  466. Target object whose property will be set. Must evaluate to
  467. a JavaBeans object with setter property property, or to a
  468. java.util.Map object.
  469. </description>
  470. <name>target</name>
  471. <required>false</required>
  472. <rtexprvalue>true</rtexprvalue>
  473. </attribute>
  474. <attribute>
  475. <description>
  476. Name of the property to be set in the target object.
  477. </description>
  478. <name>property</name>
  479. <required>false</required>
  480. <rtexprvalue>true</rtexprvalue>
  481. </attribute>
  482. <attribute>
  483. <description>
  484. Scope for var.
  485. </description>
  486. <name>scope</name>
  487. <required>false</required>
  488. <rtexprvalue>false</rtexprvalue>
  489. </attribute>
  490. </tag>
  491. <tag>
  492. <description>
  493. Creates a URL with optional query parameters.
  494. </description>
  495. <name>url</name>
  496. <tag-class>org.apache.taglibs.standard.tag.rt.core.UrlTag</tag-class>
  497. <body-content>JSP</body-content>
  498. <attribute>
  499. <description>
  500. Name of the exported scoped variable for the
  501. processed url. The type of the scoped variable is
  502. String.
  503. </description>
  504. <name>var</name>
  505. <required>false</required>
  506. <rtexprvalue>false</rtexprvalue>
  507. </attribute>
  508. <attribute>
  509. <description>
  510. Scope for var.
  511. </description>
  512. <name>scope</name>
  513. <required>false</required>
  514. <rtexprvalue>false</rtexprvalue>
  515. </attribute>
  516. <attribute>
  517. <description>
  518. URL to be processed.
  519. </description>
  520. <name>value</name>
  521. <required>false</required>
  522. <rtexprvalue>true</rtexprvalue>
  523. </attribute>
  524. <attribute>
  525. <description>
  526. Name of the context when specifying a relative URL
  527. resource that belongs to a foreign context.
  528. </description>
  529. <name>context</name>
  530. <required>false</required>
  531. <rtexprvalue>true</rtexprvalue>
  532. </attribute>
  533. </tag>
  534. <tag>
  535. <description>
  536. Subtag of &lt;choose&gt; that includes its body if its
  537. condition evalutes to 'true'
  538. </description>
  539. <name>when</name>
  540. <tag-class>org.apache.taglibs.standard.tag.rt.core.WhenTag</tag-class>
  541. <body-content>JSP</body-content>
  542. <attribute>
  543. <description>
  544. The test condition that determines whether or not the
  545. body content should be processed.
  546. </description>
  547. <name>test</name>
  548. <required>true</required>
  549. <rtexprvalue>true</rtexprvalue>
  550. <type>boolean</type>
  551. </attribute>
  552. </tag>
  553. </taglib>