import rt 3.8.8
[freeside.git] / rt / html / Ticket / Elements / ShowHistory
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %# 
3 %# COPYRIGHT:
4 %#  
5 %# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
6 %#                                          <jesse@bestpractical.com>
7 %# 
8 %# (Except where explicitly superseded by other copyright notices)
9 %# 
10 %# 
11 %# LICENSE:
12 %# 
13 %# This work is made available to you under the terms of Version 2 of
14 %# the GNU General Public License. A copy of that license should have
15 %# been provided with this software, but in any event can be snarfed
16 %# from www.gnu.org.
17 %# 
18 %# This work is distributed in the hope that it will be useful, but
19 %# WITHOUT ANY WARRANTY; without even the implied warranty of
20 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 %# General Public License for more details.
22 %# 
23 %# You should have received a copy of the GNU General Public License
24 %# along with this program; if not, write to the Free Software
25 %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26 %# 02110-1301 or visit their web page on the internet at
27 %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
28 %# 
29 %# 
30 %# CONTRIBUTION SUBMISSION POLICY:
31 %# 
32 %# (The following paragraph is not intended to limit the rights granted
33 %# to you to modify and distribute this software under the terms of
34 %# the GNU General Public License and is only of importance to you if
35 %# you choose to contribute your changes and enhancements to the
36 %# community by submitting them to Best Practical Solutions, LLC.)
37 %# 
38 %# By intentionally submitting any modifications, corrections or
39 %# derivatives to this work, or any other work intended for use with
40 %# Request Tracker, to Best Practical Solutions, LLC, you confirm that
41 %# you are the copyright holder for those contributions and you grant
42 %# Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
43 %# royalty-free, perpetual, license to use, copy, create derivative
44 %# works based on those contributions, and sublicense and distribute
45 %# those contributions and any derivatives thereof.
46 %# 
47 %# END BPS TAGGED BLOCK }}}
48 <%doc>
49 #   This is (ab)used in Admin/(Users|Groups)/History.html and should probably
50 #   be generalized at some point.
51 </%doc>
52 <%perl>
53 if ($ShowDisplayModes or $ShowTitle) {
54     my $title = $ShowTitle
55                     ? loc('History')
56                     : '&nbsp;';
57
58     my $titleright;
59
60     if ($ShowDisplayModes) {
61         $titleright = q[<span style="color: black">] . loc('Display mode') . ':</span> ';
62         
63         if ($ShowHeaders) {
64             $titleright .= qq{<a href="$URIFile?id=} .
65                            $Ticket->id.qq{">} .
66                            loc("Brief headers") .
67                            qq{</a> &mdash; };
68             $titleright .= q[<span class="selected">] . loc("Full headers") . "</span>";
69         }
70         else {
71             $titleright .= q[<span class="selected">] . loc("Brief headers") . "</span> &mdash; ";
72             $titleright .= qq{<a href="$URIFile?ShowHeaders=1;id=} .
73                            $Ticket->id.qq{">} .
74                            loc("Full headers") .
75                            qq{</a>};
76         }
77     }
78 </%perl>
79 <& /Widgets/TitleBoxStart, title => $title, titleright => $titleright &>
80 % }
81
82 <div id="ticket-history">
83 <%perl>
84 my @attachments = @{$Attachments->ItemsArrayRef()};
85 my @attachment_content = @{$AttachmentContent->ItemsArrayRef()};
86
87 while ( my $Transaction = $Transactions->Next ) {
88     my $skip = 0;
89     $m->comp( '/Elements/Callback',
90               _CallbackName => 'SkipTransaction',
91               Transaction   => $Transaction,
92               skip          => \$skip,
93               %ARGS );
94     next if $skip;
95     $i++;
96
97     my @trans_attachments = grep { $_->TransactionId == $Transaction->Id } @attachments;
98
99     my $trans_content = {};
100     grep { ($_->TransactionId == $Transaction->Id ) && ($trans_content->{$_->Id} = $_)  } @attachment_content;
101
102    
103     #Args is first because we're clobbering the "Attachments" parameter 
104     $m->comp( 'ShowTransaction',
105             %ARGS,
106
107               AttachPath           => $AttachPath,
108               UpdatePath           => $UpdatePath,
109               Ticket               => $Ticket,
110               Transaction          => $Transaction,
111               ShowHeaders          => $ShowHeaders,
112               Collapsed            => $Collapsed,
113               RowNum               => $i,
114               ShowTitleBarCommands => $ShowTitleBarCommands,
115               Attachments          => \@trans_attachments,
116               AttachmentContent    => $trans_content,
117               LastTransaction      => $Transactions->IsLast
118  );
119
120 # manually flush the content buffer after each txn, so the user sees
121 # some update
122 $m->flush_buffer(); 
123 }
124
125 </%perl>
126 </div>
127 % if ($ShowDisplayModes or $ShowTitle) {
128 <& /Widgets/TitleBoxEnd &>
129 % }
130 <%INIT>
131 my $Transactions = new RT::Transactions($session{'CurrentUser'});
132 if ($Tickets) {
133     while (my $t = $Tickets->Next) {
134         $Transactions->LimitToTicket($t->id);
135     }
136 } else {
137     $Transactions = $Ticket->Transactions;
138 }
139
140
141 my $OldestFirst = $RT::OldestTransactionsFirst? 'ASC': 'DESC';
142 $Transactions->OrderByCols( { FIELD => 'Created',
143                               ORDER => $OldestFirst },
144                             { FIELD => 'id',
145                               ORDER => $OldestFirst },
146                           );
147
148 my $i;
149 $Attachments ||=  $m->comp('/Ticket/Elements/FindAttachments', Ticket => $Ticket, Tickets => $Tickets || undef);
150 $AttachmentContent ||= $m->comp('/Ticket/Elements/LoadTextAttachments', Ticket => $Ticket);
151
152 </%INIT>
153 <%ARGS>
154 $URIFile => $RT::WebPath."/Ticket/Display.html"
155 $Ticket => undef
156 $Tickets => undef
157 $Attachments => undef
158 $AttachmentContent => undef
159 $ShowHeaders => undef
160 $Collapsed => undef
161 $ShowTitle => 1
162 $ShowDisplayModes => 1
163 $ShowTitleBarCommands => 1
164 $AttachPath => $RT::WebPath."/Ticket/Attachment"
165 $UpdatePath => $RT::WebPath."/Ticket/Update.html"
166 </%ARGS>