Babble::Theme::sidebar - A theme for the Mozilla sidebar


Babble documentation Contained in the Babble distribution.

Index


Code Index:

NAME

Top

Babble::Theme::sidebar - A theme for the Mozilla sidebar

DESCRIPTION

Top

This theme is intended to serve as a base for generating a layout for the Mozilla sidebar. It displays only a minimal set of information, since the space is quite narrow.

TEMPLATE VARIABLES

Top

The following variables are used by the template (variables coming from Babble::Document or Babble::Document::Collection sources are not listed here!)

meta_charset

Optional charset.

meta_desc

Optional description of the babble.

meta_title

The title of the Babble

meta_refresh

The number of seconds to wait before the document is reloaded.

AUTHOR

Top

Gergely Nagy, algernon@bonehunter.rulez.org

Bugs should be reported at http://bugs.bonehunter.rulez.org/babble.

SEE ALSO

Top

Babble::Theme, Babble::Output::TTk


Babble documentation Contained in the Babble distribution.
## Babble/Theme/sidebar.pm
## Copyright (C) 2004 Gergely Nagy <algernon@bonehunter.rulez.org>
##
## This file is part of Babble.
##
## Babble 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; version 2 dated June, 1991.
##
## Babble 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.  See the GNU General Public License
## for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

package Babble::Theme::sidebar;

use strict;
use Babble::Theme;
use Babble::Output::TTk;

use vars qw(@ISA);
@ISA = qw(Babble::Theme);

sub output {
	my ($self, $babble, $params) = @_;

	$params->{-format} = "html" unless $params->{-format};

	$self->_merge_params
		($babble, $params,
		 {
			 -template => $self->_find_template ('sidebar',
						     $params->{-format}),
		 }
	 );

	return Babble::Output::TTk->output ($babble, $params);
}

1;

# arch-tag: 5c42c57d-8396-4458-805c-007ea2cbd2c7