10 |
|
|
11 |
my $out = $self->output; |
my $out = $self->output; |
12 |
|
|
13 |
$out->start_section (id => 'document-tree', title => 'Document Tree', |
$out->start_section (role => 'tree'); |
|
short_title => 'Tree'); |
|
14 |
|
|
15 |
$out->start_tag ('ol', class => 'xoxo'); |
$out->start_tag ('ol', class => 'xoxo'); |
16 |
|
|
82 |
$out->end_tag ('code'); |
$out->end_tag ('code'); |
83 |
} elsif ($nt == $child->DOCUMENT_NODE) { |
} elsif ($nt == $child->DOCUMENT_NODE) { |
84 |
$out->start_tag ('li', id => $node_id, class => 'tree-document'); |
$out->start_tag ('li', id => $node_id, class => 'tree-document'); |
85 |
$out->text ('Document'); |
$out->nl_text ('Document'); |
86 |
|
|
87 |
$out->start_tag ('ul', class => 'attributes'); |
$out->start_tag ('ul', class => 'attributes'); |
88 |
|
|
89 |
my $cp = $child->manakai_charset; |
my $cp = $child->manakai_charset; |
90 |
if (defined $cp) { |
if (defined $cp) { |
91 |
$out->html (qq[<li><code>charset</code> parameter = <code>]); |
$out->start_tag ('li'); |
92 |
$out->text ($cp); |
$out->nl_text ('manakaiCharset'); |
93 |
$out->html ('</code>'); |
$out->text (' = '); |
94 |
|
$out->code ($cp); |
95 |
} |
} |
96 |
$out->html (qq[<li><code>inputEncoding</code> = ]); |
|
97 |
|
$out->start_tag ('li'); |
98 |
|
$out->nl_text ('inputEncoding'); |
99 |
|
$out->text (' = '); |
100 |
my $ie = $child->input_encoding; |
my $ie = $child->input_encoding; |
101 |
if (defined $ie) { |
if (defined $ie) { |
102 |
$out->code ($ie); |
$out->code ($ie); |
103 |
if ($child->manakai_has_bom) { |
if ($child->manakai_has_bom) { |
104 |
$out->html (qq[ (with <code class=charname><abbr>BOM</abbr></code>)]); |
$out->nl_text ('... with BOM'); |
105 |
} |
} |
106 |
} else { |
} else { |
107 |
$out->html (qq[(<code>null</code>)]); |
$out->html (qq[(<code>null</code>)]); |
108 |
} |
} |
109 |
$out->html (qq[<li>@{[scalar main::get_text ('manakaiIsHTML:'.($child->manakai_is_html?1:0))]}</li>]); |
|
110 |
$out->html (qq[<li>@{[scalar main::get_text ('manakaiCompatMode:'.$child->manakai_compat_mode)]}</li>]); |
$out->start_tag ('li'); |
111 |
|
$out->nl_text ('manakaiIsHTML:'.($child->manakai_is_html?1:0)); |
112 |
|
|
113 |
|
$out->start_tag ('li'); |
114 |
|
$out->nl_text ('manakaiCompatMode:'.$child->manakai_compat_mode); |
115 |
|
|
116 |
unless ($child->manakai_is_html) { |
unless ($child->manakai_is_html) { |
117 |
$out->html (qq[<li>XML version = ]); |
$out->start_tag ('li'); |
118 |
|
$out->nl_text ('xmlVersion'); |
119 |
|
$out->text (' = '); |
120 |
$out->code ($child->xml_version); |
$out->code ($child->xml_version); |
121 |
|
|
122 |
|
$out->start_tag ('li'); |
123 |
|
$out->nl_text ('xmlEncoding'); |
124 |
|
$out->text (' = '); |
125 |
if (defined $child->xml_encoding) { |
if (defined $child->xml_encoding) { |
|
$out->html (qq[<li>XML encoding = ]); |
|
126 |
$out->code ($child->xml_encoding); |
$out->code ($child->xml_encoding); |
127 |
} else { |
} else { |
128 |
$out->html (qq[<li>XML encoding = (null)</li>]); |
$out->html ('(<code>null</code>)'); |
129 |
} |
} |
130 |
$out->html (qq[<li>XML standalone = @{[$child->xml_standalone ? 'true' : 'false']}</li>]); |
|
131 |
|
$out->start_tag ('li'); |
132 |
|
$out->nl_text ('xmlStandalone'); |
133 |
|
$out->text (' = '); |
134 |
|
$out->code ($child->xml_standalone ? 'true' : 'false'); |
135 |
} |
} |
136 |
|
|
137 |
$out->end_tag ('ul'); |
$out->end_tag ('ul'); |
138 |
|
|
139 |
if ($child->has_child_nodes) { |
if ($child->has_child_nodes) { |
140 |
$out->start_tag ('ol', class => 'children'); |
$out->start_tag ('ol', class => 'children'); |
141 |
unshift @node, @{$child->child_nodes}, '</ol></li>'; |
unshift @node, @{$child->child_nodes}, '</ol></li>'; |
179 |
my $self = shift; |
my $self = shift; |
180 |
|
|
181 |
my $out = $self->output; |
my $out = $self->output; |
182 |
$out->start_section (id => 'document-errors', title => 'Document Errors'); |
$out->start_section (role => 'structure-errors'); |
183 |
$out->start_tag ('dl', class => 'document-errors-list'); |
$out->start_error_list (role => 'structure-errors'); |
184 |
|
|
185 |
my $input = $self->input; |
my $input = $self->input; |
186 |
my $result = $self->result; |
my $result = $self->result; |
187 |
|
|
188 |
require Whatpm::ContentChecker; |
require Whatpm::ContentChecker; |
189 |
my $onerror = sub { |
my $onerror = sub { |
190 |
my %opt = @_; |
$result->add_error (@_, layer => 'structure'); |
|
my ($type, $cls, $msg) = main::get_text ($opt{type}, $opt{level}, $opt{node}); |
|
|
$type =~ tr/ /-/; |
|
|
$type =~ s/\|/%7C/g; |
|
|
$out->html (qq[<dt class="$cls">] . $result->get_error_label ($input, \%opt)); |
|
|
$out->html (qq[<dd class="$cls">] . $result->get_error_level_label (\%opt)); |
|
|
$out->html ($msg); |
|
|
$out->text (' ['); |
|
|
$out->link ('Description', url => '../error-description#' . $type); |
|
|
$out->text (']'); |
|
|
main::add_error ('structure', \%opt => $result); |
|
191 |
}; |
}; |
192 |
|
|
193 |
my $onsubdoc = $self->onsubdoc; |
my $onsubdoc = $self->onsubdoc; |
199 |
($self->{structure}, $onerror, $onsubdoc); |
($self->{structure}, $onerror, $onsubdoc); |
200 |
} |
} |
201 |
|
|
202 |
$out->end_tag ('dl'); |
$out->end_error_list (role => 'structure-errors'); |
|
$out->html (qq[<script> |
|
|
addSourceToParseErrorList ('@{[$input->id_prefix]}', 'document-errors-list'); |
|
|
</script>]); |
|
203 |
$out->end_section; |
$out->end_section; |
204 |
} # generate_structure_error_section |
} # generate_structure_error_section |
205 |
|
|
206 |
|
sub generate_additional_sections ($) { |
207 |
|
my $self = shift; |
208 |
|
$self->SUPER::generate_additional_sections; |
209 |
|
|
210 |
|
$self->generate_table_section; |
211 |
|
|
212 |
|
$self->generate_listing_section ( |
213 |
|
key => 'id', id => 'identifiers', |
214 |
|
short_title => 'IDs', title => 'Identifiers', |
215 |
|
); |
216 |
|
$self->generate_listing_section ( |
217 |
|
key => 'term', id => 'terms', |
218 |
|
short_title => 'Terms', title => 'Terms', |
219 |
|
); |
220 |
|
$self->generate_listing_section ( |
221 |
|
key => 'class', id => 'classes', |
222 |
|
short_title => 'Classes', title => 'Classes', |
223 |
|
); |
224 |
|
|
225 |
|
$self->generate_rdf_section; |
226 |
|
} # generate_additional_sections |
227 |
|
|
228 |
|
sub generate_table_section ($) { |
229 |
|
my $self = shift; |
230 |
|
|
231 |
|
my $tables = $self->{add_info}->{table} || []; |
232 |
|
return unless @$tables; |
233 |
|
|
234 |
|
my $out = $self->output; |
235 |
|
$out->start_section (id => 'tables', short_title => 'Tables', |
236 |
|
title => 'Tables Section'); |
237 |
|
|
238 |
|
$out->html (q[<!--[if IE]><script type="text/javascript" src="../excanvas.js"></script><![endif]--> |
239 |
|
<script src="../table-script.js" type="text/javascript"></script> |
240 |
|
<noscript> |
241 |
|
<p><em>Structure of tables are visualized here if scripting is enabled.</em></p> |
242 |
|
</noscript>]); |
243 |
|
|
244 |
|
require JSON; |
245 |
|
|
246 |
|
my $i = 0; |
247 |
|
for my $table (@$tables) { |
248 |
|
$i++; |
249 |
|
my $index = $out->input->full_subdocument_index; |
250 |
|
$index = $index ? $index . '.' . $i : $i; |
251 |
|
$out->start_section (id => 'table-' . $i, |
252 |
|
title => 'Table #', |
253 |
|
text => $index); |
254 |
|
|
255 |
|
$out->start_tag ('dl'); |
256 |
|
$out->dt ('Table Element'); |
257 |
|
$out->start_tag ('dd'); |
258 |
|
$out->node_link ($table->{element}); |
259 |
|
$out->end_tag ('dl'); |
260 |
|
delete $table->{element}; |
261 |
|
|
262 |
|
for (@{$table->{column_group}}, @{$table->{column}}, $table->{caption}, |
263 |
|
@{$table->{row}}) { |
264 |
|
next unless $_; |
265 |
|
delete $_->{element}; |
266 |
|
} |
267 |
|
|
268 |
|
for (@{$table->{row_group}}) { |
269 |
|
next unless $_; |
270 |
|
next unless $_->{element}; |
271 |
|
$_->{type} = $_->{element}->manakai_local_name; |
272 |
|
delete $_->{element}; |
273 |
|
} |
274 |
|
|
275 |
|
for (@{$table->{cell}}) { |
276 |
|
next unless $_; |
277 |
|
for (@{$_}) { |
278 |
|
next unless $_; |
279 |
|
for (@$_) { |
280 |
|
$_->{id} = refaddr $_->{element} if defined $_->{element}; |
281 |
|
delete $_->{element}; |
282 |
|
$_->{is_header} = $_->{is_header} ? 1 : 0; |
283 |
|
} |
284 |
|
} |
285 |
|
} |
286 |
|
|
287 |
|
my $id_prefix = $self->input->id_prefix; |
288 |
|
$out->script (q[tableToCanvas (] . |
289 |
|
JSON::objToJson ($table) . |
290 |
|
q[, document.getElementById ('] . $id_prefix . 'table-' . $i . q[')] . |
291 |
|
q[, '] . $id_prefix . q[');]); |
292 |
|
|
293 |
|
$out->end_section; |
294 |
|
} |
295 |
|
|
296 |
|
$out->end_section; |
297 |
|
} # generate_table_section |
298 |
|
|
299 |
|
sub generate_listing_section ($%) { |
300 |
|
my $self = shift; |
301 |
|
my %opt = @_; |
302 |
|
|
303 |
|
my $list = $self->{add_info}->{$opt{key}} || {}; |
304 |
|
return unless keys %$list; |
305 |
|
|
306 |
|
my $out = $self->output; |
307 |
|
|
308 |
|
$out->start_section (id => $opt{id}, |
309 |
|
title => $opt{title}, |
310 |
|
short_title => $opt{short_title}); |
311 |
|
$out->start_tag ('dl'); |
312 |
|
|
313 |
|
for my $id (sort {$a cmp $b} keys %$list) { |
314 |
|
$out->start_tag ('dt'); |
315 |
|
$out->code ($id); |
316 |
|
for (@{$list->{$id}}) { |
317 |
|
$out->start_tag ('dd'); |
318 |
|
$out->node_link ($_); |
319 |
|
} |
320 |
|
} |
321 |
|
|
322 |
|
$out->end_tag ('dl'); |
323 |
|
$out->end_section; |
324 |
|
} # generate_listing_section |
325 |
|
|
326 |
|
my $generate_rdf_resource_html = sub ($$) { |
327 |
|
my ($resource, $out) = @_; |
328 |
|
|
329 |
|
if (defined $resource->{uri}) { |
330 |
|
$out->url ($resource->{uri}); |
331 |
|
} elsif (defined $resource->{bnodeid}) { |
332 |
|
$out->text ('_:' . $resource->{bnodeid}); |
333 |
|
} elsif ($resource->{nodes}) { |
334 |
|
$out->text ('(rdf:XMLLiteral)'); |
335 |
|
} elsif (defined $resource->{value}) { |
336 |
|
$out->start_tag ('q', |
337 |
|
lang => defined $resource->{language} |
338 |
|
? $resource->{language} : ''); |
339 |
|
$out->text ($resource->{value}); |
340 |
|
$out->end_tag ('q'); |
341 |
|
|
342 |
|
if (defined $resource->{datatype}) { |
343 |
|
$out->text ('^^'); |
344 |
|
$out->url ($resource->{datatype}); |
345 |
|
} elsif (length $resource->{language}) { |
346 |
|
$out->text ('@' . $resource->{language}); |
347 |
|
} |
348 |
|
} else { |
349 |
|
$out->text ('??'); ## NOTE: An error of the implementation. |
350 |
|
} |
351 |
|
}; # $generate_rdf_resource_html |
352 |
|
|
353 |
|
## TODO: Should we move this method to another module, |
354 |
|
## such as Base or RDF? |
355 |
|
sub generate_rdf_section ($) { |
356 |
|
my $self = shift; |
357 |
|
|
358 |
|
my $list = $self->{add_info}->{rdf} || []; |
359 |
|
return unless @$list; |
360 |
|
|
361 |
|
my $out = $self->output; |
362 |
|
$out->start_section (id => 'rdf', short_title => 'RDF', |
363 |
|
title => 'RDF Triples'); |
364 |
|
$out->start_tag ('dl'); |
365 |
|
|
366 |
|
my $i = 0; |
367 |
|
for my $rdf (@$list) { |
368 |
|
$out->start_tag ('dt', id => 'rdf-' . $i++); |
369 |
|
$out->node_link ($rdf->[0]); |
370 |
|
$out->start_tag ('dd'); |
371 |
|
$out->start_tag ('dl'); |
372 |
|
for my $triple (@{$rdf->[1]}) { |
373 |
|
$out->start_tag ('dt'); |
374 |
|
$out->node_link ($triple->[0]); |
375 |
|
$out->start_tag ('dd'); |
376 |
|
$out->text ('Subject: '); |
377 |
|
$generate_rdf_resource_html->($triple->[1] => $out); |
378 |
|
$out->start_tag ('dd'); |
379 |
|
$out->text ('Predicate: '); |
380 |
|
$generate_rdf_resource_html->($triple->[2] => $out); |
381 |
|
$out->start_tag ('dd'); |
382 |
|
$out->text ('Object: '); |
383 |
|
$generate_rdf_resource_html->($triple->[3] => $out); |
384 |
|
} |
385 |
|
$out->end_tag ('dl'); |
386 |
|
} |
387 |
|
$out->end_tag ('dl'); |
388 |
|
$out->end_section; |
389 |
|
} # generate_rdf_section |
390 |
|
|
391 |
1; |
1; |