After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 128406 - Add 'Get New Headers in Subscribed Groups' to context menu
Add 'Get New Headers in Subscribed Groups' to context menu
Status: RESOLVED FIXED
Product: Pan
Classification: Other
Component: general
0.14.2.90
Other Linux
: Normal enhancement
: 0.14.3
Assigned To: Charles Kerr
Pan QA Team
Depends on:
Blocks:
 
 
Reported: 2003-12-03 01:05 UTC by daniel
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: Unversioned Enhancement



Description daniel 2003-12-03 01:05:16 UTC
I'd like to be able to right click on the newsgroups window and select "Get
New Headers in Subscribed Groups" from the context menu.  I've made a patch
against CVS for this:
(http://packetspike.net/~daniel/pan_get_sub_headers.diff)

--------------------
--- pan/pan/grouplist.c 2003-12-02 16:50:40.000000000 -0800
+++ pan_mod/pan/grouplist.c     2003-09-02 14:30:34.000000000 -0700
@@ -58,6 +58,7 @@
 {
        /* h */ {N_("/Get New _Headers"), NULL,
group_action_selected_download_new, 0, NULL},
        /* b */ {N_("/Get New Headers and _Bodies"), NULL,
group_action_selected_download_new_and_bodies, 0, NULL},
+            {N_("/Get New Headers in Subscribed Groups"), NULL,
group_action_subscribed_download_new, 0, NULL},
        /* o */ {N_("/More Download _Options..."), NULL,
group_action_selected_download_dialog, 0, NULL},
        /* c */ {N_("/Refresh Article _Counts"), NULL,
group_action_selected_update_count_info, 0, "<StockItem>", GTK_STOCK_REFRESH},
        /*   */ {N_("/---"), NULL, NULL, 0, "<Separator>"},
@@ -525,6 +526,7 @@
                        menu_set_sensitive (gif, "/Delete Group's
Articles", have_group);
                        menu_set_sensitive (gif, "/Get New Headers",
have_group);
                        menu_set_sensitive (gif, "/Get New Headers and
Bodies", have_group);
+            menu_set_sensitive (gif, "/Get New Headers in Subscribed
Groups", 1);
                        menu_set_sensitive (gif, "/More Download
Options...", have_group);
                        menu_set_sensitive (gif, "/Refresh Article Counts",
have_group);
                        menu_set_sensitive (gif, "/Subscribe", have_group);