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; |