dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #26893
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 13316: Updated postgres and mysql drivers
------------------------------------------------------------
revno: 13316
committer: Lars Helge Øverland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Wed 2013-12-18 18:45:28 +0100
message:
Updated postgres and mysql drivers
modified:
dhis-2/dhis-services/dhis-service-core/src/main/java/org/hisp/dhis/dataentryform/DefaultDataEntryFormService.java
dhis-2/dhis-support/dhis-support-hibernate/pom.xml
dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-settings/src/main/resources/org/hisp/dhis/settings/i18n_module.properties
dhis-2/pom.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-services/dhis-service-core/src/main/java/org/hisp/dhis/dataentryform/DefaultDataEntryFormService.java'
--- dhis-2/dhis-services/dhis-service-core/src/main/java/org/hisp/dhis/dataentryform/DefaultDataEntryFormService.java 2013-12-18 13:35:30 +0000
+++ dhis-2/dhis-services/dhis-service-core/src/main/java/org/hisp/dhis/dataentryform/DefaultDataEntryFormService.java 2013-12-18 17:45:28 +0000
@@ -28,6 +28,11 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+import static org.apache.commons.lang.StringEscapeUtils.escapeHtml;
+import static org.hisp.dhis.dataelement.DataElement.VALUE_TYPE_BOOL;
+import static org.hisp.dhis.dataelement.DataElement.VALUE_TYPE_LONG_TEXT;
+import static org.hisp.dhis.dataelement.DataElement.VALUE_TYPE_TRUE_ONLY;
+
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
@@ -36,7 +41,6 @@
import java.util.Set;
import java.util.regex.Matcher;
-import org.apache.commons.lang.StringEscapeUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.hisp.dhis.dataelement.DataElement;
@@ -52,9 +56,6 @@
import org.hisp.dhis.system.util.FilterUtils;
import org.springframework.transaction.annotation.Transactional;
-import static org.hisp.dhis.dataelement.DataElement.*;
-import static org.apache.commons.lang.StringEscapeUtils.escapeHtml;
-
/**
* @author Bharath Kumar
*/
=== modified file 'dhis-2/dhis-support/dhis-support-hibernate/pom.xml'
--- dhis-2/dhis-support/dhis-support-hibernate/pom.xml 2013-10-17 06:57:37 +0000
+++ dhis-2/dhis-support/dhis-support-hibernate/pom.xml 2013-12-18 17:45:28 +0000
@@ -60,7 +60,7 @@
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
- <groupId>postgresql</groupId>
+ <groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<dependency>
=== modified file 'dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-settings/src/main/resources/org/hisp/dhis/settings/i18n_module.properties'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-settings/src/main/resources/org/hisp/dhis/settings/i18n_module.properties 2013-12-18 15:08:00 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-settings/src/main/resources/org/hisp/dhis/settings/i18n_module.properties 2013-12-18 17:45:28 +0000
@@ -62,6 +62,6 @@
tls=TLS
allows_html=allows HTML
application_footer=Application footer
-user_credentials_expires=Require account password change
+user_credentials_expires=Require user account password change
never=Never
months=Months
\ No newline at end of file
=== modified file 'dhis-2/pom.xml'
--- dhis-2/pom.xml 2013-12-18 08:15:16 +0000
+++ dhis-2/pom.xml 2013-12-18 17:45:28 +0000
@@ -710,12 +710,12 @@
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
- <version>5.1.20</version>
+ <version>5.1.27</version>
</dependency>
<dependency>
- <groupId>postgresql</groupId>
+ <groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
- <version>9.1-901-1.jdbc4</version>
+ <version>9.2-1004-jdbc41</version>
</dependency>
<!--Reporting -->
<dependency>