Clone Tools
  • last updated a few seconds ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
LDEV-4897 Update Scratchie and MCQ to use new Excel exporting methods

  1. … 15 more files in changeset.
LDEV-4897 Introduce ExcelRow and ExcelSheet classes

* Update Daco and Assessment to use new classes

* Move existing ExcelCell and ExcelUtils to .util.excel package

  1. … 30 more files in changeset.
LDEV-4882 Check lesson monitor rights correctly

LDEV-4881 Remove notebook entries from DB on lesson removal

  1. … 4 more files in changeset.
Merge branch 'master' into develop

Conflicts:

lams_learning/src/java/org/lamsfoundation/lams/learning/web/controller/GroupingController.java

  1. … 4 more files in changeset.
LDEV-4874 Restrict displaying names for students that are not within student's group

  1. … 8 more files in changeset.
Merge remote-tracking branch 'origin/master' into develop

LDEV-3839 Check on back end if a lesson can be restarted by a learner

LDEV-4801 Revert changes of FileDAO

They did not lead to fixing the problem and were actually unnecessary:

FileDAO does not use DB connections, so no need for transactions.

  1. … 9 more files in changeset.
LDEV-4802 Make all DAO calls in content repository go through service

Some classes in content repository were using DAO methods directly,

without enveloping them in a transaction. Now they all go through

RepositoryService.

These methods need to start with "dao" prefix so they are not picked up

by CheckCredentialTicketBeforeAdvice.

  1. … 9 more files in changeset.
Merge branch 'master' into develop

  1. … 1 more file in changeset.
LDEV-4803 Remove branching warning when there's no need to warn

* Fix problem with HibernateProxy

* Change warning messages and their presentation

* Further enhancements to choose branching page markup

  1. … 2 more files in changeset.
Merge branch 'master' into develop

LDEV-4802 Stop websocket threads even more gracefully

An exception can occur also when session gets open, not only when it

gets closed.

  1. … 7 more files in changeset.
LDEV-4800 Proceed to the first incompleted activity in a branch, and not to simply the first one

Also display list of child activities for the completed branch, so user

can revisit completed activities.

  1. … 1 more file in changeset.
Merge ordered branching LDEV-4587 into develop

  1. … 20 more files in changeset.
LDEV-4678 Push some util methods to the service layer

Certain static util methods (mainly from LearningWebUtil.java) expect

service beans as a parameter. It was changed by pushing those methods to

the appropriate service layer.

  1. … 15 more files in changeset.
LDEV-4678 Remove all ServiceProxy classes

Also get rid of LearningWebUtil.putActivityPositionInRequest(Long

activityId, HttpServletRequest request, ServletContext context) and

LearningWebUtil.getActivityMapping(ServletContext context) methods. As

it's better to invoke according service methods directly.

  1. … 37 more files in changeset.
LDEV-4696 Make all @ManyToOne and @OneToOne lazy

Hibernate 3 used lazy loading of single-object relationships by default.

JPA's default setting is eager. When loading entities all references are

loaded immediately using JOINs. A large entity, like Learning Design,

can have a query consisting of 25 JOINs. It makes it very slow.

There is no way to change JPA's default behaviour. In order to make JPA

annotations behave like old Hibernate, each of them got an explicit

attribute saying that loading is lazy.

  1. … 166 more files in changeset.
LDEV-4696 Make all @ManyToOne and @OneToOne lazy

Hibernate 3 used lazy loading of single-object relationships by default.

JPA's default setting is eager. When loading entities all references are

loaded immediately using JOINs. A large entity, like Learning Design,

can have a query consisting of 25 JOINs. It makes it very slow.

There is no way to change JPA's default behaviour. In order to make JPA

annotations behave like old Hibernate, each of them got an explicit

attribute saying that loading is lazy.

  1. … 166 more files in changeset.
LDEV-4649 Fix a Hibernate mapping to a column

LDEV-4696 Rewrite part of Common entities to Hibernate annotations

  1. … 24 more files in changeset.
LDEV-4696 Migrate lams_learning to Hibernate annotations

  1. … 10 more files in changeset.
LDEV-4696 start transactions for update* method names

LDEV-4440 Fix Kumalive Controller

  1. … 1 more file in changeset.
LDEV-4440 Live Edit saves and the learner message is back

  1. … 3 more files in changeset.
LDEV-4440 Switch controllers to use @Autowired service beans

Also in cases when service bean in Controller has the same name as in

applicationContext, @Qualifier(..) can be removed. Which was done almost

in all cases, except for messageService due to "messageService" name

seems to be more preferable than adminMessageService,

centralMessageService and so on. Thus they were kept as before:

@Autowired

@Qualifier("centralMessageService")

private MessageService messageService;

  1. … 168 more files in changeset.
LDEV-4440 Make a path to file absolute

References to requestURL can come from various controllers and contexts,

leading to errors.

LDEV-4440 Fix a path for skipping activities in preview

LDEV-4440 Fix parallel activity completed page redirect