[Rt-commit] r4710 - in rtir/branches/1.9-EXPERIMENTAL: . html/Callbacks/RTIR/Elements/RT__Ticket/ColumnMap html/RTIR/Elements html/RTIR/Incident html/RTIR/Report

ruz at bestpractical.com ruz at bestpractical.com
Wed Mar 8 15:47:44 EST 2006


Author: ruz
Date: Wed Mar  8 15:47:43 2006
New Revision: 4710

Modified:
   rtir/branches/1.9-EXPERIMENTAL/   (props changed)
   rtir/branches/1.9-EXPERIMENTAL/html/Callbacks/RTIR/Elements/RT__Ticket/ColumnMap/ColumnMap
   rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Elements/ShowChildren
   rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Incident/BulkAbandon.html
   rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Incident/LinkChildren.html
   rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Incident/Reply.html
   rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Merge.html
   rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Report/BulkReject.html

Log:
 r890 at cubic-pc:  cubic | 2006-03-08 01:39:02 +0300
 * rename _RTIR_{Check,Radio} in COLUMNMAP to RTIR_{Check,Radio}
   (without leading underscore char)


Modified: rtir/branches/1.9-EXPERIMENTAL/html/Callbacks/RTIR/Elements/RT__Ticket/ColumnMap/ColumnMap
==============================================================================
--- rtir/branches/1.9-EXPERIMENTAL/html/Callbacks/RTIR/Elements/RT__Ticket/ColumnMap/ColumnMap	(original)
+++ rtir/branches/1.9-EXPERIMENTAL/html/Callbacks/RTIR/Elements/RT__Ticket/ColumnMap/ColumnMap	Wed Mar  8 15:47:43 2006
@@ -35,7 +35,7 @@
 }
 
 # This is scary and should totally be refactored -- jesse
-$COLUMN_MAP->{'_RTIR_Check'} = {
+$COLUMN_MAP->{'RTIR_Check'} = {
     title => sub {
         return ( \qq{<input type="checkbox" name="AllSelectedTickets" value="1"
                             onclick="setCheckbox(this.form, 'SelectedTickets', this.checked)" />} );
@@ -48,7 +48,7 @@
     },
 };
 
-$COLUMN_MAP->{'_RTIR_Radio'} = {
+$COLUMN_MAP->{'RTIR_Radio'} = {
     title => '&nbsp;',
     value => sub {
         my $selected = '';

Modified: rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Elements/ShowChildren
==============================================================================
--- rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Elements/ShowChildren	(original)
+++ rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Elements/ShowChildren	Wed Mar  8 15:47:43 2006
@@ -64,7 +64,7 @@
 
 $Format ||= RT->Config->Get('RTIRSearchResultFormats')->{'Child' . $Type};
 if ($Delete) {
-    $Format = "___RTIR_Check__, " . $Format;
+    $Format = "__RTIR_Check__, " . $Format;
 }
 
 my $children = new RT::Tickets($session{'CurrentUser'});

Modified: rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Incident/BulkAbandon.html
==============================================================================
--- rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Incident/BulkAbandon.html	(original)
+++ rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Incident/BulkAbandon.html	Wed Mar  8 15:47:43 2006
@@ -48,7 +48,7 @@
     Queue       => $Queue,
     BaseQuery   => $BaseQuery,
     Query       => $Query,
-    Format      => '___RTIR_Check__,'. $Format,
+    Format      => '__RTIR_Check__,'. $Format,
     Rows        => $Rows,
     OrderBy     => $OrderBy,
     Order       => $Order,

Modified: rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Incident/LinkChildren.html
==============================================================================
--- rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Incident/LinkChildren.html	(original)
+++ rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Incident/LinkChildren.html	Wed Mar  8 15:47:43 2006
@@ -42,7 +42,7 @@
     Queue       => $Queue,
     BaseQuery   => $BaseQuery,
     Query       => $Query,
-    Format      => "___RTIR_Check__,". $Format,
+    Format      => "__RTIR_Check__,". $Format,
     Rows        => $Rows,
     Page        => $Page,
     OrderBy     => $OrderBy,

Modified: rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Incident/Reply.html
==============================================================================
--- rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Incident/Reply.html	(original)
+++ rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Incident/Reply.html	Wed Mar  8 15:47:43 2006
@@ -45,7 +45,7 @@
     Queue       => 'Incident Reports',
     BaseQuery   => $BaseQuery,
     Query       => "($Query) AND Queue = 'Incident Reports'",
-    Format      => '___RTIR_Check__,'. $Format,
+    Format      => '__RTIR_Check__,'. $Format,
     Rows        => $Rows,
     Page        => $Page,
     OrderBy     => $OrderBy,
@@ -60,7 +60,7 @@
     Queue       => 'Investigations',
     BaseQuery   => $BaseQuery,
     Query       => "($Query) AND Queue = 'Investigations'",
-    Format      => '___RTIR_Check__,'. $Format,
+    Format      => '__RTIR_Check__,'. $Format,
     Rows        => $Rows,
     Page        => $Page,
     OrderBy     => $OrderBy,

Modified: rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Merge.html
==============================================================================
--- rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Merge.html	(original)
+++ rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Merge.html	Wed Mar  8 15:47:43 2006
@@ -55,7 +55,7 @@
     Query => $Query,
     QueryString => $QueryString, 
     BaseURL => RT->Config->Get('WebPath')."/RTIR/Merge.html?id=$id&",
-    Format => '___RTIR_Radio__,'. $Format,
+    Format => '__RTIR_Radio__,'. $Format,
     &>
 
 <hr>

Modified: rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Report/BulkReject.html
==============================================================================
--- rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Report/BulkReject.html	(original)
+++ rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Report/BulkReject.html	Wed Mar  8 15:47:43 2006
@@ -45,7 +45,7 @@
     Queue     => $Queue,
     BaseQuery => $BaseQuery,
     Query     => $Query,
-    Format    => '___RTIR_Check__,'. $Format,
+    Format    => '__RTIR_Check__,'. $Format,
     Rows      => $Rows,
     Page      => $Page,
     OrderBy   => $OrderBy,


More information about the Rt-commit mailing list