Changeset 1509
- Timestamp:
- Feb 9, 2011, 4:33:23 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/application.properties
r1495 r1509 1 1 #Grails Metadata file 2 # Fri Feb 04 19:05:43CET 20112 #Wed Feb 09 16:30:36 CET 2011 3 3 app.build.display.info=0 4 4 app.build.svn.revision=1079 … … 9 9 app.servlet.version=2.4 10 10 app.version=0.6.4 11 plugins.ajaxflow=0. 1.1912 plugins.bgdt=0.0. 311 plugins.ajaxflow=0.2.0 12 plugins.bgdt=0.0.4 13 13 plugins.crypto=2.0 14 14 plugins.db-util=0.4 15 15 plugins.famfamfam=1.0.1 16 plugins.gdt=0.0. 916 plugins.gdt=0.0.10 17 17 plugins.grom=0.2.2 18 18 plugins.hibernate=1.3.6 -
trunk/grails-app/conf/BootStrapTemplates.groovy
r1488 r1509 95 95 96 96 def genotypeField = new TemplateField( 97 name: 'Genotype', type: TemplateFieldType. STRING,entity: Subject,97 name: 'Genotype', type: TemplateFieldType.ONTOLOGYTERM,entity: Subject, 98 98 comment: 'If present, indicate the genetic variance of the subject (e.g., mutagenized populations,knock-out/in,transgene etc)') 99 99 .with { if (!validate()) { errors.each { println it} } else save()} -
trunk/grails-app/controllers/dbnp/studycapturing/FileController.groovy
r1430 r1509 15 15 package dbnp.studycapturing 16 16 17 import org.dbnp.gdt.FileService 18 17 19 class FileController { 18 19 20 def fileService; 20 21 … … 85 86 } 86 87 } 87 88 89 88 }
Note: See TracChangeset
for help on using the changeset viewer.