]> saetta.ns0.it Git - libgapp/commitdiff
Solved problem of workspace not found.
authorAndrea Zagli <azagli@libero.it>
Sat, 5 Jan 2013 14:08:24 +0000 (15:08 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 5 Jan 2013 14:08:24 +0000 (15:08 +0100)
Before use xpath must register every namespace.

src/service.c
src/workspace.c

index a88df02b61d18a4cc2056a5f8baca15256532d03..f599bfa89c67a3a05fa23b85204055d26c799ec3 100644 (file)
@@ -240,9 +240,12 @@ gapp_service_get_property (GObject *object, guint property_id, GValue *value, GP
 static void
 parse_xml (GappService *service)
 {
+       xmlNs *ns;
        xmlXPathObject *xpresult;
        xmlXPathContext *xpcontext;
 
+       gchar *prefix;
+
        guint node;
        guint nodes;
 
@@ -254,7 +257,31 @@ parse_xml (GappService *service)
 
        /* 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;
index d3065dd7a1f69e55efacb180d9f3d1ee599e606f..dc4c03147890549b2d75a98ac68c882c86006b1b 100644 (file)
@@ -180,11 +180,21 @@ const gchar
 *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;
 }