aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ephy-state.c
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@it.gnome.org>2003-05-25 06:37:40 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-05-25 06:37:40 +0800
commita13c22de498a4d994644ee3e97a4ecabec42c805 (patch)
tree591a08d0c0b5b58370506e875e92ddd914f6b62c /lib/ephy-state.c
parent5402d87b1b65023672ec302aca8203af0850f33e (diff)
downloadgsoc2013-epiphany-a13c22de498a4d994644ee3e97a4ecabec42c805.tar
gsoc2013-epiphany-a13c22de498a4d994644ee3e97a4ecabec42c805.tar.gz
gsoc2013-epiphany-a13c22de498a4d994644ee3e97a4ecabec42c805.tar.bz2
gsoc2013-epiphany-a13c22de498a4d994644ee3e97a4ecabec42c805.tar.lz
gsoc2013-epiphany-a13c22de498a4d994644ee3e97a4ecabec42c805.tar.xz
gsoc2013-epiphany-a13c22de498a4d994644ee3e97a4ecabec42c805.tar.zst
gsoc2013-epiphany-a13c22de498a4d994644ee3e97a4ecabec42c805.zip
Revert latest node changes. Parents nodes need to be saved first and it's
2003-05-25 Marco Pesenti Gritti <marco@it.gnome.org> * embed/ephy-favicon-cache.c: (ephy_favicon_cache_load), (ephy_favicon_cache_save), (ephy_favicon_cache_init), (ephy_favicon_cache_finalize): * embed/ephy-history.c: (ephy_history_load), (ephy_history_save), (ephy_history_init): * lib/ephy-node-db.c: (ephy_node_db_get_property), (ephy_node_db_set_property), (ephy_node_db_class_init), (ephy_node_db_init), (ephy_node_db_finalize), (ephy_node_db_new), (_ephy_node_db_remove_id): * lib/ephy-node-db.h: * lib/ephy-node.c: (ephy_node_save_to_xml): * lib/ephy-node.h: * lib/ephy-state.c: (ephy_states_load), (ephy_states_save), (ensure_states): * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_load), (ephy_bookmarks_save), (ephy_bookmarks_init): Revert latest node changes. Parents nodes need to be saved first and it's easier to do that in a not generic way :/
Diffstat (limited to 'lib/ephy-state.c')
-rw-r--r--lib/ephy-state.c45
1 files changed, 41 insertions, 4 deletions
diff --git a/lib/ephy-state.c b/lib/ephy-state.c
index 0703ebddf..90d06883c 100644
--- a/lib/ephy-state.c
+++ b/lib/ephy-state.c
@@ -31,7 +31,6 @@
#define STATES_FILE "states.xml"
#define WINDOW_POSITION_UNSET -1
-#define EPHY_STATES_XML_VERSION "0.1"
enum
{
@@ -49,13 +48,30 @@ static EphyNodeDb *states_db = NULL;
static void
ephy_states_load (void)
{
+ xmlDocPtr doc;
+ xmlNodePtr root, child;
char *xml_file;
xml_file = g_build_filename (ephy_dot_dir (),
STATES_FILE,
NULL);
- ephy_node_db_load_from_xml (states_db, xml_file);
+ if (g_file_test (xml_file, G_FILE_TEST_EXISTS) == FALSE)
+ return;
+
+ doc = xmlParseFile (xml_file);
+ g_assert (doc != NULL);
+
+ root = xmlDocGetRootElement (doc);
+
+ for (child = root->children; child != NULL; child = child->next)
+ {
+ EphyNode *node;
+
+ node = ephy_node_new_from_xml (states_db, child);
+ }
+
+ xmlFreeDoc (doc);
g_free (xml_file);
}
@@ -63,6 +79,10 @@ ephy_states_load (void)
static void
ephy_states_save (void)
{
+ xmlDocPtr doc;
+ xmlNodePtr root;
+ GPtrArray *children;
+ int i;
char *xml_file;
if (states == NULL) return;
@@ -71,8 +91,25 @@ ephy_states_save (void)
STATES_FILE,
NULL);
- ephy_node_db_save_to_xml (states_db, xml_file);
+ /* save nodes to xml */
+ xmlIndentTreeOutput = TRUE;
+ doc = xmlNewDoc ("1.0");
+
+ root = xmlNewDocNode (doc, NULL, "ephy_bookmarks", NULL);
+ xmlDocSetRootElement (doc, root);
+
+ children = ephy_node_get_children (states);
+ for (i = 0; i < children->len; i++)
+ {
+ EphyNode *kid;
+
+ kid = g_ptr_array_index (children, i);
+
+ ephy_node_save_to_xml (kid, root);
+ }
+ ephy_node_thaw (states);
+ xmlSaveFormatFile (xml_file, doc, 1);
g_free (xml_file);
}
@@ -108,7 +145,7 @@ ensure_states (void)
{
if (states == NULL)
{
- states_db = ephy_node_db_new ("EphyStates", EPHY_STATES_XML_VERSION);
+ states_db = ephy_node_db_new ("EphyStates");
states = ephy_node_new_with_id (states_db, STATES_NODE_ID);
ephy_states_load ();
}