Changeset 449
- Timestamp:
- Mar 24, 2010, 3:28:33 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 1 *.log 2 2 *.war 3 target
-
- Property svn:ignore
-
trunk/application.properties
r391 r449 1 # utf-82 # Fri Feb 19 01:36:34EST 20103 plugins.export=0.4 4 plugins.acegi=0.5.1 5 plugins.navigation=1.1 1 #Grails Metadata file 2 #Tue Mar 23 20:53:02 EST 2010 3 app.grails.version=1.2.1 4 app.name=gnuMims 5 app.servlet.version=2.4 6 6 app.version= 7 plugins.class-diagram=0.4.1 8 plugins.help-balloons=1.2 9 plugins.quartz=0.4.1 10 plugins.richui=0.6 11 app.servlet.version=2.4 12 plugins.hibernate=1.1.1 13 app.name=gnuMims 14 app.grails.version=1.1.1 15 plugins.filterpane=0.6.6 7 plugins.acegi=0.5.2 8 plugins.class-diagram=0.5.1 9 plugins.export=0.6 10 plugins.filterpane=0.6.8 11 plugins.help-balloons=1.3 12 plugins.hibernate=1.2.1 13 plugins.navigation=1.1.1 14 plugins.quartz=0.4.2 15 plugins.richui=0.7 16 plugins.tomcat=1.2.1 -
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" /> -
trunk/web-app/WEB-INF/applicationContext.xml
r74 r449 16 16 <property name="application" ref="grailsApplication" /> 17 17 </bean> 18 19 <bean id="pluginMetaManager" class="org.codehaus.groovy.grails.plugins.DefaultPluginMetaManager">20 <property name="grailsApplication" ref="grailsApplication" />21 <property name="resourcePattern" value="/WEB-INF/plugins/*/plugin.xml" />22 </bean>23 18 24 19 <bean id="grailsConfigurator" class="org.codehaus.groovy.grails.commons.spring.GrailsRuntimeConfigurator"> -
trunk/web-app/WEB-INF/sitemesh.xml
r137 r449 2 2 <page-parsers> 3 3 <parser content-type="text/html" 4 class=" com.opensymphony.module.sitemesh.parser.HTMLPageParser" />4 class="org.codehaus.groovy.grails.web.sitemesh.GrailsHTMLPageParser" /> 5 5 <parser content-type="text/html;charset=ISO-8859-1" 6 class=" com.opensymphony.module.sitemesh.parser.HTMLPageParser" />6 class="org.codehaus.groovy.grails.web.sitemesh.GrailsHTMLPageParser" /> 7 7 <parser content-type="text/html;charset=UTF-8" 8 class=" com.opensymphony.module.sitemesh.parser.HTMLPageParser" />8 class="org.codehaus.groovy.grails.web.sitemesh.GrailsHTMLPageParser" /> 9 9 </page-parsers> 10 10 -
trunk/web-app/WEB-INF/tld/grails.tld
r137 r449 542 542 </variable> 543 543 <attribute> 544 <name> name</name>544 <name>tagName</name> 545 545 <required>true</required> 546 546 <rtexprvalue>true</rtexprvalue>
Note: See TracChangeset
for help on using the changeset viewer.