xlink.xsd 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://www.w3.org/1999/xlink" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:docbook="http://docbook.org/ns/docbook">
  3. <xs:import namespace="http://docbook.org/ns/docbook" schemaLocation="docbook.xsd"/>
  4. <xs:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="xml.xsd"/>
  5. <xs:attribute name="href"/>
  6. <xs:attribute name="type"/>
  7. <xs:attribute name="role"/>
  8. <xs:attribute name="arcrole"/>
  9. <xs:attribute name="title"/>
  10. <xs:attribute name="show">
  11. <xs:simpleType>
  12. <xs:restriction base="xs:token">
  13. <xs:enumeration value="new"/>
  14. <xs:enumeration value="replace"/>
  15. <xs:enumeration value="embed"/>
  16. <xs:enumeration value="other"/>
  17. <xs:enumeration value="none"/>
  18. </xs:restriction>
  19. </xs:simpleType>
  20. </xs:attribute>
  21. <xs:attribute name="actuate">
  22. <xs:simpleType>
  23. <xs:restriction base="xs:token">
  24. <xs:enumeration value="onLoad"/>
  25. <xs:enumeration value="onRequest"/>
  26. <xs:enumeration value="other"/>
  27. <xs:enumeration value="none"/>
  28. </xs:restriction>
  29. </xs:simpleType>
  30. </xs:attribute>
  31. <xs:attribute name="label" type="xs:NMTOKEN"/>
  32. <xs:attribute name="from" type="xs:NMTOKEN"/>
  33. <xs:attribute name="to" type="xs:NMTOKEN"/>
  34. </xs:schema>