GNOME Bugzilla – Bug 346950
network share bookmarks with spaces badly displayed in Places menu
Last modified: 2006-07-23 14:40:11 UTC
Please describe the problem: Gtk bookmarks of network shares containing hex escaped characters are not unescaped when displayed in gnome-panel's Places menu. Steps to reproduce: Put a line like this into ~/.gtk-bookmarks smb://albator/DATA%20(D) Actual results: Places menu entry reads like DATA%20(D) on albator Expected results: Places menu entry should read like DATA (D) on albator Does this happen every time? Yes. Not fixed in 2.15.X either. Other information: Screenshots are at http://www.oook.cz/bsd/panelbug/ including comparision to Nautilus.
Created attachment 68602 [details] [review] crude patch modeled after what nautilus does with bookmarks
Fixed, but I used gnome_vfs_format_uri_for_display() sooner. 2006-07-23 Vincent Untz <vuntz@gnome.org> * panel-menu-items.c: (panel_place_menu_item_append_gtk_bookmarks): use gnome_vfs_unescape_string_for_display() instead of g_filename_display_basename() to make prettier strings. Fix bug #346950 Thanks!