OSSP CVS Repository

ossp - Check-in [5125]
Not logged in
[Honeypot]  [Browse]  [Home]  [Login]  [Reports
[Search]  [Ticket]  [Timeline
  [Patchset]  [Tagging/Branching

Check-in Number: 5125
Date: 2005-Aug-30 22:34:35 (local)
2005-Aug-30 20:34:35 (UTC)
User:rse
Branch:
Comment: Reference the new officially published RFC 4122
Tickets:
Inspections:
Files:
ossp-pkg/uuid/ChangeLog      1.77 -> 1.78     5 inserted, 0 deleted
ossp-pkg/uuid/README      1.26 -> 1.27     4 inserted, 4 deleted
ossp-pkg/uuid/uuid.c      1.51 -> 1.52     4 inserted, 4 deleted
ossp-pkg/uuid/uuid.pod      1.25 -> 1.26     9 inserted, 18 deleted
ossp-pkg/uuid/uuid_cli.pod      1.19 -> 1.20     4 inserted, 4 deleted

ossp-pkg/uuid/ChangeLog 1.77 -> 1.78

--- ChangeLog    2005/08/30 18:36:55     1.77
+++ ChangeLog    2005/08/30 20:34:35     1.78
@@ -11,6 +11,11 @@
   This is a list of all changes to OSSP uuid.
   For a more brief summary please have a look at the NEWS file.
 
+  Changes between 1.2.1 and 1.2.2 (30-Aug-2005 to xx-Sep-2005)
+
+   o Reference the new officially published RFC 4122.
+     [Ralf S. Engelschall]
+
   Changes between 1.2.0 and 1.2.1 (23-Jan-2005 to 30-Aug-2005)
 
    o Add SEEALSO document which references all known


ossp-pkg/uuid/README 1.26 -> 1.27

--- README       2005/08/30 20:11:46     1.26
+++ README       2005/08/30 20:34:35     1.27
@@ -11,10 +11,10 @@
 
   OSSP uuid is a ISO-C and Perl application programming interface (API)
   and corresponding command line interface (CLI) for the generation of
-  DCE 1.1 and ISO/IEC 11578:1996 compliant Universally Unique Identifier
-  (UUID). It supports DCE 1.1 variant UUIDs of version 1 (time and node
-  based), version 3 (name based, MD5), version 4 (random number based)
-  and version 5 (name based, SHA-1).
+  DCE 1.1 and ISO/IEC 11578:1996 and RFC 4122 compliant Universally
+  Unique Identifier (UUID). It supports DCE 1.1 variant UUIDs of version
+  1 (time and node based), version 3 (name based, MD5), version 4
+  (random number based) and version 5 (name based, SHA-1).
 
   UUIDs are 128 bit numbers which are intended to have a high likelihood
   of uniqueness over space and time and are computationally difficult


ossp-pkg/uuid/uuid.c 1.51 -> 1.52

--- uuid.c       2005/03/29 19:01:41     1.51
+++ uuid.c       2005/08/30 20:34:35     1.52
@@ -834,13 +834,13 @@
 } uuid_value_table[] = {
     { "nil",     /* 00000000-0000-0000-0000-000000000000 ("Nil UUID") */
       { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 } },
-    { "ns:DNS",  /* 6ba7b810-9dad-11d1-80b4-00c04fd430c8 (see draft-leach-uuids-guids-01.txt) */
+    { "ns:DNS",  /* 6ba7b810-9dad-11d1-80b4-00c04fd430c8 (see RFC 4122) */
       { 0x6b,0xa7,0xb8,0x10,0x9d,0xad,0x11,0xd1,0x80,0xb4,0x00,0xc0,0x4f,0xd4,0x30,0xc8 } },
-    { "ns:URL",  /* 6ba7b811-9dad-11d1-80b4-00c04fd430c8 (see draft-leach-uuids-guids-01.txt) */
+    { "ns:URL",  /* 6ba7b811-9dad-11d1-80b4-00c04fd430c8 (see RFC 4122) */
       { 0x6b,0xa7,0xb8,0x11,0x9d,0xad,0x11,0xd1,0x80,0xb4,0x00,0xc0,0x4f,0xd4,0x30,0xc8 } },
-    { "ns:OID",  /* 6ba7b812-9dad-11d1-80b4-00c04fd430c8 (see draft-leach-uuids-guids-01.txt) */
+    { "ns:OID",  /* 6ba7b812-9dad-11d1-80b4-00c04fd430c8 (see RFC 4122) */
       { 0x6b,0xa7,0xb8,0x12,0x9d,0xad,0x11,0xd1,0x80,0xb4,0x00,0xc0,0x4f,0xd4,0x30,0xc8 } },
-    { "ns:X500", /* 6ba7b814-9dad-11d1-80b4-00c04fd430c8 (see draft-leach-uuids-guids-01.txt) */
+    { "ns:X500", /* 6ba7b814-9dad-11d1-80b4-00c04fd430c8 (see RFC 4122) */
       { 0x6b,0xa7,0xb8,0x14,0x9d,0xad,0x11,0xd1,0x80,0xb4,0x00,0xc0,0x4f,0xd4,0x30,0xc8 } }
 };
 


ossp-pkg/uuid/uuid.pod 1.25 -> 1.26

--- uuid.pod     2005/01/23 11:28:51     1.25
+++ uuid.pod     2005/08/30 20:34:35     1.26
@@ -40,11 +40,11 @@
 =head1 DESCRIPTION
 
 B<OSSP uuid> is a ISO-C and Perl application programming interface (API)
-and corresponding command line interface (CLI) for the generation of DCE
-1.1 and ISO/IEC 11578:1996 compliant I<Universally Unique Identifier>
-(UUID). It supports DCE 1.1 variant UUIDs of version 1 (time and node
-based), version 3 (name based, MD5), version 4 (random number based) and
-version 5 (name based, SHA-1).
+and corresponding command line interface (CLI) for the generation of
+DCE 1.1, ISO/IEC 11578:1996 and RFC 4122 compliant I<Universally Unique
+Identifier> (UUID). It supports DCE 1.1 variant UUIDs of version 1 (time
+and node based), version 3 (name based, MD5), version 4 (random number
+based) and version 5 (name based, SHA-1).
 
 UUIDs are 128 bit numbers which are intended to have a high likelihood
 of uniqueness over space and time and are computationally difficult
@@ -391,11 +391,10 @@
 
 =item
 
-B<UUIDs and GUIDs>,
-IETF Internet Draft (expired),
-Paul J. Leach, Rich Salz,
-February 1998, 27 pages,
-http://www.opengroup.org/dce/info/draft-leach-uuids-guids-01.txt
+B<A Universally Unique IDentifier (UUID) URN Namespace>,
+P. Leach, M. Mealling, R. Salz,
+IETF Request for Comments: RFC 4122,
+July 2005, 32 pages,
 
 =item
 
@@ -434,14 +433,6 @@
 
 =item
 
-B<A UUID URN Namespace>,
-P. Leach, M. Mealling, R. Salz,
-IETF Internet Draft draft-mealling-uuid-urn-05,
-December 2004, 31 pages,
-http://www.ietf.org/internet-drafts/draft-mealling-uuid-urn-05.txt
-
-=item
-
 B<DCE 1.1 compliant UUID functions>,
 FreeBSD manual pages uuid(3) and uuidgen(2),
 http://www.freebsd.org/cgi/man.cgi?query=uuid&manpath=FreeBSD+6.0-current


ossp-pkg/uuid/uuid_cli.pod 1.19 -> 1.20

--- uuid_cli.pod 2005/01/23 11:28:51     1.19
+++ uuid_cli.pod 2005/08/30 20:34:35     1.20
@@ -58,10 +58,10 @@
 
 B<OSSP uuid> is a ISO-C and Perl application programming interface (API)
 and corresponding command line interface (CLI) for the generation of DCE
-1.1 and ISO/IEC 11578:1996 compliant I<Universally Unique Identifier>
-(UUID). It supports DCE 1.1 variant UUIDs of version 1 (time and node
-based), version 3 (name based, MD5), version 4 (random number based) and
-version 5 (name based, SHA-1).
+1.1 and ISO/IEC 11578:1996 and RFC 4122 compliant I<Universally Unique
+Identifier> (UUID). It supports DCE 1.1 variant UUIDs of version 1 (time
+and node based), version 3 (name based, MD5), version 4 (random number
+based) and version 5 (name based, SHA-1).
 
 UUIDs are 128 bit numbers which are intended to have a high likelihood
 of uniqueness over space and time and are computationally difficult

CVSTrac 2.0.1