• last updated a few seconds ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
added localeLanguage and lacaleCountry properties

  1. … 1 more file in changeset.
added OrganisationState.hbm.xml to mappingResources of hibernate session factory

    • -0
    • +1
    ./org/lamsfoundation/lams/commonContext.xml
added organisationState member

remove unnecessary package names in front of class names, which were generated by middlegen hbm2java task

domain object for lams_organisation_state table

Fixed bugs in getCountActiveLearnerByLesson, changed calls to update lesson to use the lessonId rather than the lesson. Change allowed us to reduce the amount cached in the context.

  1. … 3 more files in changeset.
Working on import tool content.

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

    • -0
    • +5
    ./org/lamsfoundation/lams/commonContext.xml
added Privilege.hbm.xml and RolePrivilege.hbm.xml to the mappingResources for hibernate session factory

    • -0
    • +2
    ./org/lamsfoundation/lams/commonContext.xml
hibernate mapping files for privilege, role and privileges

  1. … 3 more files in changeset.
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