Revision 3 (by ahitrov@rambler.ru, 2010/03/24 15:19:32) |
The CORE
|
% if ($filter)
% {
% my $section = $keeper->get_section_by_id($filter);
% if (ref ($section))
% {
<style>
<!--
div.ftr {font-size:70%; font-family:Tahoma; padding:15px 0;}
div.ftr h3 a {color:#000000;}
div.ftr h3 {font-size:130%; color:#FFFFFF; margin:0px; padding:8px; background-color:#8093B0;}
div.ftr i {font-style:normal;color:#777777;}
div.ftr div.descr {padding:0px 10px;}
-->
</style>
<div class="ftr">
<h3>������: <% $section->name() %> <a href="/contenido/?unset_context=filter">(x) ����� ������</a> </h3>
<div class="descr"><i>� �������� ������� ����� ��������� ����� ������. ���� ������ ����������, �� �� ���� ������� � ����������� ������� ����� �������� ������ �� ���������, ������� ������, � ��� �����, � � ������ �������</div>
</div>
% }
% }
<!-- ��������� -->
<div class="npath">
<b>�� ����������:</b>
<%perl>
my @path = $sect->trace();
my $i = 0;
foreach my $p (@path)
{
my $step = $keeper->get_section_by_id($p);
$m->out("<a href=\"sections.html?id=$step->{id}\">$step->{name}</a>");
if ($i < scalar(@path) - 1)
{
$m->out(" >> ");
}
$i++;
}
</%perl>
</div>
<%ARGS>
$sect_id => 1
</%ARGS>
<%INIT>
use vars qw($keeper $state $project);
my $sect = $keeper->get_section_by_id($sect_id);
my $filter = $m->comp('/contenido/components/context.msn', name => 'filter');
my $profile = $m->comp('/contenido/components/context.msn', name => 'profile');
</%INIT>