Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Extending MoveableType to support embedded Perl

by dws (Chancellor)
on Jun 18, 2002 at 04:08 UTC ( [id://175262]=CUFP: print w/replies, xml ) Need Help??

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.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: CUFP [id://175262]
Approved by sm3g
Front-paged by Elian
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (5)
As of 2024-03-19 11:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found