Author: bayard
Date: Sun May 17 16:47:37 2009
New Revision: 775710
URL: http://svn.apache.org/viewvc?rev=775710&view=rev
Log:
Removing restriction from tld by putting text into description - and removing availability
Modified:
jakarta/taglibs/proper/regexp/trunk/src/main/resources/META-INF/taglibs-regexp.tld
Modified: jakarta/taglibs/proper/regexp/trunk/src/main/resources/META-INF/taglibs-regexp.tld
URL: http://svn.apache.org/viewvc/jakarta/taglibs/proper/regexp/trunk/src/main/resources/META-INF/taglibs-regexp.tld?rev=775710&r1=775709&r2=775710&view=diff
==============================================================================
--- jakarta/taglibs/proper/regexp/trunk/src/main/resources/META-INF/taglibs-regexp.tld (original)
+++ jakarta/taglibs/proper/regexp/trunk/src/main/resources/META-INF/taglibs-regexp.tld Sun May 17 16:47:37 2009
@@ -64,6 +64,8 @@
<display-name>regexp</display-name>
<description>
Create a regular expression script variable.
+ The body of the tag is assigned to a script variable
+ as a regular expression.
</description>
<!-- The next three non-standard elements are used to inform the relevant
@@ -71,14 +73,6 @@
taglib docs for examples of the output. -->
<!-- One line summary of what tag does for Tag Summary section -->
<summary>Create a regular expression script variable.</summary>
- <!-- Version of taglib when this tag became available,
- deprecated is a possible value. -->
- <availability>1.0</availability>
- <!-- Any restrictions on use of the tag -->
- <restrictions>
- The body of the tag is assigned to a script variable
- as a regular expression.
- </restrictions>
<!-- Declaration of scripting variables created by tag.
Used for generating HTML documentation and for
@@ -101,7 +95,6 @@
<!-- Used for the HTML documentation only.
Version of taglib when this script variable became available,
deprecated is a possible value. -->
- <availability>1.0</availability>
<!-- If the tag creates a script variable or attribute which
is a bean, the following declarations can be used to generate
@@ -113,7 +106,6 @@
<description>
Returns the text of the regular expression.
</description>
- <availability>1.0</availability>
</beanprop>
</variable>
@@ -128,7 +120,6 @@
Script variable id for use with standard <b>jsp:getProperty</b>
tag and as an attribute to other tags in this tag library.
</description>
- <availability>1.0</availability>
</attribute>
<!-- The entire example section is for usage examples that you want to
@@ -166,16 +157,13 @@
<display-name>text</display-name>
<description>
Create a text string script variable for use with a regexp.
+ The body of the tag is assigned to a script variable
+ as a text string.
</description>
<summary>
Create a text string script variable for use with a regexp.
</summary>
- <availability>1.0</availability>
- <restrictions>
- The body of the tag is assigned to a script variable
- as a text string.
- </restrictions>
<!-- Declaration of scripting variables created by tag.
Used for generating HTML documentation and for
@@ -198,7 +186,6 @@
<!-- Used for the HTML documentation only.
Version of taglib when this script variable became available,
deprecated is a possible value. -->
- <availability>1.0</availability>
<!-- If the tag creates a script variable or attribute which
is a bean, the following declarations can be used to generate
@@ -208,7 +195,6 @@
<get>Yes</get>
<set>No</set>
<description>Returns the text string.</description>
- <availability>1.0</availability>
</beanprop>
</variable>
@@ -220,7 +206,6 @@
Script variable id for use with standard <b>jsp:getProperty</b>
tag and as an attribute to other tags in this tag library.
</description>
- <availability>1.0</availability>
</attribute>
<example>
@@ -244,8 +229,6 @@
<summary>
Uses a regexp to determine if a match exists in the text.
</summary>
- <availability>1.0</availability>
- <restrictions>None</restrictions>
<attribute>
<name>regexp</name>
@@ -254,7 +237,6 @@
<description>
Script variable id of <b>regexp</b> to use for match.
</description>
- <availability>1.0</availability>
</attribute>
<attribute>
<name>text</name>
@@ -263,7 +245,6 @@
<description>
Script variable id of <b>text</b> to check for a match.
</description>
- <availability>1.0</availability>
</attribute>
<attribute>
<name>value</name>
@@ -273,7 +254,6 @@
If value is set to <b>false</b> the existsMatch tag includes body
of tag if a match does not exist. Default is <b>true</b>.
</description>
- <availability>1.0</availability>
</attribute>
<example>
@@ -310,8 +290,6 @@
</description>
<summary>Performs a string substitution on text using a regexp.</summary>
- <availability>1.0</availability>
- <restrictions>None</restrictions>
<attribute>
<name>regexp</name>
@@ -320,7 +298,6 @@
<description>
Script variable id of <b>regexp</b> to use for substitute.
</description>
- <availability>1.0</availability>
</attribute>
<attribute>
<name>text</name>
@@ -329,7 +306,6 @@
<description>
Script variable id of <b>text</b> to perform substitution on.
</description>
- <availability>1.0</availability>
</attribute>
<example>
@@ -361,8 +337,6 @@
</description>
<summary>Implements a perl style split on the text.</summary>
- <availability>1.0</availability>
- <restrictions>None</restrictions>
<!-- Declaration of scripting variables created by tag.
Used for generating HTML documentation and for
@@ -385,7 +359,6 @@
<!-- Used for the HTML documentation only.
Version of taglib when this script variable became available,
deprecated is a possible value. -->
- <availability>1.0</availability>
<!-- If the tag creates a script variable or attribute which
is a bean, the following declarations can be used to generate
HTML documentation for 0 .. N properties. -->
@@ -396,7 +369,6 @@
<description>
Returns the string split out from text.
</description>
- <availability>1.0</availability>
</beanprop>
</variable>
@@ -407,7 +379,6 @@
<description>
Script variable id for use with standard <b>jsp:getProperty</b> tag.
</description>
- <availability>1.0</availability>
</attribute>
<attribute>
<name>regexp</name>
@@ -418,7 +389,6 @@
If no <b>regexp</b> is used the split will be done based
on whitespace.
</description>
- <availability>1.0</availability>
</attribute>
<attribute>
<name>text</name>
@@ -427,7 +397,6 @@
<description>
Script variable id of <b>text</b> to perform split on.
</description>
- <availability>1.0</availability>
</attribute>
<attribute>
<name>limit</name>
@@ -436,7 +405,6 @@
<description>
Set a limit for the number of strings split out from text.
</description>
- <availability>1.0</availability>
</attribute>
<example>
@@ -480,8 +448,6 @@
<summary>
Loops through each match found in a text string by a regexp.
</summary>
- <availability>1.0</availability>
- <restrictions>None</restrictions>
<variable>
<!-- name-given or name-from-attribute must be declared
@@ -501,7 +467,6 @@
<!-- Used for the HTML documentation only.
Version of taglib when this script variable became available,
deprecated is a possible value. -->
- <availability>1.0</availability>
<!-- If the tag creates a script variable or attribute which
is a bean, the following declarations can be used to generate
HTML documentation for 0 .. N properties. -->
@@ -512,7 +477,6 @@
<description>
Returns the entire string that was matched on.
</description>
- <availability>1.0</availability>
</beanprop>
<beanprop>
<name>preMatch</name>
@@ -521,7 +485,6 @@
<description>
Returns the string preceding the current match.
</description>
- <availability>1.0</availability>
</beanprop>
<beanprop>
<name>postMatch</name>
@@ -530,7 +493,6 @@
<description>
Returns the string after the current match.
</description>
- <availability>1.0</availability>
</beanprop>
</variable>
@@ -541,7 +503,6 @@
<description>
Script variable id for use with standard <b>jsp:getProperty</b> tag.
</description>
- <availability>1.0</availability>
</attribute>
<attribute>
<name>regexp</name>
@@ -550,7 +511,6 @@
<description>
Script variable id of <b>regexp</b> to use for match.
</description>
- <availability>1.0</availability>
</attribute>
<attribute>
<name>text</name>
@@ -559,7 +519,6 @@
<description>
Script variable id of <b>text</b> to perform match on.
</description>
- <availability>1.0</availability>
</attribute>
<example>
@@ -594,13 +553,12 @@
<display-name>group</display-name>
<description>
Get the value of a single parenthesized group within a single match.
+ Must be nested inside a <b>match</b> tag.
</description>
<summary>
Get the value of a single parenthesized group within a single match.
</summary>
- <availability>1.0</availability>
- <restrictions>Must be nested inside a <b>match</b> tag.</restrictions>
<attribute>
<name>number</name>
@@ -609,7 +567,6 @@
<description>
Parenthesised group number to get from match.
</description>
- <availability>1.0</availability>
</attribute>
<example>
lmpx.com only provides a reader for public news (NNTP) servers. It is not
affiliated with the servers or forums shown here and is not responsible for
the content of articles, which is written by their respective authors.