-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
=== modified file 'dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/indicator.vm'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/indicator.vm 2009-11-02 13:07:49 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/indicator.vm 2009-11-03 13:11:45 +0000
@@ -87,7 +87,8 @@
-
+
+
=== modified file 'dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/javascript/dataElement.js'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/javascript/dataElement.js 2009-09-25 22:00:04 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/javascript/dataElement.js 2009-11-03 13:11:45 +0000
@@ -60,6 +60,9 @@
var url = getElementValue( dataElementElement, 'url' );
setFieldValue( 'urlField', url ? '
' + url + '' : '[' + i18n_none + ']' );
+ var lastUpdated = getElementValue( dataElementElement, 'lastUpdated' );
+ setFieldValue( 'lastUpdatedField', lastUpdated ? lastUpdated : '[' + i18n_none + ']' );
+
showDetails();
}
=== modified file 'dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/javascript/indicator.js'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/javascript/indicator.js 2009-05-20 14:15:54 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/javascript/indicator.js 2009-11-03 13:11:45 +0000
@@ -50,6 +50,9 @@
var url = getElementValue( indicatorElement, 'url' );
setFieldValue( 'urlField', url ? '
' + url + '' : '[' + i18n_none + ']' );
+ var lastUpdated = getElementValue( indicatorElement, 'lastUpdated' );
+ setFieldValue( 'lastUpdatedField', lastUpdated ? lastUpdated : '[' + i18n_none + ']' );
+
showDetails();
}
=== modified file 'dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/responseDataElement.vm'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/responseDataElement.vm 2009-05-20 14:15:54 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/responseDataElement.vm 2009-11-03 13:11:45 +0000
@@ -10,5 +10,6 @@
$dataElement.type
$dataElement.aggregationOperator
$!encoder.xmlEncode( $dataElement.url )
-
$dataElement.categoryCombo.name
+
$!format.formatDate( $dataElement.lastUpdated )
+
$!encoder.xmlEncode( $dataElement.categoryCombo.name )
=== modified file 'dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/responseIndicator.vm'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/responseIndicator.vm 2009-05-20 14:15:54 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/responseIndicator.vm 2009-11-03 13:11:45 +0000
@@ -11,4 +11,5 @@
$encoder.xmlEncode( $indicator.numeratorDescription )
$encoder.xmlEncode( $indicator.denominatorDescription )
$!encoder.xmlEncode( $indicator.url )
+
$!format.formatDate( $indicator.lastUpdated )
=== modified file 'dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-organisationunit/src/main/resources/org/hisp/dhis/oum/i18n_module.properties'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-organisationunit/src/main/resources/org/hisp/dhis/oum/i18n_module.properties 2009-11-03 10:54:57 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-organisationunit/src/main/resources/org/hisp/dhis/oum/i18n_module.properties 2009-11-03 13:11:45 +0000
@@ -116,8 +116,9 @@
select_all_at_level = Select All at Level
unselect_all_at_level = Un-Select All at Level
select_all_in_group = Select All in Group
-unselect_all_in_group = Un-Select All in Group
-unselect_all = Un-Select All
+unselect_all_in_group = Unselect All in Group
+unselect_all = Unselect All
+last_updated = Last updated
intro_org_unit = Create, modify, view and delete organisation units.
intro_org_unit_group = Create, modify, view and delete organisation unit groups.
intro_org_unit_group_set = Create, modify, view and delete organisation unit group sets.
=== modified file 'dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-organisationunit/src/main/webapp/dhis-web-maintenance-organisationunit/javascript/organisationUnit.js'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-organisationunit/src/main/webapp/dhis-web-maintenance-organisationunit/javascript/organisationUnit.js 2009-05-25 10:27:57 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-organisationunit/src/main/webapp/dhis-web-maintenance-organisationunit/javascript/organisationUnit.js 2009-11-03 13:11:45 +0000
@@ -40,6 +40,9 @@
var url = getElementValue( unitElement, 'url' );
setFieldValue( 'urlField', url ? '
' + url + '' : '[' + none + ']' );
+ var lastUpdated = getElementValue( unitElement, 'lastUpdated' );
+ setFieldValue( 'lastUpdatedField', lastUpdated ? lastUpdated : '[' + none + ']' );
+
showDetails();
}
=== modified file 'dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-organisationunit/src/main/webapp/dhis-web-maintenance-organisationunit/organisationUnit.vm'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-organisationunit/src/main/webapp/dhis-web-maintenance-organisationunit/organisationUnit.vm 2009-11-02 13:07:49 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-organisationunit/src/main/webapp/dhis-web-maintenance-organisationunit/organisationUnit.vm 2009-11-03 13:11:45 +0000
@@ -64,6 +64,7 @@
+