Changeset 449 for trunk/grails-app
- Timestamp:
- Mar 24, 2010, 3:28:33 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 1 *.log 2 2 *.war 3 target
-
- Property svn:ignore
-
trunk/grails-app/conf/Config.groovy
r440 r449 33 33 grails.converters.encoding="UTF-8" 34 34 35 // enable Sitemesh preprocessing of GSP pages 36 grails.views.gsp.sitemesh.preprocess = true 37 // scaffolding templates configuration 38 grails.scaffolding.templates.domainSuffix = 'Instance' 39 40 // Set to false to use the new Grails 1.2 JSONBuilder in the render method 41 grails.json.legacy.builder=false 42 35 43 // enabled native2ascii conversion of i18n properties files 36 44 grails.enable.native2ascii = true 45 46 // whether to install the java.util.logging bridge for sl4j. Disable fo AppEngine! 47 grails.logging.jul.usebridge = true 48 // packages to include in Spring bean scanning 49 grails.spring.bean.packages = [] 50 37 51 38 52 /** … … 70 84 } 71 85 72 // This is for the built in stuff and from the default Grails-1.1.1 config.86 // This is for the built-in stuff and from the default Grails-1.2.1 config. 73 87 error 'org.codehaus.groovy.grails.web.servlet', // controllers 74 88 'org.codehaus.groovy.grails.web.pages', // GSP … … 80 94 'org.codehaus.groovy.grails.orm.hibernate', // hibernate integration 81 95 'org.springframework', 82 'org.hibernate' 96 'org.hibernate', 97 'net.sf.ehcache.hibernate' 83 98 84 99 warn 'org.mortbay.log' // Jetty -
trunk/grails-app/conf/DataSource.groovy
r259 r449 6 6 cache.use_second_level_cache=true 7 7 cache.use_query_cache=true 8 cache.provider_class=' com.opensymphony.oscache.hibernate.OSCacheProvider'8 cache.provider_class='net.sf.ehcache.hibernate.EhCacheProvider' 9 9 } 10 10 -
trunk/grails-app/views/layouts/main.gsp
r322 r449 6 6 <link rel="shortcut icon" href="${resource(dir:'images',file:'gnuMimsIcon.ico')}" type="image/x-icon" /> 7 7 <g:layoutHead /> 8 <g:helpBalloons/> 8 <g:helpBalloons icon="${resource(plugin:'help-balloons', dir:'images', file:'balloon-icon.gif')}" 9 button="${resource(plugin:'help-balloons', dir:'images', file:'balloon-button.png')}" 10 balloonPrefix="${resource(plugin:'help-balloons', dir:'images')}/balloon-"/> 9 11 <nav:resources override="true"/> 10 12 <g:javascript library="application" />
Note: See TracChangeset
for help on using the changeset viewer.