[Bps-public-commit] r17686 - in sd/trunk/lib/App/SD: Server

jesse at bestpractical.com jesse at bestpractical.com
Fri Jan 9 17:32:24 EST 2009


Author: jesse
Date: Fri Jan  9 17:32:24 2009
New Revision: 17686

Modified:
   sd/trunk/lib/App/SD/Replica/rt.pm
   sd/trunk/lib/App/SD/Server/View.pm

Log:
* show a few more props in the default ticket list view

Modified: sd/trunk/lib/App/SD/Replica/rt.pm
==============================================================================
--- sd/trunk/lib/App/SD/Replica/rt.pm	(original)
+++ sd/trunk/lib/App/SD/Replica/rt.pm	Fri Jan  9 17:32:24 2009
@@ -136,11 +136,6 @@
 
 =cut
 
-=head2 setup
-
-
-=cut
-
 __PACKAGE__->meta->make_immutable;
 no Moose;
 

Modified: sd/trunk/lib/App/SD/Server/View.pm
==============================================================================
--- sd/trunk/lib/App/SD/Server/View.pm	(original)
+++ sd/trunk/lib/App/SD/Server/View.pm	Fri Jan  9 17:32:24 2009
@@ -411,6 +411,7 @@
             row {
             th { 'id'};
             th {'Status'};
+            th {'Owner'};
             th {'Summary'};
             th {'Created'};
             }
@@ -420,10 +421,10 @@
             row {
 
                 cell { ticket_link( $ticket => $ticket->luid );};
-                cell{ class is 'status';  $ticket->prop('status') };
-                cell { class is 'summary'; $ticket->prop('summary') };
-                cell { class is 'created'; $ticket->prop('created') };
+                for (qw(status owner summary created)) {
 
+                cell{ class is $_;  $ticket->prop($_) };
+                }
                 }
 
             }



More information about the Bps-public-commit mailing list