projects
/
scpubgit/App-SCS.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
initial import of App::SCS code
[scpubgit/App-SCS.git]
/
lib
/
App
/
SCS
/
Role
/
PagePlugin.pm
1
package App::SCS::Role::PagePlugin;
2
3
use Moo::Role;
4
5
has 'page' => (is => 'ro', weak_ref => 1, required => 1);
6
7
sub extra_pages { () }
8
9
sub filter_html_zoom { shift }
10
11
sub filter_content_zoom { shift }
12
13
sub filter_psgi_response { shift }
14
15
1;