This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Uncaught warning: Deep recursion on subroutine "Jifty::Dispatcher::_handle_rule" at /tmp/chimps-Jifty-iPre/blib/lib/Jifty/Dispatcher.pm line 551. | |
| # Uncaught warning: Deep recursion on subroutine "Jifty::Dispatcher::_handle_rule" at /tmp/chimps-Jifty-iPre/blib/lib/Jifty/Dispatcher.pm line 551. | |
| # Uncaught warning: Deep recursion on subroutine "Jifty::Dispatcher::_handle_rule" at /tmp/chimps-Jifty-iPre/blib/lib/Jifty/Dispatcher.pm line 551. | |
| # Uncaught warning: Deep recursion on subroutine "Jifty::Dispatcher::_handle_rule" at /tmp/chimps-Jifty-iPre/blib/lib/Jifty/Dispatcher.pm line 551. | |
| # Uncaught warning: Deep recursion on subroutine "Jifty::Dispatcher::_handle_rule" at /tmp/chimps-Jifty-iPre/blib/lib/Jifty/Dispatcher.pm line 551. | |
| # Uncaught warning: Deep recursion on subroutine "Jifty::Dispatcher::_handle_rule" at /tmp/chimps-Jifty-iPre/blib/lib/Jifty/Dispatcher.pm line 551. | |
| # Uncaught warning: Deep recursion on subroutine "Jifty::Dispatcher::_handle_rule" at /tmp/chimps-Jifty-iPre/blib/lib/Jifty/Dispatcher. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use strict; | |
| use Test::More; | |
| { | |
| package RandomClass; | |
| use Moose; | |
| with 'MooseX::Traits'; | |
| has '+_trait_namespace' => (default => 'RandomClass::Trait'); | |
| __PACKAGE__->meta->make_immutable; | |
| no Moose; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use strict; | |
| use Test::More; | |
| { | |
| package Olive; | |
| use Any::Moose; | |
| extends 'OHAI'; | |
| has bar => (is => 'rw', default => sub { {} }); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use strict; | |
| use Test::More; | |
| our ($built, $demolished) = (0, 0); | |
| { | |
| package RandomClass; | |
| use Moose; | |
| with 'MooseX::Traits'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use strict; | |
| use Test::More; | |
| our ($built, $demolished) = @_; | |
| { | |
| package RandomClass; | |
| use Moose; | |
| with 'MooseX::Traits'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use strict; | |
| use Test::More; | |
| use AnyMQ; | |
| our ($built, $demolished) = @_; | |
| { | |
| package AnyMQ::Trait::Test; | |
| use Moose::Role; | |
| use Test::More; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use Plack::Builder; | |
| builder { | |
| mount '/_hippie' => sub { | |
| my $env= shift; warn "hi hippie" ; | |
| return [ '200', [ 'Content-Type' => 'text/plain' ], [ "Hippie" ] ] | |
| }; | |
| sub { [ '200', [ 'Content-Type' => 'text/plain' ], [ "none hippie" ] ] }; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| my $bus = AnyMQ->new; | |
| builder { | |
| enable "Static", path => sub { s!^/static/!! }, root => 'static'; | |
| enable "Hippie", | |
| root => '/_hippie', | |
| handler => sub { | |
| my $env = shift; | |
| my $room = $env->{'hippie.args'}; | |
| my $topic = $bus->topic($room); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| my $bus = AnyMQ->new; | |
| builder { | |
| enable "Static", path => sub { s!^/static/!! }, root => 'static'; | |
| enable "Hippie", root => '/_hippie', | |
| init => sub { | |
| my $room = shift; | |
| my $h = shift; | |
| my $sub = $bus->new_listener($h->id); | |
| $sub->subscribe($bus->topic($room)); | |
| $sub->poll(sub { $h->send_msg($_[0]) }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Fri Feb 26 20:44:29 2010] [warning]: Use of uninitialized value in pattern match (m//) at /Users/clkao/work/bps/rt-3.8/local/plugins/RT-Extension-History-Folded/html/Ticket/Elements/ShowMessageStanza line 21, <GEN255> line 33. (/Users/clkao/work/bps/rt-3.8/local/plugins/RT-Extension-History-Folded/html/Ticket/Elements/ShowMessageStanza:21) |