[Rt-commit] rtir branch, 2.6/custom-field-display, created. 2.6.0-28-g45c558f

Ruslan Zakirov ruz at bestpractical.com
Tue Aug 28 18:26:38 EDT 2012


The branch, 2.6/custom-field-display has been created
        at  45c558f824e46033333e79147f728a03e2ce3135 (commit)

- Log -----------------------------------------------------------------
commit fece9ae54132c54b9ad87b9bc2d8e66d35798173
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Thu Jul 21 11:36:46 2011 -0400

    RT 3.8.6 or later could turn off the table in ShowCustomFields
    
    Turning it off means that the basics data and the CF data will share a
    table and line up rather than being askew

diff --git a/html/RTIR/Incident/Display.html b/html/RTIR/Incident/Display.html
index c1ef72c..f999e23 100644
--- a/html/RTIR/Incident/Display.html
+++ b/html/RTIR/Incident/Display.html
@@ -59,9 +59,11 @@
     <td class="label"><&|/l&>Time Worked</&>:</td>
     <td class="value"><%loc('[_1] min', $TimeWorked)%></td>
   </tr>
+
+<& /Elements/ShowCustomFields, Object => $TicketObj, Table => 0 &>
+
 </table>
 
-<& /Elements/ShowCustomFields, Object => $TicketObj &>
 
 </&>
 

commit 2271c65d13a36582eddaf6376a87dc33e51d0cb7
Author: Ruslan Zakirov <ruz at bestpractical.com>
Date:   Tue Aug 16 20:16:44 2011 +0400

    changes in this branch need RT 3.8.6

diff --git a/Makefile.PL b/Makefile.PL
index 7736a43..b0572d4 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -7,8 +7,8 @@ version_from('lib/RT/IR.pm');
 
 { # check RT version
     my @v = split /\./, "$RT::VERSION";
-    unless ($v[0]>=3 && $v[1]>=8 && ($v[2]>=3 || $v[2]eq'HEAD')) {
-        die "RTIR 2.4.2 and newer needs RT 3.8.3 at least, you have $RT::VERSION";
+    unless ($v[0]>=3 && $v[1]>=8 && ($v[2]>=6 || $v[2]eq'HEAD')) {
+        die "RTIR 2.4.2 and newer needs RT 3.8.6 at least, you have $RT::VERSION";
     }
 }
 

commit 45c558f824e46033333e79147f728a03e2ce3135
Author: Ruslan Zakirov <ruz at bestpractical.com>
Date:   Tue Aug 16 20:34:05 2011 +0400

    don't mention RTIR's version when we check RT's

diff --git a/Makefile.PL b/Makefile.PL
index b0572d4..4937e49 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -8,7 +8,7 @@ version_from('lib/RT/IR.pm');
 { # check RT version
     my @v = split /\./, "$RT::VERSION";
     unless ($v[0]>=3 && $v[1]>=8 && ($v[2]>=6 || $v[2]eq'HEAD')) {
-        die "RTIR 2.4.2 and newer needs RT 3.8.6 at least, you have $RT::VERSION";
+        die "Current RTIR version needs RT 3.8.6 at least, you have $RT::VERSION";
     }
 }
 

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


More information about the Rt-commit mailing list