/[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.295 by wakaba, Sat Sep 13 08:21:35 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>  2008-09-13  Wakaba  <wakaba@suika.fam.cx>
171    
172          * HTML.pm: Make |PUBLIC| and |SYSTEM| keyword tokenizing          * HTML.pm.src: Make |PUBLIC| and |SYSTEM| keyword tokenizing
173          into their own tokenizer states.          into their own tokenizer states.
174    
175  2008-09-13  Wakaba  <wakaba@suika.fam.cx>  2008-09-13  Wakaba  <wakaba@suika.fam.cx>

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

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24