MoveableType is a Perl-based "Personal Publishing" (aka "blogging") system written by
btrott and his spouse
Mena. MoveableType is driven by templates. A database of postings (and other stuff) is maintained, and HTML pages are created on demand from the database by expanding data into templates. By embedding SSI directives in templates, it's possible to arrange for Perl-generated content to be included into generated pages at page fetch time. But I wanted to embed Perl-generated stuff at page generation time. So I hacked in support for a custom tag, and can now write stuff in my MT templates like
<MTPerl>
require "mutate.pl";
mutate("<$MTEntryBody$>");
</MTPerl>
which passes the body of an entry (post) through one of my Perl routines, and embeds the result in the output page.
Adding an <MTPerl> tag ended up being really easy, requiring two modifications to MT::Template::Context.pm
At the bottom of init_default_handlers, add
$ctx->register_handler(Perl => [ \&_hdlr_perl, 1 ]);
Then add the following near the end of the package:
sub _hdlr_perl {
my($ctx, $args) = @_;
my $tokens = $ctx->stash('tokens');
my $builder = $ctx->stash('builder');
my $res = '';
defined(my $out = $builder->build($ctx, $tokens))
or return $ctx->error($builder->errstr);
$res = eval $out;
return $@ if $@;
$res;
}
Voila! You've voided your MoveableType warranty, and can do incredibly evil things with embedded Perl.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.