File: AgentSpelling.dtl

package info (click to toggle)
otrs2 2.2.7-2lenny3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 13,444 kB
  • ctags: 5,808
  • sloc: perl: 129,825; xml: 16,139; sql: 11,400; sh: 1,198; makefile: 31; php: 16
file content (111 lines) | stat: -rw-r--r-- 3,967 bytes parent folder | download
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# --
# AgentSpelling.dtl - provides HTML form for AgentSpelling
# Copyright (C) 2001-2008 OTRS AG, http://otrs.org/
# --
# $Id: AgentSpelling.dtl,v 1.16.2.1 2008/02/20 22:20:21 martin Exp $
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
# did not receive this file, see http://www.gnu.org/licenses/gpl-2.0.txt.
# --

<!-- start Spelling form -->
<script language="JavaScript" type="text/javascript">
<!--

function updateMessage() {
    if (parent.opener.closed) {
        alert('$JSText{"The message being composed has been closed.  Exiting."}');
        this.close();
        return;
    }

    if (!parent.opener.document.compose) {
        alert('$JSText{"This window must be called from compose window"}');
        this.close();
        return;
    }

    parent.opener.document.compose.$QData{"Field"}.value = document.spelling.Body.value
    this.close();
}

function change_selected(sel) {
    start_elements = (5 * sel) - 1;

    if (document.spelling.elements[0].name == "$Config{"SessionName"}") {
        start_elements = start_elements + 1;
    }

    if (!document.spelling.elements[start_elements].checked) {
        document.spelling.elements[start_elements].checked = true;
    }
}

//-->
</script>

<table border="0" width="100%" cellspacing="0" cellpadding="3">
  <tr>
    <td class="mainhead">
      $Env{"Box0"}$Text{"Spell Checker"} - $Data{"SpellCounter"} $Text{"spelling error(s)"} $Env{"Box1"}
    </td>
  </tr>
  <tr>
    <td class="mainbody">
      <form action="$Env{"CGIHandle"}" method="post" enctype="multipart/form-data" name="spelling">
        <input type="hidden" name="Action" value="AgentSpelling">
        <input type="hidden" name="Field" value="$QData{"Field"}">
        <table border="0" width="100%" cellspacing="0" cellpadding="1">
          <tr>
            <th width="50">$Text{"Line"}</th>
            <th width="100">$Text{"Word"}</th>
            <th colspan="2">$Text{"replace with"}</th>
            <th width="50">$Text{"Change"}</th>
            <th width="50">$Text{"Ignore"}</th>
          </tr>
<!-- dtl:block:Row -->
          <tr>
            <td align="center">$QData{"Line"}</td>
            <td>
              <font color="red">$QData{"Word"}</font>
              <input type="hidden" name="SpellCheckOld::$QData{"Count"}" value="$QData{"Word"}">
            </td>
            <td>$Data{"OptionList"}</td>
            <td>
              $Text{"or"}
              <input type="text" name="SpellCheckOrReplace::$QData{"Count"}" value="" size="20" onchange="change_selected($QData{"Count"})">
            </td>
            <td align="center">
              <input type="radio" name="SpellCheck::Replace::$QData{"Count"}" value="$QData{"Word"}">
            </td>
            <td align="center">
              <input type="radio" name="SpellCheck::Replace::$QData{"Count"}" value="" checked="checked">
            </td>
          </tr>
<!-- dtl:block:Row -->
        </table>
        <hr>
        <table border="0" width="580" cellspacing="0" cellpadding="1">
          <tr>
            <td>
              <input class="button" type="submit" value="$Text{"Apply these changes"}">
              <input class="button" type="reset" value="$Text{"Reset"}">
            </td>
            <td>
              $Text{"Language"}: $Data{"SpellLanguageString"}
            </td>
          </tr>
        </table>
        <textarea name="Body" rows="22" cols="78" wrap="$Env{"BrowserWrap"}">$Data{"Body"}</textarea>
        <br/>
        <input class="button" type="button" onclick="updateMessage();" value="$Text{"Done"}">
        <i>($Text{"Return to the compose screen"})</i>
        <input class="button" type="button" onclick="window.close();" value="$Text{"Cancel"}">
        <i>($Text{"Discard all changes and return to the compose screen"})</i>
      </form>
      <hr>
    </td>
  </tr>
</table>
<!-- end Spelling form -->