Changeset 336


Ignore:
Timestamp:
Apr 9, 2010, 4:14:10 PM (13 years ago)
Author:
duh
Message:
Location:
trunk/grails-app
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/domain/dbnp/studycapturing/TemplateEntity.groovy

    r335 r336  
    314314                                def store = getStore(field.type)
    315315                                if (!value && store[ fieldName ]) {
    316                                         println "removing " + super.class + " template field: " + fieldName
     316                                        println "removing " + ((super) ? super.class : '??') + " template field: " + fieldName
    317317
    318318                                        // remove the item from the Map (if present)
    319319                                        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 + "])"
    322322
    323323                                        // set value
  • trunk/grails-app/views/home/index.gsp

    r299 r336  
    55    </head>
    66    <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.
    88      <p><n:isNotLoggedIn>
    99        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.