2022-03-21 11:50:41 +01:00
{% extends 'base.html' %}
{% block content %}
<!-- <iframe src="https://pad.vvvvvvaria.org/wordmord.test" height="800" width="800"></iframe> -->
< table >
< tr >
< td colspan = "3" >
2022-04-01 11:56:47 +02:00
< form method = "POST" >
2022-03-21 11:50:41 +01:00
<!-- <input type="text" id="my_field" value="" wrap="soft"> -->
2022-08-24 07:19:38 +02:00
< textarea name = "file" id = "my_field" wrap = "soft" placeholder = "Επικόλληση του συνδέσμου του PDF του Ποινικού Κώδικα που βρήκατε στο ηλεκτρονικό ταχυδρομείο σας ή στο ΔΙΑΒΑΣΕΜΕ . txt , εδώ .
2022-03-21 11:50:41 +01:00
">< / textarea >
2022-03-21 14:47:16 +01:00
< / form >
2022-03-21 11:50:41 +01:00
< / td >
< / tr >
< tr >
< td colspan = "3" >
< button id = "button3" onclick = "readme()" > ΔΙΑΒΑΣΕΜΕ.txt< / button >
2022-03-21 14:47:16 +01:00
< button id = "button5" onclick = "decode()" > ΠΡΟΒΟΛΗ ΠΟΙΝΙΚΟΥ ΚΩΔΙΚΑ < img src = "{{url_for('static', filename='images/closed.gif')}}" > < / button >
2022-03-21 11:50:41 +01:00
< button id = "button2" onclick = "copy()" > ΑΝΤΙΓΡΑΦΗ ΚΩΔΙΚΑ< / button >
< button id = "button1" onclick = "transform()" > ΜΕΤΑΛΛΑΓΜΕΝΟΣ ΚΩΔΙΚΑΣ< / button >
< button id = "button4" onclick = "window.open('{{url_for('static', filename='pdf/ΣΧ Ε ΔΙ Ο _Μ Ε Τ Α ΛΛΑ ΓΜ Ε Ν Ο Υ _ΠΟ Ι Ν Ι Κ Ο Υ _Κ ΩΔΙ Κ Α _01.pdf')}}');" > ΚΑΤΕΒΑΣΕ ΜΕΤΑΛΛΑΓΜΕΝΟ ΚΩΔΙΚΑ < img src = "{{url_for('static', filename='images/open.gif')}}" > < / button >
< / td >
< / tr >
< tr >
< td >
< div id = "initialpdf" >
< iframe id = "inputpdf" src = "" height = "800rem" width = "750rem" > < / iframe >
< / div >
< / td >
< td >
2022-08-24 07:19:38 +02:00
< textarea name = "empty" contenteditable = "true" id = "empty_frame" wrap = "soft" placeholder = "Επιλέξτε και αντιγράψτε το περιεχόμενο του PDF .
2022-03-21 11:50:41 +01:00
Κάντε επικόλληση του περιεχομένου του Ποινικού Κώδικα εδώ.
Υπάρχει δυνατότητα επεξεργασίας του επικολλημένου κειμένου.
Μπορείτε ν α στείλετε τις τροποποιήσεις που προτείνετε στο mailing list του WordMord https://we.lurk.org/mailman3/lists/wordmord.we.lurk.org/">< / textarea >
2022-08-24 08:35:44 +02:00
2022-03-21 11:50:41 +01:00
< / td >
< td class = "prevent" >
<!-- <iframe id="showmonster" src="{{url_for('static', filename='pdf/ΣΧ Ε ΔΙ Ο _Μ Ε Τ Α ΛΛΑ ΓΜ Ε Ν Ο Υ _ΠΟ Ι Ν Ι Κ Ο Υ _Κ ΩΔΙ Κ Α _01.pdf')}}" height="750rem" width="800rem"></iframe> -->
< iframe id = "showmonster" src = "{{url_for('static', filename='pdf/ΣΧ Ε ΔΙ Ο _Μ Ε Τ Α ΛΛΑ ΓΜ Ε Ν Ο Υ _ΠΟ Ι Ν Ι Κ Ο Υ _Κ ΩΔΙ Κ Α _01.pdf')}}" height = "800rem" width = "750rem" > < / iframe >
< / td >
< / tr >
< / table >
< script >
2022-08-24 07:19:38 +02:00
window.addEventListener('DOMContentLoaded', (e) => {
2022-08-24 08:35:44 +02:00
let input = document.getElementById("empty_frame");
2022-08-24 07:19:38 +02:00
2022-08-24 08:35:44 +02:00
// load default.txt into text area
2022-08-24 07:19:38 +02:00
try {
let fileToLoad = 'static/hocr/gynaikoktonia.hocr';
let xmlhttp = new XMLHttpRequest();
xmlhttp.open('GET', fileToLoad, false);
xmlhttp.send();
input.innerHTML = xmlhttp.responseText;
} catch(DOMException) {
input.innerHTML = "Error loading file. Maybe related to filepath or CORS?";
}
});
2022-03-21 11:50:41 +01:00
function decode() {
var url = document.getElementById("my_field").value;
var urlDecode = decodeURIComponent(url);
// console.log(urlDecode);
document.getElementById("my_field").value = urlDecode;
const showpdf = document.getElementById("inputpdf");
var textarea = document.getElementById('my_field');
var result
function updateResult() {
result.textContent = textarea.value;
}
textarea.addEventListener('keyup', updateResult);
showpdf.src = textarea.value;
const pdf = document.getElementById("initialpdf");
pdf.style.visibility = "visible";
const button2 = document.getElementById("button2");
button2.style.visibility = "visible";
textarea.style.color = "blue";
}
function readme(){
window.open('{{url_for('static',filename='ΔΙΑΒΑΣΕΜΕ.txt')}}');
const button5 = document.getElementById("button5");
button5.style.visibility = "visible";
}
function transform() {
2022-08-24 07:19:38 +02:00
alert("anything");
2022-03-21 11:50:41 +01:00
const show = document.getElementById("showmonster");
show.style.visibility = "visible";
const button4 = document.getElementById("button4");
button4.style.visibility = "visible";
var emptyframe = document.getElementById('empty_frame');
emptyframe.style.color = "blue";
}
function copy() {
const show = document.getElementById("empty_frame");
show.style.visibility = "visible";
const button1 = document.getElementById("button1");
button1.style.visibility = "visible";
}
$(document).ready(function() {
$('form').find("input[type='text'],textarea").val("");
});
// extract the text of a pdf/ copy on clipboard
< / script >
{% endblock %}