From: eldy <>
Date: Mon, 21 Oct 2002 12:58:29 +0000 (+0000)
Subject: Updated documentation
X-Git-Tag: AWSTATS_5_1_RELEASE~23
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=50d85b886cd03fef30f05496b79c4c10f18ae9a4;p=thirdparty%2FAWStats.git
Updated documentation
---
diff --git a/docs/awstats_config.html b/docs/awstats_config.html
index 6d9e2af3..ffa7b6ae 100644
--- a/docs/awstats_config.html
+++ b/docs/awstats_config.html
@@ -302,8 +302,8 @@ when reading it), follow the example:
# With DNSLookup to 0, all hosts will be reported by their IP addresses and
# not by the full hostname of visitors. Domain/Country chart will also report
# all visitors from a domain/country "Unknown".
-
# If you need to set DNSLookup to 1, don't forget that reverse DNS lookup
-
# increase dramatically AWStats update process. Do not use on large web sites.
+
# If you need to set DNSLookup to 1, don't forget that this will reduce
+
# dramatically AWStats update process speed. Do not use on large web sites.
# Possible values:
# 0 No DNS Lookup
# 1 DNS Lookup is fully enabled
diff --git a/wwwroot/cgi-bin/awstats.model.conf b/wwwroot/cgi-bin/awstats.model.conf
index b1b17a7c..3c324c22 100644
--- a/wwwroot/cgi-bin/awstats.model.conf
+++ b/wwwroot/cgi-bin/awstats.model.conf
@@ -110,8 +110,8 @@ LogSeparator=" "
# With DNSLookup to 0, all hosts will be reported by their IP addresses and
# not by the full hostname of visitors. Domain/Country chart will also report
# all visitors from a domain/country "Unknown".
-# If you need to set DNSLookup to 1, don't forget that reverse DNS lookup
-# increase dramatically AWStats update process. Do not use on large web sites.
+# If you need to set DNSLookup to 1, don't forget that this will reduce
+# dramatically AWStats update process speed. Do not use on large web sites.
# Possible values:
# 0 - No DNS Lookup
# 1 - DNS Lookup is fully enabled
diff --git a/wwwroot/cgi-bin/awstats.pl b/wwwroot/cgi-bin/awstats.pl
index 7db4c147..8524a45f 100644
--- a/wwwroot/cgi-bin/awstats.pl
+++ b/wwwroot/cgi-bin/awstats.pl
@@ -3620,7 +3620,8 @@ sub Init_HashArray {
}
#------------------------------------------------------------------------------
-# Function: Change word separators into space and remove bad coded chars
+# Function: Change word separators of a keyphrase string into space and
+# remove bad coded chars
# Parameters: stringtodecode
# Input: None
# Output: None
@@ -3628,7 +3629,7 @@ sub Init_HashArray {
#------------------------------------------------------------------------------
sub ChangeWordSeparatorsIntoSpace {
$_[0] =~ s/%1[03]/ /g;
- $_[0] =~ s/%2[02789ac]/ /ig;
+ $_[0] =~ s/%2[02789abc]/ /ig;
$_[0] =~ s/%3a/ /ig;
$_[0] =~ tr/\+\'\(\)\"\*,:/ /s; # "&" and "=" must not be in this list
}