Check-in Number:
|
5393 | |
Date: |
2006-May-10 10:53:11 (local)
2006-May-10 08:53:11 (UTC) |
User: | rse |
Branch: | |
Comment: |
Replaced "clock_seq_and_reserved" with
"clock_seq_high_and_reserved" in uuid.pod to already reflect the
description in the forthcoming RFC. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/uuid/ChangeLog 1.112 -> 1.113
--- ChangeLog 2006/03/17 07:10:10 1.112
+++ ChangeLog 2006/05/10 08:53:11 1.113
@@ -11,7 +11,12 @@
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.4.2 and 1.4.3 (13-Mar-2006 to XX-Mar-2006)
+ Changes between 1.4.2 and 1.4.3 (13-Mar-2006 to XX-May-2006)
+
+ o Replaced "clock_seq_and_reserved" with
+ "clock_seq_high_and_reserved" in uuid.pod to already reflect the
+ description in the forthcoming RFC.
+ [Ralf S. Engelschall]
o Speed up processing in uuid_str.c by reducing va_copy() calls from
two to just one per formatting.
|
|
ossp-pkg/uuid/uuid.pod 1.35 -> 1.36
--- uuid.pod 2006/01/13 06:54:15 1.35
+++ uuid.pod 2006/05/10 08:53:11 1.36
@@ -92,20 +92,22 @@
digits. Formally, the string representation is defined by the following
grammar:
- uuid = <time_low> "-" <time_mid> "-"
- <time_high_and_version> "-"
- <clock_seq_and_reserved>
- <clock_seq_low> "-" <node>
- time_low = 4*<hex_octet>
- time_mid = 2*<hex_octet>
- time_high_and_version = 2*<hex_octet>
- clock_seq_and_reserved = <hex_octet>
- clock_seq_low = <hex_octet>
- node = 6*<hex_octet>
- hex_octet = <hex_digit> <hex_digit>
- hex_digit = "0"|"1"|"2"|"3"|"4"|"5"|"6"|"7"|"8"|"9"
- |"a"|"b"|"c"|"d"|"e"|"f"
- |"A"|"B"|"C"|"D"|"E"|"F"
+ uuid = <time_low> "-"
+ <time_mid> "-"
+ <time_high_and_version> "-"
+ <clock_seq_high_and_reserved>
+ <clock_seq_low> "-"
+ <node>
+ time_low = 4*<hex_octet>
+ time_mid = 2*<hex_octet>
+ time_high_and_version = 2*<hex_octet>
+ clock_seq_high_and_reserved = <hex_octet>
+ clock_seq_low = <hex_octet>
+ node = 6*<hex_octet>
+ hex_octet = <hex_digit> <hex_digit>
+ hex_digit = "0"|"1"|"2"|"3"|"4"|"5"|"6"|"7"|"8"|"9"
+ |"a"|"b"|"c"|"d"|"e"|"f"
+ |"A"|"B"|"C"|"D"|"E"|"F"
An example of a UUID string representation is the ASCII string
"C<54531d28-402b-11d8-af12-0002a5094c23>". The string representation
|
|