/[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.4 - (show annotations) (download)
Mon Jul 21 13:09:19 2008 UTC (16 years, 11 months ago) by wakaba
Branch: MAIN
Changes since 1.3: +4 -4 lines
++ html/WebHACC/Language/ChangeLog	21 Jul 2008 13:09:14 -0000
	* Base.pm, Default.pm: Updated to use newer way to construct a section.

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

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 sub generate_syntax_error_section ($) {
12 my $self = shift;
13
14 my $out = $self->output;
15
16 $out->start_section (role => 'parse-errors');
17 $out->start_error_list (role => 'parse-errors');
18
19 $self->result->add_error (input => $self->input,
20 level => 'u',
21 layer => 'syntax',
22 type => 'media type not supported:syntax',
23 text => $self->input->{media_type});
24
25 $out->end_error_list (role => 'parse-errors');
26 $out->end_section;
27 } # generate_syntax_error_section
28
29 sub generate_source_string_section ($) { }
30
31 sub generate_structure_error_section ($) { }
32
33 1;

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24