Author: bayard
Date: Sat Jan 3 01:52:34 2009
New Revision: 730950
URL: http://svn.apache.org/viewvc?rev=730950&view=rev
Log:
Adding changes plugin and javadoc plugin to the pom. Migrating the release section of the string.xml file over to the changes report
Added:
jakarta/taglibs/proper/string/trunk/src/changes/
jakarta/taglibs/proper/string/trunk/src/changes/changes.xml (with props)
Modified:
jakarta/taglibs/proper/string/trunk/pom.xml
Modified: jakarta/taglibs/proper/string/trunk/pom.xml
URL: http://svn.apache.org/viewvc/jakarta/taglibs/proper/string/trunk/pom.xml?rev=730950&r1=730949&r2=730950&view=diff
==============================================================================
--- jakarta/taglibs/proper/string/trunk/pom.xml (original)
+++ jakarta/taglibs/proper/string/trunk/pom.xml Sat Jan 3 01:52:34 2009
@@ -98,6 +98,23 @@
<groupId>net.sourceforge.maven-taglib</groupId>
<artifactId>maven-taglib-plugin</artifactId>
</plugin>
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <quiet>true</quiet>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-changes-plugin</artifactId>
+ <reportSets>
+ <reportSet>
+ <reports>
+ <report>changes-report</report>
+ </reports>
+ </reportSet>
+ </reportSets>
+ </plugin>
</plugins>
</reporting>
Added: 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=730950&view=auto
==============================================================================
--- jakarta/taglibs/proper/string/trunk/src/changes/changes.xml (added)
+++ jakarta/taglibs/proper/string/trunk/src/changes/changes.xml Sat Jan 3 01:52:34 2009
@@ -0,0 +1,88 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<document>
+ <properties>
+ <title>String Taglib changes</title>
+ </properties>
+ <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>
+</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 - <str:chomp> 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 <str:wordWrap> (bug 21866)</action>
+ <action>Added new custom tags, <str:join> and <str:split> (bug 20204)</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>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>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>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>
+</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
+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
+character and not left alone. this_is_blue becomes thississblue.</action>
+
+<action>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
+the string.</action>
+
+<action>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
+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>ReverseDelimitedString renamed to ReverseDelimitedStringTag.</action>
+
+<action>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
+a doEndTag method. Now it returns EVAL_PAGE.</action>
+
+<action>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
+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
+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. ">
+</release>
+
+ </body>
+</document>
Propchange: jakarta/taglibs/proper/string/trunk/src/changes/changes.xml
------------------------------------------------------------------------------
svn:eol-style = native
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.