/[suikacvs]/markup/html/whatpm/Whatpm/HTML/ChangeLog
Suika

Diff of /markup/html/whatpm/Whatpm/HTML/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.10 by wakaba, Tue Oct 14 05:34:05 2008 UTC revision 1.44 by wakaba, Sat Sep 5 11:31:58 2009 UTC
# Line 1  Line 1 
1    2009-09-05  Wakaba  <wakaba@suika.fam.cx>
2    
3            * Tokenizer.pm.src: Changed to keep non-normal character
4            references as is (HTML5 revision 3374).
5    
6    2009-09-05  Wakaba  <wakaba@suika.fam.cx>
7    
8            * Tokenizer.pm.src: Discard unclosed tags (HTML5 revision 2990).
9    
10    2009-09-05  Wakaba  <wakaba@suika.fam.cx>
11    
12            * Tokenizer.pm.src (_get_next_token): Implemented the "comment end
13            space state" (HTML5 revision 3195).
14    
15    2009-09-05  Wakaba  <wakaba@suika.fam.cx>
16    
17            * Tokenizer.pm.src (_get_next_token): Implemented the "comment end
18            bang state" (HTML5 revision 3191).
19    
20    2009-08-16  Wakaba  <wakaba@suika.fam.cx>
21    
22            * Tokenizer.pm.src: Any "<" character in attribute names become
23            parse error (HTML5 revision 3354).
24    
25    2009-08-16  Wakaba  <wakaba@suika.fam.cx>
26    
27            * Tokenizer.pm.src: Lowercase-fold doctype names (HTML5 revision
28            2501, cf. HTML5 revision 3571).
29    
30    2009-07-05  Wakaba  <wakaba@suika.fam.cx>
31    
32            * Tokenizer.pm.src: Reduced the number of parse errors on broken
33            DOCTYPE (HTML5 revision 3121).
34    
35    2009-07-03  Wakaba  <wakaba@suika.fam.cx>
36    
37            * Tokenizer.pm.src: Reduced a parse error (HTML5 revision 3194).
38    
39    2009-07-03  Wakaba  <wakaba@suika.fam.cx>
40    
41            * Tokenizer.pm.src: "<" in unquoted attribute values is now
42            treated as parse error (HTML5 revision 3206).
43    
44    2008-11-07  Wakaba  <wakaba@suika.fam.cx>
45    
46            * Dumper.pm (dumptree): Support for namespace abbreviation for
47            SWML namespaces.
48    
49    2008-10-19  Wakaba  <wakaba@suika.fam.cx>
50    
51            * Tokenizer.pm.src: Normalize white space characters in attribute
52            value literals in XML documents.  Don't apply character reference
53            mapping table for non-NULL non-surrogate code points.
54    
55    2008-10-19  Wakaba  <wakaba@suika.fam.cx>
56    
57            * Tokenizer.pm.src: Set the "stop_processing" flag true when a
58            parameter entity occurs in a standalone="no" document.
59    
60    2008-10-19  Wakaba  <wakaba@suika.fam.cx>
61    
62            * Tokenizer.pm.src: Column number counting fixed.
63    
64    2008-10-19  Wakaba  <wakaba@suika.fam.cx>
65    
66            * Tokenizer.pm.src: Raise a parse error for '&' that does not
67            introduce a reference in XML.  Support for non-ASCII entity
68            reference names.
69    
70    2008-10-19  Wakaba  <wakaba@suika.fam.cx>
71    
72            * Tokenizer.pm.src: Make uppercase "&#X" in XML a parse error.
73            Remove the limitation of entity name length.  Enable replacement
74            of text-only general entities.  Raise a parse error for an
75            unparsed entity reference.  Raise a parse error for a general
76            entity reference to an undefined entity.
77    
78    2008-10-19  Wakaba  <wakaba@suika.fam.cx>
79    
80            * Tokenizer.pm.src: Support for <!ELEMENT>.
81            (AFTER_NOTATION_NAME_STATE): Renamed as |AFTER_MD_DEF_STATE| (i.e.
82            after markup declaration definition state).
83    
84    2008-10-19  Wakaba  <wakaba@suika.fam.cx>
85    
86            * Tokenizer.pm.src: Support for EntityValue.
87    
88    2008-10-19  Wakaba  <wakaba@suika.fam.cx>
89    
90            * Dumper.pm: Dump text content of Entity nodes.
91    
92            * Tokenizer.pm.src: Support for <!ENTITY ... NDATA>.
93    
94    2008-10-19  Wakaba  <wakaba@suika.fam.cx>
95    
96            * Tokenizer.pm.src (_get_next_token): Make keywords 'ENTITY',
97            'ELEMENT', 'ATTLIST', and 'NOTATION' ASCII case-insensitive.
98    
99    2008-10-18  Wakaba  <wakaba@suika.fam.cx>
100    
101            * Tokenizer.pm.src: Modifies PUBLIC/SYSTEM identifier tokenizer
102            states such that <!ENTITY> and <!NOTATION> can be tokenized by
103            those states as well.
104            (BOGUS_MD_STATE): A new state; used for bogus markup declarations,
105            in favor of BOGUS_COMMENT_STATE.
106    
107    2008-10-18  Wakaba  <wakaba@suika.fam.cx>
108    
109            * Tokenizer.pm.src: <!ATTLIST> in the internal subset of an XML
110            document, is now fully implemented.
111    
112            * Dumper.pm (dumptree): Output allowed tokens and default value
113            always.
114    
115    2008-10-17  Wakaba  <wakaba@suika.fam.cx>
116    
117            * Tokenizer.pm.src: New token types AtTLIST_TOKEN, ELEMENT_TOKEN,
118            GENERAL_ENTITY_TOKEN, PARAMETER_ENTITY_TOKEN, and NOTATION_TOKEN
119            are added.  New intertion modes for markup declarations are added.
120    
121    2008-10-16  Wakaba  <wakaba@suika.fam.cx>
122    
123            * Tokenizer.pm.src: New token type END_OF_DOCTYPE_TOKEN added.
124            New states DOCTYPE_TAG_STATE and
125            BOGUS_DOCTYPE_INTERNAL_SUBSET_AFTER_STATE are added.  (Bogus
126            string after the internal subset, which was handled by the state
127            BOGUS_DOCTYPE_STATE, are now handled by the new state.)  Support
128            for comments, bogus comments, and processing instructions in the
129            internal subset.  If there is the internal subset, then emit the
130            doctype token before the internal subset (with its
131            $token->{has_internal_subset} flag set) and an
132            END_OF_DOCTYPE_TOKEN after the internal subset.
133    
134    2008-10-15  Wakaba  <wakaba@suika.fam.cx>
135    
136            * Tokenizer.pm.src: $self->{s_kwd} for non-DATA_STATE states are
137            renamed as $self->{kwd} to avoid confliction.  Don't raise
138            case-sensitivity error for the keyword "DOCTYPE" in HTML mode.
139            Support for internal subsets (internal subset itself only; no
140            declaration in them is supported yet).  Raise a parse error for
141            non-uppercase keywords "PUBLIC" and "SYSTEM" in XML mode.  Raise a
142            parse error if no system identifier is specified for a DOCTYPE
143            declaration with a public identifier.  Don't close the DOCTYPE
144            declaration by a ">" character in the system declaration in XML
145            mode.
146            
147    2008-10-15  Wakaba  <wakaba@suika.fam.cx>
148    
149            * Tokenizer.pm.src: Set index attribute to each attribute token,
150            for ignoring namespaced duplicate attribute at the XML namespace
151            parser layer.  Raise a parse error if the attribute value is
152            omitted, in XML mode.  Raise a parse error if the attribute value
153            is not quoted, in XML mode.  Raise a parse error if "<" character
154            is found in a quoted attribute value, in XML mode.
155    
156    2008-10-15  Wakaba  <wakaba@suika.fam.cx>
157    
158            * Tokenizer.pm.src: XML tag name start character support for end
159            tags.  Support for the short end tag syntax of XML5.  Raise a
160            parse erorr for a lowercase <!doctype> in XML.
161    
162    2008-10-15  Wakaba  <wakaba@suika.fam.cx>
163    
164            * Tokenizer.pm.src: XML tag name start character support for start
165            tags.
166    
167    2008-10-15  Wakaba  <wakaba@suika.fam.cx>
168    
169            * Tokenizer.pm.src: Support for XML processing instructions.
170    
171    2008-10-15  Wakaba  <wakaba@suika.fam.cx>
172    
173            * Tokenizer.pm.src: Mark CHARACTER_TOKEN with character reference
174            as such, for the support of XML parse error.
175    
176    2008-10-14  Wakaba  <wakaba@suika.fam.cx>
177    
178            * Tokenizer.pm.src: Parse error if CDATA section is not closed or
179            is placed outside of the root element.
180    
181    2008-10-14  Wakaba  <wakaba@suika.fam.cx>
182    
183            * Tokenizer.pm.src: Raise a parse error for XML "]]>" other than
184            CDATA section end.
185    
186    2008-10-14  Wakaba  <wakaba@suika.fam.cx>
187    
188            * Tokenizer.pm.src: Support for case-insensitive XML attribute
189            names.
190    
191    2008-10-14  Wakaba  <wakaba@suika.fam.cx>
192    
193            * Dumper.pm: Typo fixed.
194    
195    2008-10-14  Wakaba  <wakaba@suika.fam.cx>
196    
197            * Dumper.pm: New module.
198    
199  2008-10-14  Wakaba  <wakaba@suika.fam.cx>  2008-10-14  Wakaba  <wakaba@suika.fam.cx>
200    
201          * Tokenizer.pm.src: Introduced "in_xml" flag for CDATA section          * Tokenizer.pm.src: Introduced "in_xml" flag for CDATA section

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.44

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24