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

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

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

revision 1.61 by wakaba, Sun Jul 15 07:52:01 2007 UTC revision 1.89 by wakaba, Sun Aug 5 04:50:57 2007 UTC
# Line 1  Line 1 
1    2007-08-04  Wakaba  <wakaba@suika.fam.cx>
2    
3            * ContentChecker.pm: Reference to the |Whatpm::ContentChecker::Atom|
4            is added.
5            (check_document): Load appropriate module before validation.
6    
7    2007-08-04  Wakaba  <wakaba@suika.fam.cx>
8    
9            * ContentChecker/: New directory.
10    
11    2007-08-04  Wakaba  <wakaba@suika.fam.cx>
12    
13            * ContentChecker.pm: HTML |time| element is implemented.
14    
15            * HTMLTable.pm: Comments are updated as HTML5 is revised.
16    
17    2007-07-21  Wakaba  <wakaba@suika.fam.cx>
18    
19            * ContentChecker.pm (check_document): Return value
20            even if no document element is found.
21    
22    2007-07-21  Wakaba  <wakaba@suika.fam.cx>
23    
24            * HTML.pm.src: |$in_body| is no longer a function.
25    
26    2007-07-21  Wakaba  <wakaba@suika.fam.cx>
27    
28            * HTML.pm.src: The |$in_body| code has been moved down.
29    
30    2007-07-21  Wakaba  <wakaba@suika.fam.cx>
31    
32            * HTML.pm.src: The "trailing end" insertion mode
33            is split into "after html body" and "after html frameset"
34            insertion modes.  Their codes are merged with "after body"
35            and "after frameset" codes.  |$previous_insertion_mode|
36            has been removed.  "after frameset" code is
37            merged with "in frameset" code.
38    
39    2007-07-21  Wakaba  <wakaba@suika.fam.cx>
40    
41            * HTML.pm.src: The "before head" insertion mode is
42            merged with the "in head" insertion mode.
43    
44    2007-07-21  Wakaba  <wakaba@suika.fam.cx>
45    
46            * HTML.pm.src: Cases in "in head" insertion mode are
47            reorganized.
48    
49    2007-07-21  Wakaba  <wakaba@suika.fam.cx>
50    
51            * HTML.pm.src: Some cases in "in table" insertion mode
52            are merged.
53    
54    2007-07-21  Wakaba  <wakaba@suika.fam.cx>
55    
56            * HTML.pm.src: The "in row" insertion mode is merged
57            with "in table" insertion mode.
58    
59    2007-07-21  Wakaba  <wakaba@suika.fam.cx>
60    
61            * HTML.pm.src: The "in table" and "in table body" insertion
62            modes are merged.
63    
64    2007-07-21  Wakaba  <wakaba@suika.fam.cx>
65    
66            * HTML.pm.src: There is no "in table head" or "in table foot"
67            insertion mode!
68    
69    2007-07-21  Wakaba  <wakaba@suika.fam.cx>
70    
71            * HTML.pm.src: |<noframes>| "in frameset" and "in noframes"
72            now directly invoke the handler.
73    
74    2007-07-21  Wakaba  <wakaba@suika.fam.cx>
75    
76            * HTML.pm.src: Codes for "in cell" insertion mode
77            is merged to the "in body" insertion mode code.
78    
79    2007-07-21  Wakaba  <wakaba@suika.fam.cx>
80    
81            * HTML.pm.src: Codes for "in body" and "in caption"
82            insertion modes are merged.
83    
84    2007-07-21  Wakaba  <wakaba@suika.fam.cx>
85    
86            * HTML.pm.src: Two |!!!next-token|s were missing.
87    
88    2007-07-21  Wakaba  <wakaba@suika.fam.cx>
89    
90            * HTML.pm.src: Use numeric constant for |{content_mode}|
91            instead of string constant for |{content_model_flag}|.
92    
93    2007-07-21  Wakaba  <wakaba@suika.fam.cx>
94    
95            * HTML.pm.src: Add the name of the attribute
96            to the "duplicate attribute" error.
97    
98    2007-07-17  Wakaba  <wakaba@suika.fam.cx>
99    
100            * ContentChecker.pm: Return the |class| node list.
101    
102    2007-07-17  Wakaba  <wakaba@suika.fam.cx>
103    
104            * ContentChecker.pm: Return the |id| node list.
105    
106            * HTML.pm.src: A typo is fixed.
107    
108    2007-07-16  Wakaba  <wakaba@suika.fam.cx>
109    
110            * ContentChecker.pm: Drop wrong |level => 'error'| specification
111            from "in HTML:xml:lang" error.  Character position
112            is now the last part of the error type in the URI error
113            description.  Report "unsupported" status for language
114            tags, media queries, script codes, and style sheets.
115    
116    2007-07-16  Wakaba  <wakaba@suika.fam.cx>
117    
118            * ContentChecker.pm: Report error if |xml:lang|
119            in HTML, |lang| in XML, |xmlns| in XML, and |meta| |charset|
120            in XML.
121    
122            * NanoDOM.pm (Attr.owner_document): New attribute.
123    
124    2007-07-16  Wakaba  <wakaba@suika.fam.cx>
125    
126            * HTML.pm.src: The character immediately following
127            a bare |hcro| was discarded.  Fix handling of
128            entity references in attribute values.
129    
130    2007-07-16  Wakaba  <wakaba@suika.fam.cx>
131    
132            * HTML.pm.src (main and trailin end phases): Token
133            types |DOCTYPE|, |comment|, |end-of-file|, and |<html>| are
134            factored out.  Error types |in html:#DOCTYPE|
135            and |after html:#DOCTYPE| are merged
136            into |DOCTYPE in the middle|.  |</frameset>|
137            in fragment parsing mode changed the
138            insertion mode.
139    
140    2007-07-16  Wakaba  <wakaba@suika.fam.cx>
141    
142            * HTML.pm.src: |$phase| has been removed; The |trailing end|
143            phase is now an insertion mode.  Treatments for white
144            space character tokens were incorrect for some
145            insertion modes.  An old |meta| case was not removed.
146    
147    2007-07-16  Wakaba  <wakaba@suika.fam.cx>
148    
149            * HTML.pm.src: |meta| charset declaration extraction
150            implemented (but changing the encoding is not yet:-).
151    
152    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
153    
154            * Charset/: New directory.
155    
156  2007-07-15  Wakaba  <wakaba@suika.fam.cx>  2007-07-15  Wakaba  <wakaba@suika.fam.cx>
157    
158          * H2H.pm: New Perl module (created from          * H2H.pm: New Perl module (created from

Legend:
Removed from v.1.61  
changed lines
  Added in v.1.89

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24