Changeset 1488
- Timestamp:
- Feb 3, 2011, 4:46:41 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 1 deleted
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/application.properties
r1468 r1488 1 1 #Grails Metadata file 2 #T ue Feb 01 15:44:54 CET 20112 #Thu Feb 03 16:39:44 CET 2011 3 3 app.build.display.info=0 4 4 app.build.svn.revision=1079 … … 10 10 app.version=0.6.4 11 11 plugins.ajaxflow=0.1.19 12 plugins.bgdt=0.0.2 12 13 plugins.crypto=2.0 13 14 plugins.db-util=0.4 14 15 plugins.famfamfam=1.0.1 15 plugins.gdt=0.0. 716 plugins.gdt=0.0.8 16 17 plugins.grom=0.2.2 17 18 plugins.hibernate=1.3.6 -
trunk/grails-app/conf/BootStrap.groovy
r1459 r1488 3 3 import org.codehaus.groovy.grails.commons.GrailsApplication 4 4 import org.dbnp.gdt.* 5 import org.dbnp.bgdt.* 5 6 import dbnp.studycapturing.Study 6 7 import dbnp.studycapturing.Subject -
trunk/grails-app/conf/BootStrapStudies.groovy
r1456 r1488 11 11 import dbnp.studycapturing.* 12 12 import org.dbnp.gdt.* 13 import org.dbnp.bgdt.* 13 14 import org.codehaus.groovy.grails.commons.GrailsApplication 14 15 import grails.util.GrailsUtil -
trunk/grails-app/conf/BootStrapTemplates.groovy
r1456 r1488 11 11 import dbnp.studycapturing.* 12 12 import org.dbnp.gdt.* 13 import org.dbnp.bgdt.* 13 14 import org.codehaus.groovy.grails.commons.GrailsApplication 14 15 -
trunk/grails-app/conf/BuildConfig.groovy
r1430 r1488 47 47 //grails.plugin.location.'ajaxflow' = '../ajaxflow' 48 48 //grails.plugin.location.'gdt' = '../gdt' 49 //grails.plugin.location.'bgdt' = '../bgdt' 49 50 //grails.plugin.location.'jumpbar' = '../jumpbar' -
trunk/grails-app/controllers/dbnp/studycapturing/StudyWizardController.groovy
r1457 r1488 6 6 import org.codehaus.groovy.grails.plugins.web.taglib.ValidationTagLib 7 7 import org.dbnp.gdt.* 8 import org.dbnp.bgdt.* 8 9 9 10 /** … … 1100 1101 on("toPageFive").to "assays" 1101 1102 on("toPageSix").to "confirm" 1102 on("toPageSeven").to "save" } 1103 on("toPageSeven").to "save" 1104 } 1103 1105 1104 1106 // render finish page -
trunk/grails-app/domain/dbnp/studycapturing/Sample.groovy
r1482 r1488 1 1 package dbnp.studycapturing 2 2 import org.dbnp.gdt.* 3 import org.dbnp.bgdt.* 3 4 4 5 /** -
trunk/grails-app/domain/dbnp/studycapturing/Study.groovy
r1482 r1488 53 53 54 54 static constraints = { 55 title(nullable:false, blank: false, maxSize: 255) 55 56 owner(nullable: true, blank: true) 56 code(nullable: false, blank: true, unique: true )57 studyUUID(nullable:true, unique:true )57 code(nullable: false, blank: true, unique: true, maxSize: 255) 58 studyUUID(nullable:true, unique:true, maxSize: 255) 58 59 // TODO: add custom validator for 'published' to assess whether the study meets all quality criteria for publication 59 60 // tested by SampleTests.testStudyPublish -
trunk/grails-app/domain/dbnp/studycapturing/Subject.groovy
r1457 r1488 1 1 package dbnp.studycapturing 2 2 import org.dbnp.gdt.* 3 import org.dbnp.bgdt.* 3 4 4 5 /** -
trunk/grails-app/taglib/dbnp/studycapturing/WizardTagLib.groovy
r1461 r1488 3 3 import dbnp.authentication.SecUser 4 4 import org.dbnp.gdt.* 5 import org.dbnp.bgdt.* 5 6 6 7 /** -
trunk/web-app/js/studywizard.js
r1374 r1488 251 251 252 252 $.ajax({ 253 url : baseUrl + '/ wizard/ajaxParseRelTime?reltime=' + inputfield.value,253 url : baseUrl + '/studyWizard/ajaxParseRelTime?reltime=' + inputfield.value, 254 254 success : successFunc, 255 255 error : errorFunc
Note: See TracChangeset
for help on using the changeset viewer.