learningdesign

Clone Tools
  • last updated a few seconds ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
LDEV-5277 Create activity column items in order as they appear in LD

    • -0
    • +39
    ./ListingLearningDesignProcessor.java
  1. … 1 more file in changeset.
LDEV-5363 Fix iRAT detection in monitoring

LDEV-5363 Add TBL course gradebook export

    • -0
    • +150
    ./service/LearningDesignService.java
  1. … 7 more files in changeset.
LDEV-5358 Always sort groups by name, case insensitive

  1. … 6 more files in changeset.
LDEV-5357 Use UUIDs for file downloads

    • -1
    • +1
    ./service/ExportToolContentService.java
  1. … 56 more files in changeset.
LDEV-5083 Activity duration can be NULL

LDEV-5350 Add Course Grouping selection to Add Lesson dialog

    • -0
    • +23
    ./service/LearningDesignService.java
  1. … 8 more files in changeset.
LDEV-4457 Remove empty groups after spreadsheet import

  1. … 1 more file in changeset.
LDEB-5335 Add structured audit logs on various admin actions

  1. … 22 more files in changeset.
LDEV-5325 Import "stop at preceding activity" gate property

    • -0
    • +3
    ./service/ExportToolContentService.java
LDEV-4497 Transform legacy content folder IDs into multi-part version

    • -16
    • +3
    ./service/ExportToolContentService.java
  1. … 1 more file in changeset.
LDEV-5083 Add activity mark and time taken to learner timeline

  1. … 18 more files in changeset.
LDEV-5292 Correctly detect RAT activities when syncing questions

    • -2
    • +14
    ./service/LearningDesignService.java
LDEV-5292 Fix exception when activity is getting saved for first time

LDEV-5292 Sync RAT activities questions in TBL sequences

    • -0
    • +12
    ./service/ILearningDesignService.java
    • -0
    • +136
    ./service/LearningDesignService.java
  1. … 12 more files in changeset.
LDEV-4411 Do not fetch groups eagerly

LDEV-4411 Make relation from Evaluation to ToolActivity unidirectional

Hibernate can not lazy load properties connected with OneToOne

relationship. It means that with every fetch of ToolActivity its

ActivityEvaluation was also fetched, whether is was needed or not. It

made up even 10% of all queries sent to DB during a lesson.

By having the relationship unidirectional and fetching

ActivityEvaluation via DAO we ensure that it is fetched only when it is

needed. The code is not as nice, though.

    • -3
    • +4
    ./service/ExportToolContentService.java
  1. … 9 more files in changeset.
LDEV-5250 Remove Pedagogical Planner integration with core LAMS

    • -118
    • +0
    ./dto/PlannerActivityMetadataDTO.java
    • -11
    • +1
    ./service/ExportToolContentService.java
  1. … 64 more files in changeset.
LDEV-4411 Stop using collection cache for now

Cache annotations were commented out so we can come back to them easily

in the future.

Collection cache is not detecting changes made to entities. When a new

entity is added, collection cache does not see the change.

Properly tweaking concurrency strategy does not seem possible at the

moment, so we just turn it off.

  1. … 25 more files in changeset.
LDEV-4288 Prevent duplicate entries in Gradebook activity table

Unique key allows us to track situations in which duplicate entries get

created in the table.

There is no point in copying Gradebook entries on tool content copy - we

never copy live lessons, only template Learning Designs which should not

have any gradebook entries set.

  1. … 1 more file in changeset.
LDEV-5248, LDEV-4411 Mark some collections as cacheable

Similar to query cache, the collection cache makes sense if the table

which collection elements map to do not change often. Each modification

to table content invalidates the given collection cache.

  1. … 27 more files in changeset.
LDEV-5248, LDEV-4411 Mark some queries as cacheable

Query cache makes sense if tables which the query reference does not

change often. Each modification to table content invalidates the given

query's cache. Also each set of query parameters is a different cache

entry, so if there are various parameter values the cache overhead can

generate more load than benefit.

    • -13
    • +14
    ./dao/hibernate/LearningDesignDAO.java
    • -2
    • +2
    ./dao/hibernate/LearningLibraryDAO.java
  1. … 89 more files in changeset.
LDEV-5248, LDEV-4411 Add 2nd level cache to selected elements

Displaying Assessment results is too DB-intense for multiple learners.

We can enable a short-lived query cache for some entities which have

most impact on the results page. This way multiple requests can reuse

same objects from cache and there is little danger of inconsistency.

  1. … 18 more files in changeset.
LDEV-5219 Display customised messages for various gate types

Move i18n labels from tool to Learning module so they are the same for

all tools.

  1. … 6 more files in changeset.
LDEV-5219 Stop learner from advancing to a closed gate in Assessment

  1. … 5 more files in changeset.
LDEV-5219 Introduce stop-at-preceding-activity flag for some gates

  1. … 8 more files in changeset.
LDEV-5200 Remove tool library groups feature

    • -9
    • +2
    ./dao/hibernate/LearningLibraryDAO.java
    • -11
    • +2
    ./service/ILearningDesignService.java
    • -36
    • +0
    ./service/LearningDesignService.java
  1. … 9 more files in changeset.
LDEV-4846 Fix LD export when title contains forbidden characters

    • -2
    • +3
    ./service/ExportToolContentService.java
LDEV-3125 Give learner less detailed error about missing grouping

  1. … 3 more files in changeset.
LDEV-5058 Move activity category from DB to authoring front end

    • -1
    • +0
    ./service/ExportToolContentService.java
    • -12
    • +8
    ./service/LearningDesignService.java
  1. … 10 more files in changeset.