/*
- * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2015-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
FormElementValidatorConstructorFunc validator_constructor;
FormElementValidatorXmlParsingFunc validator_xml_parsing;
+ gboolean to_unlink;
+ xmlNode *xnode_tmp;
+
priv = zak_form_form_get_instance_private (zakform);
xnode = xnode->children;
while (xnode)
{
+ to_unlink = FALSE;
+
if (xmlStrcmp (xnode->name, (const xmlChar *)"filter") == 0)
{
type = xmlGetProp (xnode, (const xmlChar *)"type");
{
g_warning ("Filter «%s» not found.", type);
}
+
+ to_unlink = TRUE;
}
else if (xmlStrcmp (xnode->name, (const xmlChar *)"validator") == 0)
{
{
g_warning ("Validator «%s» not found.", type);
}
+
+ to_unlink = TRUE;
+ }
+
+ if (to_unlink)
+ {
+ xnode_tmp = xnode;
}
xnode = xnode->next;
+
+ if (to_unlink)
+ {
+ xmlUnlinkNode (xnode_tmp);
+ xmlFreeNode (xnode_tmp);
+ }
}
}
element_xml_parsing (element, cur_clean);
}
}
+
+ xmlUnlinkNode (cur_clean);
+ xmlFreeNode (cur_clean);
}
break;
}
{
xmlNode *cur;
+ gboolean to_unlink;
+ xmlNode *xnode_tmp;
+
cur = xmlnode->children;
while (cur)
{
+ to_unlink = FALSE;
+
if (xmlStrcmp (cur->name, (const xmlChar *)"name") == 0)
{
zak_form_element_set_name (element, (const gchar *)xmlNodeGetContent (cur));
+ to_unlink = TRUE;
}
else if (xmlStrcmp (cur->name, (const xmlChar *)"is-key") == 0)
{
zak_form_element_set_is_key (element, xmlStrEqual ((const gchar *)xmlNodeGetContent (cur), "TRUE"));
+ to_unlink = TRUE;
}
else if (xmlStrcmp (cur->name, (const xmlChar *)"type") == 0)
{
zak_form_element_set_provider_type (element, (const gchar *)xmlNodeGetContent (cur));
+ to_unlink = TRUE;
}
else if (xmlStrcmp (cur->name, (const xmlChar *)"default-value") == 0)
{
zak_form_element_set_default_value (element, (const gchar *)xmlNodeGetContent (cur));
+ to_unlink = TRUE;
}
else if (xmlStrcmp (cur->name, (const xmlChar *)"format") == 0)
{
zak_form_element_set_format (element, ht);
g_hash_table_unref (ht);
+ to_unlink = TRUE;
}
else if (xmlStrcmp (cur->name, (const xmlChar *)"visible") == 0)
{
zak_form_element_set_visible (element, xmlStrEqual ((const gchar *)xmlNodeGetContent (cur), "TRUE"));
+ to_unlink = TRUE;
}
else if (xmlStrcmp (cur->name, (const xmlChar *)"editable") == 0)
{
zak_form_element_set_editable (element, xmlStrEqual ((const gchar *)xmlNodeGetContent (cur), "TRUE"));
+ to_unlink = TRUE;
}
else if (xmlStrcmp (cur->name, (const xmlChar *)"to-load") == 0)
{
zak_form_element_set_to_load (element, xmlStrEqual ((const gchar *)xmlNodeGetContent (cur), "TRUE"));
+ to_unlink = TRUE;
}
else if (xmlStrcmp (cur->name, (const xmlChar *)"to-save") == 0)
{
zak_form_element_set_to_save (element, xmlStrEqual ((const gchar *)xmlNodeGetContent (cur), "TRUE"));
+ to_unlink = TRUE;
+ }
+
+ if (to_unlink)
+ {
+ xnode_tmp = cur;
}
cur = cur->next;
+
+ if (to_unlink)
+ {
+ xmlUnlinkNode (xnode_tmp);
+ xmlFreeNode (xnode_tmp);
+ }
}
}