xml.dict 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. #
  2. # AFL dictionary for XML
  3. # ----------------------
  4. #
  5. # Several basic syntax elements and attributes, modeled on libxml2.
  6. #
  7. # Created by Michal Zalewski <[email protected]>
  8. #
  9. attr_encoding=" encoding=\"1\""
  10. attr_generic=" a=\"1\""
  11. attr_href=" href=\"1\""
  12. attr_standalone=" standalone=\"no\""
  13. attr_version=" version=\"1\""
  14. attr_xml_base=" xml:base=\"1\""
  15. attr_xml_id=" xml:id=\"1\""
  16. attr_xml_lang=" xml:lang=\"1\""
  17. attr_xml_space=" xml:space=\"1\""
  18. attr_xmlns=" xmlns=\"1\""
  19. entity_builtin="&lt;"
  20. entity_decimal="&#1;"
  21. entity_external="&a;"
  22. entity_hex="&#x1;"
  23. # keywords
  24. "ANY"
  25. "ATTLIST"
  26. "CDATA"
  27. "DOCTYPE"
  28. "ELEMENT"
  29. "EMPTY"
  30. "ENTITIES"
  31. "ENTITY"
  32. "FIXED"
  33. "ID"
  34. "IDREF"
  35. "IDREFS"
  36. "IGNORE"
  37. "IMPLIED"
  38. "INCLUDE"
  39. "NDATA"
  40. "NMTOKEN"
  41. "NMTOKENS"
  42. "NOTATION"
  43. "PCDATA"
  44. "PUBLIC"
  45. "REQUIRED"
  46. "SYSTEM"
  47. # Various tag parts
  48. "<"
  49. ">"
  50. "/>"
  51. "</"
  52. "<?"
  53. "?>"
  54. "<!"
  55. "!>"
  56. "[]"
  57. "]]"
  58. "<![CDATA["
  59. "<![CDATA[]]>"
  60. "\"\""
  61. "''"
  62. "=\"\""
  63. "=''"
  64. # DTD
  65. "<!ATTLIST"
  66. "<!DOCTYPE"
  67. "<!ELEMENT"
  68. "<!ENTITY"
  69. "<![IGNORE["
  70. "<![INCLUDE["
  71. "<!NOTATION"
  72. "#CDATA"
  73. "#FIXED"
  74. "#IMPLIED"
  75. "#PCDATA"
  76. "#REQUIRED"
  77. # Encodings
  78. "ISO-8859-1"
  79. "US-ASCII"
  80. "UTF-8"
  81. "UTF-16"
  82. "UTF-16BE"
  83. "UTF-16LE"
  84. # Namespaces and schemas
  85. "xmlns"
  86. "xmlns:"
  87. "xmlns:xhtml=\"http://www.w3.org/1999/xhtml\""
  88. "xmlns:xml=\"http://www.w3.org/XML/1998/namespace\""
  89. "xmlns:xmlns=\"http://www.w3.org/2000/xmlns\""
  90. string_col_fallback=":fallback"
  91. string_col_generic=":a"
  92. string_col_include=":include"
  93. string_dashes="--"
  94. string_parentheses="()"
  95. string_percent="%a"
  96. string_schema=":schema"
  97. string_ucs4="UCS-4"
  98. tag_close="</a>"
  99. tag_open="<a>"
  100. tag_open_close="<a />"
  101. "<?xml?>"
  102. "http://docboo"
  103. "http://www.w"
  104. "he30"
  105. "he2"
  106. "IET"
  107. "FDF-10"
  108. "aDUCS-4OPveb:"
  109. "a>"
  110. "UT"
  111. "xMl"
  112. "/usr/share/sg"
  113. "ha07"
  114. "http://www.oa"
  115. "cle"