Clone Tools
  • last updated a few seconds ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
LDEV-3292: Add an index to Notebook Entries table.

    • -0
    • +12
    ./lamsfoundation/lams/dbupdates/patch2040044.sql
LDEV-3292: Add an index to Notebook Entries table.

    • -0
    • +12
    ./lamsfoundation/lams/dbupdates/patch2040044.sql
LDEV-3514: Get rid of Scratchie's own transaction retry mechanism. Make Assessment aware that Leader's DB UID may not be set yet when checking. Try to recreate Hibernate session after it got closed because of an exception.

    • -0
    • +1
    ./lamsfoundation/lams/applicationContext.xml
  1. … 2 more files in changeset.
LDEV-3514: Get rid of Scratchie's own transaction retry mechanism. Make Assessment aware that Leader's DB UID may not be set yet when checking. Try to recreate Hibernate session after it got closed because of an exception.

    • -0
    • +1
    ./lamsfoundation/lams/applicationContext.xml
  1. … 2 more files in changeset.
LDEV-3514: Add an exception handled by TransactionRetryInterceptor.

LDEV-3514: Add an exception handled by TransactionRetryInterceptor.

LDEV-3514: Use pretInterceptor instead of postInterceptor. Create new transactions for service method retries.

Attach activity to Hibernate session in completeActivity() method.

    • -2
    • +4
    ./lamsfoundation/lams/applicationContext.xml
    • -11
    • +24
    ./lamsfoundation/lams/commonContext.xml
    • -1
    • +1
    ./lamsfoundation/lams/integrationContext.xml
    • -3
    • +3
    ./lamsfoundation/lams/toolApplicationContext.xml
    • -0
    • +30
    ./lamsfoundation/lams/util/ITransactionRetryService.java
    • -0
    • +35
    ./lamsfoundation/lams/util/TransactionRetryService.java
  1. … 34 more files in changeset.
LDEV-3514: Use pretInterceptor instead of postInterceptor. Create new transactions for service method retries.

Attach activity to Hibernate session in completeActivity() method.

    • -1
    • +3
    ./lamsfoundation/lams/applicationContext.xml
    • -11
    • +24
    ./lamsfoundation/lams/commonContext.xml
    • -1
    • +1
    ./lamsfoundation/lams/integrationContext.xml
    • -3
    • +3
    ./lamsfoundation/lams/toolApplicationContext.xml
    • -0
    • +30
    ./lamsfoundation/lams/util/ITransactionRetryService.java
    • -0
    • +35
    ./lamsfoundation/lams/util/TransactionRetryService.java
  1. … 35 more files in changeset.
LDEV-3523: Added subtype to Learning Design

    • -0
    • +12
    ./lamsfoundation/lams/dbupdates/patch02040043.sql
  1. … 7 more files in changeset.
LDEV-3523: Added subtype to Learning Design

    • -0
    • +12
    ./lamsfoundation/lams/dbupdates/patch02040043.sql
  1. … 7 more files in changeset.
LDEV-3514: Use postInterceptor instead of preInterceptor. PreInterceptor apparently runs before Hibernate transaction gets created. When an exception in the proxied method occurs, the transaction is canceled and is not re-created when retry is attempted. This leads to "no session" or "read only transaction on write" errors. PostInterceptor seems to work when the transaction is already created, so retries happen witin its scope.

    • -11
    • +11
    ./lamsfoundation/lams/commonContext.xml
    • -1
    • +1
    ./lamsfoundation/lams/integrationContext.xml
    • -3
    • +3
    ./lamsfoundation/lams/toolApplicationContext.xml
  1. … 34 more files in changeset.
LDEV-3514: Use postInterceptor instead of preInterceptor. PreInterceptor apparently runs before Hibernate transaction gets created. When an exception in the proxied method occurs, the transaction is canceled and is not re-created when retry is attempted. This leads to "no session" or "read only transaction on write" errors. PostInterceptor seems to work when the transaction is already created, so retries happen witin its scope.

    • -11
    • +11
    ./lamsfoundation/lams/commonContext.xml
    • -1
    • +1
    ./lamsfoundation/lams/integrationContext.xml
    • -3
    • +3
    ./lamsfoundation/lams/toolApplicationContext.xml
  1. … 34 more files in changeset.
LDEV-3517 Added new methods for Peer Review tool

    • -0
    • +13
    ./lamsfoundation/lams/rating/dao/IRatingDAO.java
    • -43
    • +15
    ./lamsfoundation/lams/rating/dto/RatingDTO.java
LDEV-3508 Fixed Emails sent from LAMS monitor have wrong sender specified

LDEV-3517 Added new methods for Peer Review tool

    • -0
    • +11
    ./lamsfoundation/lams/rating/dao/IRatingDAO.java
  1. … 1 more file in changeset.
LDEV-3517 Introduced new Peer Review tool

    • -0
    • +2
    ./lamsfoundation/lams/rating/dao/IRatingDAO.java
    • -0
    • +55
    ./lamsfoundation/lams/rating/dto/RatingDTO.java
  1. … 4 more files in changeset.
LDEV-3491: Deleting a learning design no longer removes it from the database. Now it flags removed = true. Calls to get the learning designs in the DAO layer ignore rows where removed = true. Cleaned up some methods in the DAO layer that are no longer used.

    • -0
    • +12
    ./lamsfoundation/lams/dbupdates/patch02040042.sql
  1. … 4 more files in changeset.
LDEV-3491: Deleting a learning design no longer removes it from the database. Accidently removed one too many methods from the interface - putting it back.

LDEV-3491: Deleting a learning design no longer removes it from the database. Now it flags removed = true. Calls to get the learning designs in the DAO layer ignore rows where removed = true. Cleaned up some methods in the DAO layer that are no longer used.

    • -0
    • +12
    ./lamsfoundation/lams/dbupdates/patch02040042.sql
  1. … 4 more files in changeset.
LDEV-3514: Wrap all transactional methods with TransactionRetryInterceptor. Set number of attempts to 3. Remove previous safety mechanism for completeActivity() method.

    • -0
    • +3
    ./lamsfoundation/lams/applicationContext.xml
    • -2
    • +55
    ./lamsfoundation/lams/commonContext.xml
    • -0
    • +5
    ./lamsfoundation/lams/integrationContext.xml
    • -0
    • +15
    ./lamsfoundation/lams/toolApplicationContext.xml
    • -0
    • +66
    ./lamsfoundation/lams/web/filter/TransactionRetryInterceptor.java
  1. … 35 more files in changeset.
LDEV-3514: Wrap all transactional methods with TransactionRetryInterceptor. Set number of attempts to 3. Remove previous safety mechanism for completeActivity() method.

    • -1
    • +4
    ./lamsfoundation/lams/applicationContext.xml
    • -7
    • +60
    ./lamsfoundation/lams/commonContext.xml
    • -1
    • +6
    ./lamsfoundation/lams/integrationContext.xml
    • -0
    • +15
    ./lamsfoundation/lams/toolApplicationContext.xml
    • -0
    • +66
    ./lamsfoundation/lams/web/filter/TransactionRetryInterceptor.java
  1. … 36 more files in changeset.
LDEV-3484: Paging, searching and deletion of learning designs from Blackboard

  1. … 4 more files in changeset.
LDEV-3484: Paging and searching of learning designs

  1. … 5 more files in changeset.
LDEV-3508 Fixed Emails sent from LAMS monitor have wrong sender specified

LDEV-3498: Add Gradebook support when creating LDs in FLA and Single Activity Lessons.

    • -0
    • +9
    ./lamsfoundation/lams/tool/dto/ToolDTO.java
  1. … 7 more files in changeset.
LDEV-3498: Add Gradebook support when creating LDs in FLA and Single Activity Lessons.

    • -0
    • +9
    ./lamsfoundation/lams/tool/dto/ToolDTO.java
  1. … 7 more files in changeset.
LDEV-3486 Assign marks to learner in leader aware tools when he gets force completed

    • -10
    • +20
    ./lamsfoundation/lams/tool/ToolSessionManager.java
  1. … 31 more files in changeset.
LDEV-3489 New question type for marks hedging

  1. … 21 more files in changeset.
LDEV-3485 Add cc field to email student functionality

    • -2
    • +13
    ./lamsfoundation/lams/util/ValidationUtil.java
  1. … 4 more files in changeset.
LDEV-3489 New question type for marks hedging

  1. … 24 more files in changeset.