Parent Directory
|
Revision Log
++ ChangeLog 16 Aug 2008 07:38:01 -0000 * cc-script.js: Support for #index- fragment identifiers. * cc-style.css: Prety styling for reformatted sources. Support for new version of manifest dump sections. * error-description-source.xml: Support for Whatpm::CacheManifest, Whatpm::CSS::SelectorsParser, Whatpm::CSS::MediaQueryParser, and Whatpm::CSS::Parser errors. Support for l10n of cache manifest dump sections. 2008-08-16 Wakaba <wakaba@suika.fam.cx> ++ html/WebHACC/Language/ChangeLog 16 Aug 2008 07:42:17 -0000 * CSS.pm, CacheManifest.pm, HTML.pm, XML.pm: Use ->url attribute to obtain the URL of the document. * CacheManifest.pm (generate_structure_dump_section): It is now i18n'ed. In addition, since URLs are tend to be long, tables for fallback entries are replaced by |dd| entries and paragraphs. "No entry" message is now handled by catalog, rather than CSS. 2008-08-16 Wakaba <wakaba@suika.fam.cx> ++ html/WebHACC/ChangeLog 16 Aug 2008 07:39:54 -0000 * Input.pm (Subdocument new): Invoke superclass's new method such that |urls| attribute is initialized. * Result.pm (add_error): Use ->url attribute to obtain the URL of the document. No longer output |text| argument, since all error types except for those used in the WebIDL module are now defined in the catalog. 2008-08-16 Wakaba <wakaba@suika.fam.cx>
| 1 | wakaba | 1.1 | package WebHACC::Language::HTML; |
| 2 | use strict; | ||
| 3 | require WebHACC::Language::DOM; | ||
| 4 | push our @ISA, 'WebHACC::Language::DOM'; | ||
| 5 | |||
| 6 | sub new ($) { | ||
| 7 | return bless {}, shift; | ||
| 8 | } # new | ||
| 9 | |||
| 10 | sub generate_syntax_error_section ($) { | ||
| 11 | my $self = shift; | ||
| 12 | |||
| 13 | wakaba | 1.4 | require Message::DOM::DOMImplementation; |
| 14 | wakaba | 1.1 | require Encode; |
| 15 | require Whatpm::HTML; | ||
| 16 |