Last change
on this file since 776 was
776,
checked in by duh, 13 years ago
|
set keyword expansion
|
-
Property svn:keywords set to
Author Date 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: 776 $ |
---|
13 | * $Author: duh $ |
---|
14 | * $Date: 2010-08-05 10:15:26 +0000 (do, 05 aug 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.