Clone Tools
  • last updated a few seconds ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
Added new tools Chat and Shared Resources

Implementation getLearningLibraryByTitle was wrong and the method is not used so the whole method was removed.

Implementation of getLearningLibraries was returning all libraries in the database. Changed to only return the active libraries (ie the libraries that have been successfully installed).

  1. … 1 more file in changeset.
Had internationalization wrongly abbreviated as I8N, rather than I18N

    • -2
    • +2
    ./org/lamsfoundation/lams/tool/Tool.java
Moved the language/message/resource file to the conf area. Will now be deployed to the lams-dictonary.jar to make I8N easier.

  1. … 49 more files in changeset.
Added I8N support for the activity and tool title, description, etc.

    • -0
    • +5
    ./org/lamsfoundation/lams/tool/Tool.java
Added a MessageSource manager, which will load arbitrary message sources on the fly. It is used to access the tool's language files from the authoring code, but it could be used by any part of LAMS to access a resource file as long as the path to the file is known.

    • -0
    • +10
    ./org/lamsfoundation/lams/commonContext.xml
Updated for increased exception handling in setTheme method.

  1. … 1 more file in changeset.
Added theme error messages

Renamed exception class.

Updated setTheme method to handle setting html and/or flash theme.

  1. … 1 more file in changeset.
Adjusted to add Html user theme to list.

Removed users set

New separate themes - flashTheme and htmlTheme properties

  1. … 1 more file in changeset.
Custom Exception used in ThemeService

Added some debugging to try to work out Ozgur's login screen problem

Moved the IBaseDAO and BaseDAO classes to their own packages and out of learning design. This interface and class may be used as the basis for any Hibernate DAO in the system - it isn't compulsory but it is a handy way of getting functionality. If we are going to be using it all over the place, having the classes in the learning design package is not a good idea.

    • -0
    • +58
    ./org/lamsfoundation/lams/dao/IBaseDAO.java
    • -0
    • +80
    ./org/lamsfoundation/lams/dao/hibernate/BaseDAO.java
  1. … 10 more files in changeset.
Updated BasicToolVO to match the current Tool object, and added an interface to BasicToolVO. Now the call in lLamsToolService which allows a tool to access its own record in the lams_tool table refers to an interface (IToolVO) rather than a POJO. The code still passes a BasicToolVO to any calling tools, but it is better to refer only to interfaces in a service definition, rather than a concrete class.

    • -355
    • +372
    ./org/lamsfoundation/lams/tool/BasicToolVO.java
    • -0
    • +65
    ./org/lamsfoundation/lams/tool/IToolVO.java
    • -3
    • +25
    ./org/lamsfoundation/lams/tool/Tool.java
  1. … 3 more files in changeset.
Add quartz persist table and upgrade to 1.5.2 from 1.5.0RC

  1. … 24 more files in changeset.
Updated theme service defn - added MessageService

    • -0
    • +1
    ./org/lamsfoundation/lams/commonContext.xml
Theme Service message key added.

Updated to use MessageService

Updated context for new ThemeService

    • -0
    • +18
    ./org/lamsfoundation/lams/commonContext.xml
New service to process CSS Themes. New method setTheme() added.

    • -0
    • +88
    ./org/lamsfoundation/lams/themes/service/IThemeService.java
    • -0
    • +196
    ./org/lamsfoundation/lams/themes/service/ThemeService.java
Split learner and export urls (in Tool) to have separate urls for teacher, learner and authoring modes. Added language file columns to activity and tool - this will be used to internationalise the activity and tool name and descriptions that are currently in the database.

    • -89
    • +118
    ./org/lamsfoundation/lams/tool/Tool.java
  1. … 21 more files in changeset.
add set encoding to filter

add set encoding to filter

Add charset map.

    • -0
    • +103
    ./org/lamsfoundation/lams/web/filter/LocaleToCharsetMap.java
Modified GroupingDAO to ensure that "real" grouping objects are returned, not just CGLIB versions. This was causing a problem when storing groupings as it was unable to cast existing groupings to RandomGrouping or ChosenGrouping

Added license text to the data returned for a learning design. Previously only returned license id which wasn't very helpful for a custom license.

Add start date for learnerProgress.

  1. … 4 more files in changeset.