/[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.282 by wakaba, Sat Aug 30 12:57:05 2008 UTC revision 1.320 by wakaba, Thu Sep 18 02:39:16 2008 UTC
# Line 1  Line 1 
1    2008-09-18  Wakaba  <wakaba@suika.fam.cx>
2    
3            * mklangreg.pl: New script.
4    
5            * Makefile: Updated for creation of the module for language subtag
6            registry.
7            
8    2008-09-16  Wakaba  <wakaba@suika.fam.cx>
9    
10            * Makefile: WebIDL.html added.
11    
12            * WebIDL.pod: New documentation.
13    
14    2008-09-16  Wakaba  <wakaba@suika.fam.cx>
15    
16            * WebIDL.pm: Checker's error types are redefined.
17    
18    2008-09-16  Wakaba  <wakaba@suika.fam.cx>
19    
20            * WebIDL.pm: Parser's error types are redefined.  Some forward
21            compatible parsing bugs are fixed.  Some unreachable codes are
22            commented out.
23    
24    2008-09-16  Wakaba  <wakaba@suika.fam.cx>
25    
26            * WebIDL.pm: Support for the reminding extended attributes are
27            added.  It does not satisfy the definition that a forward
28            interface declaration has an extended attribute.  It seems that
29            unless explicitly allowed multiple extended attributes with the
30            same name is not allowed, though it is not explicitly mentioned in
31            the spec.
32    
33    2008-09-16  Wakaba  <wakaba@suika.fam.cx>
34    
35            * WebIDL.pm: Unescapes extended attribute names and extended
36            attribute identifiers.  Preserve whether an extended attribute has
37            an argument list of not.  Support for extended attributes:
38            Constructor, ExceptionConsts, IndexGetter, IndexSetter,
39            NameGetter, NameSetter, and Null.
40            (has_argument_list): New attribute.
41            (idl_text): Stringifies argument lists, if any, even if it is
42            empty.
43    
44    2008-09-15  Wakaba  <wakaba@suika.fam.cx>
45    
46            * HTML.pm.src: New state |PCDATA_STATE|.  Use an empty string for
47            |{s_kwd}| in DATA_STATE as default.
48    
49    2008-09-15  Wakaba  <wakaba@suika.fam.cx>
50    
51            * HTML.pm.src, mkhtmlparser.pl: Replace |{prev_char}|
52            by |{s_kwd}| in DATA_STATE.
53    
54    2008-09-15  Wakaba  <wakaba@suika.fam.cx>
55    
56            * HTML.pm.src: Shorten keys.
57    
58    2008-09-15  Wakaba  <wakaba@suika.fam.cx>
59    
60            * HTML.pm.src: Remove checking for control character, surrogate
61            pair, or noncharacter code points and non-Unicode code
62            points (they should be handled by Whatpm::Charset::UnicodeChecker).
63            (parse_char_stream): Support for the |$get_wrapper| argument and
64            character stream error handlers.
65    
66    2008-09-15  Wakaba  <wakaba@suika.fam.cx>
67    
68            * ContentChecker.pm: Don't call |loda_ns_module|
69            for null-namespace elements/attributes.
70    
71            * HTML.pm.src: Fact out $disallowed_control_chars
72            as a hash.
73    
74    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
75    
76            * HTML.pm.src: Regexp typo fixed.  |{prev_char}|
77            and |{next_char}| initializations are moved to initialization
78            method.  |{read_until}| now supports buffering.  Sync |set_inner_html|
79            with |parse_char_stream|.
80    
81    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
82    
83            * HTML.pm.src (parse_char_stream): Make |set_next_char|
84            invoke |manakai_read_until|, not only |read|, where
85            possible, to decrease the number of |read| method calls.
86    
87            * mkhtmlparser.pl: Related changes to the aforementioned
88            modification.
89    
90    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
91    
92            * HTML.pm.src: Use |read| instead of |getc|.  |set_inner_html|
93            would report character error from now.
94    
95    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
96    
97            * HTML.pm.src: White-space-leaded non-white-space character
98            tokens in "before head insertion mode" was not
99            correctly handled.
100            (set_inner_html): Reimplemented using CharString decodehandle
101            class.  Support for $get_wrapper argument.  Support
102            for |{read_until}| feature.
103    
104    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
105    
106            * HTML.pm.src: Make a "bare ero" error for unknown
107            entities point the "&" character.
108    
109    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
110    
111            * HTML.pm.src: It turns out that U+FFFD don't have to
112            be added to the list of excluded characters.
113    
114    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
115    
116            * HTML.pm.src ($char_onerror): Have character decoder's |line|
117            and |column| a higher priority than the one set by the
118            tokenizer's input handler.
119            ($self->{read_until}): Exclude U+FFFD (but this might
120            not be necessary, since now we do line/column fixup in
121            the character decode handle).
122    
123    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
124    
125            * HTML.pm.src: Use |{read_until}| where possible.
126    
127    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
128    
129            * HTML.pm.src: Change |{getc_until}| to |{read_until}|
130            and |manakai_getc_until| to |manakai_read_until| to
131            reduce the number of string copies.
132    
133    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
134    
135            * HTML.pm.src (parse_char_string): Use newly created
136            |Whatpm::Charset::DecodeHandle::CharString| instead of Perl's
137            standard feature to |open| a string as a filehandle,
138            since Perl's string filehandle seems not supporting |ungetc|
139            method correctly.
140            (parse_char_stream): Define |{getc_until}| method.
141            (DATA_STATE): Experimental support for |getc_until| feature.
142    
143    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
144    
145            * HTML.pm.src: Check points added to newly added branches.
146    
147    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
148    
149            * HTML.pm.src: Remove |{char}|, which is no longer used.
150            Remove |{entity_in_attr}| and |{last_attribute_value_state}|
151            and replaced by |{prev_state}|.
152    
153            * mkhtmlparser.pl: Remove |{char}| feature.
154            Remove |!!!back-next-input-character;| macro.
155    
156    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
157    
158            * HTML.pm.src: Finally we get rid of all the inner loops.  Remove
159            entity related tokenizer states in favor of new states
160            implementing the consume character reference algorithm.
161    
162    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
163    
164            * HTML.pm.src: "Consume a character reference" algorithm is
165            now implemented as a tokenizer's state, rather than
166            a method, with minimum changes (more changes will
167            be made, in due course).  "Bogus comment state"'s inner
168            loop gets removed.
169    
170    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
171    
172            * HTML.pm.src: Make |PUBLIC| and |SYSTEM| keyword tokenizing
173            into their own tokenizer states.
174    
175    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
176    
177            * HTML.pm.src: |CDATA_SECTION_STATE| (formally |CDATA_BLOCK_STATE|
178            is split into three states.
179    
180    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
181    
182            * HTML.pm.src: |CLOSE_TAG_OPEN_STATE| is broken into
183            itself and new |CDATA_PCDATA_CLOSE_TAG_STATE| so that
184            no longer does the tokenizer have to push back next input
185            characters in those states.
186    
187    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
188    
189            * HTML.pm.src: |MARKUP_DECLARATION_OPEN_STATE| broken
190            into four states so that no longer does the tokenizer have to push
191            back next input characters in that state.
192    
193    2008-09-11  Wakaba  <wakaba@suika.fam.cx>
194    
195            * HTML.pm.src: Methods now accept additional parameter, $get_wrapper,
196            which can be used to insert some wrapper between the character
197            stream handle and the tokenizer.  (It is currently not supported
198            for |set_inner_html| for |Element|s).
199    
200    2008-09-10  Wakaba  <wakaba@suika.fam.cx>
201    
202            * HTML.pm.src: Ignore punctuations in charset names.
203    
204    2008-09-10  Wakaba  <wakaba@suika.fam.cx>
205    
206            * ContentChecker.pm: Support for charset-layer error levels.
207    
208            * HTML.pm.src: Don't specify |text| argument for the
209            |chardecode:fallback| error, since it is not the encoding
210            being used alternatively.
211    
212    2008-09-06  Wakaba  <wakaba@suika.fam.cx>
213    
214            * HTML.pm.src: Support for |XSLT-compat| (HTML5 revision 2141).
215    
216    2008-08-31  Wakaba  <wakaba@suika.fam.cx>
217    
218            * CacheManifest.pm: Support for extensibility (HTML5 revision 2051).
219    
220    2008-08-31  Wakaba  <wakaba@suika.fam.cx>
221    
222            * HTML.pm.src: Bug fix and sync with the spec with regard
223            to after after frameset insertion mode processing (HTML5
224            revision 1909).  Note that the implementation was wrong
225            per the old spec before the r1909 changes.
226    
227    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
228    
229            * HTMLTable.pm: scope=auto algorithm fix synced with the
230            spec (HTML5 revision 2093).
231            ($process_row): Algorithm step numbers synced with the
232            spec (HTML5 revision 2092).
233    
234    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
235    
236            * HTMLTable.pm: Zs is not what we want; we want White_Space! (HTML5
237            revision 2094).
238    
239    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
240    
241            * ContentType.pm: Support for image/svg+xml (HTML5 revision 2096).
242    
243    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
244    
245            * HTML.pm.src: '"' and "'" at the end of attribute
246            name (after another attribute) now raise parse error (HTML5
247            revision 2123).  Empty unquoted attribute values are no
248            longer allowed (HTML5 revision 2122).
249    
250  2008-08-30  Wakaba  <wakaba@suika.fam.cx>  2008-08-30  Wakaba  <wakaba@suika.fam.cx>
251    
252          * mkhtmlparser.pl: Support for MathML |definitionURL| attribute (HTML5          * mkhtmlparser.pl: Support for MathML |definitionURL| attribute (HTML5

Legend:
Removed from v.1.282  
changed lines
  Added in v.1.320

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24