The XML::Parser "stream" Style
- Calls sub StartTag for each start-tag,
sub EndTag for each end-tag
- Calls sub Text for text
- $_ is the text that was recognized
- For StartTag and EndTag, $_[0] is the
element type
- For StartTag, %_ is a hash of attribute values by
name
- Default action for all callbacks is print;