From f13ce5b9c531c3e5dc64d4368ef061333b0abab3 Mon Sep 17 00:00:00 2001 From: timriker Date: Thu, 9 Oct 2003 22:05:15 +0000 Subject: [PATCH] hacking git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk/blootbot@841 c11ca15a-4712-0410-83d8-924469b57eb5 --- scripts/findparam.pl | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/scripts/findparam.pl b/scripts/findparam.pl index 8dd5408..d079e20 100644 --- a/scripts/findparam.pl +++ b/scripts/findparam.pl @@ -7,37 +7,38 @@ my(%param, %conf, %both); foreach (`find -name "*.pl"`) { chop; my $file = $_; + my $debug = 0; open(IN, $file); while () { chop; if (/IsParam\(['"](\S+?)['"]\)/) { -# print "File: $file: IsParam: $1\n"; + print "File: $file: IsParam: $1\n" if $debug; $param{$1}++; next; } if (/hasParam\(['"](\S+?)['"]\)/) { -# print "File: $file: hasParam: $1\n"; + print "File: $file: hasParam: $1\n" if $debug; $param{$1}++; next; } if (/getChanConfDefault\(['"](\S+?)['"]/) { -# print "File: $file: gCCD: $1\n"; + print "File: $file: gCCD: $1\n" if $debug; $both{$1}++; next; } if (/getChanConf\(['"](\S+?)['"]\)/) { -# print "File: $file: gCC: $1\n"; + print "File: $file: gCC: $1\n" if $debug; $conf{$1}++; next; } if (/IsChanConf\(['"](\S+?)['"]\)/) { -# print "File: $file: ICC: $1\n"; + print "File: $file: ICC: $1\n" if $debug; $conf{$1}++; next; } @@ -45,7 +46,7 @@ foreach (`find -name "*.pl"`) { # command hooks => hasParam => both. # note: this does not support multiple lines. if (/\'Identifier\'[\s\t]=>[\s\t]+\'(\S+?)\'/) { -# print "File: $file: command hook: $1\n"; + print "File: $file: command hook: $1\n" if $debug; $both{$1}++; next; } -- 2.39.2