summaryrefslogtreecommitdiff
path: root/obt/xml.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2012-09-30 15:50:26 -0400
committerDana Jansens <danakj@orodu.net>2012-09-30 15:53:35 -0400
commitdff52764822f68596134c2548966eb78777b6d2a (patch)
tree08fed8a4bec1aee59d5b7d63a5616b838f31b8a0 /obt/xml.c
parent3aee1ac3a199a40020e204e42ed9a48e2f4e1404 (diff)
Don't strip leading whitespace from menu labels (Fix bug 4782)
Diffstat (limited to 'obt/xml.c')
-rw-r--r--obt/xml.c24
1 files changed, 19 insertions, 5 deletions
diff --git a/obt/xml.c b/obt/xml.c
index fde3b76d..5b7e77b5 100644
--- a/obt/xml.c
+++ b/obt/xml.c
@@ -321,16 +321,22 @@ void obt_xml_tree_from_root(ObtXmlInst *i)
obt_xml_tree(i, i->root->children);
}
-gchar *obt_xml_node_string(xmlNodePtr node)
+gchar *obt_xml_node_string_unstripped(xmlNodePtr node)
{
xmlChar *c = xmlNodeGetContent(node);
gchar *s;
- if (c) g_strstrip((char*)c); /* strip leading/trailing whitespace */
s = g_strdup(c ? (gchar*)c : "");
xmlFree(c);
return s;
}
+gchar *obt_xml_node_string(xmlNodePtr node)
+{
+ gchar* result = obt_xml_node_string_unstripped(node);
+ g_strstrip(result); /* strip leading/trailing whitespace */
+ return result;
+}
+
gint obt_xml_node_int(xmlNodePtr node)
{
xmlChar *c = xmlNodeGetContent(node);
@@ -413,13 +419,12 @@ gboolean obt_xml_attr_int(xmlNodePtr node, const gchar *name, gint *value)
return r;
}
-gboolean obt_xml_attr_string(xmlNodePtr node, const gchar *name,
- gchar **value)
+gboolean obt_xml_attr_string_unstripped(xmlNodePtr node, const gchar *name,
+ gchar **value)
{
xmlChar *c = xmlGetProp(node, (const xmlChar*) name);
gboolean r = FALSE;
if (c) {
- g_strstrip((char*)c); /* strip leading/trailing whitespace */
*value = g_strdup((gchar*)c);
r = TRUE;
}
@@ -427,6 +432,15 @@ gboolean obt_xml_attr_string(xmlNodePtr node, const gchar *name,
return r;
}
+gboolean obt_xml_attr_string(xmlNodePtr node, const gchar *name,
+ gchar **value)
+{
+ gboolean result = obt_xml_attr_string_unstripped(node, name, value);
+ if (result)
+ g_strstrip(*value); /* strip leading/trailing whitespace */
+ return result;
+}
+
gboolean obt_xml_attr_contains(xmlNodePtr node, const gchar *name,
const gchar *val)
{