From: Andrea Zagli Date: Sat, 5 Jan 2013 15:45:04 +0000 (+0100) Subject: Added tag accept to collection parsing. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=d76e6862cc21d79802f04386c22624248c06c6e4;p=libgapp Added tag accept to collection parsing. --- diff --git a/.anjuta_sym_db.db b/.anjuta_sym_db.db index 354436d..3df70f8 100644 Binary files a/.anjuta_sym_db.db and b/.anjuta_sym_db.db differ diff --git a/src/collection.c b/src/collection.c index 88e2797..43da539 100644 --- a/src/collection.c +++ b/src/collection.c @@ -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])); } }