]> saetta.ns0.it Git - libgapp/commitdiff
Added tag accept to collection parsing.
authorAndrea Zagli <azagli@libero.it>
Sat, 5 Jan 2013 15:45:04 +0000 (16:45 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 5 Jan 2013 15:45:04 +0000 (16:45 +0100)
.anjuta_sym_db.db
src/collection.c

index 354436da82e164a92e99eff5ee871332cde3b139..3df70f8af9a33da2d67a8f6727c6e16969604c6b 100644 (file)
Binary files a/.anjuta_sym_db.db and b/.anjuta_sym_db.db differ
index 88e27977277ddb265b15cca7741bf2db04d1b920..43da539a25121f5e8702c0df8db11ba3f8b13c6f 100644 (file)
@@ -51,6 +51,7 @@ struct _GappCollectionPrivate
        {
                gchar *href;
                AtomText *title;
+               GSList *accept;
        };
 
 G_DEFINE_TYPE (GappCollection, gapp_collection, TYPE_ATOM_COMMON)
@@ -83,6 +84,9 @@ gapp_collection_class_init (GappCollectionClass *klass)
 static void
 gapp_collection_init (GappCollection *collection)
 {
+       GappCollectionPrivate *priv = GAPP_COLLECTION_GET_PRIVATE (collection);
+
+       priv->accept = NULL;
 }
 
 /**
@@ -139,6 +143,7 @@ GappCollection
                }
 
        gapp_collection = gapp_collection_new (href);
+       priv = GAPP_COLLECTION_GET_PRIVATE (gapp_collection);
 
        title = NULL;
        xpcontext = xmlXPathNewContext (xnode->doc);
@@ -174,6 +179,8 @@ GappCollection
                {
                        for (i = 0; i < xpresult->nodesetval->nodeNr; i++)
                                {
+                                       g_message ("Accept found: %s", xmlNodeGetContent (xpresult->nodesetval->nodeTab[i]));
+                                       priv->accept = g_slist_append (priv->accept, xmlNodeGetContent (xpresult->nodesetval->nodeTab[i]));
                                }
                }