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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.3 - (hide annotations) (download)
Mon Jul 21 08:39:12 2008 UTC (16 years, 11 months ago) by wakaba
Branch: MAIN
Changes since 1.2: +1 -1 lines
++ ChangeLog	21 Jul 2008 08:33:17 -0000
	* cc.cgi (print_table_section): Removed (now part of
	WebHACC::Language::DOM).

2008-07-21  Wakaba  <wakaba@suika.fam.cx>

++ html/WebHACC/Language/ChangeLog	21 Jul 2008 08:39:05 -0000
	* Base.pm (generate_source_string_section): Invoke
	|add_source_to_parse_error_list| method for generating a
	script fragment.

	* CSS.pm, CacheManifest.pm, DOM.pm, HTML.pm, WebIDL.pm,
	XML.pm: Use new methods for generating sections and error lists.

	* DOM.pm (generate_additional_sections, generate_table_section): New.

	* Default.pm: Pass |input| in place of |url| for unknown syntax
	error.

2008-07-21  Wakaba  <wakaba@suika.fam.cx>

++ html/WebHACC/ChangeLog	21 Jul 2008 08:36:01 -0000
	* Output.pm (start_section, end_section): "role" option
	implemented.  Automatical rank setting implemented.
	(start_error_list, end_error_list): New.
	(add_source_to_parse_error_list): New.

	* Result.pm: "Unknown location" message text changed.

2008-07-21  Wakaba  <wakaba@suika.fam.cx>

1 wakaba 1.1 package WebHACC::Language::Default;
2     use strict;
3     require WebHACC::Language::Base;
4     push our @ISA, 'WebHACC::Language::Base';
5    
6     sub new ($) {
7     my $self = bless {}, shift;
8     return $self;
9     } # new
10    
11 wakaba 1.2 sub generate_syntax_error_section ($) {
12 wakaba 1.1 my $self = shift;
13    
14 wakaba 1.2 my $out = $self->output;
15 wakaba 1.1
16     $out->start_section (id => 'parse-errors', title => 'Errors');
17     $out->start_tag ('dl');
18    
19 wakaba 1.3 $self->result->add_error (input => $self->input,
20 wakaba 1.2 level => 'u',
21     layer => 'syntax',
22     type => 'media type not supported',
23     text => $self->input->{media_type});
24    
25 wakaba 1.1 $out->end_tag ('dl');
26     $out->end_section;
27 wakaba 1.2 } # generate_syntax_error_section
28 wakaba 1.1
29 wakaba 1.2 sub generate_source_string_section ($) { }
30 wakaba 1.1
31     sub generate_structure_error_section ($) { }
32    
33     1;

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24