您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

specification-v10.dtd 2.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <!-- ===================================================================
  2. Apache Specification DTD (Version 1.0)
  3. PURPOSE:
  4. This DTD was developed to create a simple yet powerful document
  5. type for software specifications for use with the Apache projects.
  6. It is an XML-compliant DTD and it's maintained by the Apache XML
  7. project.
  8. TYPICAL INVOCATION:
  9. <!DOCTYPE document PUBLIC
  10. "-//APACHE//DTD Specification Vx.yz//EN"
  11. "http://xml.apache.org/DTD/specification-vxyz.dtd">
  12. where
  13. x := major version
  14. y := minor version
  15. z := status identifier (optional)
  16. NOTES:
  17. AUTHORS:
  18. Stefano Mazzocchi <stefano@apache.org>
  19. FIXME:
  20. CHANGE HISTORY:
  21. 19991129 Initial version. (SM)
  22. COPYRIGHT:
  23. Copyright (c) @year@ The Apache Software Foundation.
  24. Permission to copy in any form is granted provided this notice is
  25. included in all copies. Permission to redistribute is granted
  26. provided this file is distributed untouched in all its parts and
  27. included files.
  28. ==================================================================== -->
  29. <!-- =============================================================== -->
  30. <!-- Extend the Documentation DTD -->
  31. <!-- =============================================================== -->
  32. <!-- extend the local.xxx entities -->
  33. <!ENTITY % local.lists "|bl">
  34. <!-- FIXME (SM): this is hardcoding. Find a better way of doing this
  35. possibly using public identifiers -->
  36. <!ENTITY % document-dtd SYSTEM "document-v10.dtd">
  37. %document-dtd;
  38. <!-- =============================================================== -->
  39. <!-- Document Type Definition -->
  40. <!-- =============================================================== -->
  41. <!ELEMENT specification (header?, body, appendices?, footer?)>
  42. <!ATTLIST specification %common.att;>
  43. <!ELEMENT appendices (%sections;)+>
  44. <!ATTLIST appendices %common.att;>
  45. <!-- =============================================================== -->
  46. <!-- Bibliography List -->
  47. <!-- =============================================================== -->
  48. <!-- Bibliography list -->
  49. <!ELEMENT bl (bi)+>
  50. <!ATTLIST bl %common.att;>
  51. <!-- Book item -->
  52. <!ELEMENT bi EMPTY>
  53. <!ATTLIST bi %common.att;
  54. %name.att;
  55. %title.att;
  56. %xlink-simple.att;
  57. %xlink-user-new.att;
  58. authors CDATA #REQUIRED
  59. date CDATA #IMPLIED>
  60. <!-- =============================================================== -->
  61. <!-- End of DTD -->
  62. <!-- =============================================================== -->