Changeset 336
- Timestamp:
- Apr 9, 2010, 4:14:10 PM (13 years ago)
- Location:
- trunk/grails-app
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/studycapturing/TemplateEntity.groovy
r335 r336 314 314 def store = getStore(field.type) 315 315 if (!value && store[ fieldName ]) { 316 println "removing " + super.class+ " template field: " + fieldName316 println "removing " + ((super) ? super.class : '??') + " template field: " + fieldName 317 317 318 318 // remove the item from the Map (if present) 319 319 store.remove( fieldName ) 320 } else {321 println "setting " + super.class+ " template field: " + fieldName + " ([" + value.toString() + "] of type [" + value.class + "])"320 } else if (value) { 321 println "setting " + ((super) ? super.class : '??') + " template field: " + fieldName + " ([" + value.toString() + "] of type [" + value.class + "])" 322 322 323 323 // set value -
trunk/grails-app/views/home/index.gsp
r299 r336 5 5 </head> 6 6 <body> 7 Welcome to the first prototype of GSCF, version ${meta(name: 'app.version')}. At this moment, there are ${studyCount} studies in the database.7 Welcome to the first prototype of GSCF, version <b>${meta(name: 'app.version')}</b>. At this moment, there are ${studyCount} studies in the database. 8 8 <p><n:isNotLoggedIn> 9 9 For this version it is not required to login, but if you login as administrator ( admin / admiN123! ) or user ( user / useR123! ) you can test user functionality.
Note: See TracChangeset
for help on using the changeset viewer.