
Twitter Updates
- I feel love, I feel love, I feel love… boingboing.net/2012/05/17/don… #RIP 15 hours ago
- the bus is showing that movie where Sean Connery plays Russian Kenny Rogers 2 days ago
- New post: The Avengers' "Adopted" Joke romkey.com/?p=336 4 days ago
- If Apple really does sell a TV it'll be the worst kept secret in all of product history. 6 days ago
flickr/romkey




Categories
Tags
Ajax amazon ambient apple bat blogs brian eno computers dashboard david foster wallace deal Entertainment feed feedcache ie in memoriam internet explorer ios iphone ipod itunes jquery json leopard Life live+press livejournal mac macintosh macos x Music MySQL security sidebar simplify software taxes toilet TV UNIX uvfood web Wordpress world of warcraft writersMeta
Category Archives: Catalyst
Working Through a Catalyst View Rendering Problem
I’ve been adding some belated email notifications to UVFood and in the process I ran into a frustrating problem: it wasn’t working at all. … Views are for rendering pages, but Catalyst::View::Email takes already-rendered text and then emails it somewhere. … I’ve written templates for the messages I need to send using HTML::Mason, so I need to render these templates before I can send a message.
…The fix is to fully qualify the view name, ie: my $v = $c->view(‘UVFoodApp::View::Mason’); Now I’m getting the correct component. Continue reading