1 |
|
2008-08-15 Wakaba <wakaba@suika.fam.cx> |
2 |
|
|
3 |
|
* ContentChecker.pm: Support for RDF/XML error levels. |
4 |
|
|
5 |
|
* HTMLTable.pm, RDFXML.pm: Support for new style of error level |
6 |
|
specifying. Error types are revised. |
7 |
|
|
8 |
|
2008-08-15 Wakaba <wakaba@suika.fam.cx> |
9 |
|
|
10 |
|
* ContentChecker.pm: All error reporting method calls are |
11 |
|
renewed. |
12 |
|
|
13 |
|
2008-08-15 Wakaba <wakaba@suika.fam.cx> |
14 |
|
|
15 |
|
* HTML.pm.src: All error type names and "text" parameters |
16 |
|
are revised. Use new style for "level" specification. |
17 |
|
|
18 |
|
* mkhtmlparser.pl: Use new style for "level" specification. |
19 |
|
|
20 |
|
2008-08-03 Wakaba <wakaba@suika.fam.cx> |
21 |
|
|
22 |
|
* WebIDL.pm (parse_char_string): Simplified error |
23 |
|
reporting process for broken ignored valuetype definition. |
24 |
|
(Valuetype idl_text): Support for special "DOMString" name. |
25 |
|
|
26 |
|
2008-08-03 Wakaba <wakaba@suika.fam.cx> |
27 |
|
|
28 |
|
* WebIDL.pm ($get_scoped_name): Append "::::" if the last |
29 |
|
terminal of the ScopedName is "DOMString", such that whether |
30 |
|
the last part of the scoped name is "DOMString" or "_DOMString" |
31 |
|
later. It is necessary to determine whether a |typedef| |
32 |
|
definition should be ignored or not. |
33 |
|
(parse_char_string): Unescape the identifier of |
34 |
|
exception members. |
35 |
|
($resolve): Return undef for builtin types and sequence<T> |
36 |
|
types (we might not have to do this, however...). |
37 |
|
(check): Support checking for Exceptions, Valuetypes, |
38 |
|
and Typedefs. |
39 |
|
($serialize_type): Support for "DOMString::::" syntax. |
40 |
|
(Typedef idl_text): Output Type as "DOMString" if it |
41 |
|
is really "DOMString" (i.e. its internal representation |
42 |
|
is "::DOMString::"). |
43 |
|
|
44 |
|
2008-08-03 Wakaba <wakaba@suika.fam.cx> |
45 |
|
|
46 |
|
* WebIDL.pm ($resolve): New code, based on resolve code |
47 |
|
for constant types in the |check| method. |
48 |
|
(check): Support for checking of attributes, operations, and |
49 |
|
arguments. |
50 |
|
(Attribute/Operation idl_text): Exception names in getraises, |
51 |
|
setraises, and raises clauses is serizlied by |$serialize_type| |
52 |
|
code. |
53 |
|
|
54 |
|
2008-08-02 Wakaba <wakaba@suika.fam.cx> |
55 |
|
|
56 |
|
* WebIDL.pm ($integer): Order of selections are changed to match |
57 |
|
hexadecimal numbers (the original pattern, taken from the spec, |
58 |
|
was not work for hexadecimal numbers, because the "0" prefix |
59 |
|
matches to the [0-7]* part (as an empty string) and therefore |
60 |
|
it does not match with remaining "x..." part of a "0x..." integer |
61 |
|
literal. |
62 |
|
($get_type): It now returns a string, not an array reference, |
63 |
|
for regular types and |sequence| types (i.e. it in any case |
64 |
|
returns a string). |
65 |
|
($get_next_token): The second item in the array that represents |
66 |
|
a integer or float token is now a Perl number value, not the |
67 |
|
original string representation of the number. |
68 |
|
(check): Support for const value consistency checking. |
69 |
|
No extended attribute is defined for constants. |
70 |
|
(Node subclasses): Use simple strings rather than array references |
71 |
|
for default data type values. |
72 |
|
($serialize_type): Type values are now simple strings. |
73 |
|
(value): If the new attribute value is a false value, then |
74 |
|
a FALSE value is set to the attribute. |
75 |
|
|
76 |
|
2008-08-02 Wakaba <wakaba@suika.fam.cx> |
77 |
|
|
78 |
|
* WebIDL.pm ($get_scoped_name): Now scoped names are stored |
79 |
|
in its stringified format ("scoped name" as defined in the |
80 |
|
spec). Note that future version of this module should not use |
81 |
|
array references for type values and the |type_text| attribute |
82 |
|
should be made obsolete. |
83 |
|
(parse_char_string): Unescape attribute names. |
84 |
|
(check): Support for checking of whether inherited interfaces |
85 |
|
are actually defined or not. Support for checking of whether |
86 |
|
interface member identifiers are duplicated or not. |
87 |
|
($serialize_type): Scoped names are returned as is. A future |
88 |
|
version of this code should escape identifiers other than "DOMString", |
89 |
|
otherwise the idl_text would be non-conforming. |
90 |
|
|
91 |
|
2008-08-02 Wakaba <wakaba@suika.fam.cx> |
92 |
|
|
93 |
|
* WebIDL.pm (parse_char_string): Set line/column numbers |
94 |
|
to generated nodes. Unescape identifiers. Extended attributes |
95 |
|
for Definition's were ignored. |
96 |
|
(append_child): Set |parent_node| attribute. |
97 |
|
(parent_node): New attribute. |
98 |
|
(check): Support interface/exception members. Support |
99 |
|
extended attributes. Support definition identifier uniqueness |
100 |
|
constraint. |
101 |
|
(qualified_name): New attribute. |
102 |
|
(Interface/Exception idl_text): Extended attributes were |
103 |
|
not prepended to the returned text. |
104 |
|
|
105 |
|
2008-08-02 Wakaba <wakaba@suika.fam.cx> |
106 |
|
|
107 |
|
* WebIDL.pm (parse_char_string): Set line/column numbers |
108 |
|
to interface object experimentally. s/shift/pop/g, shift |
109 |
|
would make things wrong. Support for interface forward |
110 |
|
declarations was missing. Broken interface declarations |
111 |
|
with no block were not ignored entirely. |
112 |
|
(Whatpm::WebIDL::Node): New abstract class. This class |
113 |
|
makes things easier. |
114 |
|
(child_nodes): New attribute. Unlike DOM's attribute with |
115 |
|
same name, this attribute returns a dead list of nodes for |
116 |
|
simplicity. |
117 |
|
(get_user_data, set_user_data): New methods. |
118 |
|
(Module idl_text): A SPACE character should be inserted |
119 |
|
before the |{| character. |
120 |
|
(Interface idl_text): Support for interface forward declarations. |
121 |
|
(is_forward_declaration): New attribute. |
122 |
|
|
123 |
|
2008-07-19 Wakaba <wakaba@suika.fam.cx> |
124 |
|
|
125 |
|
* WebIDL.pm (type_text): Better serializer. |
126 |
|
|
127 |
|
2008-07-19 Wakaba <wakaba@suika.fam.cx> |
128 |
|
|
129 |
|
* WebIDL.pm: Revise forward-compatible parsing so that |
130 |
|
it now can handle broken extended attributes and as such. |
131 |
|
|
132 |
|
2008-07-19 Wakaba <wakaba@suika.fam.cx> |
133 |
|
|
134 |
|
* WebIDL.pm: Real support for extended attributes. |
135 |
|
Support for extended attributes with arguments. |
136 |
|
|
137 |
|
2008-07-19 Wakaba <wakaba@suika.fam.cx> |
138 |
|
|
139 |
|
* WebIDL.pm: Support for |exception| syntax. |
140 |
|
(Interface->idl_text): Tentative support for inheritances. |
141 |
|
|
142 |
|
2008-07-19 Wakaba <wakaba@suika.fam.cx> |
143 |
|
|
144 |
|
* WebIDL.pm: Hierarchical scoped name support was broken. |
145 |
|
Support for raises, setraises, and getraises syntaxes. |
146 |
|
|
147 |
|
2008-07-18 Wakaba <wakaba@suika.fam.cx> |
148 |
|
|
149 |
|
* WebIDL.pm: Support for |idl_text| attribute, version 1 (no |
150 |
|
proper support for types, extended attributes, and exceptions yet). |
151 |
|
WebIDL parser, version 1 (no support for exceptions yet, |
152 |
|
no proper support for extended attributes yet). |
153 |
|
|
154 |
|
2008-07-09 Wakaba <wakaba@suika.fam.cx> |
155 |
|
|
156 |
|
* WebIDL.pm (parse_char_string): Support for basic attribute syntax. |
157 |
|
|
158 |
|
2008-06-29 Wakaba <wakaba@suika.fam.cx> |
159 |
|
|
160 |
|
* WebIDL.pm: Support for valuetype and const. |
161 |
|
|
162 |
|
2008-06-29 Wakaba <wakaba@suika.fam.cx> |
163 |
|
|
164 |
|
* WebIDL.pm: New module. |
165 |
|
|
166 |
|
2008-06-15 Wakaba <wakaba@suika.fam.cx> |
167 |
|
|
168 |
|
* Makefile (Entities.html): URI changed. |
169 |
|
|
170 |
|
2008-06-08 Wakaba <wakaba@suika.fam.cx> |
171 |
|
|
172 |
|
* HTML.pm.src: Support for ruby parsing (HTML5 revision 1704). |
173 |
|
|
174 |
|
2008-06-01 Wakaba <wakaba@suika.fam.cx> |
175 |
|
|
176 |
|
* HTML.pm.src (_get_next_token): A parse error was missing. |
177 |
|
|
178 |
|
2008-06-01 Wakaba <wakaba@suika.fam.cx> |
179 |
|
|
180 |
|
* mklinktypelist.pl: rel=contact is no longer part of the HTML5 |
181 |
|
spec (commented out). (HTML5 revision 1711). |
182 |
|
|
183 |
|
2008-05-25 Wakaba <wakaba@suika.fam.cx> |
184 |
|
|
185 |
|
* ContentType.pm: Drop support for UTF-32 (HTML5 revision 1701). |
186 |
|
|
187 |
|
* HTML.pm.src: UTF-16BE and UTF-16LE should be considered |
188 |
|
as UTF-16 (HTML5 revision 1701). |
189 |
|
|
190 |
|
2008-05-25 Wakaba <wakaba@suika.fam.cx> |
191 |
|
|
192 |
|
* HTML.pm.src: Support for <noframes> in <head> (HTML5 revision |
193 |
|
1692). |
194 |
|
|
195 |
|
2008-05-25 Wakaba <wakaba@suika.fam.cx> |
196 |
|
|
197 |
|
* HTML.pm.src: The secondary insertion mode used when switching |
198 |
|
to foreign content is the "in body" insertion mode (HTML5 revision |
199 |
|
1696). |
200 |
|
|
201 |
|
2008-05-25 Wakaba <wakaba@suika.fam.cx> |
202 |
|
|
203 |
|
* HTML.pm.src: Don't raise parse error for <isindex/> (HTML5 |
204 |
|
revision 1697). |
205 |
|
|
206 |
|
2008-05-24 Wakaba <wakaba@suika.fam.cx> |
207 |
|
|
208 |
|
* HTML.pm.src: Support for end-of-file token in foreign content |
209 |
|
insertion mode (HTML5 revision 1693). Update SVG camelCase |
210 |
|
attribute list (HTML5 revision 1700). <textarea> closes |
211 |
|
</select> (HTML5 revision 1699). More start tags close in |
212 |
|
foreign content insertion mode (HTML5 revision 1698). |
213 |
|
|
214 |
|
2008-05-24 Wakaba <wakaba@suika.fam.cx> |
215 |
|
|
216 |
|
* HTML.pm.src: ";" is not part of charset name (HTML5 revision 1665). |
217 |
|
|
218 |
|
2008-05-24 Wakaba <wakaba@suika.fam.cx> |
219 |
|
|
220 |
|
* HTML.pm.src: More robust charset parameter detection (HTML5 |
221 |
|
revision 1674). |
222 |
|
|
223 |
|
2008-05-24 Wakaba <wakaba@suika.fam.cx> |
224 |
|
|
225 |
|
* ContentType.pm: Support for image/vnd.microsoft.icon (HTML5 |
226 |
|
revision 1676). |
227 |
|
|
228 |
|
2008-05-24 Wakaba <wakaba@suika.fam.cx> |
229 |
|
|
230 |
|
* HTML.pm.src: Ignore language part of public identifiers for |
231 |
|
quriks mode detection (HTML5 revision 1679). |
232 |
|
|
233 |
|
2008-05-24 Wakaba <wakaba@suika.fam.cx> |
234 |
|
|
235 |
|
* HTML.pm.src: Reduce the number of errors in truncated doctypes (HTML5 |
236 |
|
revision 1685). |
237 |
|
|
238 |
|
2008-05-24 Wakaba <wakaba@suika.fam.cx> |
239 |
|
|
240 |
|
* HTML.pm.src: Support for EOF in new states for tags (HTML5 |
241 |
|
revision 1684). |
242 |
|
|
243 |
|
2008-05-24 Wakaba <wakaba@suika.fam.cx> |
244 |
|
|
245 |
|
* HTML.pm.src (_reset_insertion_mode): Make <td>.innerHTML |
246 |
|
work (HTML5 revision 1690). |
247 |
|
|
248 |
|
2008-05-24 Wakaba <wakaba@suika.fam.cx> |
249 |
|
|
250 |
|
* HTML.pm.src (_tree_construction_main): Change handling of |
251 |
|
end tags in head insertion modes (HTML5 revision 1686). |
252 |
|
(parse_char_string): Bug fix for non-utf8 character string handlings. |
253 |
|
(parse_char_stream): |ungetc| does not work well for this context. |
254 |
|
|
255 |
|
2008-05-18 Wakaba <wakaba@suika.fam.cx> |
256 |
|
|
257 |
|
* HTML.pm.src (parse_byte_string): Redefined to invoke |
258 |
|
|parse_byte_stream|. |
259 |
|
(parse_byte_stream): New method. |
260 |
|
|
261 |
|
2008-05-18 Wakaba <wakaba@suika.fam.cx> |
262 |
|
|
263 |
|
* HTML.pm.src (parse_byte_string): Fix the column number reported |
264 |
|
by encoding layer error reporter. |
265 |
|
|
266 |
|
2008-05-17 Wakaba <wakaba@suika.fam.cx> |
267 |
|
|
268 |
|
* HTML.pm.src (parse_byte_string): Use streaming decoder |
269 |
|
rather than converting the whole byte string and then parsing. |
270 |
|
Propagate errors in character encoding layer. |
271 |
|
(get_next_token): Precise error reporting for |bare stago| error. |
272 |
|
|
273 |
|
2008-05-17 Wakaba <wakaba@suika.fam.cx> |
274 |
|
|
275 |
|
* HTML.pm.src (parse_char_stream): New method. |
276 |
|
(parse_char_string): This method is now defined as an invocation |
277 |
|
of the |parse_char_stream| method. |
278 |
|
|
279 |
|
2008-05-17 Wakaba <wakaba@suika.fam.cx> |
280 |
|
|
281 |
|
* HTML.pm.src (parse_byte_string): Report various status |
282 |
|
of the sniffing as info-level errors. Support for new |
283 |
|
decoding framework in parser resestting. |
284 |
|
(new): Various default error levels were not set. |
285 |
|
|
286 |
|
2008-05-17 Wakaba <wakaba@suika.fam.cx> |
287 |
|
|
288 |
|
* HTML.pm.src (parse_byte_string): HTML5 encoding siniffing |
289 |
|
algorithm, except for the actual sniffing, is implemented |
290 |
|
with new framework with Message::Charset::Info. |
291 |
|
|
292 |
|
2008-05-16 Wakaba <wakaba@suika.fam.cx> |
293 |
|
|
294 |
|
* CacheManifest.pm (_parse): Drop fragment identifiers from |
295 |
|
URIs in fallback section (HTML5 revision 1596). |
296 |
|
|
297 |
|
2008-05-10 Wakaba <wakaba@suika.fam.cx> |
298 |
|
|
299 |
|
* Makefile (Entities.html): URI has changed. |
300 |
|
|
301 |
|
2008-05-10 Wakaba <wakaba@suika.fam.cx> |
302 |
|
|
303 |
|
* CacheManifest.pm: Don't replace U+0000 NULL (HTML5 revision |
304 |
|
1553). |
305 |
|
|
306 |
|
2008-05-06 Wakaba <wakaba@suika.fam.cx> |
307 |
|
|
308 |
|
* ContentChecker.pm: Noted that those returned in |table| are |
309 |
|
no longer table elements, but table objects returned |
310 |
|
by Whatpm::HTMLTable. |
311 |
|
|
312 |
|
* HTMLTable.pm (form_table): Return table element node |
313 |
|
as |$table->{element}|. |
314 |
|
(assign_header): Support for the |headers=""| attribute. |
315 |
|
|
316 |
|
2008-05-06 Wakaba <wakaba@suika.fam.cx> |
317 |
|
|
318 |
|
* HTMLTable.pm (assign_header): New function; first version |
319 |
|
with no support for headers="". |
320 |
|
(form_table): Include table width and height to the returned |
321 |
|
table object for covenience. Indexing in column assignement was wrong. |
322 |
|
Set whether a data cell is empty or not for convenience. |
323 |
|
|
324 |
|
2008-05-05 Wakaba <wakaba@suika.fam.cx> |
325 |
|
|
326 |
|
* HTMLTable.pm: Robuster caption support (HTML5 revision 1393). |
327 |
|
|
328 |
|
2008-05-05 Wakaba <wakaba@suika.fam.cx> |
329 |
|
|
330 |
|
* HTMLTable.pm: How table model errors are detected is |
331 |
|
changed (HTML5 revision 1387). |
332 |
|
|
333 |
|
2008-05-05 Wakaba <wakaba@suika.fam.cx> |
334 |
|
|
335 |
|
* HTMLTable.pm: The algorithm now moves |tfoot| elements |
336 |
|
to the end of the table (HTML5 revision 1380). |
337 |
|
|
338 |
|
2008-05-05 Wakaba <wakaba@suika.fam.cx> |
339 |
|
|
340 |
|
* HTMLTable.pm: The algorithm is now 0-based indexing, instead |
341 |
|
of 1-based (HTML5 revision 1376). |
342 |
|
|
343 |
|
2008-05-05 Wakaba <wakaba@suika.fam.cx> |
344 |
|
|
345 |
|
* ContentType.pm: "Content-Type: text/plain; charset=UTF-8" |
346 |
|
and "Content-Encoding" no longer prevent sniffing (HTML5 |
347 |
|
revision 1288). |
348 |
|
|
349 |
|
2008-05-05 Wakaba <wakaba@suika.fam.cx> |
350 |
|
|
351 |
|
* ContentType.pm: Skip BOMs n feed or HTML algorithm (HTML5 revision |
352 |
|
1282). |
353 |
|
|
354 |
|
2008-05-03 Wakaba <wakaba@suika.fam.cx> |
355 |
|
|
356 |
|
* ContentChecker.pm: Support for global attributes. |
357 |
|
Status of XML specs are added. |
358 |
|
|
359 |
|
2008-05-03 Wakaba <wakaba@suika.fam.cx> |
360 |
|
|
361 |
|
* ContentChecker.pm (check_element): Support for |template=""| |
362 |
|
and |ref=""| attribute (referent element type checking). |
363 |
|
|
364 |
|
2008-04-29 Wakaba <wakaba@suika.fam.cx> |
365 |
|
|
366 |
|
* CacheManifest.pm (_parse): New same origin definition (HTML5 revision |
367 |
|
1500) is implemented (except for IDNA part and URI-scheme-specific |
368 |
|
knowledge). Line number counting was wrong for LF-only |
369 |
|
documents. |
370 |
|
|
371 |
|
2008-04-13 Wakaba <wakaba@suika.fam.cx> |
372 |
|
|
373 |
|
* HTML.pm.src: Raise an parse error for any disallowed |
374 |
|
character (HTML5 revision 1263). |
375 |
|
|
376 |
|
2008-04-13 Wakaba <wakaba@suika.fam.cx> |
377 |
|
|
378 |
|
* mkentitylist.pl: Support for new HTML5 entity table format (the |
379 |
|
definition for |AElig;| was missing). |
380 |
|
|
381 |
|
2008-04-13 Wakaba <wakaba@suika.fam.cx> |
382 |
|
|
383 |
|
* HTML.pm.src, mkhtmlparser.pl: Support for element/attribute |
384 |
|
name/namespace fixup (HTML5 revisions 1413, 1415, 1416, and 1417). |
385 |
|
|
386 |
|
2008-04-13 Wakaba <wakaba@suika.fam.cx> |
387 |
|
|
388 |
|
* HTML.pm.src: List of element names that close foreign content |
389 |
|
insertion mode is added (HTML5 revisions 1412 and 1418). |
390 |
|
|
391 |
|
2008-04-13 Wakaba <wakaba@suika.fam.cx> |
392 |
|
|
393 |
|
* HTML.pm.src: Support for |mglyph| and |malignmark| |
394 |
|
elements (HTML5 revision 1410). |
395 |
|
|
396 |
|
2008-04-13 Wakaba <wakaba@suika.fam.cx> |
397 |
|
|
398 |
|
* HTML.pm.src: Support for new long MathML entities (HTML5 |
399 |
|
revision 1406). |
400 |
|
|
401 |
|
2008-04-13 Wakaba <wakaba@suika.fam.cx> |
402 |
|
|
403 |
|
* HTML.pm.src: CDATA section support for MathML and SVG |
404 |
|
elements (HTML5 revision 1404 and 1420). |
405 |
|
|
406 |
|
2008-04-12 Wakaba <wakaba@suika.fam.cx> |
407 |
|
|
408 |
|
* HTML.pm.src, mkhtmlparser.pl: Support for MathML and SVG |
409 |
|
elements (HTML5 revision 1404). Unused !!!macro definitions |
410 |
|
are removed. |
411 |
|
|
412 |
|
2008-04-12 Wakaba <wakaba@suika.fam.cx> |
413 |
|
|
414 |
|
* HTML.pm.src, mkhtmlparser.pl: The way permitted slash errors |
415 |
|
are raised is changed (HTML5 revision 1404). |
416 |
|
|
417 |
|
2008-04-06 Wakaba <wakaba@suika.fam.cx> |
418 |
|
|
419 |
|
* HTML.pm.src: Category sets that are no longer used are removed. |
420 |
|
|
421 |
|
2008-04-06 Wakaba <wakaba@suika.fam.cx> |
422 |
|
|
423 |
|
* HTML.pm.src: The ->[1] property of stack entries are now |
424 |
|
replaced by constants representing element category. |
425 |
|
|
426 |
|
2008-04-06 Wakaba <wakaba@suika.fam.cx> |
427 |
|
|
428 |
|
* HTML.pm.src: Don't use local name stored in stack (i.e. ->[1]) |
429 |
|
for error reporting. (This is a preparation for using constant |
430 |
|
value for ->[1].) |
431 |
|
|
432 |
|
2008-03-22 Wakaba <wakaba@suika.fam.cx> |
433 |
|
|
434 |
|
* RDFXML.pm: Typo fixed. |
435 |
|
|
436 |
|
2008-03-22 Wakaba <wakaba@suika.fam.cx> |
437 |
|
|
438 |
|
* ContentChecker.pm: |fact_level| is now treated |
439 |
|
as same as |must_level|, i.e. level = |m|. |
440 |
|
(check_element): Make list of URIs in the DOM. |
441 |
|
|
442 |
|
2008-03-21 Wakaba <wakaba@suika.fam.cx> |
443 |
|
|
444 |
|
* RDFXML.pm: Language accessor implemented. |
445 |
|
Local (null-namespace) attribute support. |
446 |
|
|
447 |
|
2008-03-21 Wakaba <wakaba@suika.fam.cx> |
448 |
|
|
449 |
|
* RDFXML.pm: Factored out ID checking code. |
450 |
|
|
451 |
|
2008-03-21 Wakaba <wakaba@suika.fam.cx> |
452 |
|
|
453 |
|
* RDFXML.pm: TODO items noted. Validation of ID |
454 |
|
and URI attributes is implemented. Warn if unknown |
455 |
|
value is used in rdf:parseType="" attribute. |
456 |
|
|
457 |
|
* URIChecker.pm (check_rdf_uri_reference): New function. |
458 |
|
|
459 |
|
2008-03-21 Wakaba <wakaba@suika.fam.cx> |
460 |
|
|
461 |
|
* RDFXML.pm: bnodeid implemented. Relative references |
462 |
|
are now resolved. |
463 |
|
|
464 |
|
2008-03-21 Wakaba <wakaba@suika.fam.cx> |
465 |
|
|
466 |
|
* ContentChecker.pm: RDF reification implemented. |
467 |
|
|
468 |
|
* RDFXML.pm: undef vs false bug fixed. |
469 |
|
Reification implemented. |
470 |
|
|
471 |
|
2008-03-21 Wakaba <wakaba@suika.fam.cx> |
472 |
|
|
473 |
|
* RDFXML.pm: s/id/ID/ for attribute name. |
474 |
|
The |node| arguments are added for |ontriple| calls. |
475 |
|
Too many "attribute not allowed" errors were raised. |
476 |
|
|
477 |
|
* ContentChecker.pm: Initial experimental support for rdf:RDF |
478 |
|
element. |
479 |
|
|
480 |
|
2008-03-21 Wakaba <wakaba@suika.fam.cx> |
481 |
|
|
482 |
|
* RDFXML.pm: New module. |
483 |
|
|
484 |
2008-03-20 Wakaba <wakaba@suika.fam.cx> |
2008-03-20 Wakaba <wakaba@suika.fam.cx> |
485 |
|
|
486 |
* HTML.pm.src (set_inner_html): Line/column number |
* HTML.pm.src (set_inner_html): Line/column number |