Wiki - Dancer2Hackathon
Application Skeleton
Dancer 2 hasn't yet a script to create a dancer application, so
please start from the following one:
http://www.linuxia.de/talks/apw2012/dancer.zip
Issues
Try to reproduce and solve some of the simpler issues from
GitHub.
Plugins
Make more plugins compatible to Dancer 2.
Old:
register foo => sub {
my (@args) = @_;
...
};
register_plugin;
New:
register foo => sub {
my ($self, @args) = plugin_args(@_);
...
};
register_plugin for_versions => 1, 2 ;
Documentation
Tests
Last modified: 12/11/12 10:56 by Stefan Hornburg (Racke)
Tags: dancer pluginHome | Edit this page | Tags | Recent changes | History