repo.or.cz
/
sgn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added eval; site now shows clean dataset missing message instead of server error...
[sgn.git]
/
lib
/
SGN
/
Controller
/
Search
/
Dataset.pm
blob
4ebf0f0fa3597437c1b18fd4469714efcf9a416a
1
2
package
SGN
::
Controller
::
Search
::
Dataset
;
3
4
use
Moose
;
5
6
BEGIN
{
extends
'Catalyst::Controller'
; }
7
8
sub
trial_search_page
:
Path
(
'/search/datasets/'
)
Args
(
0
) {
9
my
$self
=
shift
;
10
my
$c
=
shift
;
11
12
$c
->
stash
->{
template
} =
'/search/datasets.mas'
;
13
14
}
15
16
1
;