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

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

Install Navigation plugin, work on navigation and hopefully fixed a few more IE vs Firefox CSS issues.
New skin for class-diagram plugin.
Adjust security config to suite.
Replace home.gsp with start.gsp, remove options.gsp and acknowledgements.gsp as they are now on start.gsp tabs.
Create search pages for Tasks, Assets and Inventory.
Change suggested login to manager.
Change all date formats to format="EEE, dd-MMM-yyyy".

File size: 6.7 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: { true }],
89            [order:20, controller:'taskDetailed', title:'Create', action:'create', isVisible: { true }],
90            [order:90, controller:'taskDetailed', title:'Show', action:'show', isVisible: { params.action == 'show' }],
91            [order:91, controller:'taskDetailed', title:'Edit', action:'edit', isVisible: { params.action == 'edit' }]
92        ]
93    ],
94    [order:30, controller:'inventoryItemDetailed', title:'inventory', action:'search',
95        subItems: [
96            [order:10, controller:'inventoryItemDetailed', title:'Search', action:'search', isVisible: { true }],
97            [order:20, controller:'inventoryItemDetailed', title:'Create', action:'create', isVisible: { true }],
98            [order:90, controller:'inventoryItemDetailed', title:'Show', action:'show', isVisible: { params.action == 'show' }],
99            [order:91, controller:'inventoryItemDetailed', title:'Edit', action:'edit', isVisible: { params.action == 'edit' }]
100        ]
101    ],
102    [order:40, controller:'assetDetailed', title:'assets', action:'search',
103        subItems: [
104            [order:10, controller:'assetDetailed', title:'Search', action:'search', isVisible: { true }],
105            [order:20, controller:'assetDetailed', title:'Create', action:'create', isVisible: { true }],
106            [order:90, controller:'assetDetailed', title:'Show', action:'show', isVisible: { params.action == 'show' }],
107            [order:91, controller:'assetDetailed', title:'Edit', action:'edit', isVisible: { params.action == 'edit' }]
108        ]
109    ]
110]
111
112/** Class-diagram plugin overrides.
113  *
114  */
115classDiagram {
116    associations {
117        arrows {
118            // See http://www.graphviz.org/doc/info/arrows.html for available arrowheads and their visual appearance
119            references = "open"
120            belongsTo = "odiamond"
121            embedded = "diamond"
122            inherits = "onormal"
123            none = "none"
124        }
125        decorators {
126            // plain text to be shown on edge ends
127            hasOne = "1"
128            hasMany = "*"
129            none = ""
130        }
131    }
132    skins {
133        classicSpacey {
134            name = " Classic Spacey"
135            graphStyle = [bgcolor:"none", mclimit:100, nodesep:'1.5 equally', ranksep:'2 equally' ]
136            nodeStyle = [style:"rounded,filled", color:"blue", fillcolor:"azure2", fontname:"Verdana", fontsize:18]
137            edgeStyle = [color:"gray40", fontname:"Verdana", fontsize:18, labelfontsize:20, labeldistance:3.5]
138        }
139    }
140}
Note: See TracBrowser for help on using the repository browser.