Em Sex, 2008-12-12 às 12:15 +0100, Carl Mäsak escreveu:
> Just as a heads-up, many of us in the November developer group are
> thinking quite a bit about web and templating issues. We already have
> a (fairly basic) working port of HTML::Template. Some of us have plans
> to create a web framework for Perl 6.

I'm pretty anxious to be able to use custom grammars inside Perl 6 and
port Catalyst to Perl 6, having something like:

controller Foo {
    # this action would handle "/foo/bar/*", where "*" would be
    # $patharg, and the named parameters would be the request
    # params.
    action bar($patharg, :$param1, :$param2) does Path {
        # Catalyst already expects a context variable, $c, which
        # contains the info for the current processing
        $+c.stash.<foo> = 'bar';
    }
}

daniel

Reply via email to