[Gd-chatter] r11336 - trunk/fundev/sources/lib/string-extensions

prom at gwydiondylan.org prom at gwydiondylan.org
Tue May 8 13:01:57 CEST 2007


Author: prom
Date: Tue May  8 13:01:55 2007
New Revision: 11336

Modified:
   trunk/fundev/sources/lib/string-extensions/character-type.dylan
   trunk/fundev/sources/lib/string-extensions/conversions.dylan
   trunk/fundev/sources/lib/string-extensions/do-replacement.dylan
   trunk/fundev/sources/lib/string-extensions/library.dylan
   trunk/fundev/sources/lib/string-extensions/parse-string.dylan
   trunk/fundev/sources/lib/string-extensions/string-hacking.dylan
   trunk/fundev/sources/lib/string-extensions/substring-search.dylan
Log:
Job: minor
A first attempt at merging string-extensions.
This commit changes only comments and descriptive headers.


Modified: trunk/fundev/sources/lib/string-extensions/character-type.dylan
==============================================================================
--- trunk/fundev/sources/lib/string-extensions/character-type.dylan	(original)
+++ trunk/fundev/sources/lib/string-extensions/character-type.dylan	Tue May  8 13:01:55 2007
@@ -1,12 +1,11 @@
 module:   character-type
 author:   Nick Kramer (nkramer at cs.cmu.edu)
-copyright:  Copyright (C) 1994, Carnegie Mellon University.
-            All rights reserved.
-rcs-header: $Header: /scm/cvs/fundev/Sources/lib/string-extensions/character-type.dylan,v 1.1 2004/03/12 00:09:20 cgay Exp $
+copyright: see below
 
 //======================================================================
 //
 // Copyright (c) 1994  Carnegie Mellon University
+// Copyright (c) 1998, 1999, 2000  Gwydion Dylan Maintainers
 // All rights reserved.
 // 
 // Use and copying of this software and preparation of derivative
@@ -18,14 +17,15 @@
 // 2. Documentation (paper or online) accompanying any system that
 //    incorporates this software, or any part of it, must acknowledge
 //    the contribution of the Gwydion Project at Carnegie Mellon
-//    University.
+//    University, and the Gwydion Dylan Maintainers.
 // 
 // This software is made available "as is".  Neither the authors nor
 // Carnegie Mellon University make any warranty about the software,
 // its performance, or its conformity to any specification.
 // 
-// Bug reports, questions, comments, and suggestions should be sent by
-// E-mail to the Internet address "gwydion-bugs at cs.cmu.edu".
+// Bug reports should be sent to <gd-bugs at gwydiondylan.org>; questions,
+// comments and suggestions are welcome at <gd-hackers at gwydiondylan.org>.
+// Also, see http://www.gwydiondylan.org/ for updates and documentation. 
 //
 //======================================================================
 

Modified: trunk/fundev/sources/lib/string-extensions/conversions.dylan
==============================================================================
--- trunk/fundev/sources/lib/string-extensions/conversions.dylan	(original)
+++ trunk/fundev/sources/lib/string-extensions/conversions.dylan	Tue May  8 13:01:55 2007
@@ -1,13 +1,12 @@
 module:     string-conversions
 author:     Nick Kramer (nkramer at cs.cmu.edu)
 synopsis:   Convert strings to numbers and numbers to strings.
-copyright:  Copyright (C) 1994, Carnegie Mellon University.
-            All rights reserved.
-rcs-header: $Header: /scm/cvs/fundev/Sources/lib/string-extensions/conversions.dylan,v 1.1 2004/03/12 00:09:20 cgay Exp $
+copyright: see below
 
 //======================================================================
 //
 // Copyright (c) 1994  Carnegie Mellon University
+// Copyright (c) 1998, 1999, 2000  Gwydion Dylan Maintainers
 // All rights reserved.
 // 
 // Use and copying of this software and preparation of derivative
@@ -19,14 +18,15 @@
 // 2. Documentation (paper or online) accompanying any system that
 //    incorporates this software, or any part of it, must acknowledge
 //    the contribution of the Gwydion Project at Carnegie Mellon
-//    University.
+//    University, and the Gwydion Dylan Maintainers.
 // 
 // This software is made available "as is".  Neither the authors nor
 // Carnegie Mellon University make any warranty about the software,
 // its performance, or its conformity to any specification.
 // 
-// Bug reports, questions, comments, and suggestions should be sent by
-// E-mail to the Internet address "gwydion-bugs at cs.cmu.edu".
+// Bug reports should be sent to <gd-bugs at gwydiondylan.org>; questions,
+// comments and suggestions are welcome at <gd-hackers at gwydiondylan.org>.
+// Also, see http://www.gwydiondylan.org/ for updates and documentation. 
 //
 //======================================================================
 

Modified: trunk/fundev/sources/lib/string-extensions/do-replacement.dylan
==============================================================================
--- trunk/fundev/sources/lib/string-extensions/do-replacement.dylan	(original)
+++ trunk/fundev/sources/lib/string-extensions/do-replacement.dylan	Tue May  8 13:01:55 2007
@@ -3,13 +3,12 @@
 synopsis: This implements search and replace facilities, which is 
           given a wrapper and called from both regular-expressions
           and substring-search.
-copyright:  Copyright (C) 1994, Carnegie Mellon University.
-            All rights reserved.
-rcs-header: $Header: /scm/cvs/fundev/Sources/lib/string-extensions/do-replacement.dylan,v 1.1 2004/03/12 00:09:20 cgay Exp $
+copyright: see below
 
 //======================================================================
 //
 // Copyright (c) 1994  Carnegie Mellon University
+// Copyright (c) 1998, 1999, 2000  Gwydion Dylan Maintainers
 // All rights reserved.
 // 
 // Use and copying of this software and preparation of derivative
@@ -21,14 +20,15 @@
 // 2. Documentation (paper or online) accompanying any system that
 //    incorporates this software, or any part of it, must acknowledge
 //    the contribution of the Gwydion Project at Carnegie Mellon
-//    University.
+//    University, and the Gwydion Dylan Maintainers.
 // 
 // This software is made available "as is".  Neither the authors nor
 // Carnegie Mellon University make any warranty about the software,
 // its performance, or its conformity to any specification.
 // 
-// Bug reports, questions, comments, and suggestions should be sent by
-// E-mail to the Internet address "gwydion-bugs at cs.cmu.edu".
+// Bug reports should be sent to <gd-bugs at gwydiondylan.org>; questions,
+// comments and suggestions are welcome at <gd-hackers at gwydiondylan.org>.
+// Also, see http://www.gwydiondylan.org/ for updates and documentation. 
 //
 //======================================================================
 

Modified: trunk/fundev/sources/lib/string-extensions/library.dylan
==============================================================================
--- trunk/fundev/sources/lib/string-extensions/library.dylan	(original)
+++ trunk/fundev/sources/lib/string-extensions/library.dylan	Tue May  8 13:01:55 2007
@@ -2,13 +2,12 @@
 author:     Nick Kramer (nkramer at cs.cmu.edu)
 synopsis:   Contains the library and module definitions for the String
             Extensions library.
-copyright:  Copyright (C) 1994, Carnegie Mellon University.
-            All rights reserved.
-rcs-header: $Header: /scm/cvs/fundev/Sources/lib/string-extensions/library.dylan,v 1.1 2004/03/12 00:09:20 cgay Exp $
+copyright: see below
 
 //======================================================================
 //
 // Copyright (c) 1994  Carnegie Mellon University
+// Copyright (c) 1998, 1999, 2000  Gwydion Dylan Maintainers
 // All rights reserved.
 // 
 // Use and copying of this software and preparation of derivative
@@ -20,14 +19,15 @@
 // 2. Documentation (paper or online) accompanying any system that
 //    incorporates this software, or any part of it, must acknowledge
 //    the contribution of the Gwydion Project at Carnegie Mellon
-//    University.
+//    University, and the Gwydion Dylan Maintainers.
 // 
 // This software is made available "as is".  Neither the authors nor
 // Carnegie Mellon University make any warranty about the software,
 // its performance, or its conformity to any specification.
 // 
-// Bug reports, questions, comments, and suggestions should be sent by
-// E-mail to the Internet address "gwydion-bugs at cs.cmu.edu".
+// Bug reports should be sent to <gd-bugs at gwydiondylan.org>; questions,
+// comments and suggestions are welcome at <gd-hackers at gwydiondylan.org>.
+// Also, see http://www.gwydiondylan.org/ for updates and documentation. 
 //
 //======================================================================
 

Modified: trunk/fundev/sources/lib/string-extensions/parse-string.dylan
==============================================================================
--- trunk/fundev/sources/lib/string-extensions/parse-string.dylan	(original)
+++ trunk/fundev/sources/lib/string-extensions/parse-string.dylan	Tue May  8 13:01:55 2007
@@ -2,13 +2,12 @@
 author:   Nick Kramer (nkramer at cs.cmu.edu)
 synopsis: A useful little data structure that's not useful enough to 
           export outside the library.
-copyright:  Copyright (C) 1994, Carnegie Mellon University.
-            All rights reserved.
-rcs-header: $Header: /scm/cvs/fundev/Sources/lib/string-extensions/parse-string.dylan,v 1.1 2004/03/12 00:09:20 cgay Exp $
+copyright: see below
 
 //======================================================================
 //
 // Copyright (c) 1994  Carnegie Mellon University
+// Copyright (c) 1998, 1999, 2000  Gwydion Dylan Maintainers
 // All rights reserved.
 // 
 // Use and copying of this software and preparation of derivative
@@ -20,14 +19,15 @@
 // 2. Documentation (paper or online) accompanying any system that
 //    incorporates this software, or any part of it, must acknowledge
 //    the contribution of the Gwydion Project at Carnegie Mellon
-//    University.
+//    University, and the Gwydion Dylan Maintainers.
 // 
 // This software is made available "as is".  Neither the authors nor
 // Carnegie Mellon University make any warranty about the software,
 // its performance, or its conformity to any specification.
 // 
-// Bug reports, questions, comments, and suggestions should be sent by
-// E-mail to the Internet address "gwydion-bugs at cs.cmu.edu".
+// Bug reports should be sent to <gd-bugs at gwydiondylan.org>; questions,
+// comments and suggestions are welcome at <gd-hackers at gwydiondylan.org>.
+// Also, see http://www.gwydiondylan.org/ for updates and documentation. 
 //
 //======================================================================
 
@@ -37,7 +37,7 @@
 // pointer along.
 //
 define class <parse-string> (<object>)
-  constant slot string :: <sequence>, required-init-keyword: #"string"; // KJP: constant
+  constant slot string :: <sequence>, required-init-keyword: #"string";
   slot index :: <integer>, init-value: 0;
 end class <parse-string>;
 

Modified: trunk/fundev/sources/lib/string-extensions/string-hacking.dylan
==============================================================================
--- trunk/fundev/sources/lib/string-extensions/string-hacking.dylan	(original)
+++ trunk/fundev/sources/lib/string-extensions/string-hacking.dylan	Tue May  8 13:01:55 2007
@@ -1,13 +1,12 @@
 module: string-hacking
 author: Nick Kramer (nkramer at cs.cmu.edu)
 synopsis: Random functionality for working with strings
-copyright:  Copyright (C) 1994, Carnegie Mellon University.
-            All rights reserved.
-rcs-header: $Header: /scm/cvs/fundev/Sources/lib/string-extensions/string-hacking.dylan,v 1.1 2004/03/12 00:09:20 cgay Exp $
+copyright: see below
 
 //======================================================================
 //
 // Copyright (c) 1994  Carnegie Mellon University
+// Copyright (c) 1998, 1999, 2000  Gwydion Dylan Maintainers
 // All rights reserved.
 // 
 // Use and copying of this software and preparation of derivative
@@ -19,14 +18,15 @@
 // 2. Documentation (paper or online) accompanying any system that
 //    incorporates this software, or any part of it, must acknowledge
 //    the contribution of the Gwydion Project at Carnegie Mellon
-//    University.
+//    University, and the Gwydion Dylan Maintainers.
 // 
 // This software is made available "as is".  Neither the authors nor
 // Carnegie Mellon University make any warranty about the software,
 // its performance, or its conformity to any specification.
 // 
-// Bug reports, questions, comments, and suggestions should be sent by
-// E-mail to the Internet address "gwydion-bugs at cs.cmu.edu".
+// Bug reports should be sent to <gd-bugs at gwydiondylan.org>; questions,
+// comments and suggestions are welcome at <gd-hackers at gwydiondylan.org>.
+// Also, see http://www.gwydiondylan.org/ for updates and documentation. 
 //
 //======================================================================
 

Modified: trunk/fundev/sources/lib/string-extensions/substring-search.dylan
==============================================================================
--- trunk/fundev/sources/lib/string-extensions/substring-search.dylan	(original)
+++ trunk/fundev/sources/lib/string-extensions/substring-search.dylan	Tue May  8 13:01:55 2007
@@ -7,13 +7,12 @@
 		meaningful only within the more limited domain.
                 (used to be strsearch.dylan in module string-search library 
 		collection-extensions)
-copyright:  Copyright (C) 1994, Carnegie Mellon University.
-            All rights reserved.
-rcs-header: $Header: /scm/cvs/fundev/Sources/lib/string-extensions/substring-search.dylan,v 1.1 2004/03/12 00:09:20 cgay Exp $
+copyright: see below
 
 //======================================================================
 //
 // Copyright (c) 1994  Carnegie Mellon University
+// Copyright (c) 1998, 1999, 2000  Gwydion Dylan Maintainers
 // All rights reserved.
 // 
 // Use and copying of this software and preparation of derivative
@@ -25,14 +24,15 @@
 // 2. Documentation (paper or online) accompanying any system that
 //    incorporates this software, or any part of it, must acknowledge
 //    the contribution of the Gwydion Project at Carnegie Mellon
-//    University.
+//    University, and the Gwydion Dylan Maintainers.
 // 
 // This software is made available "as is".  Neither the authors nor
 // Carnegie Mellon University make any warranty about the software,
 // its performance, or its conformity to any specification.
 // 
-// Bug reports, questions, comments, and suggestions should be sent by
-// E-mail to the Internet address "gwydion-bugs at cs.cmu.edu".
+// Bug reports should be sent to <gd-bugs at gwydiondylan.org>; questions,
+// comments and suggestions are welcome at <gd-hackers at gwydiondylan.org>.
+// Also, see http://www.gwydiondylan.org/ for updates and documentation. 
 //
 //======================================================================
 



More information about the chatter mailing list