tblDeclGrp.xsd 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- ============================================================= -->
  3. <!-- HEADER -->
  4. <!-- ============================================================= -->
  5. <!-- MODULE: XML EXCHANGE TABLE MODEL DECLARATION MODULE -->
  6. <!-- VERSION: 1.1 -->
  7. <!-- DATE: November 2006 -->
  8. <!-- -->
  9. <!-- ============================================================= -->
  10. <!-- ============================================================= -->
  11. <!-- SYSTEM: Darwin Information Typing Architecture (DITA) -->
  12. <!-- -->
  13. <!-- PURPOSE: W3C XML Schema to describe DITA Tables -->
  14. <!-- -->
  15. <!-- ORIGINAL CREATION DATE: -->
  16. <!-- Derived from OASIS Exchange Table Model base -->
  17. <!-- -->
  18. <!-- (C) Copyright OASIS-Open.org 2005, 2006 -->
  19. <!-- (C) Copyright IBM Corporation 2001, 2004. -->
  20. <!-- All Rights Reserved. -->
  21. <!-- ============================================================= -->
  22. <!-- ============================================================= -->
  23. <!-- Delivered as file "tblDeclGrp.xsd" -->
  24. <!-- ============================================================= -->
  25. <!-- XML EXCHANGE TABLE MODEL DECLARATION MODULE -->
  26. <!-- OASIS DITA 1.0 notes:
  27. The Exchange Table Model replaces the original CALS-based model
  28. used in development versions of the DITA definition.
  29. This set of declarations defines the XML version of the Exchange
  30. Table Model as adapted for OASIS DITA version 1.0.
  31. The base for the DITA version of the Exchange Table Model is
  32. defined at http://www.oasis-open.org/specs/tm9901.htm .
  33. The DITA version specifically extends this model with these DITA-
  34. specific content and attribute adaptations to the DITA processing
  35. requirements:
  36. -->
  37. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  38. <xs:group name="table">
  39. <xs:sequence>
  40. <xs:element ref="table"/>
  41. </xs:sequence>
  42. </xs:group>
  43. <xs:group name="tgroup">
  44. <xs:sequence>
  45. <xs:element ref="tgroup"/>
  46. </xs:sequence>
  47. </xs:group>
  48. <xs:group name="colspec">
  49. <xs:sequence>
  50. <xs:element ref="colspec"/>
  51. </xs:sequence>
  52. </xs:group>
  53. <xs:group name="thead">
  54. <xs:sequence>
  55. <xs:element ref="thead"/>
  56. </xs:sequence>
  57. </xs:group>
  58. <xs:group name="tbody">
  59. <xs:sequence>
  60. <xs:element ref="tbody"/>
  61. </xs:sequence>
  62. </xs:group>
  63. <xs:group name="row">
  64. <xs:sequence>
  65. <xs:element ref="row"/>
  66. </xs:sequence>
  67. </xs:group>
  68. <xs:group name="entry">
  69. <xs:sequence>
  70. <xs:element ref="entry"/>
  71. </xs:sequence>
  72. </xs:group>
  73. </xs:schema>