lams_tool_images

Clone Tools
  • last updated a few seconds ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
LDEV-3259 Improved Image Gallery's learning

    • -16
    • +0
    ./web/common/headerWithoutPrototype.jsp
    • -0
    • +4
    ./web/includes/css/fotorama.css
    • -51
    • +0
    ./web/includes/css/jquery.jcarousel.css
    • -68
    • +0
    ./web/includes/css/jquery.jcarousel.skin.css
    • binary
    ./web/includes/images/fotorama.png
    • binary
    ./web/includes/images/fotorama@2x.png
  1. … 29 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-3293: fix hibernate dtd declarations. Change 'hibernate.org' to 'www.hibernate.org'.

In order for hibernate DTDEntityResolver not to load hibernate-mapping-3.0.dtd from internet (and use local one), namespace declaration of dtd must exactly match the namespace declared in DTDEntityResolver class.

  1. … 93 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: Remove user comments before cloning Image Gallery.

LDEV-3300: Remove user comments before cloning Image Gallery.

LDEV-3315: Clean up roles and paths to secured resources in all modules. Remove AUTHOR ADMIN role.

  1. … 72 more files in changeset.
LDEV-3315: Remove AUTHOR ADMIN role. Allow AUTHOR role to preview lessons. Allow MONITOR role to edit activities and run Live Edit.

  1. … 72 more files in changeset.
LDEV-3259 Improved Image Gallery's learning

LDEV-3259 Improved Image Gallery's learning

    • -16
    • +0
    ./web/common/headerWithoutPrototype.jsp
    • -0
    • +4
    ./web/includes/css/fotorama.css
    • -51
    • +0
    ./web/includes/css/jquery.jcarousel.css
    • -68
    • +0
    ./web/includes/css/jquery.jcarousel.skin.css
    • binary
    ./web/includes/images/fotorama.png
    • binary
    ./web/includes/images/fotorama@2x.png
  1. … 29 more files in changeset.
LDEV-3315: Clean up roles and paths to secured resources in all modules.

  1. … 38 more files in changeset.
LDEV-3242: Set default container height if overriding in learning.jsp fails.

    • -0
    • +2
    ./web/includes/css/jquery.jcarousel.css
LDEV-3242: Set default container height if overriding in learning.jsp fails.

    • -0
    • +2
    ./web/includes/css/jquery.jcarousel.css
LDEV-3300: Save ImageGallery and Kaltura items and their creators before saving the main objects as there is no cascade.

  1. … 1 more file in changeset.
LDEV-3300: Save ImageGallery and Kaltura items and their creators before saving the main objects as there is no cascade.

  1. … 1 more file in changeset.
LDEV-3305 Prevent iframe from expanding too big in Chrome

  1. … 12 more files in changeset.
LDEV-3298 fixed issue when CKeditor missed right and sometimes left border when it's being opened in an iframe using showMessage() method

    • -1
    • +2
    ./web/pages/authoring/parts/addimage.jsp
  1. … 9 more files in changeset.
LDEV-3298 fixed issue when CKeditor missed right and sometimes left border when it's being opened in an iframe using showMessage() method

    • -1
    • +2
    ./web/pages/authoring/parts/addimage.jsp
  1. … 9 more files in changeset.
LDEV-3305 Prevent iframe from expanding too big in Chrome

  1. … 12 more files in changeset.
LDEV-3242: Set default thumbnail dimensions when the value is missing from session map.

LDEV-3242: Set default thumbnail dimensions when the value is missing from session map.

LDEV-3303 CKEditor should respect height parameter overriden by editor instance

  1. … 36 more files in changeset.
LDEV-3301 prevent CKEditor from occupying more space than available due to its autogrow feature

    • -2
    • +15
    ./web/pages/authoring/parts/addimage.jsp
  1. … 14 more files in changeset.
LDEV-3301 prevent CKEditor from occupying more space than available due to its autogrow feature

    • -2
    • +15
    ./web/pages/authoring/parts/addimage.jsp
  1. … 11 more files in changeset.
LDEV-3303 CKEditor should respect height parameter overriden by editor instance

  1. … 37 more files in changeset.
LDEV-3293: Use Spring support for Hibernate 4 instead of 3 (session factory and filters). Use new path for Hibernate DTDs. Make XDoclet generate hbm.xml files with the correct path by providing it a new template.

  1. … 110 more files in changeset.
LDEV-3293: Rewrite Application Context configuration files for Spring 4.

  1. … 77 more files 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. … 86 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. … 52 more files in changeset.