/[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.135 by wakaba, Sun Feb 17 11:04:08 2008 UTC revision 1.159 by wakaba, Wed Mar 5 02:55:07 2008 UTC
# Line 1  Line 1 
1    2008-03-05  Wakaba  <wakaba@suika.fam.cx>
2    
3            * HTML.pm.src: Typo fixed.
4    
5    2008-03-04  Wakaba  <wakaba@suika.fam.cx>
6    
7            * HTML.pm.src (_tree_construction_initial): Some limited quirks
8            doctypes were not uppercased for comparison.
9    
10    2008-03-03  Wakaba  <wakaba@suika.fam.cx>
11    
12            * HTML.pm.src (tree construction and set_inner_html): Checkpoints
13            are added.
14    
15    2008-03-03  Wakaba  <wakaba@suika.fam.cx>
16    
17            * HTML.pm.src (_tokenize_attempt_to_consume_an_entity): Checkpoints
18            are set.  Cases that are unlikely reached are noted as so.
19    
20    2008-03-03  Wakaba  <wakaba@suika.fam.cx>
21    
22            * HTML.pm.src: Checkpoints for debugging are added.
23    
24            * mkhtmlparser.pl: Support for |!!!cp| syntax.
25    
26    2008-03-03  Wakaba  <wakaba@suika.fam.cx>
27    
28            * HTML.pm.src, mkhtmlparser.pl: s/_input_character/_char/g
29            for simplicity.
30    
31    2008-03-03  Wakaba  <wakaba@suika.fam.cx>
32    
33            * HTML.pm.src: Flag name changed: s/correct/force-quirks/g (HTML5
34            revision 1307).
35    
36    2008-03-03  Wakaba  <wakaba@suika.fam.cx>
37    
38            * HTML.pm.src (_get_next_token): Where the /incorrect/ flag
39            is set are changed (HTML5 revision 1305).
40    
41    2008-03-02  Wakaba  <wakaba@suika.fam.cx>
42    
43            * HTML.pm.src: Raise a parse error for |<span ===>| (HTML5 revision
44            1292).  Entities are not parsed in comment-like part in RCDATA
45            elements (HTML5 revision 1294).  Allow bare & at the end
46            of attribute value literals (HTML5 revision 1296).  More
47            quirks mode doctypes (HTML5 revision 1302).  Requires spaces
48            between attributes and ban attribute names or unquoted
49            attribute values containing single or double quotes (HTML5
50            revision 1303).
51    
52    2008-03-02  Wakaba  <wakaba@suika.fam.cx>
53    
54            * ContentChecker.pm: Typo fixed.  Don't raise "character encoding"
55            and related errors unless it is an HTML document (though the spec
56            is unclear on whether it is applied to XHTML document).
57    
58            * HTML.pm (%HTMLAttrStatus): WF2 repetition model attributes
59            are added.
60    
61    2008-03-02  Wakaba  <wakaba@suika.fam.cx>
62    
63            * HTML.pm.src: s/local_name/manakai_local_name/g.
64    
65    2008-03-01  Wakaba  <wakaba@suika.fam.cx>
66    
67            * _NamedEntityList.pm: Updated (HTML5 revision 1286).
68    
69            * HTML.pm.src: |charset| in |content| attribute is
70            case-insensitive (HTML5 revision 1270).
71    
72    2008-02-26  Wakaba  <wakaba@suika.fam.cx>
73    
74            * ContentChecker.pm: New status constants are added.
75            ($ElementDefault): |status| added.
76            (check_element): Err for non-standard or deprecated elements.
77            (_attr_status_info): For non-standard or deprecated attributes.
78    
79    2008-02-24  Wakaba  <wakaba@suika.fam.cx>
80    
81            * ContentChecker.pm (_attr_status_info): New internal method.
82    
83    2008-02-24  Wakaba  <wakaba@suika.fam.cx>
84    
85            * ContentChecker.pm (check_element): Element standardized
86            status information is now dispatched.
87    
88    2008-02-24  Wakaba  <wakaba@suika.fam.cx>
89    
90            * ContentChecker.pm (check_element): Fix |del|-and-significant
91            problem by adding some more arguments.
92    
93    2008-02-24  Wakaba  <wakaba@suika.fam.cx>
94    
95            * ContentChecker.pm (check_element): Use context of
96            container-for-the-purpose-of-content-model element (not transparent
97            element) for |check_child_element| calling and significant
98            text flag marking.  This reintroduces |<del>|-and-significant
99            problem again.
100    
101    2008-02-24  Wakaba  <wakaba@suika.fam.cx>
102    
103            * ContentChecker.pm (check_element): Make semi-transparent
104            elements ignored for the purpose of phase changes in
105            content model checking.
106    
107    2008-02-23  Wakaba  <wakaba@suika.fam.cx>
108    
109            * ContentChecker.pm (check_element): In-element state
110            was not properly managed for transparent cases.
111    
112    2008-02-23  Wakaba  <wakaba@suika.fam.cx>
113    
114            * ContentChecker.pm (check_element): Support for |video|
115            and |audio| as semi-transparent elements.
116    
117    2008-02-23  Wakaba  <wakaba@suika.fam.cx>
118    
119            * ContentChecker.pm ($HTMLSemiTransparentElements): New.
120            (check_element): s/minuses/minus_elements/, s/pluses/plus_elements/.
121            Support for |html:object| as a semi-transparent element.
122    
123    2008-02-23  Wakaba  <wakaba@suika.fam.cx>
124    
125            * ContentChecker.pm (check_element): The way to traverse
126            the tree is entirely revised to make it easier to track
127            the state of ancestors/descendants.  As a result of this
128            revision (which rewrites almost all of Whatpm::ContentChecker::HTML),
129            support for content model checking for HTML elements |figure|,
130            |object|, |video|, and |audio| and checking for XML elements (and
131            some XMLNS checkings) are dropped for now.  They will be
132            reimplemented in due cource.
133    
134    2008-02-17  Wakaba  <wakaba@suika.fam.cx>
135    
136            * HTML.pm.src: |>| in public or system literal closes the DOCTYPE
137            token (HTML5 revision 1225).
138    
139    2008-02-17  Wakaba  <wakaba@suika.fam.cx>
140    
141            * ContentChecker.pm ({unsupported_level}): New value.
142    
143            * HTML.pm.src: Save whether |meta| |content| attribute
144            contains character references or not.
145    
146  2008-02-17  Wakaba  <wakaba@suika.fam.cx>  2008-02-17  Wakaba  <wakaba@suika.fam.cx>
147    
148          * ContentChecker.pm (_get_children): (Incompleted) attempt to          * ContentChecker.pm (_get_children): (Incompleted) attempt to

Legend:
Removed from v.1.135  
changed lines
  Added in v.1.159

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24