File xfce4-smartbookmark-plugin-0.4.2-defaults.patch of Package xfce4-panel-plugins
diff -urNp xfce4-smartbookmark-plugin-0.4.2.orig/src/smartbookmark.c xfce4-smartbookmark-plugin-0.4.2/src/smartbookmark.c
--- xfce4-smartbookmark-plugin-0.4.2.orig/src/smartbookmark.c 2011-02-08 16:07:39.000000000 +0100
+++ xfce4-smartbookmark-plugin-0.4.2/src/smartbookmark.c 2011-02-08 16:20:12.000000000 +0100
@@ -175,10 +175,10 @@ static t_search *search_new(XfcePanelPlu
box = gtk_vbox_new(FALSE, 0);
/* default options */
- search->url = "http://bugs.debian.org/";
- search->label_text = "BTS";
+ search->url = "http://bugzilla.novell.com/";
+ search->label_text = "bnc#";
search->size = 5;
- search->hide_label = FALSE;
+ search->hide_label = TRUE;
/* read config file options */
filename = xfce_panel_plugin_save_location(plugin, TRUE);
search_read_config(search, filename);
@@ -247,10 +247,10 @@ static void search_read_config(t_search
if( (rcfile = xfce_rc_simple_open(filename, TRUE) ))
{
xfce_rc_set_group(rcfile, NULL);
- search->url = g_strdup(xfce_rc_read_entry(rcfile,"url","http://bugs.debian.org/"));
- search->label_text = g_strdup(xfce_rc_read_entry(rcfile,"value","DBS"));
+ search->url = g_strdup(xfce_rc_read_entry(rcfile,"url","http://bugzilla.novell.com/"));
+ search->label_text = g_strdup(xfce_rc_read_entry(rcfile,"value","bnc#"));
search->size = xfce_rc_read_int_entry(rcfile, "size", 5);
- search->hide_label = xfce_rc_read_bool_entry(rcfile, "hidelabel", FALSE);
+ search->hide_label = xfce_rc_read_bool_entry(rcfile, "hidelabel", TRUE);
}
}