OLD | NEW |
| (Empty) |
1 # | |
2 # AFL dictionary for XML | |
3 # ---------------------- | |
4 # | |
5 # Several basic syntax elements and attributes, modeled on libxml2. | |
6 # | |
7 # Created by Michal Zalewski <lcamtuf@google.com> | |
8 # | |
9 | |
10 attr_encoding=" encoding=\"1\"" | |
11 attr_generic=" a=\"1\"" | |
12 attr_href=" href=\"1\"" | |
13 attr_standalone=" standalone=\"no\"" | |
14 attr_version=" version=\"1\"" | |
15 attr_xml_base=" xml:base=\"1\"" | |
16 attr_xml_id=" xml:id=\"1\"" | |
17 attr_xml_lang=" xml:lang=\"1\"" | |
18 attr_xml_space=" xml:space=\"1\"" | |
19 attr_xmlns=" xmlns=\"1\"" | |
20 | |
21 entity_builtin="<" | |
22 entity_decimal="" | |
23 entity_external="&a;" | |
24 entity_hex="" | |
25 | |
26 string_any="ANY" | |
27 string_brackets="[]" | |
28 string_cdata="CDATA" | |
29 string_col_fallback=":fallback" | |
30 string_col_generic=":a" | |
31 string_col_include=":include" | |
32 string_dashes="--" | |
33 string_empty="EMPTY" | |
34 string_empty_dblquotes="\"\"" | |
35 string_empty_quotes="''" | |
36 string_entities="ENTITIES" | |
37 string_entity="ENTITY" | |
38 string_fixed="#FIXED" | |
39 string_id="ID" | |
40 string_idref="IDREF" | |
41 string_idrefs="IDREFS" | |
42 string_implied="#IMPLIED" | |
43 string_nmtoken="NMTOKEN" | |
44 string_nmtokens="NMTOKENS" | |
45 string_notation="NOTATION" | |
46 string_parentheses="()" | |
47 string_pcdata="#PCDATA" | |
48 string_percent="%a" | |
49 string_public="PUBLIC" | |
50 string_required="#REQUIRED" | |
51 string_schema=":schema" | |
52 string_system="SYSTEM" | |
53 string_ucs4="UCS-4" | |
54 string_utf16="UTF-16" | |
55 string_utf8="UTF-8" | |
56 string_xmlns="xmlns:" | |
57 | |
58 tag_attlist="<!ATTLIST" | |
59 tag_cdata="<![CDATA[" | |
60 tag_close="</a>" | |
61 tag_doctype="<!DOCTYPE" | |
62 tag_element="<!ELEMENT" | |
63 tag_entity="<!ENTITY" | |
64 tag_ignore="<![IGNORE[" | |
65 tag_include="<![INCLUDE[" | |
66 tag_notation="<!NOTATION" | |
67 tag_open="<a>" | |
68 tag_open_close="<a />" | |
69 tag_open_exclamation="<!" | |
70 tag_open_q="<?" | |
71 tag_sq2_close="]]>" | |
72 tag_xml_q="<?xml?>" | |
73 "http://docboo" | |
74 "http://www.w" | |
75 "UTF-16LE" | |
76 "xmlns" | |
77 "he30" | |
78 "he2" | |
79 "IET" | |
80 "FDF-10" | |
81 "aDUCS-4OPveb:" | |
82 "a>" | |
83 "UT" | |
84 "xMl" | |
85 "/usr/share/sg" | |
86 "ha07" | |
87 "http://www.oa" | |
88 "cle" | |
OLD | NEW |