# # TWiki Enterprise Collaboration Platform, http://TWiki.org/ # # Copyright (C) 2000-2006 TWiki Contributors. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. For # more details read LICENSE in the root of this distribution. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # # As per the GPL, removal of this notice is prohibited. # # A UI for a collection object, designed so the objects can be twisted. # The UI is implemented by visiting the nodes of the configuration and # invoking the open-html and close_html methods for each node. The # layout of a configuration page is depth-sensitive, so we have slightly # different behaviours for each of level 0 (the root), level 1 (twisty # sections) and level > 1 (subsection). use strict; package TWiki::Configure::UIs::Section; use base 'TWiki::Configure::UI'; # depth == 1 is the root # depth == 2 are twisty sections # depth > 2 are subsections sub open_html { my ($this, $section, $valuer) = @_; my $depth = $section->getDepth(); if ($depth > 2) { # A running section has no subtable, just a header row my $fn = 'CGI::h'.$depth; no strict 'refs'; my $head = &$fn($section->{headline}); use strict 'refs'; $head .= $section->{desc} if $section->{desc}; return '