Home | History | Annotate | Download | only in awk

Lines Matching refs:_xml_attrib

74             _xml_attrib = $0;
75 sub(/=.*$/,"",_xml_attrib); # extract attribute name
77 _xml_attrib = tolower(_xml_attrib);
78 if ( _xml_attrib !~ /^[a-z][-+_0-9a-z:]*$/ ) # validate it
79 _xml_panic("Invalid attribute name: " _xml_attrib);
89 _xml_panic("Invalid attribute value syntax for " _xml_attrib ": " $0);
91 XML_ATTR[_xml_attrib] = _xml_value; # store attribute name/value
272 # _xml_attrib = $0; # copy record.
273 # sub(/=.*$/,"",_xml_attrib); # get rid of '=' and anything after.
275 # _xml_attrib = tolower(_xml_attrib);
276 # if ( _xml_attrib !~ /^[a-z][-+_0-9a-z:]*$/ )
277 # _xml_panic("Invalid attribute name: " _xml_attrib);
296 # XML_ATTR[_xml_attrib] = _xml_value;