Changeset 449


Ignore:
Timestamp:
Mar 24, 2010, 3:28:33 PM (14 years ago)
Author:
gav
Message:

Upgrade to Grails-1.2.1, all plugins upgraded to latest versions and configs adjusted to suite.

Location:
trunk
Files:
1 added
8 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        11*.log
        22*.war
         3target
  • trunk/application.properties

    r391 r449  
    1 #utf-8
    2 #Fri Feb 19 01:36:34 EST 2010
    3 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
     3app.grails.version=1.2.1
     4app.name=gnuMims
     5app.servlet.version=2.4
    66app.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
     7plugins.acegi=0.5.2
     8plugins.class-diagram=0.5.1
     9plugins.export=0.6
     10plugins.filterpane=0.6.8
     11plugins.help-balloons=1.3
     12plugins.hibernate=1.2.1
     13plugins.navigation=1.1.1
     14plugins.quartz=0.4.2
     15plugins.richui=0.7
     16plugins.tomcat=1.2.1
  • trunk/grails-app/conf/Config.groovy

    r440 r449  
    3333grails.converters.encoding="UTF-8"
    3434
     35// enable Sitemesh preprocessing of GSP pages
     36grails.views.gsp.sitemesh.preprocess = true
     37// scaffolding templates configuration
     38grails.scaffolding.templates.domainSuffix = 'Instance'
     39
     40// Set to false to use the new Grails 1.2 JSONBuilder in the render method
     41grails.json.legacy.builder=false
     42
    3543// enabled native2ascii conversion of i18n properties files
    3644grails.enable.native2ascii = true
     45
     46// whether to install the java.util.logging bridge for sl4j. Disable fo AppEngine!
     47grails.logging.jul.usebridge = true
     48// packages to include in Spring bean scanning
     49grails.spring.bean.packages = []
     50
    3751
    3852/**
     
    7084    }
    7185
    72     // This is for the builtin 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.
    7387    error 'org.codehaus.groovy.grails.web.servlet',  //  controllers
    7488            'org.codehaus.groovy.grails.web.pages', //  GSP
     
    8094            'org.codehaus.groovy.grails.orm.hibernate', // hibernate integration
    8195            'org.springframework',
    82             'org.hibernate'
     96            'org.hibernate',
     97            'net.sf.ehcache.hibernate'
    8398
    8499    warn   'org.mortbay.log' // Jetty
  • trunk/grails-app/conf/DataSource.groovy

    r259 r449  
    66    cache.use_second_level_cache=true
    77    cache.use_query_cache=true
    8     cache.provider_class='com.opensymphony.oscache.hibernate.OSCacheProvider'
     8    cache.provider_class='net.sf.ehcache.hibernate.EhCacheProvider'
    99}
    1010
  • trunk/grails-app/views/layouts/main.gsp

    r322 r449  
    66        <link rel="shortcut icon" href="${resource(dir:'images',file:'gnuMimsIcon.ico')}" type="image/x-icon" />
    77        <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-"/>
    911        <nav:resources override="true"/>
    1012        <g:javascript library="application" />
  • trunk/web-app/WEB-INF/applicationContext.xml

    r74 r449  
    1616        <property name="application" ref="grailsApplication" />
    1717        </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>
    2318
    2419    <bean id="grailsConfigurator" class="org.codehaus.groovy.grails.commons.spring.GrailsRuntimeConfigurator">
  • trunk/web-app/WEB-INF/sitemesh.xml

    r137 r449  
    22    <page-parsers>
    33        <parser content-type="text/html"
    4             class="com.opensymphony.module.sitemesh.parser.HTMLPageParser" />
     4            class="org.codehaus.groovy.grails.web.sitemesh.GrailsHTMLPageParser" />
    55        <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" />
    77        <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" />           
    99    </page-parsers>
    1010
  • trunk/web-app/WEB-INF/tld/grails.tld

    r137 r449  
    542542        </variable>
    543543        <attribute>
    544             <name>name</name>
     544            <name>tagName</name>
    545545            <required>true</required>
    546546            <rtexprvalue>true</rtexprvalue>
Note: See TracChangeset for help on using the changeset viewer.