From f079b169f32e5407e55266392b46498edafa1a85 Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Thu, 8 Sep 2011 13:37:17 +0200 Subject: [PATCH] Strip dchub:// prefix from XML hublists. --- clients/gtk2/hublist-xml.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/clients/gtk2/hublist-xml.c b/clients/gtk2/hublist-xml.c index 46a53ce..fcd9d73 100644 --- a/clients/gtk2/hublist-xml.c +++ b/clients/gtk2/hublist-xml.c @@ -175,12 +175,18 @@ int pubhubxmlhandler(int op, char *buf, size_t len) attr = (char *)xmlGetProp(n, (xmlChar *)names[i]); if(attr != NULL) { - if(types[i] == G_TYPE_STRING) + if(!strcmp(names[i], "Address")) { + if(!strncmp(attr, "dchub://", 8)) + gtk_list_store_set(model, &iter, i, attr + 8, -1); + else + gtk_list_store_set(model, &iter, i, attr, -1); + } else if(types[i] == G_TYPE_STRING) { gtk_list_store_set(model, &iter, i, attr, -1); - else if(types[i] == G_TYPE_INT) + } else if(types[i] == G_TYPE_INT) { gtk_list_store_set(model, &iter, i, atoi(attr), -1); - else if(types[i] == G_TYPE_INT64) + } else if(types[i] == G_TYPE_INT64) { gtk_list_store_set(model, &iter, i, strtoll(attr, NULL, 0), -1); + } xmlFree(attr); } } -- 2.11.0