xplist.dict 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. ################################################################################
  2. #
  3. # AFL dictionary for XML Property Lists
  4. # ----------------------
  5. #
  6. # Several basic syntax elements and attributes for libplist.
  7. #
  8. # Created by Nikias Bassen <nikias@gmx.li>
  9. # Adapted from libxml2's dict file (created by Michal Zalewski <lcamtuf@google.com>)
  10. #
  11. attr_encoding=" encoding=\"1\""
  12. attr_generic=" a=\"1\""
  13. attr_version=" version=\"1\""
  14. entity_builtin="&lt;"
  15. entity_decimal="&#1;"
  16. entity_external="&a;"
  17. entity_hex="&#x1;"
  18. string_cdata="CDATA"
  19. string_dashes="--"
  20. string_empty="EMPTY"
  21. string_empty_dblquotes="\"\""
  22. string_empty_quotes="''"
  23. string_parentheses="()"
  24. string_pcdata="#PCDATA"
  25. string_percent="%a"
  26. string_public="PUBLIC"
  27. string_utf8="UTF-8"
  28. tag_cdata="<![CDATA["
  29. tag_close="</plist>"
  30. tag_doctype="<!DOCTYPE"
  31. tag_open="<plist>"
  32. tag_open_close="<plist />"
  33. tag_open_exclamation="<!"
  34. tag_open_q="<?"
  35. tag_sq2_close="]]>"
  36. tag_xml_q="<?xml?>"
  37. tag_array="<array>"
  38. tag_data="<data>"
  39. tag_date="<date>"
  40. tag_dict="<dict>"
  41. tag_false="<false/>"
  42. tag_integer="<integer>"
  43. tag_key="<key>"
  44. tag_plist="<plist>"
  45. tag_real="<real>"
  46. tag_string="<string>"
  47. tag_true="<true/>"