The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Catalyst::Action::Firebug - Catalyst action for embedding Firebug Lite tag

SYNOPSIS

    sub end : ActionClass('Firebug') {
        my ($self, $c) = @_;
        $c->forward( $c->view('TT') );
    }
    
    # or combination with Action::RenderView
    sub render : ActionClass('RenderView') {}
    
    sub end : ActionClass('Firebug') {
        my ($self, $c) = @_;
        $c->forward('render');
    }

DESCRIPTION

Catalyst action for Firebug Lite.

If your app running on debug mode or $ENV{FIREBUG_DEBUG} is set, this action insert firebug lite tags to its output automaticaly.

CONFIGURATION

    $c->config->{firebug}{path} = '/path/to/firebug.js';

KEYS

path

URL path of firebug.js. The default value is '/js/firebug/firebug.js'.

expand_panel

If it's true value, firebug panel is opened when page loading.

And you can use FIREBUG_EXPAND env instead of this key.

SEE ALSO

Firebug, http://getfirebug.com/

Firebug Lite, http://getfirebug.com/lite.html

EXTENDED METHODS

execute

AUTHOR

Daisuke Murase <typester@cpan.org>

COPYRIGHT

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

The full text of the license can be found in the LICENSE file included with this module.