Parent Directory
|
Revision Log
++ whatpm/t/ChangeLog 15 Oct 2008 08:04:32 -0000 * XML-Parser.t: "xml/ns-elements-1.dat" added. 2008-10-15 Wakaba <wakaba@suika.fam.cx> ++ whatpm/t/xml/ChangeLog 15 Oct 2008 08:05:44 -0000 * ns-elements-1.dat: New test data file. * ns-attrs-1.dat: New test data added. * elements-1.dat: New test data file. 2008-10-15 Wakaba <wakaba@suika.fam.cx> ++ whatpm/Whatpm/HTML/ChangeLog 15 Oct 2008 08:03:32 -0000 * Tokenizer.pm.src: XML tag name start charcter support for start tags. 2008-10-15 Wakaba <wakaba@suika.fam.cx> ++ whatpm/Whatpm/XML/ChangeLog 15 Oct 2008 08:04:01 -0000 * Parser.pm.src: Bug fixes for the handling of ":" in the element type names and attribute names. 2008-10-15 Wakaba <wakaba@suika.fam.cx>
| 1 | wakaba | 1.1 | package Whatpm::HTML::Tokenizer; |
| 2 | use strict; | ||
| 3 | wakaba | 1.9 | our $VERSION=do{my @r=(q$Revision: 1.8 $=~/\d+/g);sprintf "%d."."%02d" x $#r,@r}; |
| 4 | wakaba | 1.2 | |
| 5 | BEGIN { | ||
| 6 | require Exporter; | ||
| 7 | push our @ISA, 'Exporter'; | ||
| 8 | |||
| 9 | our @EXPORT_OK = qw( | ||
| 10 | DOCTYPE_TOKEN | ||
| 11 | COMMENT_TOKEN | ||
| 12 | START_TAG_TOKEN | ||
| 13 | END_TAG_TOKEN | ||
| 14 | END_OF_FILE_TOKEN | ||
| 15 | CHARACTER_TOKEN | ||
| 16 | PI_TOKEN | ||
| 17 | ABORT_TOKEN | ||
| 18 |