Index: /trunk/psLib/src/astronomy/psMetadataIO.c
===================================================================
--- /trunk/psLib/src/astronomy/psMetadataIO.c	(revision 2013)
+++ /trunk/psLib/src/astronomy/psMetadataIO.c	(revision 2014)
@@ -9,6 +9,6 @@
 *  @author Ross Harman, MHPCC
 *
-*  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-10-07 20:49:57 $
+*  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-10-08 00:43:12 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -103,5 +103,5 @@
 
 /** Determines if a line is blank (whitespace only) or a commentline. It returns true if so. The input string
- *  must * be null terminated. */
+ *  must be null terminated. */
 bool ignoreLine(char *inString)
 {
@@ -118,6 +118,5 @@
 
 /** Removes leading and trailing whitespace and # characters from a string. The cleaned string is a new null
- *  terminated copy of the original input string.
- */
+ *  terminated copy of the original input string. */
 char *cleanString(char *inString, int sLen)
 {
Index: /trunk/psLib/src/collections/psMetadataIO.c
===================================================================
--- /trunk/psLib/src/collections/psMetadataIO.c	(revision 2013)
+++ /trunk/psLib/src/collections/psMetadataIO.c	(revision 2014)
@@ -9,6 +9,6 @@
 *  @author Ross Harman, MHPCC
 *
-*  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-10-07 20:49:57 $
+*  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-10-08 00:43:12 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -103,5 +103,5 @@
 
 /** Determines if a line is blank (whitespace only) or a commentline. It returns true if so. The input string
- *  must * be null terminated. */
+ *  must be null terminated. */
 bool ignoreLine(char *inString)
 {
@@ -118,6 +118,5 @@
 
 /** Removes leading and trailing whitespace and # characters from a string. The cleaned string is a new null
- *  terminated copy of the original input string.
- */
+ *  terminated copy of the original input string. */
 char *cleanString(char *inString, int sLen)
 {
Index: /trunk/psLib/src/types/psMetadataConfig.c
===================================================================
--- /trunk/psLib/src/types/psMetadataConfig.c	(revision 2013)
+++ /trunk/psLib/src/types/psMetadataConfig.c	(revision 2014)
@@ -9,6 +9,6 @@
 *  @author Ross Harman, MHPCC
 *
-*  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-10-07 20:49:57 $
+*  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-10-08 00:43:12 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -103,5 +103,5 @@
 
 /** Determines if a line is blank (whitespace only) or a commentline. It returns true if so. The input string
- *  must * be null terminated. */
+ *  must be null terminated. */
 bool ignoreLine(char *inString)
 {
@@ -118,6 +118,5 @@
 
 /** Removes leading and trailing whitespace and # characters from a string. The cleaned string is a new null
- *  terminated copy of the original input string.
- */
+ *  terminated copy of the original input string. */
 char *cleanString(char *inString, int sLen)
 {
Index: /trunk/psLib/src/xml/psXML.c
===================================================================
--- /trunk/psLib/src/xml/psXML.c	(revision 2013)
+++ /trunk/psLib/src/xml/psXML.c	(revision 2014)
@@ -9,6 +9,6 @@
 *  @author Ross Harman, MHPCC
 *
-*  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-10-07 20:49:57 $
+*  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-10-08 00:43:12 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -103,5 +103,5 @@
 
 /** Determines if a line is blank (whitespace only) or a commentline. It returns true if so. The input string
- *  must * be null terminated. */
+ *  must be null terminated. */
 bool ignoreLine(char *inString)
 {
@@ -118,6 +118,5 @@
 
 /** Removes leading and trailing whitespace and # characters from a string. The cleaned string is a new null
- *  terminated copy of the original input string.
- */
+ *  terminated copy of the original input string. */
 char *cleanString(char *inString, int sLen)
 {
Index: /trunk/psLib/test/astronomy/tst_psMetadata_05.c
===================================================================
--- /trunk/psLib/test/astronomy/tst_psMetadata_05.c	(revision 2013)
+++ /trunk/psLib/test/astronomy/tst_psMetadata_05.c	(revision 2014)
@@ -7,10 +7,21 @@
 *  This test driver contains the following tests for psMetadata:
 *     Test A - Allocate metadata and items
-*     Test I - Free psMetadata
+*     Test B - Set iterator at second index
+*     Test C - Get next item at index
+*     Test D - Get next item at index and string
+*     Test E - Get previous item at index
+*     Test F - Write metadata item to file
+*     Test G - Attempt to use null metadata with setIterator
+*     Test H - Attempt to use null metadata with getNext
+*     Test I - Attempt to use null metadata with getPrevious
+*     Test J - Attempt to use null file with itemPrint
+*     Test K - Attempt to use null format with itemPrint
+*     Test L - Attempt to use null item with itemPrint
+*     Test M - Free psMetadata
 *
 *  @author  Ross Harman, MHPCC
 *
-*  @version $Revision: 1.3 $  $Name: not supported by cvs2svn $
-*  @date  $Date: 2004-09-21 23:24:42 $
+*  @version $Revision: 1.4 $  $Name: not supported by cvs2svn $
+*  @date  $Date: 2004-10-08 00:48:01 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
Index: /trunk/psLib/test/collections/tst_psMetadata_05.c
===================================================================
--- /trunk/psLib/test/collections/tst_psMetadata_05.c	(revision 2013)
+++ /trunk/psLib/test/collections/tst_psMetadata_05.c	(revision 2014)
@@ -7,10 +7,21 @@
 *  This test driver contains the following tests for psMetadata:
 *     Test A - Allocate metadata and items
-*     Test I - Free psMetadata
+*     Test B - Set iterator at second index
+*     Test C - Get next item at index
+*     Test D - Get next item at index and string
+*     Test E - Get previous item at index
+*     Test F - Write metadata item to file
+*     Test G - Attempt to use null metadata with setIterator
+*     Test H - Attempt to use null metadata with getNext
+*     Test I - Attempt to use null metadata with getPrevious
+*     Test J - Attempt to use null file with itemPrint
+*     Test K - Attempt to use null format with itemPrint
+*     Test L - Attempt to use null item with itemPrint
+*     Test M - Free psMetadata
 *
 *  @author  Ross Harman, MHPCC
 *
-*  @version $Revision: 1.3 $  $Name: not supported by cvs2svn $
-*  @date  $Date: 2004-09-21 23:24:42 $
+*  @version $Revision: 1.4 $  $Name: not supported by cvs2svn $
+*  @date  $Date: 2004-10-08 00:48:01 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
