diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-11-06 10:34:19 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-11-07 12:59:15 -0800 |
commit | d6b410940975c7ccaf63c3509eda4ff25d16190f (patch) | |
tree | 5542de55997a256c1d168a404aaa231853715210 /dives | |
parent | 9aefaa1ec87aff88bb1170bd6a79b76d351f804f (diff) | |
download | subsurface-d6b410940975c7ccaf63c3509eda4ff25d16190f.tar.gz |
Load and save extra data in Subsurface XML format
Includes test dive to test missing attributes and the overall syntax.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'dives')
-rw-r--r-- | dives/test38.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dives/test38.xml b/dives/test38.xml new file mode 100644 index 000000000..1f895adc8 --- /dev/null +++ b/dives/test38.xml @@ -0,0 +1,13 @@ +<divelog program='subsurface' version='2'> +<settings> +</settings> +<dives> +<dive number='1' date='2014-03-08' time='09:00:00' duration='30:00 min'> + <notes>test dive with dive computer extra data</notes> + <divecomputer model='Ficticious Perfect' deviceid='00abcdef' diveid='12345678'> + <depth max='30.0 m' mean='15.0 m' /> + <extradata key='some key' value='some value' /> + </divecomputer> +</dive> +</dives> +</divelog> |