summaryrefslogtreecommitdiff
path: root/lfpe.js
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2015-07-15 11:00:18 +0200
committerPatrick Simianer <p@simianer.de>2015-07-15 11:00:18 +0200
commitb15e7721ef3a7d886a628ea9ceb94ed79fe8f265 (patch)
tree4b698765a46b50d94b58b077e27d42cfdc0ed6a6 /lfpe.js
parent1767e7d2364af3a1f8a54046cb233376fe88cff7 (diff)
nochange, encodeURIComponent
Diffstat (limited to 'lfpe.js')
-rw-r--r--lfpe.js17
1 files changed, 11 insertions, 6 deletions
diff --git a/lfpe.js b/lfpe.js
index e78332d..3b03d89 100644
--- a/lfpe.js
+++ b/lfpe.js
@@ -123,7 +123,6 @@ function trim(s)
return s.replace(/^\s+|\s+$/g, '');
}
-
/*
* next button
*
@@ -139,6 +138,7 @@ function Next()
var source = document.getElementById("source");
var status = document.getElementById("status");
var oov_correct = document.getElementById("oov_correct");
+ var last_post_edit = document.getElementById("last_post_edit");
// disable button and textarea
button.setAttribute("disabled", "disabled");
@@ -154,10 +154,14 @@ function Next()
var post_edit = trim(target_textarea.value);
if (oov_correct.value=="false" && post_edit != "") {
- // compose request
- next_url += "&example="+source.value+" %7C%7C%7C "+post_edit+"&duration="+Timer.get();
- // update document overview
- document.getElementById("seg_"+(current_seg_id.value)+"_t").innerHTML=post_edit;
+ // compose request
+ next_url += "&example="+encodeURIComponent(source.value)+"%20%7C%7C%7C%20"+encodeURIComponent(post_edit)+"&duration="+Timer.get();
+ // no change?
+ if (post_edit == last_post_edit.value) {
+ next_url += "&nochange=1";
+ }
+ // update document overview
+ document.getElementById("seg_"+(current_seg_id.value)+"_t").innerHTML=post_edit;
} else if (oov_correct.value=="true") {
if (post_edit == "") {
alert("Please provide translations for each word in the 'Source' text area, separated by ';'.");
@@ -166,7 +170,7 @@ function Next()
button.removeAttribute("disabled", "disabled");
return;
}
- next_url += "&correct="+raw_source_textarea.value+" %7C%7C%7C "+post_edit
+ next_url += "&correct="+encodeURIComponent(raw_source_textarea.value)+"%20%7C%7C%7C%20"+encodeURIComponent(post_edit)
} else {
if (source.value != "") {
alert("Please provide a post-edit.");
@@ -269,6 +273,7 @@ function Next()
// remember aux data in DOM
current_seg_id.value = id;
source.value = src;
+ last_post_edit.value = translation;
// confirm to server
var xhr_confirm = CreateCORSRequest('get', base_url+"/confirm");