--- lib/Arh/Dispatcher.pm 2008/04/06 16:06:41 47 +++ lib/Arh/Dispatcher.pm 2008/04/06 18:31:14 51 @@ -22,4 +22,10 @@ }; +on qr{/pictures/show/(.+)$} => run { + warn "## showing raw_pic $1\n"; + set filename => $1; + show 'raw_pic'; +}; + 1;