Changeset 1922
- Timestamp:
- Jun 9, 2011, 2:10:44 PM (11 years ago)
- Location:
- trunk/grails-app
- Files:
-
- 9 deleted
- 5 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/conf/Config.groovy
r1886 r1922 17 17 // 18 18 grails.config.locations = [ 19 // the default per-environment configuration 20 // (e.g. src/java/config-development.properties) 21 "classpath:config-${grails.util.GrailsUtil.environment}.properties", 19 // the default configuration properties 20 "classpath:default.properties", 22 21 23 22 // the external configuration to override the default -
trunk/grails-app/conf/dbnp/configuration/DatabaseUpgrade.groovy
r1917 r1922 1 import groovy.sql.Sql 1 package dbnp.configuration 2 2 3 import dbnp.studycapturing.Study 3 4 import org.codehaus.groovy.grails.commons.ConfigurationHolder -
trunk/grails-app/conf/default.properties
r1917 r1922 20 20 21 21 # module configuration 22 modules.sam.url=http://localhost:8182/sam23 modules.metabolomics.url=http://localhost:8183/nmcdsp24 modules.massSequencing.url=http://localhost:8184/massSequencing22 #modules.sam.url=http://localhost:8182/sam 23 #modules.metabolomics.url=http://localhost:8183/nmcdsp 24 #modules.massSequencing.url=http://localhost:8184/massSequencing 25 25 26 26 # Number of seconds to keep rest results from modules in cache 27 modules.cacheDuration =027 modules.cacheDuration=0 28 28 modules.showInMenu=true 29 29 … … 33 33 authentication.users.admin.email=admin@dbnp.org 34 34 authentication.users.admin.administrator=true 35 authentication.users.user.username=user36 authentication.users.user.password=useR123!37 authentication.users.user.email=user@dbnp.org38 authentication.users.user.administrator=false35 #authentication.users.user.username=user 36 #authentication.users.user.password=useR123! 37 #authentication.users.user.email=user@dbnp.org 38 #authentication.users.user.administrator=false -
trunk/grails-app/domain/dbnp/studycapturing/Event.groovy
r1868 r1922 13 13 */ 14 14 class Event extends TemplateEntity { 15 16 // uncommented due to searchable issue 17 // @see http://jira.codehaus.org/browse/GRAILSPLUGINS-1577 18 // Enabling this causes the error: Trying to marshall a null id [id] for alias [Event] in the study create wizard when you add events 19 //static searchable = true 20 21 static belongsTo = [parent : Study] 15 static belongsTo = [parent : Study] 22 16 23 17 /** Start time of the event, relative to the start time of the study */ -
trunk/grails-app/domain/dbnp/studycapturing/Sample.groovy
r1794 r1922 13 13 */ 14 14 class Sample extends TemplateEntity { 15 // uncommented due to searchable issue16 // @see http://jira.codehaus.org/browse/GRAILSPLUGINS-157717 //static searchable = { [only: ['name']] }18 19 15 static belongsTo = [ 20 16 // A Sample always belongs to one study. -
trunk/grails-app/domain/dbnp/studycapturing/Study.groovy
r1912 r1922 12 12 */ 13 13 class Study extends TemplateEntity { 14 static searchable = true15 16 14 def moduleNotificationService 17 15 -
trunk/grails-app/domain/dbnp/studycapturing/Subject.groovy
r1738 r1922 12 12 */ 13 13 class Subject extends TemplateEntity { 14 // uncommented due to searchable issue15 // @see http://jira.codehaus.org/browse/GRAILSPLUGINS-157716 //static searchable = { [only: ['name']] }17 18 14 // A Subject always belongs to one Study 19 15 static belongsTo = [parent: Study]
Note: See TracChangeset
for help on using the changeset viewer.