source: trunk/grails-app/conf/Config.groovy @ 140

Last change on this file since 140 was 140, checked in by gav, 15 years ago

Install filterPane plugin and configure for Tasks.

File size: 6.8 KB
Line 
1// locations to search for config files that get merged into the main config
2// config files can either be Java properties files or ConfigSlurper scripts
3
4// grails.config.locations = [ "classpath:${appName}-config.properties",
5//                             "classpath:${appName}-config.groovy",
6//                             "file:${userHome}/.grails/${appName}-config.properties",
7//                             "file:${userHome}/.grails/${appName}-config.groovy"]
8
9// if(System.properties["${appName}.config.location"]) {
10//    grails.config.locations << "file:" + System.properties["${appName}.config.location"]
11// }
12grails.mime.file.extensions = true // enables the parsing of file extensions from URLs into the request format
13grails.mime.types = [ html: ['text/html','application/xhtml+xml'],
14                      xml: ['text/xml', 'application/xml'],
15                      text: 'text-plain',
16                      js: 'text/javascript',
17                      rss: 'application/rss+xml',
18                      atom: 'application/atom+xml',
19                      css: 'text/css',
20                      csv: 'text/csv',
21                      all: '*/*',
22                      json: ['application/json','text/json'],
23                      form: 'application/x-www-form-urlencoded',
24                      multipartForm: 'multipart/form-data'
25                    ]
26// The default codec used to encode data with ${}
27grails.views.default.codec="none" // none, html, base64
28grails.views.gsp.encoding="UTF-8"
29grails.converters.encoding="UTF-8"
30
31// enabled native2ascii conversion of i18n properties files
32grails.enable.native2ascii = true
33
34// set per-environment serverURL stem for creating absolute links
35environments {
36    production {
37        grails.serverURL = "http://www.changeme.com"
38    }
39}
40
41// log4j configuration
42log4j {
43    appender.stdout = "org.apache.log4j.ConsoleAppender"
44    appender.'stdout.layout'="org.apache.log4j.PatternLayout"
45    appender.'stdout.layout.ConversionPattern'='[%r] %c{2} %m%n'
46    appender.stacktraceLog = "org.apache.log4j.FileAppender"
47    appender.'stacktraceLog.layout'="org.apache.log4j.PatternLayout"
48    appender.'stacktraceLog.layout.ConversionPattern'='[%r] %c{2} %m%n'
49    appender.'stacktraceLog.File'="stacktrace.log"
50    rootLogger="error,stdout"
51    logger {
52        grails="error"
53        StackTrace="error,stacktraceLog"
54        org {
55            codehaus.groovy.grails.web.servlet="error"  //  controllers
56            codehaus.groovy.grails.web.pages="error" //  GSP
57            codehaus.groovy.grails.web.sitemesh="error" //  layouts
58            codehaus.groovy.grails."web.mapping.filter"="error" // URL mapping
59            codehaus.groovy.grails."web.mapping"="error" // URL mapping
60            codehaus.groovy.grails.commons="info" // core / classloading
61            codehaus.groovy.grails.plugins="error" // plugins
62            codehaus.groovy.grails.orm.hibernate="error" // hibernate integration
63            springframework="off"
64            hibernate="off"
65        }
66    }
67    additivity.StackTrace=false
68}
69
70//log4j.logger.org.springframework.security='off,stdout'
71
72/** Navigation plugin menu.
73   * The top level titles are taken from i18n message bundles.
74   * Subitems i18n message bundles are not currently resolving with this plugin.
75   */
76navigation.nav = [
77    [order:10, controller:'appCore', title:'home', action:'start',
78        subItems: [
79            [order:10, controller:'appCore', title:'Start', action:'start', isVisible: { true }],
80            [order:20, controller:'appCore', title:'Manager', action:'manager', isVisible: { authenticateService.ifAllGranted('ROLE_Manager') }],
81            [order:30, controller:'appCore', title:'Admin', action:'appAdmin', isVisible: { authenticateService.ifAllGranted('ROLE_AppAdmin') }],
82            [order:90, controller:'appCore', title:'Timeout', action:'changeSessionTimeout', isVisible: { params.action == 'changeSessionTimeout' }],
83            [order:91, controller:'appCore', title:'Password', action:'changePassword', isVisible: { params.action == 'changePassword' }],
84        ]
85    ],
86    [order:20, controller:'taskDetailed', title:'tasks', action:'search',
87        subItems: [
88            [order:10, controller:'taskDetailed', title:'Search', action:'search', isVisible: { params.action != 'advancedSearch'}],
89            [order:11, controller:'taskDetailed', title:'Advanced Search', action:'advancedSearch', isVisible: { params.action == 'advancedSearch' }],
90            [order:20, controller:'taskDetailed', title:'Create', action:'create', isVisible: { true }],
91            [order:90, controller:'taskDetailed', title:'Show', action:'show', isVisible: { params.action == 'show' }],
92            [order:91, controller:'taskDetailed', title:'Edit', action:'edit', isVisible: { params.action == 'edit' }]
93        ]
94    ],
95    [order:30, controller:'inventoryItemDetailed', title:'inventory', action:'search',
96        subItems: [
97            [order:10, controller:'inventoryItemDetailed', title:'Search', action:'search', isVisible: { true }],
98            [order:20, controller:'inventoryItemDetailed', title:'Create', action:'create', isVisible: { true }],
99            [order:90, controller:'inventoryItemDetailed', title:'Show', action:'show', isVisible: { params.action == 'show' }],
100            [order:91, controller:'inventoryItemDetailed', title:'Edit', action:'edit', isVisible: { params.action == 'edit' }]
101        ]
102    ],
103    [order:40, controller:'assetDetailed', title:'assets', action:'search',
104        subItems: [
105            [order:10, controller:'assetDetailed', title:'Search', action:'search', isVisible: { true }],
106            [order:20, controller:'assetDetailed', title:'Create', action:'create', isVisible: { true }],
107            [order:90, controller:'assetDetailed', title:'Show', action:'show', isVisible: { params.action == 'show' }],
108            [order:91, controller:'assetDetailed', title:'Edit', action:'edit', isVisible: { params.action == 'edit' }]
109        ]
110    ]
111]
112
113/** Class-diagram plugin overrides.
114  *
115  */
116classDiagram {
117    associations {
118        arrows {
119            // See http://www.graphviz.org/doc/info/arrows.html for available arrowheads and their visual appearance
120            references = "open"
121            belongsTo = "odiamond"
122            embedded = "diamond"
123            inherits = "onormal"
124            none = "none"
125        }
126        decorators {
127            // plain text to be shown on edge ends
128            hasOne = "1"
129            hasMany = "*"
130            none = ""
131        }
132    }
133    skins {
134        classicSpacey {
135            name = " Classic Spacey"
136            graphStyle = [bgcolor:"none", mclimit:100, nodesep:'1.5 equally', ranksep:'2 equally' ]
137            nodeStyle = [style:"rounded,filled", color:"blue", fillcolor:"azure2", fontname:"Verdana", fontsize:18]
138            edgeStyle = [color:"gray40", fontname:"Verdana", fontsize:18, labelfontsize:20, labeldistance:3.5]
139        }
140    }
141}
Note: See TracBrowser for help on using the repository browser.