Make copying the template a local configuration option

Description

At U-M, instructors add questions in a separate evaluation ordering system, and that data is imported. The data that will be sent to us will have a 1-1 relationship between a template, evaluation, and eval group. For that reason I don't think we need to copy a template when an evaluation is saved, and having copies in the database makes the tables larger and less efficient to process. It also makes the data somewhat more complex than is required for us.

Proposal is 1) to add a new setting to Gonzalo's EVALSYS configuration page UI

GENERAL SETTINGS
Creating templates/evaluations

Copy template when saving new evaluation

and 2) add a condition that defaults to true to EvalEvaluationSetupServiceImpl.saveEvaluation() in trunk and UM branch

if(copyOf) {

/** OLD WAY / new way is to copy the template when the eval is first saved
// make sure the template is copied if not in partial state, it is ok to have the original template while in partial state
if ( EvalUtils.checkStateAfter(evalState, EvalConstants.EVALUATION_STATE_PARTIAL, false) ) {
**/
if (isNew) {
// copy the template on first time saved - http://jira.sakaiproject.org/jira/browse/EVALSYS-647

UM branch

if(copyOf) {

// make sure the template is copied if not in partial state, it is ok to have the original template while in partial state
if ( EvalUtils.checkStateAfter(evalState, EvalConstants.EVALUATION_STATE_PARTIAL, false) ) {
// this eval is not partial anymore so the template MUST be a hidden copy
if (template.getCopyOf() == null ||
template.isHidden() == false) {
// not a hidden copy so make one
Long copiedTemplateId = authoringService.copyTemplate(template.getId(), null, evaluation.getOwner(), true, true);
EvalTemplate copy = authoringService.getTemplateById(copiedTemplateId);
evaluation.setTemplate(copy);
template = copy; // set the new template to the template variable
// alternative is to throw an exception to force the user to do this, but we may as well handle it
// throw new IllegalStateException("This evaluation ("evaluation.getId()") is being saved "
// + "in a state ("evalState") that is after the partial state with "
// + "a template that has not been copied yet, this is invalid as all evaluations must use copied "
// + "templates, copy the template using the authoringService.copyTemplate method before saving this eval");
}
}
}

Environment

U-M

Activity

Show:

Jim Eng November 15, 2010 at 10:34 AM

This is completed in trunk and will be included in 1.4.x. There is no impact on the current behavior of the tool or service except that in the admin page, there's a boolean setting to enable copying of templates, items and scales when creating new evals. By default, this is true, which preserves the previous behavior of evalsys.

If an admin user unchecks that new boolean setting, evalsys will no longer make extra copies of templates, template-items, items and scales each time a new eval is created. One side effect of this is that if a question is used in more than one place, a change in that question takes effect immediately in all evals that reference it. Similarly, if a template is changed, those changes will affect all evals that reference that template.

Jim Eng November 12, 2010 at 8:56 AM

Reopening to merge this to trunk. As described, this will not change the default behavior at all except that the setting will appear in the admin setting page with an default value that preserves the current behavior entirely.

Richard Ellis September 27, 2010 at 12:32 PM

Issue resolved in branch.

Stephen Marquard June 28, 2010 at 6:26 AM

https://sakaiproject.atlassian.net/browse/EVALSYS-647#icft=EVALSYS-647 just changed when in the lifecycle a copy was made - prior to that it, it was made when the evaluation was assigned (iirc), afterwards (currently) it was/is made on initial creation.

Richard Ellis June 25, 2010 at 7:12 AM

>The description of the setting is inaccurate and should be worked on.

Can you suggest a better description?

>Otherwise this is basically a reversion to the functionality
>we had before https://sakaiproject.atlassian.net/browse/EVALSYS-647#icft=EVALSYS-647 so it is fine as long as the is turned off on new installs and off by default.

I think the behavior before https://sakaiproject.atlassian.net/browse/EVALSYS-647#icft=EVALSYS-647 was to always make a copy. We want instead to make it conditional.

Fixed

Details

Assignee

Reporter

Components

Fix versions

Affects versions

Priority

Created February 25, 2010 at 7:01 AM
Updated March 23, 2012 at 6:53 AM
Resolved November 15, 2010 at 10:34 AM

Flag notifications