drop shows.xsd
This commit is contained in:
parent
3cee499bec
commit
0d1722f8b5
3 changed files with 1 additions and 30 deletions
3
Makefile
3
Makefile
|
@ -4,11 +4,10 @@ testXMLs := $(shell find shows radio-manifest -type f -name '*.xml')
|
|||
%.html: %.asciidoc
|
||||
asciidoctor -b html5 $<
|
||||
|
||||
radiomanifest.zip: radio-manifest.xsd shows.xsd radio-manifest/Makefile shows/Makefile $(testXMLs)
|
||||
radiomanifest.zip: radio-manifest.xsd radio-manifest/Makefile shows/Makefile $(testXMLs)
|
||||
zip -r $@ $^
|
||||
|
||||
test:
|
||||
make -C shows/
|
||||
make -C radio-manifest/
|
||||
|
||||
.PHONY: all
|
||||
|
|
26
shows.xsd
26
shows.xsd
|
@ -1,26 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<xs:element name="shows">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="show" maxOccurs="unbounded" minOccurs="0">
|
||||
<xs:complexType>
|
||||
<xs:all>
|
||||
<xs:element name="name" type="xs:string" />
|
||||
<xs:element name="website" type="srctype" minOccurs="0" />
|
||||
<xs:element name="feed" type="srctype" minOccurs="0" />
|
||||
<xs:element name="schedule" type="srctype" minOccurs="0" />
|
||||
</xs:all>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:simpleType name="srctype">
|
||||
<xs:restriction base="xs:anyURI">
|
||||
<xs:minLength value="1" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
</xs:schema>
|
|
@ -129,8 +129,6 @@ Here is an example:
|
|||
</folder>
|
||||
</xbel>
|
||||
|
||||
(XXX: Schema XSD is yet to be written)
|
||||
|
||||
Only ``show:name`` is required, though parsers are invited to apply the Postel law and read the parent
|
||||
``title`` element.
|
||||
|
||||
|
|
Loading…
Reference in a new issue