• last updated a few seconds ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
Remove getLearningDesign() method.

Modifying the getOrganisationForUserByRole calls to return just the course and class when specified, rather than the whole organisation tree.

Replaced getActiveLessons with getLesson, to suit the change from listing all the lessons in the learner client to just working with a single lesson.

Moved the logic to cache the lesson learners from learning into the lams.jar (in the LessonService).

Replaced getAllLessonsWDDX, getLessonData with getLessonDetails. Suits the change from listing all the lessons in the monitoring client to just working with a single lesson.

    • -10
    • +11
    ./org/lamsfoundation/lams/lesson/Lesson.java
    • -0
    • +152
    ./org/lamsfoundation/lams/lesson/service/LessonService.java
  1. … 2 more files in changeset.
Fix a bug in OrganisationDTO(Organisation organisation) constructor.

this.parentID = organisation.getParentOrganisation().getOrganisationId() will throw a NullPointerException at runtime if the organisation is the top level organisation like "Root"

Now this line of code is modified like this:

this.parentID = (organsiation.getParentOrganisation()==null) ? new Integer(-1) : organisation.getParentOrganisation().getOrganisationId();

So in an organisationDTO, if parentID is -1, it means the organisation is the top level organisation which has no parent.

Add import tool content method

    • -0
    • +1
    ./org/lamsfoundation/lams/commonContext.xml
  1. … 5 more files in changeset.
Add fileUtil method and package export success.

    • -0
    • +22
    ./org/lamsfoundation/lams/util/FileUtil.java
Update ToolContentManager API

Export toolcontent service.

    • -1
    • +2
    ./org/lamsfoundation/lams/commonContext.xml
    • -0
    • +44
    ./org/lamsfoundation/lams/util/FileUtil.java
  1. … 1 more file in changeset.
Changed name of export/import methods for the learning design export. Got the name wrong before.

  1. … 10 more files in changeset.
Add export tool content service.

    • -1
    • +1
    ./org/lamsfoundation/lams/commonContext.xml
  1. … 1 more file in changeset.
Add export tool content servlet.

Add export tool content servlet.

    • -0
    • +21
    ./org/lamsfoundation/lams/commonContext.xml
  1. … 4 more files in changeset.
Change LessonDAO and UserManagement service to support temporary indexContent page. Done to allow Flash work to be done, while the admin work is in progress.

    • -0
    • +1
    ./org/lamsfoundation/lams/commonContext.xml
  1. … 3 more files in changeset.
Added methods needed for design export

  1. … 10 more files in changeset.
Changed getOrganisationsByUserRole, getUserOrganisation

to support getting the child organisations by user/role, and to get a single organisation and the user's role in that organisation.

  1. … 5 more files in changeset.
Adding a run sequence folder to a course's workspace.

Fixing bugs in authoring relating to grouped activities.

    • -0
    • +2
    ./org/lamsfoundation/lams/commonContext.xml
  1. … 6 more files in changeset.
Split hide into separate show & hide calls

  1. … 2 more files in changeset.
Adding audit logging to LAMS

    • -0
    • +5
    ./org/lamsfoundation/lams/commonContext.xml
    • -0
    • +113
    ./org/lamsfoundation/lams/util/audit/AuditService.java
    • -0
    • +59
    ./org/lamsfoundation/lams/util/audit/IAuditService.java
  1. … 4 more files in changeset.
Bug - wasn't assigning the modified URL to anything.

More changes based on breaking 1-1 link between organisation and workspace folder. Some organisations don't have workspaces. Also tuned the method that checks membership access to a folder to take subfolders into account.

  1. … 2 more files in changeset.
Changing organisation structure to a simple root, course, class structure.

  1. … 29 more files in changeset.
Fixed the keywork expansion

    • -1
    • +1
    ./org/lamsfoundation/lams/tool/IToolVO.java
    • -1
    • +1
    ./org/lamsfoundation/lams/tool/SystemTool.java
Moving gate and group url support to a lams_system_tool table - the first "inch" towards making these pluggable tools in a later version of LAMS.

    • -0
    • +1
    ./org/lamsfoundation/lams/commonContext.xml
    • -0
    • +310
    ./org/lamsfoundation/lams/tool/SystemTool.java
    • -0
    • +36
    ./org/lamsfoundation/lams/tool/dao/ISystemToolDAO.java
  1. … 8 more files in changeset.
Fixed the keywork expansion

    • -1
    • +1
    ./org/lamsfoundation/lams/dao/IBaseDAO.java
Added chat id to the user table (for the jabber id)

  1. … 5 more files in changeset.
Equals/Hashcode weren't defined so adding DTO to a set wasn't checking the equality properly - ending up with the DTO in the set multiple times.

Implemented getAllPotentialLearners.

    • -4
    • +9
    ./org/lamsfoundation/lams/tool/ToolSession.java
Rejigging contribute activities list. Still have to do the urls for grouping and gates

  1. … 9 more files in changeset.
Give groups a default name, so that even if the name isn't supplied a database error isn't thrown (group name cannot be null in the db).

  1. … 1 more file in changeset.
removed WDDX test method

Added parentID

added hasRole method to check if set role matches an items in role list.