Prepared for patch 0.2.3
authorarjen <arjen>
Sat, 28 Sep 2002 07:03:06 +0000 (07:03 +0000)
committerarjen <arjen>
Sat, 28 Sep 2002 07:03:06 +0000 (07:03 +0000)
AXE.html
ChangeLog

index 43e322d..b346dd4 100644 (file)
--- a/AXE.html
+++ b/AXE.html
@@ -34,7 +34,9 @@ To get you started, read the <a href='tutorial.html'>tutorial</a>.
 <h3>Patches</h3>
 
 <ul>
-<li><a href="AXE-patch-0.2.1.bz2">AXE-patch-0.1.2</a>: Minor config fixes</li>
+<li><a href="AXE-patch-0.2.1.bz2">AXE-patch-0.2.1</a>: Minor config fixes</li>
+<li><a href="AXE-patch-0.2.2.bz2">AXE-patch-0.2.2</a>: Date and time formatting</li>
+<li><a href="AXE-patch-0.2.3.bz2">AXE-patch-0.2.3</a>: UTC class and substring by regular expression</li>
 </ul>
 
 <p>
index 1ca3b06..ca1f1ca 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,22 @@
+Sep 28, 2002 - Patch 0.2.3
+--------------------------
+
+ - Bugfix: In configuration::find_parameter(), check if the parameter node exists
+   before retrieving its contents.
+ - New feature: substring selection by regular expression, with
+      substring String::operator()(const regex &r);
+ - Bugfix: Reading a String object from an istream now checks for
+   end-of-file.
+ - Bugfix: conversion of an empty string to a date or hour object
+   now makes the values of such an object 0 (null) instead of giving
+   a segmentation fault.
+ - The class UTC combines the date and hour classes. The most basic
+   functions of the UTC class are now implemented.
+   These include constructors and conversion to and from String objects.
+ - New functions: date::proper(), hour::proper() and UTC::proper().
+   Return true if the object holds a proper clock time and/or calendar
+   date; false if at least one value is out of range.
+
 Sep 02, 2002 - Patch 0.2.2
 --------------------------