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 511987 - filter is not working
filter is not working
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: Class: GtkRecent
2.12.x
Other Linux
: Normal normal
: ---
Assigned To: gtk-bugs
Emmanuele Bassi (:ebassi)
Depends on:
Blocks:
 
 
Reported: 2008-01-25 09:13 UTC by Jonh Wendell
Modified: 2008-02-10 21:47 UTC
See Also:
GNOME target: ---
GNOME version: 2.21/2.22


Attachments
proposed patch (863 bytes, patch)
2008-02-10 01:54 UTC, Jonh Wendell
committed Details | Review

Description Jonh Wendell 2008-01-25 09:13:32 UTC
In vinagre, I'm using GtkRecent to store recent connections. I'm saving the connections using group "vinagre" [1].

When I add a filter to only show entries with "vinagre" group [2], it's not working. I tried to filter by app_name, and by mime_type, with no success.

If I don't use the filter, everything is OK, except that all recent documents are shown in the vinagre menu, which I don't actually want :)

[1] - http://svn.gnome.org/viewvc/vinagre/trunk/src/vinagre-tab.c?view=annotate (Line 349)

[2] - http://svn.gnome.org/viewvc/vinagre/trunk/src/vinagre-window.c?view=annotate (Line 405)
Comment 1 Emmanuele Bassi (:ebassi) 2008-01-25 10:12:31 UTC
I've just tested with gtk+ trunk and setting a filter worked as expected:

  GtkAction *action;
  GtkRecentFilter *filter;

  filter = gtk_recent_filter_new ();
  gtk_recent_filter_add_mime_type (filter, "image/*");

  action = gtk_recent_action_new ("recent",
                                  "Open Recent", "Open recent files",
                                  NULL);
  gtk_recent_chooser_set_filter (GTK_RECENT_CHOOSER (action), filter);

this adds a filter for the given MIME type. changing the filter to:

  gtk_recent_filter_add_group (filter, "Totem");

I correctly get all the files under the Totem group.

gtk_recent_chooser_set_filter() should be implicitly called by gtk_recent_chooser_add_filter(), on a GtkRecentAction and a GtkRecentChooserMenu (as they support just a single filter); in any case, could you please try using set_filter() instead?
Comment 2 Jonh Wendell 2008-01-25 11:28:51 UTC
Ah, I see what's happening: It's working for all kind of filters, but for vinagre.

Isn't GtkRecentAction prepared to work with things other than files?

Vinagre's .recently-used.xbel entry looks like:
<bookmark href="200.100.100.191:5900" added=...

Notice that href isn't a file, but a string that vinagre understands.
Comment 3 Jonh Wendell 2008-01-25 11:51:24 UTC
BTW, The places menu, under panel works correctly, I guess because it's not using filters...
Comment 4 Emmanuele Bassi (:ebassi) 2008-01-25 12:06:19 UTC
GtkRecentFilter, like the entire GtkRecent machinery, expects a valid URI and not an IP address.

you should probably provide a custom filter function instead, to override the default one. you should also pass a valid URI, albeit with a custom scheme; something like "vinagre://<ipaddress>:<port>".

in gtk+ trunk I'm going to port most of the internals to GIO as well, but that will not fix passing invalid URIs to gtk_recent_manager_add_*().
Comment 5 Jonh Wendell 2008-01-31 17:02:32 UTC
Thanks, Emmanuele.

Vinagre is already passing a valid URI (vnc://host:port), with a valid entry in gconf (/desktop/gnome/url-handlers/vnc).

gnome-panel is working.

But, inside vinagre, it doesn't work :(

As you said, I've created a custom filter:
  filter = gtk_recent_filter_new ();
  gtk_recent_filter_add_custom (filter,
				GTK_RECENT_FILTER_GROUP,
				vinagre_window_filter_recent,
				NULL,
				NULL);
  gtk_recent_chooser_add_filter (GTK_RECENT_CHOOSER (window->priv->recent_action),
				 filter);

My filter function:
static gboolean
vinagre_window_filter_recent (const GtkRecentFilterInfo *info,
			      gpointer data)
{
  gint i;

  if (!info->groups)
    return FALSE;

  for (i=0; info->groups[i]; i++)
    if (!g_strcmp0 (info->groups[i], "vinagre"))
      return TRUE;

  return FALSE;
}

The items are passing through my function (I tested with lots of printf's), and are passing in the test, returning TRUE. But they don't appear in menu :(

What's missing? What's wrong?

Thanks.
Comment 6 Jonh Wendell 2008-02-10 01:54:30 UTC
Created attachment 104808 [details] [review]
proposed patch

I think I found the problem. With this patch, Vinagre is working fine :)
Comment 7 Matthias Clasen 2008-02-10 06:15:17 UTC
2008-02-10  Matthias Clasen  <mclasen@redhat.com>

        * gtk/gtkrecentaction.c: Propagate local-only.  (#511987,
        Jonh Wendell)

Comment 8 Jonh Wendell 2008-02-10 18:35:40 UTC
Hi, Matthias.

Any chance this get into 2.12 branch? (I mean, is this fix going to get into GNOME 2.22?)
Comment 9 Matthias Clasen 2008-02-10 21:47:06 UTC
I've committed it to both branches.