From: arjen Date: Thu, 14 Aug 2003 10:37:04 +0000 (+0000) Subject: Prepared for release 0.0.7 X-Git-Tag: V0_0_7~1 X-Git-Url: http://www.andromeda.nl/gitweb/?p=gnucomo.git;a=commitdiff_plain;h=976573d6875adff02b2d9d4d84a5c4648ea3a67f Prepared for release 0.0.7 --- diff --git a/ChangeLog b/ChangeLog index 262a054..ad5fcd3 100644 --- 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 diff --git a/configure b/configure index 646665e..a8d1b7a 100755 --- 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; } diff --git a/configure.in b/configure.in index 2047ae3..b781f6d 100644 --- a/configure.in +++ b/configure.in @@ -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; diff --git a/src/web/page.class.php b/src/web/page.class.php index 7ebc5e9..704b5aa 100644 --- a/src/web/page.class.php +++ b/src/web/page.class.php @@ -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. ** @@ -26,7 +26,10 @@ /***************************** $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() ?>

GNU Computer Monitoring

-

Version 0.0.6, July 15, 2003

+

Version 0.0.7, August 12, 2003