[Rt-commit] rt branch, 4.2/show-dependency-status, created. rt-4.0.4-302-g3e96578

Thomas Sibley trs at bestpractical.com
Thu Jan 12 14:05:49 EST 2012


The branch, 4.2/show-dependency-status has been created
        at  3e96578c689b53cb519d209ebfcdb751339942ce (commit)

- Log -----------------------------------------------------------------
commit 3e96578c689b53cb519d209ebfcdb751339942ce
Author: Thomas Sibley <trs at bestpractical.com>
Date:   Thu Jan 12 14:01:55 2012 -0500

    Show dependency status (approvals, DependsOn links) at the top of ticket display
    
    This is a quick, one-line heads up about the ticket's state.  It's
    intended to be clear and function similarly to the ExtendedStatus format
    column for consistency.
    
    The styling and placement could be improved.

diff --git a/share/html/NoAuth/css/base/ticket.css b/share/html/NoAuth/css/base/ticket.css
index 3db2b7c..1714196 100644
--- a/share/html/NoAuth/css/base/ticket.css
+++ b/share/html/NoAuth/css/base/ticket.css
@@ -143,4 +143,11 @@
     display: none;
 }
 
+.dependency-status {
+    font-style: italic;
+}
+.dependency-status .summary {
+    font-weight: bold;
+    font-style: normal;
+}
 
diff --git a/share/html/Ticket/Display.html b/share/html/Ticket/Display.html
index 086ccb4..75db97f 100755
--- a/share/html/Ticket/Display.html
+++ b/share/html/Ticket/Display.html
@@ -54,6 +54,7 @@
 
 <& /Elements/ListActions, actions => \@Actions &>
 <& Elements/ShowUpdateStatus, Ticket => $TicketObj &>
+<& Elements/ShowDependencyStatus, Ticket => $TicketObj &>
 
 % $m->callback( %ARGS, Ticket => $TicketObj, CallbackName => 'BeforeShowSummary' );
 <div class="summary">
diff --git a/share/html/Ticket/Elements/ShowDependencyStatus b/share/html/Ticket/Elements/ShowDependencyStatus
new file mode 100644
index 0000000..59085db
--- /dev/null
+++ b/share/html/Ticket/Elements/ShowDependencyStatus
@@ -0,0 +1,78 @@
+%# BEGIN BPS TAGGED BLOCK {{{
+%#
+%# COPYRIGHT:
+%#
+%# This software is Copyright (c) 1996-2012 Best Practical Solutions, LLC
+%#                                          <sales at bestpractical.com>
+%#
+%# (Except where explicitly superseded by other copyright notices)
+%#
+%#
+%# LICENSE:
+%#
+%# This work is made available to you under the terms of Version 2 of
+%# the GNU General Public License. A copy of that license should have
+%# been provided with this software, but in any event can be snarfed
+%# from www.gnu.org.
+%#
+%# This work is distributed in the hope that it will be useful, but
+%# WITHOUT ANY WARRANTY; without even the implied warranty of
+%# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+%# General Public License for more details.
+%#
+%# You should have received a copy of the GNU General Public License
+%# along with this program; if not, write to the Free Software
+%# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+%# 02110-1301 or visit their web page on the internet at
+%# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
+%#
+%#
+%# CONTRIBUTION SUBMISSION POLICY:
+%#
+%# (The following paragraph is not intended to limit the rights granted
+%# to you to modify and distribute this software under the terms of
+%# the GNU General Public License and is only of importance to you if
+%# you choose to contribute your changes and enhancements to the
+%# community by submitting them to Best Practical Solutions, LLC.)
+%#
+%# By intentionally submitting any modifications, corrections or
+%# derivatives to this work, or any other work intended for use with
+%# Request Tracker, to Best Practical Solutions, LLC, you confirm that
+%# you are the copyright holder for those contributions and you grant
+%# Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
+%# royalty-free, perpetual, license to use, copy, create derivative
+%# works based on those contributions, and sublicense and distribute
+%# those contributions and any derivatives thereof.
+%#
+%# END BPS TAGGED BLOCK }}}
+<div class="dependency-status">
+% if ($approvals) {
+    <span class="summary">
+%   if ($approvals == 1) {
+      <&|/l&>Pending approval.</&>
+%   } else {
+      <&|/l, $approvals &>Pending [quant,_1,approval,approvals].</&>
+%   }
+    </span>
+  <&|/l&>This ticket cannot be resolved until it is approved.</&>
+% } else {
+  <span class="summary"><&|/l, $depends &>Pending [quant,_1,ticket,tickets].</&></span>
+  <&|/l&>This ticket cannot be resolved until its dependencies are resolved.</&>
+% }
+</div>
+<%args>
+$Ticket
+</%args>
+<%init>
+# normal tickets
+my $deps = $Ticket->UnresolvedDependencies;
+$deps->Limit( FIELD => 'Type', VALUE => 'ticket' );
+my $depends = $deps->Count || 0;
+
+# approvals
+$deps = $Ticket->UnresolvedDependencies;
+$deps->Limit( FIELD => 'Type', VALUE => 'approval' );
+my $approvals = $deps->Count || 0;
+
+return unless $depends or $approvals;
+</%init>

-----------------------------------------------------------------------


More information about the Rt-commit mailing list