2000-04-12 20:34:37 +00:00
|
|
|
#!/usr/bin/perl -w
|
|
|
|
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
|
|
|
|
|
|
|
#
|
|
|
|
# Nautilus
|
|
|
|
#
|
|
|
|
# Copyright (C) 2000 Eazel, Inc.
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License as
|
|
|
|
# published by the Free Software Foundation; either version 2 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this library; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
#
|
|
|
|
# Author: Darin Adler <darin@eazel.com>,
|
|
|
|
#
|
|
|
|
|
|
|
|
# check-FIXME.pl: Search for FIXMEs in the sources and correlate them
|
|
|
|
# with bugs in the bug database.
|
|
|
|
|
|
|
|
use diagnostics;
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
# default to all the files starting from the current directory
|
|
|
|
my %skip_files;
|
|
|
|
if (!@ARGV)
|
|
|
|
{
|
2000-05-17 00:48:10 +00:00
|
|
|
@ARGV = `find . \\( \\( -name po -prune -false \\) -or \\( -name CVS -prune -false \\) -or \\( -name '*' -and -type f \\) \\) -and ! \\( -name '*~' -or -name '#*' -or -name 'ChangeLog*' -or -name Entries \\) -print`;
|
2000-05-02 00:50:32 +00:00
|
|
|
%skip_files =
|
|
|
|
(
|
Added HACKING to the files to skip.
* check-FIXME.pl: Added HACKING to the files to skip.
* components/services/install/idl/trilobite-eazel-install.idl:
* components/services/install/lib/eazel-install-corba-callback.c:
(impl_install_failed), (impl_uninstall_failed),
(eazel_install_callback_query):
* components/services/install/lib/eazel-install-corba-types.c:
(corba_packagedatastruct_from_packagedata),
(packagedata_from_corba_packagedatastruct):
* components/services/install/lib/eazel-install-corba.c:
(impl_Eazel_Install_query):
* components/services/install/lib/eazel-install-protocols.c:
(eazel_install_fetch_package),
(eazel_install_fetch_package_which_provides),
(get_url_for_package), (get_search_url_for_package):
* components/services/install/lib/eazel-install-rpm-glue.c:
(eazel_install_do_rpm_transaction_save_report),
(eazel_install_fetch_rpm_dependencies),
(eazel_uninstall_upward_traverse),
(eazel_uninstall_downward_traverse):
* components/services/install/lib/eazel-install-types.c:
(packagedata_destroy_foreach):
* src/file-manager/fm-directory-view.c: (activate_callback):
* src/nautilus-window.c: (nautilus_window_realize):
Fixed "FIXME bugzilla.eazel.com ###:" formatting to match what
check-FIXME.pl looks for. The colon goes after the bug number.
And it has to be "bugzilla.eazel.com", not "bug".
* libnautilus-extensions/nautilus-directory-async.c:
(allow_metafile): Fixed a comment.
* libnautilus-extensions/nautilus-drag.c:
(nautilus_drag_can_accept_item):
Got rid of a fixed FIXME and changed to use
nautilus_file_is_directory instead of nautilus_file_get_file_type.
2000-08-02 19:26:39 +00:00
|
|
|
"./HACKING" => 1,
|
2000-05-02 00:50:32 +00:00
|
|
|
"./TODO" => 1,
|
|
|
|
"./aclocal.m4" => 1,
|
|
|
|
"./check-FIXME.pl" => 1,
|
|
|
|
"./config.sub" => 1,
|
|
|
|
"./libtool" => 1,
|
|
|
|
"./ltconfig" => 1,
|
|
|
|
"./ltmain.sh" => 1,
|
|
|
|
);
|
2000-04-12 20:34:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# locate all of the target lines
|
2000-04-27 18:36:33 +00:00
|
|
|
my $no_bug_lines = "";
|
2000-04-12 20:34:37 +00:00
|
|
|
my %bug_lines;
|
|
|
|
foreach my $file (@ARGV)
|
|
|
|
{
|
|
|
|
chomp $file;
|
|
|
|
next if $skip_files{$file};
|
|
|
|
next unless -T $file;
|
|
|
|
open(FILE, $file) || die "can't open $file";
|
|
|
|
while (<FILE>)
|
|
|
|
{
|
|
|
|
next if !/FIXME/;
|
2000-09-02 00:12:36 +00:00
|
|
|
if (/FIXME\s*:?\s*bugzilla.eazel.com\s+(\d+)/)
|
2000-04-12 20:34:37 +00:00
|
|
|
{
|
|
|
|
$bug_lines{$1} .= "$file:$.:$_";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$no_bug_lines .= "$file:$.:$_";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close(FILE);
|
|
|
|
}
|
|
|
|
|
|
|
|
# list the ones without bug numbers
|
2000-04-27 18:36:33 +00:00
|
|
|
if ($no_bug_lines ne "")
|
2000-04-12 20:34:37 +00:00
|
|
|
{
|
|
|
|
my @no_bug_list = sort split /\n/, $no_bug_lines;
|
Quick cleanup pass on FIXMEs.
* check-FIXME.pl: Added the count of FIXMEs with bug numbers
as well as the count of FIXMEs without.
* components/services/trilobite/lib/helixcode-utils.c:
(xml_get_value), (prune_xml), (check_for_root_user),
(check_for_redhat), (determine_redhat_version),
(determine_mandrake_version), (determine_turbolinux_version),
(determine_suse_version), (determine_debian_version),
(determine_distribution_type), (get_distribution_name):
A tiny bit of cleanup on these functions. There was some really
bad code in here, including code that compared strings with ==.
Also a lot of code that does open and then no close, for no
good reason, so I added the close.
* libnautilus-extensions/nautilus-file.c: (rename_callback),
(nautilus_file_get_mapped_uri):
* libnautilus-extensions/nautilus-icon-container.c:
(nautilus_icon_container_update_icon):
* libnautilus-extensions/nautilus-icon-dnd.c:
(confirm_switch_to_manual_layout), (nautilus_icon_dnd_begin_drag):
* src/file-manager/fm-icon-view.c: (update_layout_menus),
(sort_callback), (manual_layout_callback):
* src/ntl-view.c: (nautilus_view_destroy_client):
Added bug numbers to some FIXMEs.
2000-05-16 23:22:55 +00:00
|
|
|
print "\n", scalar(@no_bug_list), " FIXMEs don't have bug numbers:\n\n";
|
2000-04-12 20:34:37 +00:00
|
|
|
foreach my $line (@no_bug_list)
|
|
|
|
{
|
|
|
|
print $line, "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# list the ones with bugs that are not open
|
Quick cleanup pass on FIXMEs.
* check-FIXME.pl: Added the count of FIXMEs with bug numbers
as well as the count of FIXMEs without.
* components/services/trilobite/lib/helixcode-utils.c:
(xml_get_value), (prune_xml), (check_for_root_user),
(check_for_redhat), (determine_redhat_version),
(determine_mandrake_version), (determine_turbolinux_version),
(determine_suse_version), (determine_debian_version),
(determine_distribution_type), (get_distribution_name):
A tiny bit of cleanup on these functions. There was some really
bad code in here, including code that compared strings with ==.
Also a lot of code that does open and then no close, for no
good reason, so I added the close.
* libnautilus-extensions/nautilus-file.c: (rename_callback),
(nautilus_file_get_mapped_uri):
* libnautilus-extensions/nautilus-icon-container.c:
(nautilus_icon_container_update_icon):
* libnautilus-extensions/nautilus-icon-dnd.c:
(confirm_switch_to_manual_layout), (nautilus_icon_dnd_begin_drag):
* src/file-manager/fm-icon-view.c: (update_layout_menus),
(sort_callback), (manual_layout_callback):
* src/ntl-view.c: (nautilus_view_destroy_client):
Added bug numbers to some FIXMEs.
2000-05-16 23:22:55 +00:00
|
|
|
print "\n", scalar(keys %bug_lines), " FIXMEs with bug numbers.\n";
|
2000-04-12 20:34:37 +00:00
|
|
|
sub numerically { $a <=> $b; }
|
|
|
|
foreach my $bug (sort numerically keys %bug_lines)
|
|
|
|
{
|
|
|
|
# Check and see if the bug is open.
|
|
|
|
my $page = `wget -q -O - http://bugzilla.eazel.com/show_bug.cgi?id=$bug`;
|
|
|
|
$page =~ tr/\n/ /;
|
|
|
|
my $status = "unknown";
|
|
|
|
$status = $1 if $page =~ m|Status:.*</TD>\s*<TD>([A-Z]+)</TD>|;
|
|
|
|
next if $status eq "NEW" || $status eq "ASSIGNED" || $status eq "REOPENED";
|
|
|
|
|
|
|
|
# This a bug that is not open, so report it.
|
|
|
|
my @bug_line_list = sort split /\n/, $bug_lines{$bug};
|
|
|
|
print "\nBug $bug is $status:\n\n";
|
|
|
|
foreach my $line (@bug_line_list)
|
|
|
|
{
|
|
|
|
print $line, "\n";
|
|
|
|
}
|
|
|
|
}
|
Quick cleanup pass on FIXMEs.
* check-FIXME.pl: Added the count of FIXMEs with bug numbers
as well as the count of FIXMEs without.
* components/services/trilobite/lib/helixcode-utils.c:
(xml_get_value), (prune_xml), (check_for_root_user),
(check_for_redhat), (determine_redhat_version),
(determine_mandrake_version), (determine_turbolinux_version),
(determine_suse_version), (determine_debian_version),
(determine_distribution_type), (get_distribution_name):
A tiny bit of cleanup on these functions. There was some really
bad code in here, including code that compared strings with ==.
Also a lot of code that does open and then no close, for no
good reason, so I added the close.
* libnautilus-extensions/nautilus-file.c: (rename_callback),
(nautilus_file_get_mapped_uri):
* libnautilus-extensions/nautilus-icon-container.c:
(nautilus_icon_container_update_icon):
* libnautilus-extensions/nautilus-icon-dnd.c:
(confirm_switch_to_manual_layout), (nautilus_icon_dnd_begin_drag):
* src/file-manager/fm-icon-view.c: (update_layout_menus),
(sort_callback), (manual_layout_callback):
* src/ntl-view.c: (nautilus_view_destroy_client):
Added bug numbers to some FIXMEs.
2000-05-16 23:22:55 +00:00
|
|
|
print "\n";
|