aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2003-07-17 20:48:35 +0800
committerJP Rosevear <jpr@src.gnome.org>2003-07-17 20:48:35 +0800
commit732db2157efe52e897004904abf94585eab766b1 (patch)
tree0e7efacbae852eba66fff1a40f3c07c22e89f369
parentce6939b848eb228ec705aac4c8de6cfec16ecd10 (diff)
downloadgsoc2013-evolution-732db2157efe52e897004904abf94585eab766b1.tar
gsoc2013-evolution-732db2157efe52e897004904abf94585eab766b1.tar.gz
gsoc2013-evolution-732db2157efe52e897004904abf94585eab766b1.tar.bz2
gsoc2013-evolution-732db2157efe52e897004904abf94585eab766b1.tar.lz
gsoc2013-evolution-732db2157efe52e897004904abf94585eab766b1.tar.xz
gsoc2013-evolution-732db2157efe52e897004904abf94585eab766b1.tar.zst
gsoc2013-evolution-732db2157efe52e897004904abf94585eab766b1.zip
encode the text (e_xml_from_hash): pass xmlDoc to foreach method
2003-07-03 JP Rosevear <jpr@ximian.com> * e-xml-hash-utils.c (foreach_save_func): encode the text (e_xml_from_hash): pass xmlDoc to foreach method (e_xmlhash_new): check for file existence (e_xmlhash_destroy): only destroy the hash if it exists svn path=/trunk/; revision=21856
-rw-r--r--e-util/ChangeLog7
-rw-r--r--e-util/e-xml-hash-utils.c33
2 files changed, 31 insertions, 9 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index 2ca27724ad..65389666b9 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,3 +1,10 @@
+2003-07-03 JP Rosevear <jpr@ximian.com>
+
+ * e-xml-hash-utils.c (foreach_save_func): encode the text
+ (e_xml_from_hash): pass xmlDoc to foreach method
+ (e_xmlhash_new): check for file existence
+ (e_xmlhash_destroy): only destroy the hash if it exists
+
2003-07-01 Dan Winship <danw@ximian.com>
* e-gui-utils.c (e_icon_for_mime_type): New function to return an
diff --git a/e-util/e-xml-hash-utils.c b/e-util/e-xml-hash-utils.c
index e3a7e62951..3100807b13 100644
--- a/e-util/e-xml-hash-utils.c
+++ b/e-util/e-xml-hash-utils.c
@@ -26,6 +26,7 @@
#include <stdlib.h>
#include <string.h>
#include <libxml/xmlmemory.h>
+#include <libxml/entities.h>
GHashTable *
e_xml_to_hash (xmlDoc *doc, EXmlHashType type)
@@ -63,6 +64,7 @@ e_xml_to_hash (xmlDoc *doc, EXmlHashType type)
struct save_data {
EXmlHashType type;
+ xmlDoc *doc;
xmlNode *root;
};
@@ -71,13 +73,17 @@ foreach_save_func (gpointer key, gpointer value, gpointer user_data)
{
struct save_data *sd = user_data;
xmlNodePtr new_node;
+ xmlChar *enc;
if (sd->type == E_XML_HASH_TYPE_OBJECT_UID) {
new_node = xmlNewNode (NULL, "object");
xmlNewProp (new_node, "uid", (const char *) key);
} else
new_node = xmlNewNode (NULL, (const char *) key);
- xmlNodeSetContent (new_node, (const char *) value);
+
+ enc = xmlEncodeSpecialChars (sd->doc, value);
+ xmlNodeSetContent (new_node, enc);
+ xmlFree (enc);
xmlAddChild (sd->root, new_node);
}
@@ -90,6 +96,7 @@ e_xml_from_hash (GHashTable *hash, EXmlHashType type, const char *root_name)
doc = xmlNewDoc ("1.0");
sd.type = type;
+ sd.doc = doc;
sd.root = xmlNewDocNode (doc, NULL, root_name, NULL);
xmlDocSetRootElement (doc, sd.root);
@@ -122,19 +129,26 @@ EXmlHash *
e_xmlhash_new (const char *filename)
{
EXmlHash *hash;
- xmlDoc *doc;
+ xmlDoc *doc = NULL;
g_return_val_if_fail (filename != NULL, NULL);
- doc = xmlParseFile (filename);
- if (!doc)
- return NULL;
-
hash = g_new0 (EXmlHash, 1);
hash->filename = g_strdup (filename);
- hash->objects = e_xml_to_hash (doc, E_XML_HASH_TYPE_OBJECT_UID);
- xmlFreeDoc (doc);
+ if (g_file_test (filename, G_FILE_TEST_EXISTS)) {
+ doc = xmlParseFile (filename);
+ if (!doc) {
+ e_xmlhash_destroy (hash);
+
+ return NULL;
+ }
+ hash->objects = e_xml_to_hash (doc, E_XML_HASH_TYPE_OBJECT_UID);
+ xmlFreeDoc (doc);
+ } else {
+ hash->objects = g_hash_table_new (g_str_hash, g_str_equal);
+ }
+
return hash;
}
@@ -230,7 +244,8 @@ e_xmlhash_destroy (EXmlHash *hash)
g_return_if_fail (hash != NULL);
g_free (hash->filename);
- e_xml_destroy_hash (hash->objects);
+ if (hash->objects)
+ e_xml_destroy_hash (hash->objects);
g_free (hash);
}