File: AgentBook.dtl

package info (click to toggle)
otrs2 2.0.4p01-18
  • links: PTS
  • area: main
  • in suites: etch
  • size: 7,900 kB
  • ctags: 4,437
  • sloc: perl: 81,607; xml: 8,135; sql: 8,013; sh: 1,113; makefile: 22; php: 16
file content (129 lines) | stat: -rw-r--r-- 3,547 bytes parent folder | download | duplicates (2)
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# --
# AgentSpelling.dtl - provides HTML form for AgentSpelling
# Copyright (C) 2001-2004 Martin Edenhofer <martin+code@otrs.org>
# --
# $Id: AgentBook.dtl,v 1.6 2004/11/04 11:04:39 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.txt.
# --
<!-- start Spelling form -->
<script language="JavaScript" type="text/javascript">
<!--

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

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

    parent.opener.document.compose.To.value = document.book.To.value
    parent.opener.document.compose.Cc.value = document.book.Cc.value
    parent.opener.document.compose.Bcc.value = document.book.Bcc.value

    this.close();
}

//-->
</script>

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

function AddToAddress(x)
{
    if (document.book.To.value) {
        document.book.To.value = document.book.To.value + ', ';
    }
    document.book.To.value = document.book.To.value + x;
}

function AddCcAddress(x)
{
    if (document.book.Cc.value) {
        document.book.Cc.value = document.book.Cc.value + ', ';
    }
    document.book.Cc.value = document.book.Cc.value + x;
}

function AddBccAddress(x)
{
    if (document.book.Bcc.value) {
        document.book.Bcc.value = document.book.Bcc.value + ', ';
    }
    document.book.Bcc.value = document.book.Bcc.value + x;
}

//-->
</script>

<table border="0" width="100%" cellspacing="0" cellpadding="3" cols="1">
<tr>
  <td class="mainhead">
    $Env{"Box0"}$Text{"Address Book"}$Env{"Box1"}
  </td>
</tr>
<tr>
  <td class="mainbody">

  <form action="$Env{"CGIHandle"}" method="post" enctype="multipart/form-data" name="book">
  <input type="hidden" name="Action" value="AgentBook">

<table border="0" cellspacing="0" cellpadding="1">
<tr>
  <td>$Text{"To"}:</td><td> <input type="text" name="To" value="$QData{"To"}" size="80"></td>
</tr>
<tr>
  <td>$Text{"Cc"}:</td><td> <input type="text" name="Cc" value="$QData{"Cc"}" size="80"></td>
</tr>
</tr>
<tr>
  <td>$Text{"Bcc"}:</td><td> <input type="text" name="Bcc" value="$QData{"Bcc"}" size="80"></td>
</tr>
</table>

<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>

<hr>
<table border="0" cellspacing="0" cellpadding="1">
<tr>
  <td>
    <input type="text" name="Search" value="">
    <input class="button" type="submit" value="$Text{"Search"}">
    <input class="button" type="reset" value="$Text{"Reset"}">
  </td>
</tr>
</table>

<table width="100%" border="0" cellspacing="2" cellpadding="2">
<!-- dtl:block:Row -->
<tr>
  <td>$QData{"Name"}</td>
  <td><a href="" onclick="AddToAddress('$QData{"Email"}'); return false;">$Text{"To"}</a></td>
  <td><a href="" onclick="AddCcAddress('$QData{"Email"}'); return false;">$Text{"Cc"}</a></td>
  <td><a href="" onclick="AddBccAddress('$QData{"Email"}'); return false;">$Text{"Bcc"}</a></td>
</tr>
<!-- dtl:block:Row -->
</table>

  <hr>

  </td>
</tr>
</table>
<!-- end Spelling form -->