Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
OLAT CI-CD Testing Project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lars Oliver Dam
OLAT CI-CD Testing Project
Commits
8e264fb6
Commit
8e264fb6
authored
11 years ago
by
gnaegi
Browse files
Options
Downloads
Patches
Plain Diff
OO-904 fix auto-correction of max length in FIB input fields to properly support synonyms
parent
9aa3f43e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/org/olat/ims/qti/editor/FIBItemController.java
+13
-1
13 additions, 1 deletion
src/main/java/org/olat/ims/qti/editor/FIBItemController.java
with
13 additions
and
1 deletion
src/main/java/org/olat/ims/qti/editor/FIBItemController.java
+
13
−
1
View file @
8e264fb6
...
@@ -198,7 +198,19 @@ public class FIBItemController extends DefaultController implements ControllerEv
...
@@ -198,7 +198,19 @@ public class FIBItemController extends DefaultController implements ControllerEv
if
(
size
!=
null
)
response
.
setSizeFromString
(
size
);
if
(
size
!=
null
)
response
.
setSizeFromString
(
size
);
String
maxLength
=
ureq
.
getParameter
(
"maxl_q"
+
i
);
String
maxLength
=
ureq
.
getParameter
(
"maxl_q"
+
i
);
if
(
maxLength
!=
null
)
response
.
setMaxLengthFromString
(
maxLength
);
if
(
maxLength
!=
null
)
response
.
setMaxLengthFromString
(
maxLength
);
if
(
response
.
getCorrectBlank
().
length
()
>
response
.
getMaxLength
())
response
.
setMaxLength
(
response
.
getCorrectBlank
().
length
());
// find longest correct blank in all synonyms of
// correct answers, fix max lenght if a longer value
// is found
String
[]
allCorrect
=
response
.
getCorrectBlank
().
split
(
";"
);
int
longestCorrect
=
0
;
for
(
int
j
=
0
;
j
<
allCorrect
.
length
;
j
++)
{
String
singleCorrect
=
allCorrect
[
j
];
if
(
singleCorrect
.
length
()
>
longestCorrect
)
{
longestCorrect
=
singleCorrect
.
length
();
}
}
if
(
longestCorrect
>
response
.
getMaxLength
())
response
.
setMaxLength
(
longestCorrect
);
}
}
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment