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


Catalyst-Action-Firebug documentation Contained in the Catalyst-Action-Firebug distribution.

Index


Code Index:

NAME

Top

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

SYNOPSIS

Top

    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

Top

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

Top

    $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

Top

Firebug, http://getfirebug.com/

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

EXTENDED METHODS

Top

execute

AUTHOR

Top

Daisuke Murase <typester@cpan.org>

COPYRIGHT

Top


Catalyst-Action-Firebug documentation Contained in the Catalyst-Action-Firebug distribution.
package Catalyst::Action::Firebug;
use strict;
use warnings;

use base qw/Catalyst::Action/;
use NEXT;

our $VERSION = '0.01';

sub execute {
    my $self = shift;
    my ($controller, $c) = @_;
    my $res = $self->NEXT::execute(@_);
    return $res unless $c->debug || $ENV{FIREBUG_DEBUG};

    if ($c->res->content_type =~ /html/) {
        $c->log->debug('enable firebug lite');

        my $firebug = $c->uri_for( $c->config->{firebug}{path} || '/js/firebug/firebug.js' );

        my $body = $c->res->body;

        if ($body =~ m!<head.*?>.*?</head>!is) {
            $body =~ s!(<head.*?>(?:.*?))(</head>)!$1<script type="text/javascript" src="$firebug"></script>$2!is;
        }
        else {
            $body .= qq{<script type="text/javascript" src="$firebug"></script>};
        }

        if ($c->config->{firebug}{expand_panel} || $ENV{FIREBUG_EXPAND}) {
            if ($body =~ m!<html.*?>.*?</html>!is) {
                $body =~ s!(<html.*?)>!$1 debug="true">!is;
            }
            else {
                $body = qq{<html debug="true">$body</html>};
            }
        }

        $c->res->body( $body );
    }

    $res;
}

1;