Parent Directory
|
Revision Log
++ ChangeLog 21 Jul 2008 09:38:49 -0000 * cc.cgi: Code clean-up. 2008-07-21 Wakaba <wakaba@suika.fam.cx> ++ html/WebHACC/Language/ChangeLog 21 Jul 2008 09:40:52 -0000 * DOM.pm (generate_table_section): Use hierarhical table number for tables in subdocuments. 2008-07-21 Wakaba <wakaba@suika.fam.cx> ++ html/WebHACC/ChangeLog 21 Jul 2008 09:40:19 -0000 * Input.pm (full_subdocument_index): New method, for the support of hierarchical subdocument numbers. (start_section): Use hierarhical subdocument numbers for section headings. * Output.pm (http_header, http_error, html_header): New methods. 2008-07-21 Wakaba <wakaba@suika.fam.cx>
| 1 | wakaba | 1.1 | package WebHACC::Input; |
| 2 | use strict; | ||
| 3 | |||
| 4 | sub new ($) { | ||
| 5 | wakaba | 1.3 | return bless {}, shift; |
| 6 | wakaba | 1.1 | } # new |
| 7 | |||
| 8 | wakaba | 1.3 | sub id_prefix ($) { '' } |
| 9 | |||
| 10 | sub nested ($) { 0 } | ||
| 11 | |||
| 12 | sub subdocument_index ($) { 0 } | ||
| 13 | |||
| 14 | wakaba | 1.4 | sub full_subdocument_index ($) { 0 } |
| 15 | |||
| 16 | wakaba | 1.3 | sub generate_info_section ($$) { |
| 17 | my $self = shift; | ||
| 18 | |||
| 19 |