diff options
author | Venkatesh Shukla <venkatesh.shukla.eee11@iitbhu.ac.in> | 2014-04-11 11:47:35 +0530 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-04-14 09:40:30 -0700 |
commit | 3abcde9a2abade0ce576976b6dce869e8aa28601 (patch) | |
tree | 883ee747d3fd09c0359976b667ee8da5954b73cd /save-git.c | |
parent | ad9eb73d73b0200150d34807616ebcc8dd2a4b4f (diff) | |
download | subsurface-3abcde9a2abade0ce576976b6dce869e8aa28601.tar.gz |
Add option to save userid in data files
The userid of Subsurface Webservice can be included in locally saved xml
files and git repository.
For xml files, it is stored in userid tag. For git repo, it is stored
in 00-Subsurface file present in the repo.
Preference dialog and webservice dialog modified to include option
for saving userid locally.
In case of difference in default userid and userid in local file,
some semantics are followed. These can be referred to here:
http://lists.hohndel.org/pipermail/subsurface/2014-April/011422.html
Fixes #473
Signed-off-by: Venkatesh Shukla <venkatesh.shukla.eee11@iitbhu.ac.in>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'save-git.c')
-rw-r--r-- | save-git.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/save-git.c b/save-git.c index 634db6606..2e8b608f8 100644 --- a/save-git.c +++ b/save-git.c @@ -678,6 +678,13 @@ static struct dir *mktree(struct dir *dir, const char *fmt, ...) return subdir; } +static void save_userid(void *_b) +{ + struct membuffer *b = _b; + if (save_userid_local) + put_format(b, "userid %30s", userid); +} + static void save_one_device(void *_b, const char *model, uint32_t deviceid, const char *nickname, const char *serial, const char *firmware) { @@ -706,6 +713,7 @@ static void save_settings(git_repository *repo, struct dir *tree) struct membuffer b = { 0 }; put_format(&b, "version %d\n", VERSION); + save_userid(&b); call_for_each_dc(&b, save_one_device); cond_put_format(autogroup, &b, "autogroup\n"); |