diff --git a/STATUS.html b/STATUS.html
index c82cac998..45b6a38f9 100644
--- a/STATUS.html
+++ b/STATUS.html
@@ -7,7 +7,7 @@
The Jakarta Commons Lang Component
-$Id: STATUS.html,v 1.18 2002/09/19 07:02:30 bayard Exp $
+$Id: STATUS.html,v 1.19 2002/09/21 08:11:18 scolebourne Exp $
[Introduction]
[Dependencies]
[Release Info]
@@ -84,12 +84,15 @@ still under discussion, so please mail the list before actioning.
Operating system information - maybe part of SystemUtils, maybe another project
MathUtils - possible addition of mathmatics helper. Could go in NumberUtils
CalendarUtils - possible addition of a calendar utility class (from Serge Knystautas)
-
CloneUtils - utility class to enable cloning via various different mechanisms
+
CloneUtils - utility class to enable cloning via various different mechanisms. This code exists in [pattern] at present.
StringUtils truncateNicely method - A substring with some extra power to choose where to cut off. It was in Avalon and was added separately to String Taglib from a code submission. This suggests it may have some commonality. [CODED]
StringUtils parseBoolean method - This method is in OSCore's TextUtils and seems very reusable. It could go in a BooleanUtils if such a need was seen. [CODED]
StringUtils uncapitaliseAllWords method - String Taglib has shown that this method is missing from StringUtils. [CODED]
StringUtils unescape method - String Taglib has shown that this method is missing from StringUtils. It would take a String with "\n" in and convert it to the Java character. unescape and escape should be symmetric.
ArrayUtils - opinion seems to be that this belongs with [lang] and not [collections]
+GUID and other Identifier generators - these may belong in [util], some code exists in [pattern] at the moment
+CharUtils - Utilities to work on a char[] in the same way as a String
+AStringBuffer - A StringBuffer implementation with additional methods from StringUtils