static void
parse_xml (GappService *service)
{
+ xmlNs *ns;
xmlXPathObject *xpresult;
xmlXPathContext *xpcontext;
+ gchar *prefix;
+
guint node;
guint nodes;
/* searching workspaces */
xpcontext->node = priv->xroot;
- xpresult = xmlXPathEvalExpression ((const xmlChar *)"child::workspace", xpcontext);
+
+ /* registering namespaces */
+ ns = priv->xroot->nsDef;
+ while (ns)
+ {
+ if (ns->prefix == NULL)
+ {
+ prefix = g_strdup ("xmlns");
+ }
+ else
+ {
+ prefix = g_strdup (ns->prefix);
+ }
+
+ if (xmlXPathRegisterNs (xpcontext, prefix, ns->href) != 0)
+ {
+ g_warning ("Error on registering namespaces.");
+ }
+
+ g_free (prefix);
+
+ ns = ns->next;
+ }
+
+ xpresult = xmlXPathEvalExpression ((const xmlChar *)"child::xmlns:workspace", xpcontext);
if (!xmlXPathNodeSetIsEmpty (xpresult->nodesetval))
{
nodes = xpresult->nodesetval->nodeNr;
*gapp_workspace_get_title (GappWorkspace *gapp_workspace)
{
const gchar *ret;
+ AtomText *title;
+
+ ret = NULL;
g_object_get (G_OBJECT (gapp_workspace),
- "title", &ret,
+ "title", &title,
NULL);
+ if (title != NULL)
+ {
+ g_object_get (G_OBJECT (title),
+ "text", &ret,
+ NULL);
+ }
+
return ret;
}