lams-github

Clone Tools
  • last updated a few seconds ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
LDEV-5167 Adding extra css for images

img-soft-shadow and img-extra-rounded

    • -1
    • +7
    /lams_central/web/css/_learner_base.scss
LDEV-5167 add missing labels

LDEV-5167 Improved implementation

Rather than adding as a multiple options, use a plugin as a background selector

    • -0
    • +227
    /lams_central/web/ckeditor/plugins/wavepanel/dialogs/wave.js
    • binary
    /lams_central/web/ckeditor/plugins/wavepanel/images/noimage.png
    • -0
    • +37
    /lams_central/web/ckeditor/plugins/wavepanel/plugin.js
    • -1
    • +8
    /lams_central/web/css/_learner_base.scss
LDEV-5167 Adding wave headers

LDEV-4769 Update English and Spanish

LDEV-4769 Fix placeholders in i18n labels

Applied changes to lokalise

LDEV-3125 Give learner less detailed error about missing grouping

LDEV-4769 Fix placeholders in i18n labels

LDEV-4909 Allow grouping not connected to parallel support activity

LDEV-5145 Trigger Bootstrap tooltips when new AE gets added

LDEV-5145 Add gallery walk read-only feature and instructions

LDEV-4769 Updating English, Norwegian and Greek

  1. … 12 more files in changeset.
LDEV-5145 Move doKu creation to AE new question dropdown

    • -22
    • +26
    /lams_central/web/authoring/template/tbl/tbl.jsp
LDEV-5145 Add doKu gallery walk support in TBL template

LDEV-5145 Introduce Doku AE in TBL template back-end

LDEV-5145 Introduce Doku AE in TBL template front-end

    • -0
    • +95
    /lams_central/web/authoring/template/tbl/appexDoku.jsp
LDEV-5145 Improve Assessment AE code formating

LDEV-5145 Rename Assessment AE file to distinguis from Doku AE

    • -106
    • +0
    /lams_central/web/authoring/template/tbl/appex.jsp
LDEV-5165 Adding missing email verification labels that were missing for a while

LDEV-5143 Updating labels for doKu

LDEV-4553 Adding missing label for Q&A

Merge branch 'LDEV-5166' into v4.0

LDEV-5166 Add Learning Design description to monitoring

Lesson description is called "intro" and learning design description is

just "description"

Merge branch 'LDEV-5163' into v4.0

LDEV-5163 Reintroduce code that restarts lesson on each learner entry

LDEV-5164 Switch buttons when choosing branching in preview

    • -2
    • +2
    /lams_learning/web/branching/preview.jsp
LDEV-4553 Updating labels

LDEV-5143 labels

  1. … 7 more files in changeset.
Merge branch 'LDEV-5162' into v4.0

LDEV-5162 Fix Ordering answers saving to DB

To reflect an order that a learner put his answers, a TreeSet was used.

Its comparing function uses displayOrder.

It works fine when elements are put into the set during the first save,

i.e. the first autosave or a submit before the first autosave.

But when another save occurs (another autosave or a submit after the

first autosave), the set of answers is not recreated. Only displayOrder

of answers is modified. But TreeSet is not aware of it and keeps old

ordering. The iteration that happens during the save picks up answers in

the old order.

The fix uses real displayOrder value instead of counting on correct

order in TreeSet.

Another solution would be to rebuild the set after modifying answers'

displayOrder.