Changeset 667
- Timestamp:
- Jul 20, 2010, 10:41:08 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/application.properties
r656 r667 4 4 app.name=gscf 5 5 app.servlet.version=2.4 6 app.version=0.4. 06 app.version=0.4.1 7 7 plugins.crypto=2.0 8 8 plugins.db-util=0.4 -
trunk/grails-app/domain/dbnp/studycapturing/Sample.groovy
r654 r667 8 8 */ 9 9 class Sample extends TemplateEntity { 10 static searchable = { [only: ['name']] } 10 // uncommented due to searchable issue 11 // @see http://jira.codehaus.org/browse/GRAILSPLUGINS-1577 12 //static searchable = { [only: ['name']] } 11 13 12 14 static belongsTo = [ parent : Study] -
trunk/grails-app/domain/dbnp/studycapturing/Study.groovy
r640 r667 11 11 class Study extends TemplateEntity implements Serializable { 12 12 static searchable = { 13 13 [only: ['title', 'Description']] 14 14 } 15 15 -
trunk/grails-app/domain/dbnp/studycapturing/Subject.groovy
r643 r667 13 13 */ 14 14 class Subject extends TemplateEntity implements Serializable { 15 // uncommented due to searchable issue 16 // @see http://jira.codehaus.org/browse/GRAILSPLUGINS-1577 17 //static searchable = { [only: ['name']] } 15 18 16 static searchable = { [only: ['name']] }17 19 String name 18 20 Term species
Note: See TracChangeset
for help on using the changeset viewer.