Skip to content

Commit

Permalink
Do not use REVISION anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Jan 29, 2014
1 parent 9ef9e35 commit eee2a6a
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 11 deletions.
3 changes: 2 additions & 1 deletion tools/awstats_buildstaticpages.pl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
#------------------------------------------------------------------------------
# Defines
#------------------------------------------------------------------------------
my $REVISION='$Revision$'; $REVISION =~ /\s(.*)\s/; $REVISION=$1;
my $REVISION = '20140126';
$REVISION =~ /\s(.*)\s/; $REVISION=$1;
my $VERSION="1.2 (build $REVISION)";

# ---------- Init variables --------
Expand Down
3 changes: 2 additions & 1 deletion tools/awstats_configure.pl
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@
eval('use Win32::TieRegistry ( Delimiter=>"/", TiedRef=>\$reg )');

use vars qw/ $REVISION $VERSION /;
$REVISION='$Revision$'; $REVISION =~ /\s(.*)\s/; $REVISION=$1;
$REVISION = '20140126';
$REVISION =~ /\s(.*)\s/; $REVISION=$1;
$VERSION="1.0 (build $REVISION)";

use vars qw/
Expand Down
3 changes: 2 additions & 1 deletion tools/awstats_exportlib.pl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
# Defines
#-----------------------------------------------------------------------------
use vars qw/ $REVISION $VERSION /;
my $REVISION='$Revision$'; $REVISION =~ /\s(.*)\s/; $REVISION=$1;
$REVISION = '20140126';
$REVISION =~ /\s(.*)\s/; $REVISION=$1;
my $VERSION="5.1 (build $REVISION)";

# ---------- Init variables -------
Expand Down
3 changes: 2 additions & 1 deletion tools/awstats_updateall.pl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
#------------------------------------------------------------------------------
# Defines
#------------------------------------------------------------------------------
my $REVISION='$Revision$'; $REVISION =~ /\s(.*)\s/; $REVISION=$1;
my $REVISION = '20140126';
$REVISION =~ /\s(.*)\s/; $REVISION=$1;
my $VERSION="1.0 (build $REVISION)";

# Default value of DIRCONFIG
Expand Down
3 changes: 2 additions & 1 deletion tools/geoip_generator.pl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
#------------------------------------------------------------------------------
# Defines
#------------------------------------------------------------------------------
my $REVISION='$Revision$'; $REVISION =~ /\s(.*)\s/; $REVISION=$1;
my $REVISION = '20140126';
$REVISION =~ /\s(.*)\s/; $REVISION=$1;
my $VERSION="0.5 (build $REVISION)";

use vars qw/
Expand Down
3 changes: 2 additions & 1 deletion tools/logresolvemerge.pl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@

# ---------- Init variables --------
use vars qw/ $REVISION $VERSION /;
$REVISION='$Revision$'; $REVISION =~ /\s(.*)\s/; $REVISION=$1;
$REVISION = '20140126';
$REVISION =~ /\s(.*)\s/; $REVISION=$1;
$VERSION="1.2 (build $REVISION)";

use vars qw/ $NBOFLINESFORBENCHMARK /;
Expand Down
3 changes: 2 additions & 1 deletion tools/maillogconvert.pl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
# Defines
#-------------------------------------------------------
use vars qw/ $REVISION $VERSION /;
$REVISION='$Revision$'; $REVISION =~ /\s(.*)\s/; $REVISION=$1;
$REVISION = '20140126';
$REVISION =~ /\s(.*)\s/; $REVISION=$1;
$VERSION="1.2 (build $REVISION)";

use vars qw/
Expand Down
3 changes: 2 additions & 1 deletion tools/urlaliasbuilder.pl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@


# variables, etc
my $REVISION='$Revision$'; $REVISION =~ /\s(.*)\s/; $REVISION=$1;
my $REVISION = '20140126';
$REVISION =~ /\s(.*)\s/; $REVISION=$1;
my $VERSION="1.0 (build $REVISION)";

############### EDIT HERE ###############
Expand Down
3 changes: 2 additions & 1 deletion wwwroot/cgi-bin/awredir.pl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
# Defines
#-------------------------------------------------------
use vars qw/ $REVISION $VERSION /;
$REVISION='$Revision$'; $REVISION =~ /\s(.*)\s/; $REVISION=$1;
$REVISION = '20140126';
$REVISION =~ /\s(.*)\s/; $REVISION=$1;
$VERSION="1.2 (build $REVISION)";

use vars qw / $DIR $PROG $Extension $DEBUG $DEBUGFILE $REPLOG $DEBUGRESET $SITE $REPCONF /;
Expand Down
2 changes: 1 addition & 1 deletion wwwroot/cgi-bin/awstats.pl
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
# Defines
#------------------------------------------------------------------------------
use vars qw/ $REVISION $VERSION /;
$REVISION = '$Revision$';
$REVISION = '20140126';
$REVISION =~ /\s(.*)\s/;
$REVISION = $1;
$VERSION = "7.3 (build $REVISION)";
Expand Down
2 changes: 1 addition & 1 deletion wwwroot/classes/src/AWGraphApplet.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public synchronized void start()
special = getParameter("special");
if (special == null) { special = ""; }

Log("Applet "+VERSION+" ($Revision$) init");
Log("Applet "+VERSION+" init");

String s = getParameter("b_fontsize");
if (s != null) { b_fontsize = Integer.parseInt(s); }
Expand Down

0 comments on commit eee2a6a

Please sign in to comment.