From: <rv...@us...> - 2009-06-19 02:18:22
|
Revision: 68 http://treebase.svn.sourceforge.net/treebase/?rev=68&view=rev Author: rvos Date: 2009-06-19 02:18:21 +0000 (Fri, 19 Jun 2009) Log Message: ----------- Added nexmlService bean configuration. Modified Paths: -------------- trunk/treebase-core/src/main/resources/applicationContext-service.xml Modified: trunk/treebase-core/src/main/resources/applicationContext-service.xml =================================================================== --- trunk/treebase-core/src/main/resources/applicationContext-service.xml 2009-06-19 02:17:12 UTC (rev 67) +++ trunk/treebase-core/src/main/resources/applicationContext-service.xml 2009-06-19 02:18:21 UTC (rev 68) @@ -143,6 +143,11 @@ <property name="taxonLabelHome" ref="taxonLabelHome"/> <property name="itemDefinitionHome" ref="itemDefinitionHome"/> <property name="mesquiteFolderDir" value="${mesquite.folder_dir}"/> + </bean> + + <bean id="nexmlService" class = "org.cipres.treebase.service.nexus.NexusServiceNexml"> + <property name="domainHome" ref="domainHome"/> + <property name="taxonLabelHome" ref="taxonLabelHome"/> </bean> <!-- package: org.cipres.treebase.domain.study --> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rv...@us...> - 2009-06-23 12:04:38
|
Revision: 80 http://treebase.svn.sourceforge.net/treebase/?rev=80&view=rev Author: rvos Date: 2009-06-23 11:06:31 +0000 (Tue, 23 Jun 2009) Log Message: ----------- Changed configuration for nexmlService: doesn't need persistence (for now) so have removed domainHome bean field Modified Paths: -------------- trunk/treebase-core/src/main/resources/applicationContext-service.xml Modified: trunk/treebase-core/src/main/resources/applicationContext-service.xml =================================================================== --- trunk/treebase-core/src/main/resources/applicationContext-service.xml 2009-06-23 11:05:11 UTC (rev 79) +++ trunk/treebase-core/src/main/resources/applicationContext-service.xml 2009-06-23 11:06:31 UTC (rev 80) @@ -146,7 +146,7 @@ </bean> <bean id="nexmlService" class = "org.cipres.treebase.service.nexus.NexusServiceNexml"> - <property name="domainHome" ref="domainHome"/> + <!-- property name="domainHome" ref="domainHome"/ --> <property name="taxonLabelHome" ref="taxonLabelHome"/> </bean> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rv...@us...> - 2011-05-12 12:03:10
|
Revision: 835 http://treebase.svn.sourceforge.net/treebase/?rev=835&view=rev Author: rvos Date: 2011-05-12 12:03:04 +0000 (Thu, 12 May 2011) Log Message: ----------- Added submissionService parameter to the searchService bean configuration Modified Paths: -------------- trunk/treebase-core/src/main/resources/applicationContext-service.xml Modified: trunk/treebase-core/src/main/resources/applicationContext-service.xml =================================================================== --- trunk/treebase-core/src/main/resources/applicationContext-service.xml 2011-05-12 12:02:01 UTC (rev 834) +++ trunk/treebase-core/src/main/resources/applicationContext-service.xml 2011-05-12 12:03:04 UTC (rev 835) @@ -285,7 +285,8 @@ <property name="phyloTreeService" ref="phyloTreeService"/> <property name="matrixService" ref="matrixService"/> <property name="studyService" ref="studyService"/> - <property name="taxonLabelService" ref="taxonLabelService"/> + <property name="taxonLabelService" ref="taxonLabelService"/> + <property name="submissionService" ref="submissionService"/> </bean> </property> </bean> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rv...@us...> - 2009-06-25 02:46:00
|
Revision: 110 http://treebase.svn.sourceforge.net/treebase/?rev=110&view=rev Author: rvos Date: 2009-06-25 02:45:59 +0000 (Thu, 25 Jun 2009) Log Message: ----------- Added configuration for NexusServiceRDFa bean Modified Paths: -------------- trunk/treebase-core/src/main/resources/applicationContext-service.xml Modified: trunk/treebase-core/src/main/resources/applicationContext-service.xml =================================================================== --- trunk/treebase-core/src/main/resources/applicationContext-service.xml 2009-06-25 02:44:58 UTC (rev 109) +++ trunk/treebase-core/src/main/resources/applicationContext-service.xml 2009-06-25 02:45:59 UTC (rev 110) @@ -148,7 +148,12 @@ <bean id="nexmlService" class = "org.cipres.treebase.service.nexus.NexusServiceNexml"> <!-- property name="domainHome" ref="domainHome"/ --> <property name="taxonLabelHome" ref="taxonLabelHome"/> - </bean> + </bean> + + <bean id="rdfaService" class = "org.cipres.treebase.service.nexus.NexusServiceRDFa"> + <!-- property name="domainHome" ref="domainHome"/ --> + <property name="taxonLabelHome" ref="taxonLabelHome"/> + </bean> <!-- package: org.cipres.treebase.domain.study --> <bean id="analysisService" parent="baseTransactionProxy"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |