import of rt 3.0.4
[freeside.git] / rt / html / Ticket / Elements / ShowMessageStanza
1 %# BEGIN LICENSE BLOCK
2 %# 
3 %# Copyright (c) 1996-2003 Jesse Vincent <jesse@bestpractical.com>
4 %# 
5 %# (Except where explictly superceded by other copyright notices)
6 %# 
7 %# This work is made available to you under the terms of Version 2 of
8 %# the GNU General Public License. A copy of that license should have
9 %# been provided with this software, but in any event can be snarfed
10 %# from www.gnu.org.
11 %# 
12 %# This work is distributed in the hope that it will be useful, but
13 %# WITHOUT ANY WARRANTY; without even the implied warranty of
14 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 %# General Public License for more details.
16 %# 
17 %# Unless otherwise specified, all modifications, corrections or
18 %# extensions to this work which alter its source code become the
19 %# property of Best Practical Solutions, LLC when submitted for
20 %# inclusion in the work.
21 %# 
22 %# 
23 %# END LICENSE BLOCK
24 <%perl>
25 foreach my $stanza (@$Message) {
26     if ( ref $stanza eq "ARRAY" ) {
27         $m->comp( 'ShowMessageStanza',
28                   Depth   => $Depth + 1,
29                   Transaction => $Transaction,
30                   Message => $stanza );
31     }
32     elsif ( ref $stanza eq "HASH" ) {
33         my $content = $stanza->{raw};
34         RT::Interface::Web::EscapeUTF8(\$content);
35         $m->comp('/Elements/Callback', content => \$content, %ARGS);
36                 $content =~ s/\n/<br>/gi;
37
38 </%perl>
39 <font color="<%$colors[$Depth]%>"><%$content |n%><br></font>
40 %       }
41 % }
42 <%INIT>
43 use URI::URL;
44 my $server = 'fsck.com';
45 my @colors = ('#000000', '#660000', '#006600', '#000066', '#cc0000', '#00cc00', '#0000cc', '#ff0000', '#00ff00', '#0000ff');
46 </%INIT>
47 <%ARGS>
48 $Message => undef
49 $Depth => 0
50 $Transaction => undef
51 </%ARGS>