Changeset 881 for branches/features/grailsUpgrade/grails-app
- Timestamp:
 - Apr 11, 2011, 4:11:58 PM (15 years ago)
 - Location:
 - branches/features/grailsUpgrade/grails-app
 - Files:
 - 
          
- 2 edited
 
- 
          conf/DataSource.groovy (modified) (4 diffs)
 - 
          views/assetSubItemDetailed/show.gsp (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
        
branches/features/grailsUpgrade/grails-app/conf/DataSource.groovy
r606 r881 26 26 url = "jdbc:hsqldb:mem:devDb" 27 27 /** MySQL */ 28 // dialect = org.hibernate.dialect.MySQL5InnoDBDialect 28 29 // driverClassName = "com.mysql.jdbc.Driver" 29 30 // username = "gnumimsadmin" … … 42 43 url = "jdbc:hsqldb:mem:devDb" 43 44 /** MySQL */ 45 // dialect = org.hibernate.dialect.MySQL5InnoDBDialect 44 46 // driverClassName = "com.mysql.jdbc.Driver" 45 47 // username = "gnumimsadmin" … … 66 68 /** MSSQL */ 67 69 //For more info see the docs that you downloaded with the driver. 68 // dialect = org.hibernate.dialect.SQLServerDialect // Useful with `grails schema-export`70 // dialect = org.hibernate.dialect.SQLServerDialect // MSSQL 2000+2005 Useful with `grails schema-export` 69 71 // driverClassName = "com.microsoft.sqlserver.jdbc.SQLServerDriver" 70 72 // username = "gnumimsadmin" … … 73 75 // url = "jdbc:sqlserver://gnumimssql01:1433;databaseName=gnumims_prod" 74 76 /** MySQL */ 77 dialect = org.hibernate.dialect.MySQL5InnoDBDialect 75 78 driverClassName = "com.mysql.jdbc.Driver" 76 79 username = "gnumimsadmin"  - 
        
branches/features/grailsUpgrade/grails-app/views/assetSubItemDetailed/show.gsp
r683 r881 135 135 <td valign="top" style="text-align:left;" class="value"> 136 136 <ul> 137 <g:each var="s" in="${assetSubItemInstance.subItems }">137 <g:each var="s" in="${assetSubItemInstance.subItems.sort { p1, p2 -> p1.name.compareToIgnoreCase(p2.name) } }"> 138 138 <li><g:link controller="assetSubItemDetailed" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li> 139 139 </g:each>  
Note: See TracChangeset
          for help on using the changeset viewer.
      