Changeset 199 for trunk/grails-app/conf


Ignore:
Timestamp:
Nov 28, 2009, 2:17:34 PM (14 years ago)
Author:
gav
Message:

Upgrade quartz plugin to 0.4.1 propper.
Refactor and enable quartz scheduling for recurring tasks.
Adjust svn ignores to ignore all log files.
Create a pseudo system person for automated insertions.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        1 stacktrace.log
         1*.log
        22*.war
  • trunk/grails-app/conf/BootStrap.groovy

    r149 r199  
    77    def init = { servletContext ->
    88
    9     println "**** BootStrap GrailsUtil.environment = ${GrailsUtil.environment}"
     9        log.debug "GrailsUtil.environment = ${GrailsUtil.environment}"
    1010
    1111        switch (GrailsUtil.environment)
    1212        {
    1313            case "development":
    14                         createDataService.ensureAdminAccess()
     14                        createDataService.ensureSystemAndAdminAccess()
    1515                        createDataService.createBaseData()
    1616                        createDataService.createDemoData()
    1717                        break
    1818            case "test":
    19                         createDataService.ensureAdminAccess()
     19                        createDataService.ensureSystemAndAdminAccess()
    2020                        break
    2121            case "production":
    22                         createDataService.ensureAdminAccess()
     22                        createDataService.ensureSystemAndAdminAccess()
    2323                        break
    2424        }
  • trunk/grails-app/conf/Config.groovy

    r197 r199  
    8989    error "grails.app.service.PersonService"
    9090    error "grails.app.service.NavigationService"
     91    error "grails.app.service.com.zeddware.grails.plugins.filterpane.FilterService"
    9192}
    9293
     
    128129} // end environments
    129130
    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 */
    134136navigation.nav = [
    135137    [order:10, controller:'appCore', title:'home', action:'start',
     
    169171]
    170172
    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 */
    175178navigation.navAlt = [
    176179    [order:10, controller:'person', title:'person', action:'list',
     
    191194    ]
    192195]
     196
     197/**
     198 * Some custom globals.
     199 */
     200taskRecurringScheduleJob.repeatInterval=10
Note: See TracChangeset for help on using the changeset viewer.