summaryrefslogtreecommitdiff
path: root/check-THANKS.pl
diff options
context:
space:
mode:
authorMaciej Stachowiak <mstachow@src.gnome.org>2000-10-03 04:12:50 +0000
committerMaciej Stachowiak <mstachow@src.gnome.org>2000-10-03 04:12:50 +0000
commit10b8bae1c2bf9199ed396af201a8e59ee6a4c76d (patch)
treeabcb7d8102bdd1fa47a8478b93e199b864e2b707 /check-THANKS.pl
parentf82a3ba61e08c658c8982e017c70ec649e2e74f0 (diff)
downloadnautilus-10b8bae1c2bf9199ed396af201a8e59ee6a4c76d.tar.gz
Fixed bug 3223.
* components/adapter/nautilus-adapter-file-load-strategy.c: (nautilus_adapter_file_load_strategy_new), (nautilus_adapter_file_load_strategy_load_location): * components/adapter/nautilus-adapter-file-load-strategy.h: * components/adapter/nautilus-adapter-load-strategy.c: (nautilus_adapter_load_strategy_initialize_class), (nautilus_adapter_load_strategy_get), (nautilus_adapter_load_strategy_stop_loading), (nautilus_adapter_load_strategy_report_load_underway), (nautilus_adapter_load_strategy_report_load_progress), (nautilus_adapter_load_strategy_report_load_complete), (nautilus_adapter_load_strategy_report_load_failed): * components/adapter/nautilus-adapter-load-strategy.h: * components/adapter/nautilus-adapter-progressive-load-strategy.c: (nautilus_adapter_progressive_load_strategy_destroy), (nautilus_adapter_progressive_load_strategy_new), (stop_loading), (nautilus_adapter_progressive_load_strategy_load_location), (nautilus_adapter_progressive_load_strategy_stop_loading): * components/adapter/nautilus-adapter-progressive-load-strategy.h: * components/adapter/nautilus-adapter-stream-load-strategy.c: (nautilus_adapter_stream_load_strategy_new), (nautilus_adapter_stream_load_strategy_load_location): * components/adapter/nautilus-adapter-stream-load-strategy.h: * components/adapter/nautilus-adapter.c: (nautilus_adapter_destroy), (nautilus_adapter_new), (nautilus_adapter_load_underway_callback), (nautilus_adapter_load_progress_callback), (nautilus_adapter_load_complete_callback), (nautilus_adapter_load_failed_callback): Changed the load strategies to no longer depend on the view; instead, they emit appropriate signals at different stages of progress, which the NautilusAdapter object hooks into (connecting with _connect_object_while_alive). Also, the progressive load strategy now checks for cancellation around various CORBA calls, so it should actually respect the stop button. * AUTHORS, THANKS, check-THANKS.pl: Updated Josh Barrow's email address.
Diffstat (limited to 'check-THANKS.pl')
-rwxr-xr-xcheck-THANKS.pl5
1 files changed, 3 insertions, 2 deletions
diff --git a/check-THANKS.pl b/check-THANKS.pl
index e9016924c..5e5b49a18 100755
--- a/check-THANKS.pl
+++ b/check-THANKS.pl
@@ -58,7 +58,8 @@ my %email_map = ('at@ue-spacy.com' => 'tagoh@gnome.gr.jp',
'kmaraas@online.no' => 'kmaraas@gnome.org',
'kmaraas@gnu.org' => 'kmaraas@gnome.org',
'raph@gimp.org' => 'raph@acm.org',
- 'baulig@suse.de' => 'martin@home-of-linux.org');
+ 'baulig@suse.de' => 'martin@home-of-linux.org'
+ 'linuxfan@ionet.net' => 'josh@eazel.com');
# Some ChangeLog lines that carry no credit (incorrect changes that
@@ -178,7 +179,7 @@ if (@uncredited) {
print "The following people are in the ChangeLog but not credited in THANKS or AUTHORS:\n\n";
foreach my $person (@uncredited) {
- print "xx ${person}\n";
+ print "${person}\n";
}
print "\n";
}