dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #26809
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 13267: Minor
------------------------------------------------------------
revno: 13267
committer: Lars Helge Øverland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Mon 2013-12-16 19:01:29 +0100
message:
Minor
modified:
dhis-2/dhis-web/dhis-web-light/src/main/resources/META-INF/dhis/beans.xml
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-light/src/main/resources/META-INF/dhis/beans.xml'
--- dhis-2/dhis-web/dhis-web-light/src/main/resources/META-INF/dhis/beans.xml 2013-12-16 17:34:32 +0000
+++ dhis-2/dhis-web/dhis-web-light/src/main/resources/META-INF/dhis/beans.xml 2013-12-16 18:01:29 +0000
@@ -5,24 +5,22 @@
<!-- Utils / services -->
- <bean id="org.hisp.dhis.light.utils.NamebasedUtils" class="org.hisp.dhis.light.utils.NamebasedUtilsImpl">
+ <bean id="org.hisp.dhis.light.utils.NamebasedUtils" class="org.hisp.dhis.light.utils.NamebasedUtilsImpl"
+ scope="prototype">
<property name="programService" ref="org.hisp.dhis.program.ProgramService" />
<property name="programStageService" ref="org.hisp.dhis.program.ProgramStageService" />
</bean>
- <bean id="org.hisp.dhis.light.dataentry.utils.FormUtils" class="org.hisp.dhis.light.utils.FormUtilsImpl">
- <property name="organisationUnitService"
- ref="org.hisp.dhis.organisationunit.OrganisationUnitService" />
+ <bean id="org.hisp.dhis.light.utils.FormUtils" class="org.hisp.dhis.light.utils.FormUtilsImpl"
+ scope="prototype">
+ <property name="organisationUnitService" ref="org.hisp.dhis.organisationunit.OrganisationUnitService" />
<property name="currentUserService" ref="org.hisp.dhis.user.CurrentUserService" />
<property name="dataValueService" ref="org.hisp.dhis.datavalue.DataValueService" />
<property name="dataSetService" ref="org.hisp.dhis.dataset.DataSetService" />
- <property name="stdDevOutlierAnalysisService"
- ref="org.hisp.dhis.dataanalysis.StdDevOutlierAnalysisService" />
- <property name="minMaxOutlierAnalysisService"
- ref="org.hisp.dhis.dataanalysis.MinMaxOutlierAnalysisService" />
+ <property name="stdDevOutlierAnalysisService" ref="org.hisp.dhis.dataanalysis.StdDevOutlierAnalysisService" />
+ <property name="minMaxOutlierAnalysisService" ref="org.hisp.dhis.dataanalysis.MinMaxOutlierAnalysisService" />
<property name="systemSettingManager" ref="org.hisp.dhis.setting.SystemSettingManager" />
- <property name="validationRuleService"
- ref="org.hisp.dhis.validation.ValidationRuleService" />
+ <property name="validationRuleService" ref="org.hisp.dhis.validation.ValidationRuleService" />
<property name="expressionService" ref="org.hisp.dhis.expression.ExpressionService" />
</bean>
@@ -47,14 +45,14 @@
class="org.hisp.dhis.light.dataentry.action.GetOrganisationUnitsAction"
scope="prototype">
<property name="formUtils"
- ref="org.hisp.dhis.light.dataentry.utils.FormUtils" />
+ ref="org.hisp.dhis.light.utils.FormUtils" />
</bean>
<bean id="org.hisp.dhis.light.dataentry.action.GetDataSetsAction"
class="org.hisp.dhis.light.dataentry.action.GetDataSetsAction"
scope="prototype">
<property name="formUtils"
- ref="org.hisp.dhis.light.dataentry.utils.FormUtils" />
+ ref="org.hisp.dhis.light.utils.FormUtils" />
<property name="organisationUnitService"
ref="org.hisp.dhis.organisationunit.OrganisationUnitService" />
</bean>
@@ -63,7 +61,7 @@
class="org.hisp.dhis.light.dataentry.action.GetPeriodsAction"
scope="prototype">
<property name="formUtils"
- ref="org.hisp.dhis.light.dataentry.utils.FormUtils" />
+ ref="org.hisp.dhis.light.utils.FormUtils" />
<property name="organisationUnitService"
ref="org.hisp.dhis.organisationunit.OrganisationUnitService" />
<property name="dataSetService" ref="org.hisp.dhis.dataset.DataSetService" />
@@ -79,7 +77,7 @@
<property name="dataSetService" ref="org.hisp.dhis.dataset.DataSetService" />
<property name="periodService" ref="org.hisp.dhis.period.PeriodService" />
<property name="formUtils"
- ref="org.hisp.dhis.light.dataentry.utils.FormUtils" />
+ ref="org.hisp.dhis.light.utils.FormUtils" />
<property name="registrationService"
ref="org.hisp.dhis.dataset.CompleteDataSetRegistrationService" />
</bean>
@@ -115,7 +113,7 @@
<property name="dataSetService" ref="org.hisp.dhis.dataset.DataSetService" />
<property name="periodService" ref="org.hisp.dhis.period.PeriodService" />
<property name="formUtils"
- ref="org.hisp.dhis.light.dataentry.utils.FormUtils" />
+ ref="org.hisp.dhis.light.utils.FormUtils" />
</bean>
<bean id="org.hisp.dhis.light.dataentry.action.SaveSectionFormAction"
@@ -133,7 +131,7 @@
ref="org.hisp.dhis.dataset.CompleteDataSetRegistrationService" />
<property name="periodService" ref="org.hisp.dhis.period.PeriodService" />
<property name="formUtils"
- ref="org.hisp.dhis.light.dataentry.utils.FormUtils" />
+ ref="org.hisp.dhis.light.utils.FormUtils" />
</bean>
<!-- Namebased Data entry -->
@@ -413,7 +411,7 @@
<property name="programStageInstanceService"
ref="org.hisp.dhis.program.ProgramStageInstanceService" />
<property name="formUtils"
- ref="org.hisp.dhis.light.dataentry.utils.FormUtils" />
+ ref="org.hisp.dhis.light.utils.FormUtils" />
<property name="patientAttributeValueService"
ref="org.hisp.dhis.patientattributevalue.PatientAttributeValueService" />
<property name="patientAttributeOptionService"