summaryrefslogtreecommitdiff
path: root/demo.html
blob: 8a193481529a2cecba22b71cdafa751335cc59ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<!-- 2015-08-26 -->
<html lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>derivation editor</title>
  <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js" charset="utf-8"></script>
  <script src="https://raw.githubusercontent.com/DmitryBaranovskiy/raphael/v2.1.2/raphael-min.js" type="text/javascript" charset="utf-8"></script>
  <!--<script src="https://raw.githubusercontent.com/marmelab/Raphael.InlineTextEditing/fd578f0eddd4172e6d9b3fde4cb67576cf546dc1/raphael.inline_text_editing.js" charset="utf-8"></script>-->
  <script src="raphael.inline_text_editing.js" charset="utf-8"></script>
  <script src="dummy.js" type="text/javascript" charset="utf-8"></script>
  <script src="derivation-editor.js" type="text/javascript" charset="utf-8"></script>
</head>
<body onload="_demo()">
  <div id="derivation_editor">
    <div id="holder"></div>
  </div>
  <input type="button" value="+" onclick="DE_add_object()" />
  <input type="button" value="reset" onclick="DE_init();" />
  <input type="button" value="D" onclick="DE_extract_data()" />
  <pre id="data"></pre>
  <pre id="debug" style="background:red;width:100%"></pre>
  </pre>
  <h3>Instructions</h3>
  <ul>
    <li><strong>reorder target phrases:</strong> drag and drop the box</li>
    <li><strong>add/remove links:</strong> select a source phrase by clicking on its box, then click on appropriate target phrase (click selected source phrase again to cancel linking)</li>
    <li><strong>edit text:</strong> double click on text, click outside once to stop editing</li>
    <li><strong>add target phrase:</strong> click '+' button to add a new phrase</li>
    <li><strong>remove target phrase:</strong> drag phrase onto red box</li>
    <li><strong>reset:</strong> click 'reset' button to start from scratch</li>
    <li><strong>show recorded data:</strong>click 'D' button</li>
  </ul>
<!--  <h3>TODO</h3>
  <ul>
    <li><strike>edit text and resize, move (dblclick)</strike></li>
    <li><strike>remove objs (move to special field)</strike></li>
    <li><strike>add objs ("+" button, far right)</strike></li>
    <li><strike>add alignments (click source, then target)</strike></li>
    <li><strike>extract data</strike></li>
    <li><strike>integrate into MT system</strike</li>
    <li>integrate in live system</li>
  </ul>
  <h3>known issues</h3>
  <ul>
    <li>text editing is somewhat buggy (hides words while typing)</li>
    <li>instructions should be rewritten</li>
    <li>no undo</li>
    <li>source side is fixed</li>
  </ul> -->
</body>
</html>