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

NAME

Catalyst::View::CSS::Minifier::XS - Minify your multiple CSS files and use them with Catalyst.

VERSION

Version 0.02

SYNOPSIS

        # creating MyApp::View::CSS
    ./script/myapp_create.pl view CSS CSS::Minifier::XS

        # in your controller file, as an action
    sub css : Local {
                my ( $self, $c ) = @_;  
                
                $c->stash->{css} = [qw/style1 style2/]; # loads root/css/style1.css and root/css/style2.css
        
                $c->forward("View::CSS");
    }
        
        # in your html template use
        <link rel="stylesheet" type="text/css" media="screen" href="/css" />

DESCRIPTION

Use your minified css files as a separated catalyst request. By default they are read from $c->stash->{css} as array or string.

CONFIG VARIABLES

stash_variable

sets a different stash variable from the default $c->stash->{css}

path

sets a different path for your css files

default : css

subinclude

setting this to true will take your css files (stash variable) from your referer action

        # in your controller 
        sub action : Local {
                my ( $self, $c ) = @_;
                
                $c->stash->{css} = "exclusive"; # loads exclusive.css only when /action is loaded
        }

This could be very dangerous since it's using $c->forward($c->request->headers->referer). It doesn't work with the index action!

default : false

SEE ALSO

Catalyst , Catalyst::View, CSS::Minifier::XS

AUTHOR

Ivan Drinchev <drinchev at gmail.com>

BUGS

Please report any bugs or feature requests to bug-catalyst-view-css-minifier-xs at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Catalyst-View-CSS-Minifier-XS. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

COPYRIGHT & LICENSE

Copyright 2009 Ivan Drinchev, all rights reserved.

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