/[suikacvs]/test/html-webhacc/WebHACC/Language/XML.pm
Suika

Contents of /test/html-webhacc/WebHACC/Language/XML.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.6 - (show annotations) (download)
Fri Aug 15 05:53:23 2008 UTC (16 years, 10 months ago) by wakaba
Branch: MAIN
Changes since 1.5: +2 -1 lines
++ ChangeLog	15 Aug 2008 05:43:43 -0000
2008-08-15  Wakaba  <wakaba@suika.fam.cx>

	* cc-style.css: Add icons to links and headings of error sections.
	Use standard "uncertain" color for level-u errors.  "No error found"
	messages are now handled by catalog, not by CSS presentation.
	The result paragraph saying that the conformance is unknown
	should be bordered as uncertain error messages are.

	* error-description-source.xml: New message entries
	for not-translated-yet messages.  Distinguish result table's
	layer names from other similar texts.

++ html/WebHACC/Language/ChangeLog	15 Aug 2008 05:53:19 -0000
2008-08-15  Wakaba  <wakaba@suika.fam.cx>

	* CSS.pm, CacheManifest.pm, HTML.pm, WebIDL.pm, XML.pm: Don't
	set "uncertain" flag to character encoding (encode) layer if the
	input is a character string.

++ html/WebHACC/ChangeLog	15 Aug 2008 05:51:54 -0000
2008-08-15  Wakaba  <wakaba@suika.fam.cx>

	* Input.pm (generate_transfer_sections): Use standard
	error list methods for transfer errors.  Typos fixed.

	* Output.pm (has_error): New attribute.
	(start_error_list, end_error_list): Support for role "transfer-errors".
	(end_error_list): Generate "no error found" paragraph if it should be.
	(generate_input_section): Decode parameters as UTF-8.

	* Result.pm (add_error): Set |has_error| flag.  Use catalog
	for "Unknown location" message.
	(generate_result_section): Use different text for
	result table rows than normal messages, to avoid collision
	with other messages (such as "Charset").

1 package WebHACC::Language::XML;
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 require Message::DOM::DOMImplementation;
14 require Message::DOM::XMLParserTemp;
15
16 $self->result->layer_uncertain ('charset');
17
18 my $out = $self->output;
19 $out->start_section (role => 'parse-errors');
20 $out->start_error_list (role => 'parse-errors');
21
22 my $input = $self->input;
23 my $result = $self->result;
24 $self->result->layer_applicable ('syntax');
25
26 my $onerror = sub {
27 my $err = shift;
28 $result->add_error (line => $err->location->line_number,
29 column => $err->location->column_number,
30 type => 'xml parse error',
31 value => $err->text,
32 level => [
33 $err->SEVERITY_FATAL_ERROR => 'm',
34 $err->SEVERITY_ERROR => 'm',
35 $err->SEVERITY_WARNING => 's',
36 ]->[$err->severity],
37 layer => 'syntax');
38 return 1;
39 };
40
41 my $t = \($input->{s});
42 if ($input->{is_char_string}) {
43 require Encode;
44 $t = \(Encode::encode ('utf8', $$t));
45 $input->{charset} = 'utf-8';
46 } else {
47 $self->result->layer_uncertain ('encode');
48 }
49
50 open my $fh, '<', $t;
51 my $dom = Message::DOM::DOMImplementation->new;
52 $self->{structure} = Message::DOM::XMLParserTemp->parse_byte_stream
53 ($fh => $dom, $onerror, charset => $input->{charset});
54 $self->{structure}->manakai_charset ($input->{official_charset})
55 if defined $input->{official_charset};
56
57 $self->{structure}->document_uri ($input->{uri});
58 $self->{structure}->manakai_entity_base_uri ($input->{base_uri});
59
60 $out->end_error_list;
61 $out->end_section;
62 } # generate_syntax_error_section
63
64 sub source_charset ($) {
65 my $self = shift;
66 return $self->input->{charset} || ($self->{structure}->owner_document || $self->{structure})->input_encoding;
67 ## TODO: Can we always use input_encoding?
68 } # source_charset
69
70 1;

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24