Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
titlemanifest.xsd
collapsetrue
<?xml version="1.0" encoding="utf-8" ?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="urn:manifest:1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name= "manifestManifest">
        <xs:complexType>
            <xs:sequence>
                <xs:element name="file-entry" maxOccurs="unbounded" minOccurs="0">
                    <xs:complexType>
                        <xs:simpleContent>
                            <xs:extension base="xs:string">
                                <xs:attribute type="xs:string" name="media-type" use="required"/>
                                <xs:attribute name="media-destination" use="optional">
                                    <xs:simpleType>
                                        <xs:restriction base="xs:string">
                                            <xs:pattern value="screen|view|print|sign|help|x-.*"/>
                                        </xs:restriction>
                                    </xs:simpleType>
                                </xs:attribute>
                                <xs:attribute type="xs:string" name="media-destination-type" use="optional"/>
                                <xs:attribute type="xs:string" name="media-destination-type-description" use="optional"/>
                                <xs:attribute type="xs:string" name="media-language" use="optional" default="sk"/>
                                <xs:attribute type="xs:string" name="full-path" use="required"/>
                                <xs:attribute type="xs:string" name="full-path-url" use="optional"/>
                                <xs:attribute type="xs:string" name="description" use="optional"/>
                                <xs:attribute type="xs:string" name="filename" use="optional"/>
                                <xs:attribute type="xs:string" name="target-environment" use="optional"/>
                                <xs:attribute type="xs:string" name="xslfo-reference-procesor" use="optional"/>
                                <xs:attribute type="xs:string" name="xslfo-reference-procesor-url " use="optional"/>
                                <xs:attribute type="xs:string" name="reference-transform-algorithm" use="optional"/>
                                <xs:attribute type="xs:string" name="reference-digest-method-algorithm" use="optional"/>
                                <xs:attribute type="xs:string" name="reference-digest-value" use="optional"/>
                            </xs:extension>
                        </xs:simpleContent>
                    </xs:complexType>
                </xs:element>
            </xs:sequence>
        </xs:complexType>
    </xs:element>
</xs:schema>

Code Block
languagexml
titlemeta.xsd
collapsetrue
<?xml version="1.0" encoding="utf-8" ?>
<xs:schema xmlns:dc="http://purl.org/dc/elements/1.1/"
           elementFormDefault="qualified"
           targetNamespace="urn:meta:1.0"
           xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:import schemaLocation="http://dublincore.org/schemas/xmls/simpledc20021212.xsd"
               namespace="http://purl.org/dc/elements/1.1/" />
    <xs:element name="metadata">
        <xs:complexType>
            <xs:sequence>
                <xs:element ref="dc:title" />
                <xs:element ref="dc:identifier" />
                <xs:element ref="dc:description" />
                <xs:element ref="dc:creator" />
                <xs:element ref="dc:publisher" />
                <xs:element name="version" type="xs:string" />
                <xs:element name="language" type="xs:string" use="optional"/>
                <xs:element name="validDateFrom" type="xs:date" />
                <xs:element name="validDateTo" type="xs:date" use="optional"/>
                <xs:element name="inForceFrom" type="xs:date" />
                <xs:element name="inForceTo" type="xs:date" use="optional"/>
                <xs:element name="section" type="xs:string" use="optional"/>
                <xs:element name="agenda" type="xs:string" use="optional"/>
                <xs:element name="source" type="xs:string" use="optional"/>
                <xs:element name="keywords" type="xs:string" use="optional"/>
                <xs:element name="accessGroup" type="xs:string"  use="optional"/>
            </xs:sequence>
        </xs:complexType>
    </xs:element>
</xs:schema>

...

Unknown macro: {add-label}