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