%x XMLTAG XMLATTR XMLCDATA COMMENT INLINE %{ /* * $Header: /usr/build/vile/vile/filters/RCS/xml-filt.l,v 1.11 2003/05/20 20:38:41 tom Exp $ * * Filter to add vile "attribution" sequences to selected bits of XML input * text. * * By Adam S. Denton (adenton@yahoo.com) * * Strongly based on the HTML filter program * based on a version written by Pierre Dittgen (dittgen@univ-mlv.fr) */ #include DefineFilter("xml"); static char *Action_attr; static char *Comment_attr; static char *Ident_attr; static char *Keyword_attr; static char *Number_attr; static char *String_attr; static char *Error_attr; static char **Tags; static unsigned Num_tags = 0; static int In_error = 0; #include static char * xml_attr(char *name); static void xml_close(char *text); static void xml_command(char *text); %} SPACE [ \t] INTEGER [-+]?([0-9]+) REAL [-+]?([0-9]*\.[0-9]+)([eE][+-]?[0-9]+)? HEXNUM "#"[0-9A-Fa-f]+ NUMBER {INTEGER}|{REAL}|{HEXNUM} IDENT [a-zA-Z_!?][a-zA-Z_0-9.-]* HSTRING \"[^"]*\" QSTRING \\["]([^"]|\\["])*\\["] STRING {HSTRING}|{QSTRING} SSTRING \'(\\.|[^'\\])*\' DSTRING \"(\\.|[^"\\])*\" STRINGS ({SSTRING}|{DSTRING}) ENTITY &{IDENT}; VALUE #{IDENT} %% "<" { WriteToken(Action_attr); push_state(XMLTAG); } "![CDATA[" { WriteToken(Keyword_attr); BEGIN(XMLCDATA); flt_bfr_begin(String_attr); } (\/)?">" | (\/)?">" { xml_close(yytext); pop_state(); } (\/)?{IDENT} { xml_command(yytext); BEGIN(XMLATTR); } "]]" { flt_bfr_finish(); WriteToken(Keyword_attr); BEGIN(XMLTAG); } [\n] | . { flt_bfr_append(yytext, yyleng); } "