This commit was generated by cvs2svn to compensate for changes in r10640,
[freeside.git] / rt / share / html / Ticket / Elements / ShowHistory
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %#
3 %# COPYRIGHT:
4 %#
5 %# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
6 %#                                          <sales@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 = '';
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 <div class="history">
80 <& /Widgets/TitleBoxStart, title => $title, titleright_raw => $titleright &>
81 % }
82
83 <div id="ticket-history">
84 <%perl>
85 my @attachments = @{$Attachments->ItemsArrayRef()};
86 my @attachment_content = @{$AttachmentContent->ItemsArrayRef()};
87
88 while ( my $Transaction = $Transactions->Next ) {
89     my $skip = 0;
90     $m->callback(
91         %ARGS,
92         Transaction   => $Transaction,
93         skip          => \$skip,
94         CallbackName  => 'SkipTransaction',
95     );
96     next if $skip;
97
98     $i++;
99
100     my @trans_attachments = grep { $_->TransactionId == $Transaction->Id } @attachments;
101
102     my $trans_content = {};
103     grep { ($_->TransactionId == $Transaction->Id ) && ($trans_content->{$_->Id} = $_)  } @attachment_content;
104
105    
106     my $IsLastTransaction = 0;
107     if ( $OldestFirst ) {
108         $IsLastTransaction = $Transactions->IsLast;
109     } else {
110         $IsLastTransaction = 1 if ( $i == 1 );
111     }
112
113     #Args is first because we're clobbering the "Attachments" parameter 
114     $m->comp( 'ShowTransaction',
115             %ARGS,
116
117               Ticket               => $Ticket,
118               Transaction          => $Transaction,
119               ShowHeaders          => $ShowHeaders,
120               RowNum               => $i,
121               Attachments          => \@trans_attachments,
122               AttachmentContent    => $trans_content,
123               LastTransaction      => $IsLastTransaction
124  );
125
126 # manually flush the content buffer after each txn, so the user sees
127 # some update
128 $m->flush_buffer(); 
129 }
130
131 </%perl>
132 </div>
133 % if ($ShowDisplayModes or $ShowTitle) {
134 <& /Widgets/TitleBoxEnd &>
135 </div>
136 % }
137 <%INIT>
138 my $Transactions = new RT::Transactions($session{'CurrentUser'});
139 if ($Tickets) {
140     while (my $t = $Tickets->Next) {
141         $Transactions->LimitToTicket($t->id);
142     }
143 } else {
144     $Transactions = $Ticket->Transactions;
145 }
146
147
148 my $OldestFirst = RT->Config->Get( 'OldestTransactionsFirst', $session{'CurrentUser'} );
149 my $SortOrder = $OldestFirst? 'ASC': 'DESC';
150 $Transactions->OrderByCols( { FIELD => 'Created',
151                               ORDER => $SortOrder },
152                             { FIELD => 'id',
153                               ORDER => $SortOrder },
154                           );
155
156 my $i;
157 $Attachments ||=  $m->comp('/Ticket/Elements/FindAttachments', Ticket => $Ticket, Tickets => $Tickets || undef);
158 $AttachmentContent ||= $m->comp('/Ticket/Elements/LoadTextAttachments', Ticket => $Ticket);
159
160 </%INIT>
161 <%ARGS>
162 $URIFile => RT->Config->Get('WebPath')."/Ticket/Display.html"
163 $Ticket => undef
164 $Tickets => undef
165 $Attachments => undef
166 $AttachmentContent => undef
167 $ShowHeaders => undef
168 $ShowTitle => 1
169 $ShowDisplayModes => 1
170 $WarnUnsigned => undef
171 </%ARGS>