Changeset 1432
- Timestamp:
- Jan 22, 2011, 4:07:36 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/dbnp/query/AdvancedQueryController.groovy
r1430 r1432 2 2 3 3 import dbnp.studycapturing.* 4 import nl.grails.plugins.gdt.* 4 5 5 6 // TODO: Make use of the searchable-plugin possibilities instead of querying the database directly -
trunk/lib
-
Property
svn:ignore
set to
mysql-connector-java-5.1.8-bin.jar
-
Property
svn:ignore
set to
-
trunk/src/groovy/dbnp/query/SampleSearch.groovy
r1430 r1432 84 84 } 85 85 } else { 86 Sample.findAll().each { 87 samples << it; 88 } 86 samples = Sample.findAll() 89 87 } 90 88 -
trunk/test/integration/gscf/OntologyTests.groovy
r1430 r1432 3 3 import grails.test.* 4 4 import dbnp.data.* 5 5 import nl.grails.plugins.gdt.* 6 6 import uk.ac.ebi.ontocat.* 7 7 -
trunk/test/integration/gscf/SampleTests.groovy
r1430 r1432 1 1 package gscf 2 2 3 import dbnp.studycapturing.Study 4 import dbnp.studycapturing.Template 3 import dbnp.studycapturing.* 5 4 import grails.test.GrailsUnitTestCase 6 import dbnp.studycapturing.SamplingEvent 7 import dbnp.studycapturing.Sample 8 import dbnp.studycapturing.TemplateFieldType 9 import dbnp.studycapturing.Subject 10 import dbnp.studycapturing.EventGroup 5 import nl.grails.plugins.gdt.* 11 6 12 7 /** -
trunk/test/integration/gscf/SubjectTests.groovy
r1430 r1432 4 4 import dbnp.studycapturing.* 5 5 import dbnp.data.* 6 6 import nl.grails.plugins.gdt.* 7 7 /** 8 8 * SubjectTests Test
Note: See TracChangeset
for help on using the changeset viewer.