Changes related to version 4.3 packaging
This commit is contained in:
parent
972af0457f
commit
353f45f8dc
13
ChangeLog
13
ChangeLog
|
@ -1,5 +1,18 @@
|
|||
Revision history for SquidAnalyzer
|
||||
|
||||
4.3 - Thu Apr 26 20:00:59 CEST 2012
|
||||
|
||||
- Fix broken statistics when an access log file run over multiple
|
||||
years. Thanks to Jugurtha Massinissa for the report.
|
||||
- Prevent buildHtml to create directories on month/day without log.
|
||||
- Sort year's view per decreasing years.
|
||||
- Peer CD_SIBLING_HIT status will now be taken as local cache hit with
|
||||
a new configuration directive (SiblingHit) to disable this feature.
|
||||
Default is enable. Documentation and configuration file has been
|
||||
updated - Thanks to Nathanael BONIN for the feature request.
|
||||
- Add spec file for RPM packaging - Thanks to David Walser for the
|
||||
patch.
|
||||
|
||||
4.2 - Sun Jan 22 16:52:27 CET 2012
|
||||
|
||||
- Fix network alias issue broken in last release, now data files will
|
||||
|
|
2
INSTALL
2
INSTALL
|
@ -1,5 +1,5 @@
|
|||
NAME
|
||||
SquidAnalyzer v4.2 - Squid access log report generation tool
|
||||
SquidAnalyzer v4.3 - Squid access log report generation tool
|
||||
|
||||
REQUIREMENT
|
||||
perl 5.005_03 or higher and the following Perl modules:
|
||||
|
|
2
META.yml
2
META.yml
|
@ -1,7 +1,7 @@
|
|||
# http://module-build.sourceforge.net/META-spec.html
|
||||
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
|
||||
name: SquidAnalyzer
|
||||
version: 4.2
|
||||
version: 4.3
|
||||
version_from: SquidAnalyzer.pm
|
||||
installdirs: site
|
||||
requires:
|
||||
|
|
2
README
2
README
|
@ -1,5 +1,5 @@
|
|||
NAME
|
||||
SquidAnalyzer v4.2 - Squid access log report generation tool
|
||||
SquidAnalyzer v4.3 - Squid access log report generation tool
|
||||
|
||||
DESCRIPTION
|
||||
SquidAnalyzer parse native access log format of the Squid proxy and
|
||||
|
|
|
@ -4,7 +4,7 @@ package SquidAnalyzer;
|
|||
# Name : SquidAnalyzer.pm
|
||||
# Language : Perl 5
|
||||
# OS : All
|
||||
# Copyright: Copyright (c) 2001-2011 Gilles Darold - All rights reserved.
|
||||
# Copyright: Copyright (c) 2001-2012 Gilles Darold - All rights reserved.
|
||||
# Licence : This program is free software; you can redistribute it
|
||||
# and/or modify it under the same terms as Perl itself.
|
||||
# Author : Gilles Darold, gilles _AT_ darold _DOT_ net
|
||||
|
@ -23,8 +23,8 @@ BEGIN {
|
|||
use GD::Graph::pie3d;
|
||||
|
||||
# Set all internal variable
|
||||
$VERSION = '4.2';
|
||||
$COPYRIGHT = 'Copyright (c) 2001-2011 Gilles Darold - All rights reserved.';
|
||||
$VERSION = '4.3';
|
||||
$COPYRIGHT = 'Copyright (c) 2001-2012 Gilles Darold - All rights reserved.';
|
||||
$AUTHOR = "Gilles Darold - gilles _AT_ darold _DOT_ net";
|
||||
|
||||
@ISA = qw(Exporter);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
=head1 NAME
|
||||
|
||||
SquidAnalyzer v4.2 - Squid access log report generation tool
|
||||
SquidAnalyzer v4.3 - Squid access log report generation tool
|
||||
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
|
|
@ -124,13 +124,13 @@
|
|||
.\" ========================================================================
|
||||
.\"
|
||||
.IX Title "SQUIDANALYZER 1"
|
||||
.TH SQUIDANALYZER 1 "2012-04-06" "perl v5.10.1" "User Contributed Perl Documentation"
|
||||
.TH SQUIDANALYZER 1 "2012-04-26" "perl v5.10.1" "User Contributed Perl Documentation"
|
||||
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
|
||||
.\" way too many mistakes in technical documents.
|
||||
.if n .ad l
|
||||
.nh
|
||||
.SH "NAME"
|
||||
SquidAnalyzer v4.2 \- Squid access log report generation tool
|
||||
SquidAnalyzer v4.3 \- Squid access log report generation tool
|
||||
.SH "DESCRIPTION"
|
||||
.IX Header "DESCRIPTION"
|
||||
SquidAnalyzer parse native access log format of the Squid proxy and
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
Summary: Squid proxy log analyzer and report generator
|
||||
Name: squidanalyzer
|
||||
Version: 4.2
|
||||
Version: 4.3
|
||||
Release: %mkrel 1
|
||||
License: GPLv3
|
||||
Group: Monitoring
|
||||
|
|
Loading…
Reference in New Issue