]> git.ipfire.org Git - thirdparty/AWStats.git/commitdiff
Remove warning
authoreldy <>
Mon, 28 Dec 2009 00:52:13 +0000 (00:52 +0000)
committereldy <>
Mon, 28 Dec 2009 00:52:13 +0000 (00:52 +0000)
tools/awstats_configure.pl
tools/awstats_exportlib.pl

index 689235fbe96fd5e6769ec1e9086d6deb4a8a7f7e..e9293eb6b7d8522f6332f67520fae821eec96d6f 100644 (file)
@@ -591,7 +591,6 @@ if ($bidon =~ /^y/i) {
        #----------------------------
        print "\n-----> Define config file name to create\n";
        print "What is the name of your web site or profile analysis ?\n";
-       # TODO Add example that use value found in ServerName ?
        print "Example: www.mysite.com\n";
        print "Example: demo\n";
        ASKCONFIG:
@@ -636,7 +635,6 @@ if ($bidon =~ /^y/i) {
        if (-s $configfile) { print "  Config file already exists. No overwrite possible on existing config files.\n"; }
        else {
                %ConfToChange=();
-               # TODO Ask path of log file to change LogFile parameter
                if ($OS eq 'linux' || $OS eq "macosx") { $ConfToChange{'DirData'}="$AWSTATS_DIRDATA_PATH"; }
                if ($OS eq 'windows') { $ConfToChange{'DirData'}='.'; }
                if ($UseAlias) {
index 3345e972da321dc8394a26cce92f0f94d360a4ed..d5e4f7f64c8cc6395b7df353a7039f96d2e451a2 100644 (file)
@@ -203,7 +203,6 @@ my @AllowedArgs=('-lib','-exportformat','-debug');
 
 $QueryString="";
 for (0..@ARGV-1) {
-       # TODO Check if ARGV is an AllowedArg
        if ($_ > 0) { $QueryString .= "&"; }
        my $NewLinkParams=$ARGV[$_]; $NewLinkParams =~ s/^-+//; $NewLinkParams =~ s/\s/%20/g;
        $QueryString .= "$NewLinkParams";