From: <rv...@us...> - 2009-06-25 02:45:00
|
Revision: 109 http://treebase.svn.sourceforge.net/treebase/?rev=109&view=rev Author: rvos Date: 2009-06-25 02:44:58 +0000 (Thu, 25 Jun 2009) Log Message: ----------- Added configuration for NeXML/RDFa->RDF/XML serialization Modified Paths: -------------- trunk/treebase-web/src/main/webapp/WEB-INF/treebase-servlet.xml Modified: trunk/treebase-web/src/main/webapp/WEB-INF/treebase-servlet.xml =================================================================== --- trunk/treebase-web/src/main/webapp/WEB-INF/treebase-servlet.xml 2009-06-25 02:43:44 UTC (rev 108) +++ trunk/treebase-web/src/main/webapp/WEB-INF/treebase-servlet.xml 2009-06-25 02:44:58 UTC (rev 109) @@ -15,6 +15,8 @@ <bean id="processUserController" class="org.cipres.treebase.web.controllers.ProcessUserController"/> + <bean id="anyObjectAsRDFController" class="org.cipres.treebase.web.controllers.AnyObjectAsRDFController"/> + <bean id="appletInteractionController" class="org.cipres.treebase.web.controllers.AppletInteractionController"> <property name="phyloTreeService"><ref bean="phyloTreeService"></ref></property> @@ -107,25 +109,29 @@ <bean id="downloadAStudyController" class="org.cipres.treebase.web.controllers.DownloadAStudyController"> <property name="studyService"><ref bean="studyService"></ref></property> <property name="nexmlService"><ref bean="nexmlService"></ref></property> + <property name="rdfaService"><ref bean="rdfaService"></ref></property> </bean> <!-- Download A Tree --> <bean id="downloadATreeController" class="org.cipres.treebase.web.controllers.DownloadATreeController"> <property name="studyService"><ref bean="studyService"></ref></property> <property name="phyloTreeService"><ref bean="phyloTreeService"></ref></property> - <property name="nexmlService"><ref bean="nexmlService"></ref></property> + <property name="nexmlService"><ref bean="nexmlService"></ref></property> + <property name="rdfaService"><ref bean="rdfaService"></ref></property> </bean> <bean id="downloadATreeBlockController" class="org.cipres.treebase.web.controllers.DownloadATreeBlockController"> <property name="phyloTreeHome"><ref bean="phyloTreeHome"></ref></property> - <property name="nexmlService"><ref bean="nexmlService"></ref></property> + <property name="nexmlService"><ref bean="nexmlService"></ref></property> + <property name="rdfaService"><ref bean="rdfaService"></ref></property> </bean> <!-- Download A Matrix --> <bean id="downloadAMatrixController" class="org.cipres.treebase.web.controllers.DownloadAMatrixController"> <property name="matrixService"><ref bean="matrixService"></ref></property> <property name="studyService"><ref bean="studyService"></ref></property> - <property name="nexmlService"><ref bean="nexmlService"></ref></property> + <property name="nexmlService"><ref bean="nexmlService"></ref></property> + <property name="rdfaService"><ref bean="rdfaService"></ref></property> </bean> <!-- Download A NexusFile --> @@ -133,7 +139,8 @@ <property name="phyloTreeService"><ref bean="phyloTreeService"></ref></property> <property name="studyService"><ref bean="studyService"></ref></property> <property name="matrixService"><ref bean="matrixService"></ref></property> - <property name="nexmlService"><ref bean="nexmlService"></ref></property> + <property name="nexmlService"><ref bean="nexmlService"></ref></property> + <property name="rdfaService"><ref bean="rdfaService"></ref></property> </bean> <!-- Download An AnalysisStep's input and output as a NexusFile --> @@ -141,13 +148,15 @@ <property name="phyloTreeService"><ref bean="phyloTreeService"></ref></property> <property name="matrixService"><ref bean="matrixService"></ref></property> <property name="analysisStepService"><ref bean="analysisStepService"></ref></property> - <property name="nexmlService"><ref bean="nexmlService"></ref></property> + <property name="nexmlService"><ref bean="nexmlService"></ref></property> + <property name="rdfaService"><ref bean="rdfaService"></ref></property> </bean> <!-- Download A NexusFile --> <bean id="downloadANexusRCTFileController" class="org.cipres.treebase.web.controllers.DownloadANexusRCTFileController"> <property name="studyService"><ref bean="studyService"></ref></property> - <property name="nexmlService"><ref bean="nexmlService"></ref></property> + <property name="nexmlService"><ref bean="nexmlService"></ref></property> + <property name="rdfaService"><ref bean="rdfaService"></ref></property> </bean> <!-- View Taxa --> @@ -920,6 +929,7 @@ <prop key="/search/study/analysis.html">searchSummaryController</prop> <prop key="/search/study/taxa.html">searchSummaryController</prop> <prop key="/search/study/rowSegments.html">searchSummaryController</prop> + <prop key="/search/study/anyObjectAsRDF.html">anyObjectAsRDFController</prop> <prop key="/search/matrixRowList.html">listMatrixRowController</prop> <prop key="/search/taxonList.html">listTaxaSearchController</prop> <prop key="/search/downloadAStudy.html">downloadAStudyController</prop> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |