Prepared for release 0.0.7
authorarjen <arjen>
Thu, 14 Aug 2003 10:37:04 +0000 (10:37 +0000)
committerarjen <arjen>
Thu, 14 Aug 2003 10:37:04 +0000 (10:37 +0000)
ChangeLog
configure
configure.in
src/web/page.class.php

index 262a054..ad5fcd3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,49 @@
+Aug 15, 2003 - Release 0.0.7
+====================================
+
+Database
+---------
+
+- Added index to the history table to improve performance.
+
+gcm_input
+----------
+
+- Added a new section 'logging' with three configuration parameters:
+   method       - Output method to use for logging.
+   destination  - Name of the log output destination.
+   level        - Log level: Verbose output if greater than 0.
+- Added '-i' option for incremental parameter updates.
+- Debug output to the log stream instead of cerr.
+- Fixed namespace problems in XPath searches of the DOM.
+- Moved string utility functions to a separate file.
+- Different kinds of log files are parsed by a collection of objects
+  of different classes, derived from the base class line_cooker
+  Depending on the message content or the message_type element in
+  XML, one of these objects is selected.
+- Logrunner is integrated with gcm_input. Although its functionality
+  is still limited, a connection between logrunner and gcm_input
+  is beginning to form.
+
+gcm_daemon
+----------
+
+- BUGFIX: Print an error message if a parameter does not have
+  any history.
+- BUGFIX: undefined variables and indices when processing sendmail logs.
+
+web interface
+--------------
+
+- BUGFIX: Convert special characters for HTML (<, >, and &) into
+  their entities.
+- BUGFIX: Removed parameters were somtimes shown on the wrong side
+  of the parameter difference page.
+- Added performance measurement to the parameters page.
+- Added editing of detailed object information.
+
 Jul 15, 2003 - Release 0.0.6
------------------------------
+====================================
 
 - Gcm_input reads IRIX system logs.
 - Gcm_input exits without reading any input if the database connection fails.
@@ -27,7 +71,7 @@ Jul 15, 2003 - Release 0.0.6
 - Removed parameters are displayed in a shaded style.
 
 Feb 21, 2003 - Release 0.0.5
-------------------------------
+====================================
 
 - The notifications web page keeps a record of each time a notification
   is displayed. Either on a listing or in detail.
@@ -74,7 +118,7 @@ Feb 21, 2003 - Release 0.0.5
 
 
 Feb 05, 2003 - Release 0.0.4
-----------------------------
+====================================
 
 - Added style parameters for diff-like table views and textarea elements.
 - Display and handle notifications in the web interface.
@@ -96,7 +140,7 @@ Feb 05, 2003 - Release 0.0.4
 - Added new fields to the 'type_of_issue' table.
 
 Dec 06, 2002 - Release 0.0.3
------------------------------
+====================================
 
 - Directory structure is reorganized and prepared for GNU configure.
 - gcm_input sets the value of log.processed to FALSE when inserting a
index 646665e..a8d1b7a 100755 (executable)
--- a/configure
+++ b/configure
@@ -693,7 +693,7 @@ fi
 
 PACKAGE=GNUCOMO
 
-VERSION=0.0.6
+VERSION=0.0.7
 
 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
   { echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }
index 2047ae3..b781f6d 100644 (file)
@@ -1,7 +1,7 @@
 
 dnl Process this file with autoconf to produce a configure script.
 AC_INIT(src/gcm_input/message.h)
-AM_INIT_AUTOMAKE(GNUCOMO, 0.0.6)
+AM_INIT_AUTOMAKE(GNUCOMO, 0.0.7)
 
 
 dnl Checks for programs.
@@ -17,7 +17,7 @@ AC_PROG_AWK
 
 AC_PATH_PROG(XML_CONFIG,xml2-config,no)
 
-if test $XML_CONFIG = "no" 
+if test $XML_CONFIG = "no"
 then
    echo "XML library not found (see http://xmlsoft.org/)."
    exit 1;
index 7ebc5e9..704b5aa 100644 (file)
@@ -8,7 +8,7 @@
 ***********************
 **      FILE NAME      : page.class.php
 **      SYSTEM NAME    : Gnucomo - Gnu Computer Monitoring
-**      VERSION NUMBER : $Revision: 1.4 $
+**      VERSION NUMBER : $Revision: 1.5 $
 **
 **  DESCRIPTION      : Base class for Gnucomo web interface pages.
 **
 
 /*****************************
    $Log: page.class.php,v $
-   Revision 1.4  2003-07-15 11:05:32  arjen
+   Revision 1.5  2003-08-14 10:37:04  arjen
+   Prepared for release 0.0.7
+
+   Revision 1.4  2003/07/15 11:05:32  arjen
    Chnaged version number to 0.0.6 in login form.
 
    Revision 1.3  2003/02/19 09:12:27  arjen
@@ -41,7 +44,7 @@
 
 ******************************/
 
-// RCSID = "$Id: page.class.php,v 1.4 2003-07-15 11:05:32 arjen Exp $";
+// RCSID = "$Id: page.class.php,v 1.5 2003-08-14 10:37:04 arjen Exp $";
 
 
 require_once('gnucomo_config.php');
@@ -62,7 +65,7 @@ function login_form()
 ?>
    <div class='login'>
    <h1 align="center">GNU Computer Monitoring</h1>
-   <h4 align="center"><i>Version 0.0.6, July 15, 2003</i></h4>
+   <h4 align="center"><i>Version 0.0.7, August 12, 2003</i></h4>
    <p>
       <h2 class='error'><?php echo $last_error?></h2>
    </p>