Changeset 199 for trunk/grails-app/conf
- Timestamp:
- Nov 28, 2009, 2:17:34 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 stacktrace.log1 *.log 2 2 *.war
-
- Property svn:ignore
-
trunk/grails-app/conf/BootStrap.groovy
r149 r199 7 7 def init = { servletContext -> 8 8 9 println "**** BootStrapGrailsUtil.environment = ${GrailsUtil.environment}"9 log.debug "GrailsUtil.environment = ${GrailsUtil.environment}" 10 10 11 11 switch (GrailsUtil.environment) 12 12 { 13 13 case "development": 14 createDataService.ensure AdminAccess()14 createDataService.ensureSystemAndAdminAccess() 15 15 createDataService.createBaseData() 16 16 createDataService.createDemoData() 17 17 break 18 18 case "test": 19 createDataService.ensure AdminAccess()19 createDataService.ensureSystemAndAdminAccess() 20 20 break 21 21 case "production": 22 createDataService.ensure AdminAccess()22 createDataService.ensureSystemAndAdminAccess() 23 23 break 24 24 } -
trunk/grails-app/conf/Config.groovy
r197 r199 89 89 error "grails.app.service.PersonService" 90 90 error "grails.app.service.NavigationService" 91 error "grails.app.service.com.zeddware.grails.plugins.filterpane.FilterService" 91 92 } 92 93 … … 128 129 } // end environments 129 130 130 /** Navigation plugin menu. 131 * The top level titles are taken from i18n message bundles. 132 * Subitems i18n message bundles are not currently resolving with this plugin. 133 */ 131 /** 132 * Navigation plugin menu. 133 * The top level titles are taken from i18n message bundles. 134 * Subitems i18n message bundles are not currently resolving with this plugin. 135 */ 134 136 navigation.nav = [ 135 137 [order:10, controller:'appCore', title:'home', action:'start', … … 169 171 ] 170 172 171 /** Navigation plugin alternate menu. 172 * The alternate top level titles are not displayed anywhere. 173 * Subitems i18n message bundles are not currently resolving with this plugin. 174 */ 173 /** 174 * Navigation plugin alternate menu. 175 * The alternate top level titles are not displayed anywhere. 176 * Subitems i18n message bundles are not currently resolving with this plugin. 177 */ 175 178 navigation.navAlt = [ 176 179 [order:10, controller:'person', title:'person', action:'list', … … 191 194 ] 192 195 ] 196 197 /** 198 * Some custom globals. 199 */ 200 taskRecurringScheduleJob.repeatInterval=10
Note: See TracChangeset
for help on using the changeset viewer.