diff options
| author | rsudev <rasch@munin-soft.de> | 2013-11-23 22:12:24 +0100 |
|---|---|---|
| committer | rsudev <rasch@munin-soft.de> | 2013-11-23 22:13:06 +0100 |
| commit | 652722134c0d18dbe77dd952903a71ae14755d27 (patch) | |
| tree | d3613d8d906b938de5d612b5f75b3cc72605f9c2 /main/project/xsd | |
| parent | 6240d934fc7e0d6b52fdf3b2cf21d0e72fdbf7c7 (diff) | |
| download | cgeo-652722134c0d18dbe77dd952903a71ae14755d27.zip cgeo-652722134c0d18dbe77dd952903a71ae14755d27.tar.gz cgeo-652722134c0d18dbe77dd952903a71ae14755d27.tar.bz2 | |
Implements stable keys for opencaching waypoints
additionally extend ex- and import (gpx) to also contain visited and
userdefined.
Diffstat (limited to 'main/project/xsd')
| -rw-r--r-- | main/project/xsd/cgeo.xsd | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/main/project/xsd/cgeo.xsd b/main/project/xsd/cgeo.xsd new file mode 100644 index 0000000..35a5983 --- /dev/null +++ b/main/project/xsd/cgeo.xsd @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.cgeo.org/wptext/1/0" elementFormDefault="qualified"> +<xsd:annotation><xsd:documentation> +This schema defines additional properties c:geo needs to store in a waypoint in a gpx file. +The root element is intended to be used in the appropriate extension point in the gpx waypoint type +(see http://www.topografix.com/GPX/1/0/gpx.xsd or http://www.topografix.com/GPX/1/1/gpx.xsd for details) +Currently two items are defined: visited and userdefined. +</xsd:documentation></xsd:annotation> +<xsd:element name="cgeo"> +<xsd:complexType> +<xsd:sequence> +<xsd:element name="visited" type="xsd:boolean" /> +<xsd:element name="userdefined" type="xsd:boolean" /> +</xsd:sequence> +</xsd:complexType></xsd:element> +</xsd:schema>
\ No newline at end of file |
