aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-config-upgrade.c
diff options
context:
space:
mode:
authorMichael Zucci <zucchi@src.gnome.org>2003-03-20 18:07:51 +0800
committerMichael Zucci <zucchi@src.gnome.org>2003-03-20 18:07:51 +0800
commit4ac5734af0ee578f5e769bf4bd5a420d379d2155 (patch)
tree3b448d4ed50083284a8cab8d5d23f5d9f3148768 /shell/e-config-upgrade.c
parent9e5f92c8e4f778a3293a7cfe208995a2ac8ab069 (diff)
downloadgsoc2013-evolution-4ac5734af0ee578f5e769bf4bd5a420d379d2155.tar
gsoc2013-evolution-4ac5734af0ee578f5e769bf4bd5a420d379d2155.tar.gz
gsoc2013-evolution-4ac5734af0ee578f5e769bf4bd5a420d379d2155.tar.bz2
gsoc2013-evolution-4ac5734af0ee578f5e769bf4bd5a420d379d2155.tar.lz
gsoc2013-evolution-4ac5734af0ee578f5e769bf4bd5a420d379d2155.tar.xz
gsoc2013-evolution-4ac5734af0ee578f5e769bf4bd5a420d379d2155.tar.zst
gsoc2013-evolution-4ac5734af0ee578f5e769bf4bd5a420d379d2155.zip
*** empty log message ***
svn path=/trunk/; revision=20378
Diffstat (limited to 'shell/e-config-upgrade.c')
-rw-r--r--shell/e-config-upgrade.c29
1 files changed, 27 insertions, 2 deletions
diff --git a/shell/e-config-upgrade.c b/shell/e-config-upgrade.c
index 4d574cc28e..e096b74c6b 100644
--- a/shell/e-config-upgrade.c
+++ b/shell/e-config-upgrade.c
@@ -1601,7 +1601,30 @@ static int load_accounts_1_0(xmlDocPtr doc)
*
* The tracked version is upgraded to the latest even if no
* configuration upgrades are required for that version.
+ *
+ * Further information about how this is intended to work:
+ *
+ * There are 3 basic steps, numbered in the comments below.
+ * 1. Determine the current config verison
+ * 2. Upgrade to the current source version
+ * 3. Save the version number, as defined by CONF_MAJOR, CONF_MINOR,
+ * CONF_REVISION. These are all treated as integers, so 10 is
+ * greater than 9.
+ *
+ * 1 and 3 should not need changing. After an upgrade to 1.3.x and
+ * until the config system changes again (!), step one becomes
+ * trivial. Any changes to part 2 should be added to the end of the
+ * section, or as required. This allows for very fine-grained version
+ * upgrades, including pre-release and patch-level changes to fix
+ * config problems which may have lasted for a single version or
+ * patch, in which case CONF_REVISION can be bumped.
*
+ * At any time, the CONF_VERSION/MAJOR/REVISION can be increased to
+ * match the source release, even if no new configuration changes will
+ * be required from the previous version. This should be done at each
+ * release in case bugs in that configuration version are required to
+ * be fixed at any time in the future.
+ *
* Return value: -1 on an error.
**/
int
@@ -1617,7 +1640,7 @@ e_config_upgrade(const char *edir)
evolution_dir = edir;
- /* determine existing version */
+ /* 1. determine existing version */
gconf = gconf_client_get_default();
val = gconf_client_get_string(gconf, "/apps/evolution/version", NULL);
if (val) {
@@ -1648,6 +1671,8 @@ e_config_upgrade(const char *edir)
xmlFree(tmp);
}
+ /* 2. Now perform any upgrade duties */
+
d(printf("current config version is '%u.%u.%u'\n", major, minor, revision));
/* For 1.0.x we need to load the accounts first, as data it initialises is used elsewhere */
@@ -1681,7 +1706,7 @@ e_config_upgrade(const char *edir)
}
}
- /* we're done, update our version info if its changed */
+ /* 3. we're done, update our version info if its changed */
if (major < CONF_MAJOR
|| minor < CONF_MINOR
|| revision < CONF_REVISION) {