-
Here is the stdout from cpanm:
sudo cpanm -n Kossy@0.39
--> Working on Kossy
Fetching http://www.cpan.org/authors/id/K/KA/KAZEBURO/Kossy-0.39-TRIAL.tar.gz ... OK
Configuring Kossy-0.39 ... OK
==> Fou…
-
the following is the build log when run with `HARNESS_OPTIONS="j4"
```
cpanm (App::cpanminus) 1.4008 on perl 5.014001 built for i686-linux
Work directory is /home/ccushing/.cpanm/work/1312200109.8628…
-
``` perl
#!/usr/bin/env perl
use Test::More;
use utf8;
use Text::Xslate;
my $xslate = Text::Xslate->new();
is $xslate->render_string('', {string => "Ä"}) => 'Ä';
is $xslate->render_string('', {…
nihen updated
9 years ago
-
Check this out:
```
: perl -e 'use Text::Xslate; print Text::Xslate->new( verbose=>2 )->render_string(q[ HELLO WORLD])'
Text::Xslate: Undefined method invalid called for 'bar' (:1) at -e line 1.
----…
-
Cool, I also thought about such a module. Just some subjective feedback:
- why `xslate_args`, and `xslate_vars` instead of `args` and `vars`? `Plack::Middleware::TemplateToolkit` uses the name `vars`.…
-
I'm currently migrating one of our systems that runs on Template::Toolkit to Text::Xslate (version 3.1.2) with TTerse syntax and I think that I found a little bug when running on tainted mode perl.
…
-
Could you have a look at the example here: https://github.com/ian-kent/xslate-block
If you run block.pl, you'll see it segfault on the second attempt at rendering the example template (complaining ab…
-
no option to provide a header or footer option to xslate.
-
the following code does not provide any warnings -> method call on undef value
is this expected behaviour?
```
use Text::Xslate;
my $tx = Text::Xslate->new();
my %vars = (
title => 'A list of …
-
ex:
```
: macro ly_header_test -> {
$('#test img').attr('src','images/logo_test.gif');
:}
```
for the first few runs, 'src', will be chopped off. if you refresh the page after…