Clone Tools
  • last updated a few seconds ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
LKC-55 Slightly modified email message sent on response submit to monitors

LDEV-3418 Q&A tablesorter date/time formatting

LDEV-3389: Create QA user if it is missing, probably because of force complete.

LDEV-3389: Create QA user if it is missing, probably because of force complete.

LDEV-3316: Get rid of HibernateTemplate and HibernateDaoSupport usage in set of LAMS DAO types from lams_tool_laqa

LDEV-3275: Make XStream use enhanced mode in which it can instantinate classes without no-arg constructors. This requires Oracle's JVM to be used, but it is a requirement of LAMS anyway. Otherwise multiple LAMS classes (mainly DTOs) would have to be given no-arg constructors or implement Serializable.

  1. … 11 more files in changeset.
LDEV-3332: revert spring-beans schema declaration in application context xml files. export spring meta-inf in jboss-deployment-structure.xml

It is way more elegant approach to fix an issue with spring-beans.xsd loading from internet.

  1. … 76 more files in changeset.
LDEV-3332: fix spring contexts declaration to find spring-beans-4.0.xsd locally at classpath.

Having spring module defined as a set of spring jars (as we do have in Wildfly), it is impossible for spring to resolve xsd schema mapping file 'spring.schemas' correctly. With set of jars, we have 5 instances of this file (with different content) under the same path 'META-INF/spring.schemas'. This ended up in spring not beeing able to map spring-beans-4.0.xsd URL path to local resource location. Finally, this xsd was loaded from internet - and that significantly slowed Wildfly startup.

With this fix LAMS is way (depends on internet connection) faster to start.

  1. … 75 more files in changeset.
LDEV-3330: Check if an attribute key is not NULL beforing looking it up in the session.

WildFly is more restrictive when it comes to session attributes management. It does not allow looking up NULL keys, while JBoss 5 returned NULL value in this case.

LDEV-3319: update dbupdates scripts to use temporary tables for 'temp_select'.

Although the whole db update process is now globally synchronized in LAMS, it is better to use 'temporary' MySQL tables in case of 'temp_select' tables.

  1. … 5 more files in changeset.
LDEV-3319: Synchronize patch execution with an external monitor. Modules in WildFly can be loaded in parallel. AutoPatch is not ready for this as it uses static methods with unsynchronized collections. Each AutoPatchService instance should be run sequentially.

  1. … 32 more files in changeset.
LDEV-3300: Save Q&A questions before saving the parent object because if Hibernate decides to save Conditions first, some question could be not saved yet and it will trigger "non-transient object not saved" error.

LDEV-3300: Save Q&A questions before saving the parent object because if Hibernate decides to save Conditions first, some question could be not saved yet and it will trigger "non-transient object not saved" error.

LDEV-2866 * Got rid of duplicative jsp parts in Ozgur's tools * Some initial refactoring of the code

  1. … 93 more files in changeset.
LDEV-2866 * Got rid of duplicative jsp parts in Ozgur's tools * Some initial refactoring of the code

  1. … 93 more files in changeset.
LDEV-3304 * added tablesorter paging due to "Q&A "all answers" page takes minutes to load when there are a lot of responses left by other users" * slightly optimized export content

  1. … 6 more files in changeset.
LDEV-3295 Allow questions having user responses with ratings be deleted

LDEV-3304 * added tablesorter paging to QA monitor * slightly optimized export content * fixed problem with displaying non-latin letters in tablesorter * fixed problem with incorrect display jRating for all items except the last one

  1. … 6 more files in changeset.
LDEV-3304 added sorting by rating

  1. … 4 more files in changeset.
LDEV-3304 added tablesorter paging due to "Q&A "all answers" page takes minutes to load when there are a lot of responses left by other users"

  1. … 5 more files in changeset.
LDEV-3304 reduced amount of DB queries due to "Q&A "all answers" page takes minutes to load when there are a lot of responses left by other users"

LDEV-3295 removed unused method

LDEV-3295 Allow questions having user responses with ratings be deleted

LDEV-3292: Add missing indexes.

LDEV-3293: Rewrite Application Context configuration files for Spring 4.

  1. … 77 more files in changeset.
LDEV-3293: Save or update each collection item manually as new Hibernate does not have a method for processing the whole collection anymore.

  1. … 1 more file in changeset.
LDEV-3293: Use the new Spring's support for Hibernate 4 instead of Hibernate 3. Switch from using HibernateDaoSupport.getSession() to its getSessionFactory().getSession(). The latter is sure to close the session automatically while a session returned by the first method should be closed manually. Theoritecally we do it in OpenSessionInViewFilter, but it may not be always the case, leading to open Hibernate session being left behind.

  1. … 81 more files in changeset.
LDEV-3293: Cast DAO methods' results to their return type. Java 8 is more restrictive about generics. Hibernate find() methods returns List<?> and it can not be quietly cast to List<SomeClass>. Each occurence was explicitly casted and warnings about the type being unchecked were supressed.

  1. … 54 more files in changeset.
LDEV-3292: Add missing indexes.

LDEV-3291 fix exception when finishing Q&A with "one in each page" option ON