collect stats for extensions as well

This commit is contained in:
myk%mozilla.org 2004-06-17 23:02:17 +00:00
Родитель 617b4a7abb
Коммит 4169cdf7d1
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -210,8 +210,8 @@ sub process_log {
$file =~ /^(.*)\/([^\/]*)$/;
($path, $filename) = ($1, $2);
# Only deal with releases, webtools, and language packs at this point.
next if $path !~ /releases/ && $path !~ /webtools/ && $path !~ /mozilla\/l10n\/lang/;
# Only deal with releases, extensions, webtools, and language packs at this point.
next if $path !~ /releases/ && $path !~ /extensions/ && $path !~ /webtools/ && $path !~ /mozilla\/l10n\/lang/;
# Strip the URL query string, if any, from the filename.
$filename = (split(/\?/, $filename))[0];