Clone Tools
  • last updated a few seconds ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
LDEV-5440 Do not use deprecated constructors of Double and Boolean

  1. … 34 more files in changeset.
LDEV-5440 Replace deprecated Long constructor

  1. … 115 more files in changeset.
LDEV-5440 Rewrite JPQL queries not to use "in class" term

  1. … 21 more files in changeset.
LDEV-5440 Update Hibernate queries with new syntax

Get rid of deprecated Long and Integer constructors.

  1. … 84 more files in changeset.
LDEV-5440 Revert some unnecessary package name changes

  1. … 462 more files in changeset.
LDEV-5440 Refactor packages of imported classes

  1. … 477 more files in changeset.
LDEV-5440 Rewrite config files and library references

  1. … 943 more files in changeset.
LDEV-5363 Make RAT questions sync optional

  1. … 12 more files in changeset.
LDEV-5431 Reset activity completion on force uncomplete in Monitor

    • -51
    • +67
    ./service/LamsCoreToolService.java
  1. … 36 more files in changeset.
LDEV-5391 Move cluster building logic to core for other tools to use

    • -41
    • +105
    ./service/LamsToolService.java
  1. … 1 more file in changeset.
LDEV-5393 Update marks for all peers in group after activity

  1. … 2 more files in changeset.
LDEV-5083 Show Burning Question nav button only if they are enabled

    • -0
    • +5
    ./service/ICommonScratchieService.java
  1. … 3 more files in changeset.
LDEV-5083 Fix max activity score calculation

LDEV-5081 Merge changes made for monitor in LDEV-5083

  1. … 36 more files in changeset.
LDEV-5083 Add activity mark and time taken to learner timeline

  1. … 17 more files in changeset.
LDEV-5308 Limit VSA recalculation to lessons in same course

If an answer get allocated, marks get recalculated only for lesson which

are in the same course as the lesson for which allocation happened,

including parent and child courses.

    • -1
    • +1
    ./service/ICommonAssessmentService.java
  1. … 6 more files in changeset.
LDEV-5292 Sync RAT activities questions in TBL sequences

  1. … 11 more files in changeset.
LDEV-5273 Refresh leaders' page on VS answer allocation

  1. … 5 more files in changeset.
LDEV-5273 Add VSA allocation to Scratchie

    • -1
    • +1
    ./service/ICommonAssessmentService.java
    • -0
    • +9
    ./service/ICommonScratchieService.java
  1. … 15 more files in changeset.
LDEV-5273 Remove single VSA allocation interface from Assessment

Since UI for VSA allocation moved to Central, it is more difficult to

make it embedded within a tools own monitoring interface. It is probably

not needed too - a well designed VSA allocation UI for all questions

should be sufficient.

    • -6
    • +1
    ./service/ICommonAssessmentService.java
  1. … 3 more files in changeset.
LDEV-5273 Move VSA allocation code to Central

    • -1
    • +14
    ./service/ICommonAssessmentService.java
    • -1
    • +1
    ./service/ICommonScratchieService.java
  1. … 17 more files in changeset.
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.

    • -26
    • +32
    ./service/LamsCoreToolService.java
  1. … 12 more files in changeset.
LDEV-4411 Make Tool -> ExtServerToolAdapterMap collection lazy

LDEV-5250 Remove Pedagogical Planner integration with core LAMS

  1. … 66 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. … 29 more files in changeset.
LDEV-5174 Allow MCQ as iRAT in TBL monitoring Teams tab

    • -4
    • +1
    ./service/ICommonAssessmentService.java
  1. … 4 more files 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. … 31 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.

  1. … 95 more files in changeset.
LDEV-5174 Improve Teams tab load time

All learners' results are loaded from DB in one go since eventually we

need all of them anyway.

Also penalty calculation happens only when penalty factor is set.

    • -0
    • +10
    ./service/ICommonAssessmentService.java
  1. … 4 more files in changeset.
LDEV-5174 Redesign TBL monitor team tab

Extract tRAT stats to the top. Add counters of correct answers both for

iRAT and tRAT.

    • -3
    • +8
    ./service/ICommonAssessmentService.java
    • -0
    • +5
    ./service/ICommonScratchieService.java
  1. … 9 more files in changeset.