lams-github

Clone Tools
  • last updated a few seconds ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
LDEV-4425 Adding Portraits in Learner

Included in Grouping, Chat, Peer Review and QA

    • -0
    • +5
    /lams_central/web/css/_learner_base.scss
    • -4
    • +4
    /lams_tool_chat/web/pages/learning/learning.jsp
  1. … 30 more files in changeset.
LDEV-4412: Audit log entries are created when lessons are removed.

LDEV-4054: Updating Greek and Norwegian

Updating Greek and Norwegian

LDEV-4054: Updating Greek and Norwegian

Updating Greek and Norwegian

LDEV-4417 Popover portraits in Monitoring

LDEV-4417 branch rebased to master and merge conflict of lams.jar resolved.

LDEV-4417 Popover portraits in Monitoring

Implmented in GMap

LDEV-4417 Popover portraits in Monitoring

Implmented in Wiki, DoKumaran

LDEV-4417 Popover portraits in Monitoring

Implmented in Wiki, DoKumaran

LDEV-4417 Popover portraits in Monitoring

Implmented in Scratchie, Spreadsheet, Scribe, Task, Vote

    • -11
    • +6
    /lams_tool_scribe/web/layouts/defaultLayout.jsp
  1. … 21 more files in changeset.
LDEV-4417 Popover portraits in Monitoring

Implmented in Scratchie, Spreadsheet, Scribe, Task, Vote

    • -11
    • +6
    /lams_tool_scribe/web/layouts/defaultLayout.jsp
  1. … 21 more files in changeset.
LDEV-4426 Fix autopatch file name

Some time ago we switched to using dates as autopatch file names

instead of previously used version numbers. So make this aupatch

file name comply with this rule.

LDEV-4424: display larger portrait pic

Display a larger portrait picture when showing the profile options

Merge branch 'LDEV-4419'

LDEV-4419 Add widget for cropping portrait photos

Added widget that allows cropping the image to a standardised size for

webcam and image uploads (in order to make it squarish).

    • -0
    • +250
    /lams_central/web/css/croppie.css
    • -0
    • +7
    /lams_central/web/includes/javascript/croppie.js
Merge branch 'LDEV-4419'

LDEV-4419 Add widget for cropping portrait photos

Added widget that allows cropping the image to a standardised size for

webcam and image uploads (in order to make it squarish).

LDEV-4293 Prevent deadlock exceptions on logout

It seems that a server-side logout not only causes invalidation

exception (which will be dealt with soon), but also puts session fetch

transaction in deadlock. This commit fixed the deadlock.

Merge remote-tracking branch 'origin/master' into lams31

LDEV-4408 Allow session deletion

    • -4
    • +5
    /lams_admin/web/WEB-INF/struts-config.xml
    • -2
    • +2
    /lams_admin/web/WEB-INF/tiles-defs.xml
    • -0
    • +22
    /lams_admin/web/sessionmaintain.jsp
LDEV-4293 Change place where session gets mapped to login

UniversalLoginModule can be accessed without going through SsoHandler

when a session gets replicated. It means that it misses login ->

sessionID mapping which is needed for double login detection. The code

was rewritten to make sure login is properly mapped. It may be optimised

later so the mapping does not happen on every session start.

LDEV-4417 Popover portraits in Monitoring

Implmented in Share Resources, Survey, Leader, Mindmap,

Noticeboard, Notebook, Pixlr, Peer Review

  1. … 28 more files in changeset.
LDEV-4417 Popover portraits in Monitoring

Implmented in Share Resources, Survey, Leader, Mindmap,

Noticeboard, Notebook, Pixlr, Peer Review

  1. … 28 more files in changeset.
Merge LDEV-4408 into lams31

Merge branch 'LDEV-4408'

LDEV-4408 Implement session list in sysadmin

    • -0
    • +12
    /lams_admin/web/WEB-INF/struts-config.xml
    • -0
    • +5
    /lams_admin/web/WEB-INF/tiles-defs.xml
    • -0
    • +16
    /lams_admin/web/sessionlist.jsp
Merge branch 'LDEV-4293' into lams31

LDEV-4400 Update session ID after is gets changed

In LAMS we keep a mapping between session ID and session object. Session

ID gets changed after log in to prevent session fixation attack. We need

to update the mapping too.

LDEV-4402 Reintroduce XML Commons library

The library was supposed to become obsolete after changing XStream cod,

but is still required by Struts and Apache Commons Validator.

Also obsolete entries for JBoss Web and Gson were removed from a

configuration file.

    • binary
    /lams_build/lib/xml-commons/xml-apis.jar
LDEV-4293 Skip isSysAdmin check when there is no session

The code that checks if user is sysadmin depends on HTTP session being

present in SessionManager. It is normally present as the authentication

request goes through SsoHandler which initiates the session. It is not

the case, though, when session gets replicated and UniversalLoginModule

is accessed directly.

The fix skips the check in no session is present, which means that

sysadmin will need to authenticate same as regular user, which is OK for

this edge situation. Session failover still works.