Changeset 13536 in josm for trunk/data/maps.xsd
- Timestamp:
- 2018-03-17T17:01:12+01:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/data/maps.xsd
r13284 r13536 20 20 <!-- exclude white space characters and characters that are not valid for file names in Windows --> 21 21 <xs:restriction base="xs:string"> 22 <xs:pattern value='[^\s/\\:*?"<>| ]+' />22 <xs:pattern value='[^\s/\\:*?"<>|,;]+' /> 23 23 </xs:restriction> 24 24 </xs:simpleType> 25 26 <xs:complexType name="oldid"> 27 <xs:simpleContent> 28 <xs:extension base="tns:id"> 29 <!-- date of the retirement of this ID --> 30 <xs:attribute name="date" type="xs:date" use="required" /> 31 </xs:extension> 32 </xs:simpleContent> 33 </xs:complexType> 25 34 26 35 <xs:simpleType name="type"> … … 623 632 <!-- A unique id for the imagery source --> 624 633 <xs:element name="id" minOccurs="0" maxOccurs="1" type="tns:id" /> 634 <!-- Historic id for the imagery source --> 635 <xs:element name="oldid" minOccurs="0" maxOccurs="unbounded" type="tns:oldid" /> 625 636 <!-- The type. Can be tms, wms and html. In addition, there are the special types bing and scanex 626 637 with hardcoded behaviour. --> … … 666 677 <xs:all> 667 678 <xs:element name="type" minOccurs="1" maxOccurs="1" type="tns:type" /> 679 <xs:element name="id" minOccurs="0" maxOccurs="1" type="tns:id" /> 668 680 <xs:element name="url" minOccurs="1" maxOccurs="1" type="xs:string" /> 669 681 <xs:element name="projections" minOccurs="0" maxOccurs="1" type="tns:projections" /> … … 707 719 <xs:attribute name="last-check" type="xs:date" use="optional" /> 708 720 <xs:attribute name="eli-best" type="xs:boolean" use="optional" /> 721 <xs:attribute name="overlay" type="xs:boolean" use="optional" /> 709 722 </xs:complexType> 710 723 </xs:element>
Note:
See TracChangeset
for help on using the changeset viewer.