1 |
|
2008-09-21 Wakaba <wakaba@suika.fam.cx> |
2 |
|
|
3 |
|
* ContentChecker.pm: |contextmenu| validness is now checked using |
4 |
|
|id| and |id_type| properties, and |menu| property is removed. |
5 |
|
|
6 |
|
2008-09-21 Wakaba <wakaba@suika.fam.cx> |
7 |
|
|
8 |
|
* ContentChecker.pm: Prepare for |form| |name| attribute's |
9 |
|
duplication checking. |
10 |
|
|
11 |
|
2008-09-21 Wakaba <wakaba@suika.fam.cx> |
12 |
|
|
13 |
|
* HTML.pm.src (parse_byte_stream): Support (or non-support) for |
14 |
|
unsupported charset="" parameter value (HTML5 revision 2131). |
15 |
|
|
16 |
|
2008-09-20 Wakaba <wakaba@suika.fam.cx> |
17 |
|
|
18 |
|
* HTML.pm.src: Reminding places where U+000B is allowed as a space |
19 |
|
character is fixed (cf. HTML5 revision 1738). |
20 |
|
|
21 |
|
* ContentChecker.pm, HTMLTable.pm: U+000B is no longer part of |
22 |
|
space characters (HTML5 revision 1738). |
23 |
|
|
24 |
|
2008-09-20 Wakaba <wakaba@suika.fam.cx> |
25 |
|
|
26 |
|
* HTML.pm.src: The "anything else" case for the "after after body" |
27 |
|
insertion mode was not updated to swtich to the "in body" |
28 |
|
insertion mode. U+000B is no longer a space character for the |
29 |
|
purpose of tree construction phase (HTML5 revision 1738). |
30 |
|
|
31 |
|
2008-09-20 Wakaba <wakaba@suika.fam.cx> |
32 |
|
|
33 |
|
* HTML.pm.src: U+000B is no longer a space character (HTML5 |
34 |
|
revision 1738). |
35 |
|
|
36 |
|
2008-09-20 Wakaba <wakaba@suika.fam.cx> |
37 |
|
|
38 |
|
* ContentType.pm: 0x0B is no longer a space character (HTML5 |
39 |
|
revision 1738). |
40 |
|
|
41 |
|
* HTML.pm.src: U+000B is no longer a space character for the |
42 |
|
algorithm for extracting an encoding from a Content-Type (HTML5 |
43 |
|
revision 1738). |
44 |
|
|
45 |
|
2008-09-20 Wakaba <wakaba@suika.fam.cx> |
46 |
|
|
47 |
|
* ContentChecker.pm ($IsInHTMLInteractiveContent): New. |
48 |
|
|
49 |
|
2008-09-18 Wakaba <wakaba@suika.fam.cx> |
50 |
|
|
51 |
|
* LangTag.pm: Add checks for remaining requirements from RFC 4646. |
52 |
|
|
53 |
|
* mklangreg.pl: Sort 'Prefix' values by their length, to ease |
54 |
|
matching. |
55 |
|
|
56 |
|
2008-09-18 Wakaba <wakaba@suika.fam.cx> |
57 |
|
|
58 |
|
* LangTag.pm: Warn for private use language subtags. Error level |
59 |
|
typos fixed. Support for Suppress-Script field. |
60 |
|
|
61 |
|
* mklangreg.pl: Support for dumping of nested structure. |
62 |
|
|
63 |
|
2008-09-18 Wakaba <wakaba@suika.fam.cx> |
64 |
|
|
65 |
|
* LangTag.pm (check_rfc4646_langtag): Check if a tag is in the |
66 |
|
recommended case as per RFC 4646. |
67 |
|
|
68 |
|
2008-09-18 Wakaba <wakaba@suika.fam.cx> |
69 |
|
|
70 |
|
* LangTag.pm (check_rfc4646_langtag): New method. |
71 |
|
|
72 |
|
2008-09-18 Wakaba <wakaba@suika.fam.cx> |
73 |
|
|
74 |
|
* mklangreg.pl: New script. |
75 |
|
|
76 |
|
* Makefile: Updated for creation of the module for language subtag |
77 |
|
registry. |
78 |
|
|
79 |
|
2008-09-16 Wakaba <wakaba@suika.fam.cx> |
80 |
|
|
81 |
|
* Makefile: WebIDL.html added. |
82 |
|
|
83 |
|
* WebIDL.pod: New documentation. |
84 |
|
|
85 |
|
2008-09-16 Wakaba <wakaba@suika.fam.cx> |
86 |
|
|
87 |
|
* WebIDL.pm: Checker's error types are redefined. |
88 |
|
|
89 |
|
2008-09-16 Wakaba <wakaba@suika.fam.cx> |
90 |
|
|
91 |
|
* WebIDL.pm: Parser's error types are redefined. Some forward |
92 |
|
compatible parsing bugs are fixed. Some unreachable codes are |
93 |
|
commented out. |
94 |
|
|
95 |
|
2008-09-16 Wakaba <wakaba@suika.fam.cx> |
96 |
|
|
97 |
|
* WebIDL.pm: Support for the reminding extended attributes are |
98 |
|
added. It does not satisfy the definition that a forward |
99 |
|
interface declaration has an extended attribute. It seems that |
100 |
|
unless explicitly allowed multiple extended attributes with the |
101 |
|
same name is not allowed, though it is not explicitly mentioned in |
102 |
|
the spec. |
103 |
|
|
104 |
|
2008-09-16 Wakaba <wakaba@suika.fam.cx> |
105 |
|
|
106 |
|
* WebIDL.pm: Unescapes extended attribute names and extended |
107 |
|
attribute identifiers. Preserve whether an extended attribute has |
108 |
|
an argument list of not. Support for extended attributes: |
109 |
|
Constructor, ExceptionConsts, IndexGetter, IndexSetter, |
110 |
|
NameGetter, NameSetter, and Null. |
111 |
|
(has_argument_list): New attribute. |
112 |
|
(idl_text): Stringifies argument lists, if any, even if it is |
113 |
|
empty. |
114 |
|
|
115 |
|
2008-09-15 Wakaba <wakaba@suika.fam.cx> |
116 |
|
|
117 |
|
* HTML.pm.src: New state |PCDATA_STATE|. Use an empty string for |
118 |
|
|{s_kwd}| in DATA_STATE as default. |
119 |
|
|
120 |
|
2008-09-15 Wakaba <wakaba@suika.fam.cx> |
121 |
|
|
122 |
|
* HTML.pm.src, mkhtmlparser.pl: Replace |{prev_char}| |
123 |
|
by |{s_kwd}| in DATA_STATE. |
124 |
|
|
125 |
|
2008-09-15 Wakaba <wakaba@suika.fam.cx> |
126 |
|
|
127 |
|
* HTML.pm.src: Shorten keys. |
128 |
|
|
129 |
|
2008-09-15 Wakaba <wakaba@suika.fam.cx> |
130 |
|
|
131 |
|
* HTML.pm.src: Remove checking for control character, surrogate |
132 |
|
pair, or noncharacter code points and non-Unicode code |
133 |
|
points (they should be handled by Whatpm::Charset::UnicodeChecker). |
134 |
|
(parse_char_stream): Support for the |$get_wrapper| argument and |
135 |
|
character stream error handlers. |
136 |
|
|
137 |
|
2008-09-15 Wakaba <wakaba@suika.fam.cx> |
138 |
|
|
139 |
|
* ContentChecker.pm: Don't call |loda_ns_module| |
140 |
|
for null-namespace elements/attributes. |
141 |
|
|
142 |
|
* HTML.pm.src: Fact out $disallowed_control_chars |
143 |
|
as a hash. |
144 |
|
|
145 |
|
2008-09-14 Wakaba <wakaba@suika.fam.cx> |
146 |
|
|
147 |
|
* HTML.pm.src: Regexp typo fixed. |{prev_char}| |
148 |
|
and |{next_char}| initializations are moved to initialization |
149 |
|
method. |{read_until}| now supports buffering. Sync |set_inner_html| |
150 |
|
with |parse_char_stream|. |
151 |
|
|
152 |
|
2008-09-14 Wakaba <wakaba@suika.fam.cx> |
153 |
|
|
154 |
|
* HTML.pm.src (parse_char_stream): Make |set_next_char| |
155 |
|
invoke |manakai_read_until|, not only |read|, where |
156 |
|
possible, to decrease the number of |read| method calls. |
157 |
|
|
158 |
|
* mkhtmlparser.pl: Related changes to the aforementioned |
159 |
|
modification. |
160 |
|
|
161 |
|
2008-09-14 Wakaba <wakaba@suika.fam.cx> |
162 |
|
|
163 |
|
* HTML.pm.src: Use |read| instead of |getc|. |set_inner_html| |
164 |
|
would report character error from now. |
165 |
|
|
166 |
2008-09-14 Wakaba <wakaba@suika.fam.cx> |
2008-09-14 Wakaba <wakaba@suika.fam.cx> |
167 |
|
|
168 |
* HTML.pm.src: White-space-leaded non-white-space character |
* HTML.pm.src: White-space-leaded non-white-space character |