
1) Added entry for entity_grant_count in visualizations-beans-injection-fm.xml 2) Styling changes in layout.css -- changed the styling for buttons. 3) util.js -- Removed hardcoding of URLs see NIH VIVO 1618 and 1619 4) Made queries for EntityGrantCount, EntityPubCount and EntitySubOrganizationTypes more generic. Added Export as CSV functionailty for EntityGrantCount
78 lines
No EOL
2.8 KiB
XML
78 lines
No EOL
2.8 KiB
XML
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
|
|
xmlns:context="http://www.springframework.org/schema/context"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
|
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
|
|
http://www.springframework.org/schema/aop
|
|
http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
|
|
http://www.springframework.org/schema/context
|
|
http://www.springframework.org/schema/context/spring-context-2.5.xsd">
|
|
|
|
|
|
<bean id="person_pub_count"
|
|
class="edu.cornell.mannlib.vitro.webapp.visualization.freemarker.personpubcount.PersonPublicationCountRequestHandler" />
|
|
|
|
<bean id="utilities"
|
|
class="edu.cornell.mannlib.vitro.webapp.visualization.freemarker.utilities.UtilitiesRequestHandler" />
|
|
|
|
<bean id="coauthorship"
|
|
class="edu.cornell.mannlib.vitro.webapp.visualization.freemarker.coauthorship.CoAuthorshipRequestHandler" />
|
|
|
|
<bean id="person_grant_count"
|
|
class="edu.cornell.mannlib.vitro.webapp.visualization.freemarker.persongrantcount.PersonGrantCountRequestHandler" />
|
|
|
|
<bean id="person_level"
|
|
class="edu.cornell.mannlib.vitro.webapp.visualization.freemarker.personlevel.PersonLevelRequestHandler" />
|
|
|
|
<bean id="coprincipalinvestigator"
|
|
class="edu.cornell.mannlib.vitro.webapp.visualization.freemarker.coprincipalinvestigator.CoPIGrantCountRequestHandler" />
|
|
|
|
<bean id="entity_comparison"
|
|
class="edu.cornell.mannlib.vitro.webapp.visualization.freemarker.entitycomparison.EntityPublicationCountRequestHandler" />
|
|
|
|
<bean id="entity_grant_count"
|
|
class="edu.cornell.mannlib.vitro.webapp.visualization.freemarker.entitygrantcount.EntityGrantCountRequestHandler" />
|
|
|
|
|
|
<bean id="visualizationInjector"
|
|
class="edu.cornell.mannlib.vitro.webapp.controller.visualization.freemarker.VisualizationInjector">
|
|
<property name="visualizations">
|
|
<map>
|
|
<entry key="person_pub_count">
|
|
<ref bean="person_pub_count"></ref>
|
|
</entry>
|
|
|
|
<entry key="utilities">
|
|
<ref bean="utilities"></ref>
|
|
</entry>
|
|
|
|
<entry key="coauthorship">
|
|
<ref bean="coauthorship"></ref>
|
|
</entry>
|
|
|
|
<entry key="person_grant_count">
|
|
<ref bean="person_grant_count"></ref>
|
|
</entry>
|
|
|
|
<entry key="person_level">
|
|
<ref bean="person_level"></ref>
|
|
</entry>
|
|
|
|
<entry key="entity_comparison">
|
|
<ref bean="entity_comparison"></ref>
|
|
</entry>
|
|
|
|
<entry key="coprincipalinvestigator">
|
|
<ref bean="coprincipalinvestigator"></ref>
|
|
</entry>
|
|
|
|
<entry key="entity_grant_count">
|
|
<ref bean="entity_grant_count"></ref>
|
|
</entry>
|
|
|
|
</map>
|
|
</property>
|
|
|
|
</bean>
|
|
|
|
</beans> |