Last change
on this file since 246 was
246,
checked in by duh, 14 years ago
|
- increased session lifetime to 7 days
- improved wizard study template selector
- wizard study page now contains study template fields (which are not yet handled)
- added protocol selector to event descriptions page
- renamed the 'blood sampling' protocol to 'Blood sampling' (it was duplicately named 'Liver sampling')
|
-
Property svn:keywords set to
Date Author Rev
|
File size:
618 bytes
|
Line | |
---|
1 | /** |
---|
2 | * Base Filters |
---|
3 | * @Author Jeroen Wesbeek |
---|
4 | * @Since 20091026 |
---|
5 | * @see main.gsp |
---|
6 | * @see http://grails.org/Filters |
---|
7 | * @Description |
---|
8 | * |
---|
9 | * These filters contain generic logic for -every- page request. |
---|
10 | * |
---|
11 | * Revision information: |
---|
12 | * $Rev: 246 $ |
---|
13 | * $Author: duh $ |
---|
14 | * $Date: 2010-03-08 17:25:07 +0000 (ma, 08 mrt 2010) $ |
---|
15 | */ |
---|
16 | class BaseFilters { |
---|
17 | // define filters |
---|
18 | def filters = { |
---|
19 | defineStyle(controller: '*', action: '*') { |
---|
20 | // before every execution |
---|
21 | before = { |
---|
22 | // set the default style in the session |
---|
23 | if (!session.style) { |
---|
24 | session.style = 'default_style' |
---|
25 | } |
---|
26 | |
---|
27 | // set session lifetime to 1 week |
---|
28 | session.setMaxInactiveInterval(604800) |
---|
29 | } |
---|
30 | } |
---|
31 | } |
---|
32 | } |
---|
33 | |
---|
Note: See
TracBrowser
for help on using the repository browser.