Author: bayard
Date: Sat Jan  3 02:29:21 2009
New Revision: 730966

URL: http://svn.apache.org/viewvc?rev=730966&view=rev
Log:
Filling devs and types in the changes.xml

Modified:
    jakarta/taglibs/proper/string/trunk/src/changes/changes.xml

Modified: jakarta/taglibs/proper/string/trunk/src/changes/changes.xml
URL: 
http://svn.apache.org/viewvc/jakarta/taglibs/proper/string/trunk/src/changes/changes.xml?rev=730966&r1=730965&r2=730966&view=diff
==============================================================================
--- jakarta/taglibs/proper/string/trunk/src/changes/changes.xml (original)
+++ jakarta/taglibs/proper/string/trunk/src/changes/changes.xml Sat Jan  3 
02:29:21 2009
@@ -6,82 +6,88 @@
   <body>
   
 <release version="1.1.1-dev" date="in CVS" description="So far this is going 
to be a bug fix release">
-    <action>Bug 32287 - Escape tag no longer escaping for Javascript</action>
+    <action dev="bayard" type="update">Migrated build to Maven2</action>
+    <action dev="bayard" type="fix">Bug 41852 - missing unescapeXml in 
truncateNicely</action>
+    <action dev="felipeal" type="fix">Bug 32287 - Escape tag no longer 
escaping for Javascript</action>
 </release>
 
 <release version="1.1.0" date="2004/05/17" description="Although this is 
mostly a bug fixing release, we decided to create a new minor release, as it 
now depends on Commons Lang 2.0 and has some new features (see below)">
-    <action>Changed license to ASF 2.0</action>
-    <action>Bug 25136 - &lt;str:chomp&gt; wasn't working anymore</action>
-    <action>Bug 27324 - changed handlers code to be compliant with Commons 
Lang 2.0</action>
-
-    <action>Added attribute delimiterInside to &lt;str:wordWrap&gt; (bug 
21866)</action>
-    <action>Added new custom tags, &lt;str:join&gt; and &lt;str:split&gt; (bug 
20204)</action>
+    <action dev="bayard" type="update">Changed license to ASF 2.0</action>
+    <action dev="felipeal" type="fix">Bug 25136 - &lt;str:chomp&gt; wasn't 
working anymore</action>
+    <action dev="felipeal" type="fix">Bug 27324 - changed handlers code to be 
compliant with Commons Lang 2.0</action>
+
+    <action dev="felipeal" type="add">Added attribute delimiterInside to 
&lt;str:wordWrap&gt; (bug 21866)</action>
+    <action dev="felipeal" type="add">Added new custom tags, &lt;str:join&gt; 
and &lt;str:split&gt; (bug 20204)</action>
+    <action dev="bayard" type="add">Added &lt;str:length&gt; tag</action>
+    <action dev="bayard" type="update">Changed the changeString method so it 
can throw a JspException if the
+    parameters being passed in are in some form of illegal state. </action>
 </release>
 
 <release version="1.0.1" date="2003/02/20" description="Bug-fixing release. 
Most notably, it does NOT have the EL functionality that is available in the 
CVS HEAD. ">
-    <action>Made a fix to bug # 15321 that stops WordWrap falling over with an 
ArrayOutOfBoundsException when a newline falls in a particular place. </action>
+    <action dev="bayard" type="fix">Made a fix to bug # 15321 that stops 
WordWrap falling over with an ArrayOutOfBoundsException when a newline falls in 
a particular place. </action>
 
-       <action>Added in a carriageToken to the str:replace tag. </action>
+       <action dev="bayard" type="add">Added in a carriageToken to the 
str:replace tag. </action>
 
-       <action>Added in an attribute, newlineToken, to str:replace to allow 
newlines to be handled nicely. </action>
+       <action dev="bayard" type="add">Added in an attribute, newlineToken, to 
str:replace to allow newlines to be handled nicely. </action>
 
-       <action>Removed copyright to William Brogden of Metaphone.java which 
I'd dimwittingly left there. I have permission of the author in doing so.  
</action>
+       <action dev="bayard" type="remove">Removed copyright to William Brogden 
of Metaphone.java which I'd dimwittingly left there. I have permission of the 
author in doing so.  </action>
 
-       <action>Removed the unnecessary initAttributes from inside the startTag 
method for all tags. This was stopping String tags from working inside loops 
when the container decided to cache the tag. </action>
+       <action dev="bayard" type="remove">Removed the unnecessary 
initAttributes from inside the startTag method for all tags. This was stopping 
String tags from working inside loops when the container decided to cache the 
tag. </action>
 
-       <action>Fixed example string.jsp for truncateNicely as it has the wrong 
expected value. </action>
+       <action dev="bayard" type="fix">Fixed example string.jsp for 
truncateNicely as it has the wrong expected value. </action>
 
-       <action>Implemented the switch to using "taglibs-" as a prefix for jar 
and tld files for taglibs.</action>
+       <action dev="glenn" type="update">Implemented the switch to using 
"taglibs-" as a prefix for jar and tld files for taglibs.</action>
 </release>
 <release version="1.0" date="2002/10/07" description="Initial release of the 
String Taglib, to give users a stable released version to work against. ">
-<action>Changed implementation of random() to use the same Random instance 
+<action dev="bayard" type="fix">Changed implementation of random() to use the 
same Random instance 
 across calls. This stops the same value coming out if called in the same 
 millisecond.</action>
 
-<action>Swapcase tag. Non-alphabetical text was replaced with the previous 
alphabetical 
+<action dev="bayard" type="fix">Swapcase tag. Non-alphabetical text was 
replaced with the previous alphabetical 
 character and not left alone. this_is_blue becomes thississblue.</action>
 
-<action>Substring tag. Added protection into substring so that it doesnt 
complain
+<action dev="bayard" type="fix">Substring tag. Added protection into substring 
so that it doesnt complain
 when end indexes larger than the string are passed in.</action>
-<action>Added ability to pass -ve indexes in, meaning distance from the end of
+<action dev="bayard" type="add">Added ability to pass -ve indexes in, meaning 
distance from the end of
 the string.</action>
 
-<action>Newlines on their own were being rubbed out in the wordWrap method.
+<action dev="bayard" type="fix">Newlines on their own were being rubbed out in 
the wordWrap method.
 More generically, any whitespace delimiter was being rubbed out. This is due
 to the fact that the method considers whitespace to be the type of character
 to split upon. It forgot that a newline was a whitespace though.</action>
 
-<action>Changed implementation of StringWisLine so it doesn't try to goto the
+<action dev="bayard" type="fix">Changed implementation of StringWisLine so it 
doesn't try to goto the
 n+1th element of an array. Was a missing -1 in the algorithm's
 max value.</action>
 
-<action>Updated StringW.center/leftPad/rightPad inline with fixes in 
Commons.</action>
-<action>Updated StringW.replaceString with the version in the Commons.</action>
-<action>Fixed StringW.evaulateSet's javadoc.</action>
-<action>Fixed a logic fault in the negation logic for CharSet class.</action>
+<action dev="bayard" type="fix">Updated StringW.center/leftPad/rightPad inline 
with fixes in Commons.</action>
+<action dev="bayard" type="fix">Updated StringW.replaceString with the version 
in the Commons.</action>
+<action dev="bayard" type="fix">Fixed StringW.evaulateSet's javadoc.</action>
+<action dev="bayard" type="fix">Fixed a logic fault in the negation logic for 
CharSet class.</action>
 
-<action>ReverseDelimitedString renamed to ReverseDelimitedStringTag.</action>
+<action dev="bayard" type="remove">ReverseDelimitedString renamed to 
ReverseDelimitedStringTag.</action>
 
-<action>Substring tag default start set to be 0 so an end can be specified on 
+<action dev="bayard" type="fix">Substring tag default start set to be 0 so an 
end can be specified on 
 its own. Default end no longer -1 as implementation no longer uses 
that.</action>
 
-<action>Fixed a bug in which the tags were returning SKIP_BODY. This is 
illegal in 
+<action dev="bayard" type="fix">Fixed a bug in which the tags were returning 
SKIP_BODY. This is illegal in 
 a doEndTag method.  Now it returns EVAL_PAGE.</action>
 
-<action>Added a 'var' attribute to all tags. The var attribute tells the tag to
+<action dev="bayard" type="add">Added a 'var' attribute to all tags. The var 
attribute tells the tag to
 place the result in the pagecontext under that variable name and not to
 output the result to the screen. </action>
 
-<action>Switched String taglib to be dependent on the beta release of Jakarta 
+<action dev="bayard" type="update">Switched String taglib to be dependent on 
the beta release of Jakarta 
 Commons Lang. This removes a large amount of the utility code from the 
 taglib. </action>
 
-<action>Added left, right and mid tags to the taglib. These are new methods 
+<action dev="bayard" type="add">Added left, right and mid tags to the taglib. 
These are new methods 
 in the StringUtils class in Commons Lang and it makes sense to offer these 
 up as and when they arrive. </action>
 </release>
 
 <release version="Initial Version" date="2001/08/30" description="Initial 
version of String tag-library. Matching the v0.4 of the GenerationJava String 
taglib. ">
+<action dev="bayard" type="add">Imported taglib, added Apache license and 
modified package name. </action>
 </release>
     
   </body>



---------------------------------------------------------------------
To unsubscribe, e-mail: taglibs-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: taglibs-dev-h...@jakarta.apache.org

Reply via email to