[Bps-public-commit] rt-extension-excelfeed branch, master, updated. 0.05-12-g21c7262

? sunnavy sunnavy at bestpractical.com
Fri Jul 17 16:44:48 EDT 2020


The branch, master has been updated
       via  21c7262afea2b5a3705c0570ee89dca7728e039f (commit)
       via  8ddf90f5c20d00c71eb65f041760405bc26667e2 (commit)
       via  04338d587b2cb40708268cb895499a3ad23bcc08 (commit)
       via  c43cc784f005451f15ad6ee262fc20ec2f3076d5 (commit)
       via  6dd40ddfae14b9f78658283a97b32db2261ddbbb (commit)
       via  a9b49d2090b2f3189361a7c601de6757221d467b (commit)
       via  064ebea673c15429a6dc8d8f77de56fb22c0b114 (commit)
       via  231e29e7b43e0e2a7ed5b1cddec9fd5359bd2ed1 (commit)
       via  bd5bed291f0b469dedaad1051f21a27984d8e611 (commit)
       via  11b11146c8e7188fa306880c2e20de1d2ad548ec (commit)
       via  cab16ccc1ccfb7b67f3339429ae6ccdb7b43e8ba (commit)
       via  4a83bf873a23aca6351ddf63c8162b898792a8ce (commit)
      from  0438f7596a172e04a44dd3775f69ce9079827e3b (commit)

Summary of changes:
 Changes                                            |  4 +++
 MANIFEST                                           |  1 -
 META.yml                                           |  8 ++---
 Makefile.PL                                        |  5 +--
 README                                             | 20 +++++-------
 etc/tabs_privileged_callback_44.patch              | 32 -------------------
 .../Elements/Tabs/Privileged                       |  5 ++-
 .../Search/Elements/Chart/AfterChartTable          |  2 +-
 inc/Module/Install/RTx.pm                          | 36 ++++++++++++++++------
 lib/RT/Extension/ExcelFeed.pm                      | 22 ++++++-------
 10 files changed, 57 insertions(+), 78 deletions(-)
 delete mode 100644 etc/tabs_privileged_callback_44.patch

- Log -----------------------------------------------------------------
commit 4a83bf873a23aca6351ddf63c8162b898792a8ce
Author: Aaron Trevena <aaron at aarontrevena.co.uk>
Date:   Thu Jul 9 18:40:41 2020 +0100

    remove un-necessary tabs_privileged_callback_44.patch
    
    The tabs_privileged_callback.patch also works for 4.4.0 and 4.4.1.

diff --git a/README b/README
index f6befce..ce03eb6 100644
--- a/README
+++ b/README
@@ -33,14 +33,10 @@ INSTALLATION
 
             patch -p1 -d /path/to/rt < etc/chart_callback.patch
 
-        Apply for 4.2:
+        Apply for 4.2, 4.4.0 and 4.4.1. Not needed for 4.4.2 or later:
 
             patch -p1 -d /path/to/rt < etc/tabs_privileged_callback.patch
 
-        Apply for 4.4:
-
-            patch -p1 -d /path/to/rt < etc/tabs_privileged_callback_44.patch
-
     Add this line to /opt/rt4/etc/RT_SiteConfig.pm
             Plugin('RT::Extension::ExcelFeed');
 
diff --git a/etc/tabs_privileged_callback_44.patch b/etc/tabs_privileged_callback_44.patch
deleted file mode 100644
index 7d57e33..0000000
--- a/etc/tabs_privileged_callback_44.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-diff --git a/share/html/Elements/Tabs b/share/html/Elements/Tabs
-index e672e3b..07e94e6 100644
---- a/share/html/Elements/Tabs
-+++ b/share/html/Elements/Tabs
-@@ -825,6 +825,9 @@ my $build_main_nav = sub {
-         }
-     }
- 
-+    # Scope here so we can share in the Privileged callback
-+    my $args      = '';
-+    my $has_query = '';
-     if (
-         (
-                $request_path =~ m{^/(?:Ticket|Search)/}
-@@ -835,8 +838,6 @@ my $build_main_nav = sub {
-       )
-     {
-         my $search = Menu()->child('search')->child('tickets');
--        my $args      = '';
--        my $has_query = '';
-         my $current_search = $session{"CurrentSearchHash"} || {};
-         my $search_id = $DECODED_ARGS->{'SavedSearchLoad'} || $DECODED_ARGS->{'SavedSearchId'} || $current_search->{'SearchId'} || '';
-         my $chart_id = $DECODED_ARGS->{'SavedChartSearchId'} || $current_search->{SavedChartSearchId};
-@@ -1107,7 +1108,7 @@ my $build_main_nav = sub {
-         PageMenu()->child( edit => title => loc('Edit'), path => '/Prefs/MyRT.html' );
-     }
- 
--    $m->callback( CallbackName => 'Privileged', Path => $request_path, ARGSRef => \%ARGS );
-+    $m->callback( CallbackName => 'Privileged', Path => $request_path, ARGSRef => \%ARGS, Search_Args => $args, Has_Query => $has_query );
- };
- 
- my $build_selfservice_nav = sub {
diff --git a/lib/RT/Extension/ExcelFeed.pm b/lib/RT/Extension/ExcelFeed.pm
index 074c671..1855a2d 100644
--- a/lib/RT/Extension/ExcelFeed.pm
+++ b/lib/RT/Extension/ExcelFeed.pm
@@ -49,14 +49,10 @@ Apply for 4.2 and 4.4.0. Not needed for 4.2.13 or later, or 4.4.1.
 
     patch -p1 -d /path/to/rt < etc/chart_callback.patch
 
-Apply for 4.2:
+Apply for 4.2, 4.4.0 and 4.4.1. Not needed for 4.4.2 or later:
 
     patch -p1 -d /path/to/rt < etc/tabs_privileged_callback.patch
 
-Apply for 4.4:
-
-    patch -p1 -d /path/to/rt < etc/tabs_privileged_callback_44.patch
-
 =item Add this line to F</opt/rt4/etc/RT_SiteConfig.pm>
 
     Plugin('RT::Extension::ExcelFeed');

commit cab16ccc1ccfb7b67f3339429ae6ccdb7b43e8ba
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Sat Jul 18 03:41:22 2020 +0800

    Update M:I

diff --git a/META.yml b/META.yml
index 47bda89..8bce5a6 100644
--- a/META.yml
+++ b/META.yml
@@ -25,6 +25,6 @@ requires:
 resources:
   license: http://opensource.org/licenses/gpl-license.php
 version: '0.05'
-x_module_install_rtx_version: '0.40'
+x_module_install_rtx_version: '0.42'
 x_requires_rt: 4.2.0
 x_rt_too_new: 4.6.0
diff --git a/inc/Module/Install/RTx.pm b/inc/Module/Install/RTx.pm
index 7cad529..2dd9489 100644
--- a/inc/Module/Install/RTx.pm
+++ b/inc/Module/Install/RTx.pm
@@ -6,9 +6,10 @@ use strict;
 use warnings;
 no warnings 'once';
 
+use Term::ANSIColor qw(:constants);
 use Module::Install::Base;
 use base 'Module::Install::Base';
-our $VERSION = '0.40';
+our $VERSION = '0.42';
 
 use FindBin;
 use File::Glob     ();
@@ -53,7 +54,7 @@ sub RTx {
         my @look = @INC;
         unshift @look, grep {defined and -d $_} @try;
         push @look, grep {defined and -d $_}
-            map { ( "$_/rt4/lib", "$_/lib/rt4", "$_/lib" ) } @prefixes;
+            map { ( "$_/rt5/lib", "$_/lib/rt5", "$_/rt4/lib", "$_/lib/rt4", "$_/lib" ) } @prefixes;
         last if eval {local @INC = @look; require RT; $RT::LocalLibPath};
 
         warn
@@ -76,6 +77,22 @@ sub RTx {
         $self->requires_rt('4.0.0');
     }
 
+    my $package = $name;
+    $package =~ s/-/::/g;
+    if ( $RT::CORED_PLUGINS{$package} ) {
+        my ($base_version) = $RT::VERSION =~ /(\d+\.\d+\.\d+)/;
+        die RED, <<"EOT";
+
+**** Error: Your installed version of RT ($RT::VERSION) already
+            contains this extension in core, so you don't need to
+            install it.
+
+            Check https://docs.bestpractical.com/rt/$base_version/RT_Config.html
+            to configure it.
+
+EOT
+    }
+
     # Installation locations
     my %path;
     my $plugin_path;
@@ -223,7 +240,7 @@ sub requires_rt {
     my @sorted = sort RT::Handle::cmp_version $version,$RT::VERSION;
 
     if ($sorted[-1] eq $version) {
-        die <<"EOT";
+        die RED, <<"EOT";
 
 **** Error: This extension requires RT $version. Your installed version
             of RT ($RT::VERSION) is too old.
@@ -249,12 +266,12 @@ sub requires_rt_plugin {
         unshift @INC, $path;
     } else {
         my $name = $self->name;
-        warn <<"EOT";
+        my $msg = <<"EOT";
 
 **** Warning: $name requires that the $plugin plugin be installed and
               enabled; it does not appear to be installed.
-
 EOT
+        warn RED, $msg, RESET, "\n";
     }
     $self->requires(@_);
 }
@@ -264,9 +281,8 @@ sub rt_too_new {
     my $name = $self->name;
     $msg ||= <<EOT;
 
-**** Error: Your installed version of RT (%s) is too new; this extension
-            only works with versions older than %s.
-
+**** Warning: Your installed version of RT (%s) is too new; this extension
+              has not been tested on your version of RT and may not work as expected.
 EOT
     $self->add_metadata("x_rt_too_new", $version) if $self->is_admin;
 
@@ -274,7 +290,7 @@ EOT
     my @sorted = sort RT::Handle::cmp_version $version,$RT::VERSION;
 
     if ($sorted[0] eq $version) {
-        die sprintf($msg,$RT::VERSION,$version);
+        warn RED, sprintf($msg,$RT::VERSION), RESET, "\n";
     }
 }
 
@@ -297,4 +313,4 @@ sub _load_rt_handle {
 
 __END__
 
-#line 468
+#line 484

commit 11b11146c8e7188fa306880c2e20de1d2ad548ec
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Sat Jul 18 04:12:41 2020 +0800

    Fix "Current Search" menu
    
    Previous code rewrote the menu and eliminated all its children including
    "Feeds", which is wrong.

diff --git a/html/Callbacks/RT-Extension-ExcelFeed/Elements/Tabs/Privileged b/html/Callbacks/RT-Extension-ExcelFeed/Elements/Tabs/Privileged
index 12a5068..27e6334 100644
--- a/html/Callbacks/RT-Extension-ExcelFeed/Elements/Tabs/Privileged
+++ b/html/Callbacks/RT-Extension-ExcelFeed/Elements/Tabs/Privileged
@@ -9,8 +9,7 @@ if ( $Has_Query ) {
 
     my $current_search_menu;
     if ( $Path =~ m{^/Ticket} ) {
-        $current_search_menu = $search->child( current_search => title => loc('Current Search') );
-        $current_search_menu->path("/Search/Results.html$Search_Args") if $Has_Query;
+        $current_search_menu = $search->child('current_search');
     } else {
         $current_search_menu = PageMenu();
     }

commit bd5bed291f0b469dedaad1051f21a27984d8e611
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Sat Jul 18 04:16:37 2020 +0800

    Show "Microsoft Excel" menu for ticket searches only
    
    In RT 5, transaction/asset searches are also in "/Search" and have
    "Feeds".

diff --git a/html/Callbacks/RT-Extension-ExcelFeed/Elements/Tabs/Privileged b/html/Callbacks/RT-Extension-ExcelFeed/Elements/Tabs/Privileged
index 27e6334..4514e04 100644
--- a/html/Callbacks/RT-Extension-ExcelFeed/Elements/Tabs/Privileged
+++ b/html/Callbacks/RT-Extension-ExcelFeed/Elements/Tabs/Privileged
@@ -10,7 +10,7 @@ if ( $Has_Query ) {
     my $current_search_menu;
     if ( $Path =~ m{^/Ticket} ) {
         $current_search_menu = $search->child('current_search');
-    } else {
+    } elsif ( $Path =~ m{^/Search/} && ( !$DECODED_ARGS->{Class} || $DECODED_ARGS->{Class} eq 'RT::Tickets' ) ) {
         $current_search_menu = PageMenu();
     }
 

commit 231e29e7b43e0e2a7ed5b1cddec9fd5359bd2ed1
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Sat Jul 18 04:23:01 2020 +0800

    Localize "Download as Microsoft Excel Spreadsheet"

diff --git a/html/Callbacks/RT-Extension-ExcelFeed/Search/Elements/Chart/AfterChartTable b/html/Callbacks/RT-Extension-ExcelFeed/Search/Elements/Chart/AfterChartTable
index 7bebe8b..f677017 100644
--- a/html/Callbacks/RT-Extension-ExcelFeed/Search/Elements/Chart/AfterChartTable
+++ b/html/Callbacks/RT-Extension-ExcelFeed/Search/Elements/Chart/AfterChartTable
@@ -1,4 +1,4 @@
-<a href="<% $href %>" class="button">Download as Microsoft Excel Spreadsheet</a>
+<a href="<% $href %>" class="button"><&|/l&>Download as Microsoft Excel Spreadsheet</&></a>
 <%INIT>
 my $query_string = '?' . $m->comp('/Elements/QueryString',
     Query            => $ARGSRef->{Query},

commit 064ebea673c15429a6dc8d8f77de56fb22c0b114
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Sat Jul 18 04:24:42 2020 +0800

    Tweak button style for new RT 5.0 theme

diff --git a/html/Callbacks/RT-Extension-ExcelFeed/Search/Elements/Chart/AfterChartTable b/html/Callbacks/RT-Extension-ExcelFeed/Search/Elements/Chart/AfterChartTable
index f677017..b76befe 100644
--- a/html/Callbacks/RT-Extension-ExcelFeed/Search/Elements/Chart/AfterChartTable
+++ b/html/Callbacks/RT-Extension-ExcelFeed/Search/Elements/Chart/AfterChartTable
@@ -1,4 +1,4 @@
-<a href="<% $href %>" class="button"><&|/l&>Download as Microsoft Excel Spreadsheet</&></a>
+<a href="<% $href %>" class="button btn btn-primary"><&|/l&>Download as Microsoft Excel Spreadsheet</&></a>
 <%INIT>
 my $query_string = '?' . $m->comp('/Elements/QueryString',
     Query            => $ARGSRef->{Query},

commit a9b49d2090b2f3189361a7c601de6757221d467b
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Sat Jul 18 04:26:02 2020 +0800

    Update docs for RT 5.0

diff --git a/README b/README
index ce03eb6..6761f83 100644
--- a/README
+++ b/README
@@ -10,7 +10,7 @@ DESCRIPTION
     files rather than inline HTML reports.
 
 RT VERSION
-    Works with RT 4.2, 4.4
+    Works with RT 4.2, 4.4, 5.0
 
 INSTALLATION
     "perl Makefile.PL"
@@ -19,13 +19,13 @@ INSTALLATION
         May need root permissions
 
     patch RT
-        The following patches are also needed. Note the versions and only
-        apply the patches needed for your version.
+        The following patches are also needed for RT prior to 4.4.2. Note
+        the versions and only apply the patches needed for your version.
 
         Only run these the first time you install this module. If upgrading,
         install any patches that were not previously applied.
 
-        Apply for both 4.2 and 4.4.0. Not needed for 4.4.1 or later:
+        Apply for both 4.2 and 4.4.0. Not needed for 4.4.1:
 
             patch -p1 -d /path/to/rt < etc/subscription_callbacks.patch
 
@@ -33,15 +33,15 @@ INSTALLATION
 
             patch -p1 -d /path/to/rt < etc/chart_callback.patch
 
-        Apply for 4.2, 4.4.0 and 4.4.1. Not needed for 4.4.2 or later:
+        Apply for 4.2, 4.4.0 and 4.4.1:
 
             patch -p1 -d /path/to/rt < etc/tabs_privileged_callback.patch
 
-    Add this line to /opt/rt4/etc/RT_SiteConfig.pm
+    Add this line to /opt/rt5/etc/RT_SiteConfig.pm
             Plugin('RT::Extension::ExcelFeed');
 
     Clear your mason cache
-            rm -rf /opt/rt4/var/mason_data/obj
+            rm -rf /opt/rt5/var/mason_data/obj
 
     Restart your webserver
 
diff --git a/lib/RT/Extension/ExcelFeed.pm b/lib/RT/Extension/ExcelFeed.pm
index 1855a2d..c4e83dc 100644
--- a/lib/RT/Extension/ExcelFeed.pm
+++ b/lib/RT/Extension/ExcelFeed.pm
@@ -19,7 +19,7 @@ inline HTML reports.
 
 =head1 RT VERSION
 
-Works with RT 4.2, 4.4
+Works with RT 4.2, 4.4, 5.0
 
 =head1 INSTALLATION
 
@@ -35,13 +35,13 @@ May need root permissions
 
 =item patch RT
 
-The following patches are also needed. Note the versions and only apply
-the patches needed for your version.
+The following patches are also needed for RT prior to 4.4.2. Note the
+versions and only apply the patches needed for your version.
 
 Only run these the first time you install this module. If upgrading, install
 any patches that were not previously applied.
 
-Apply for both 4.2 and 4.4.0. Not needed for 4.4.1 or later:
+Apply for both 4.2 and 4.4.0. Not needed for 4.4.1:
 
     patch -p1 -d /path/to/rt < etc/subscription_callbacks.patch
 
@@ -49,17 +49,17 @@ Apply for 4.2 and 4.4.0. Not needed for 4.2.13 or later, or 4.4.1.
 
     patch -p1 -d /path/to/rt < etc/chart_callback.patch
 
-Apply for 4.2, 4.4.0 and 4.4.1. Not needed for 4.4.2 or later:
+Apply for 4.2, 4.4.0 and 4.4.1:
 
     patch -p1 -d /path/to/rt < etc/tabs_privileged_callback.patch
 
-=item Add this line to F</opt/rt4/etc/RT_SiteConfig.pm>
+=item Add this line to F</opt/rt5/etc/RT_SiteConfig.pm>
 
     Plugin('RT::Extension::ExcelFeed');
 
 =item Clear your mason cache
 
-    rm -rf /opt/rt4/var/mason_data/obj
+    rm -rf /opt/rt5/var/mason_data/obj
 
 =item Restart your webserver
 

commit 6dd40ddfae14b9f78658283a97b32db2261ddbbb
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Sat Jul 18 04:26:31 2020 +0800

    Update copyright year to 2020

diff --git a/README b/README
index 6761f83..3b9a4ca 100644
--- a/README
+++ b/README
@@ -58,7 +58,7 @@ BUGS
         L<rt.cpan.org|http://rt.cpan.org/Public/Dist/Display.html?Name=RT-Extension-ExcelFeed>.
 
 LICENSE AND COPYRIGHT
-    This software is Copyright (c) 2015-2018 by Best Practical Solutions,
+    This software is Copyright (c) 2015-2020 by Best Practical Solutions,
     LLC
 
     This is free software, licensed under:
diff --git a/lib/RT/Extension/ExcelFeed.pm b/lib/RT/Extension/ExcelFeed.pm
index c4e83dc..1ae1296 100644
--- a/lib/RT/Extension/ExcelFeed.pm
+++ b/lib/RT/Extension/ExcelFeed.pm
@@ -81,7 +81,7 @@ or via the web at
 
 =head1 LICENSE AND COPYRIGHT
 
-This software is Copyright (c) 2015-2018 by Best Practical Solutions, LLC
+This software is Copyright (c) 2015-2020 by Best Practical Solutions, LLC
 
 This is free software, licensed under:
 

commit c43cc784f005451f15ad6ee262fc20ec2f3076d5
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Sat Jul 18 04:26:51 2020 +0800

    Add "." to @INC for perl 5.26+

diff --git a/Makefile.PL b/Makefile.PL
index d826b44..24b0ba0 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,3 +1,4 @@
+use lib '.';
 use inc::Module::Install;
 
 RTx 'RT-Extension-ExcelFeed';

commit 04338d587b2cb40708268cb895499a3ad23bcc08
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Sat Jul 18 04:27:20 2020 +0800

    Bump rt_too_new to 5.2.0

diff --git a/META.yml b/META.yml
index 8bce5a6..8e67f10 100644
--- a/META.yml
+++ b/META.yml
@@ -27,4 +27,4 @@ resources:
 version: '0.05'
 x_module_install_rtx_version: '0.42'
 x_requires_rt: 4.2.0
-x_rt_too_new: 4.6.0
+x_rt_too_new: 5.2.0
diff --git a/Makefile.PL b/Makefile.PL
index 24b0ba0..5715104 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -8,7 +8,7 @@ license  'gplv2';
 
 requires 'Excel::Writer::XLSX';
 requires_rt '4.2.0';
-rt_too_new '4.6.0';
+rt_too_new '5.2.0';
 
 sign;
 WriteAll;

commit 8ddf90f5c20d00c71eb65f041760405bc26667e2
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Sat Jul 18 04:36:41 2020 +0800

    Require 4.2.10+ because chart_callback.patch needs it

diff --git a/META.yml b/META.yml
index 8e67f10..314e054 100644
--- a/META.yml
+++ b/META.yml
@@ -26,5 +26,5 @@ resources:
   license: http://opensource.org/licenses/gpl-license.php
 version: '0.05'
 x_module_install_rtx_version: '0.42'
-x_requires_rt: 4.2.0
+x_requires_rt: 4.2.10
 x_rt_too_new: 5.2.0
diff --git a/Makefile.PL b/Makefile.PL
index 5715104..41c1ea5 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -7,7 +7,7 @@ readme_from 'lib/RT/Extension/ExcelFeed.pm';
 license  'gplv2';
 
 requires 'Excel::Writer::XLSX';
-requires_rt '4.2.0';
+requires_rt '4.2.10';
 rt_too_new '5.2.0';
 
 sign;
diff --git a/README b/README
index 3b9a4ca..71bdec1 100644
--- a/README
+++ b/README
@@ -10,7 +10,7 @@ DESCRIPTION
     files rather than inline HTML reports.
 
 RT VERSION
-    Works with RT 4.2, 4.4, 5.0
+    Works with RT 4.2.10+, 4.4, 5.0
 
 INSTALLATION
     "perl Makefile.PL"
diff --git a/lib/RT/Extension/ExcelFeed.pm b/lib/RT/Extension/ExcelFeed.pm
index 1ae1296..eba8aeb 100644
--- a/lib/RT/Extension/ExcelFeed.pm
+++ b/lib/RT/Extension/ExcelFeed.pm
@@ -19,7 +19,7 @@ inline HTML reports.
 
 =head1 RT VERSION
 
-Works with RT 4.2, 4.4, 5.0
+Works with RT 4.2.10+, 4.4, 5.0
 
 =head1 INSTALLATION
 

commit 21c7262afea2b5a3705c0570ee89dca7728e039f
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Sat Jul 18 04:29:26 2020 +0800

    Prep 0.06

diff --git a/Changes b/Changes
index 2c96c32..e92e7df 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,7 @@
+0.06 2020-07-17
+ - Make it work for RT 5.0
+ - Fix "Current Search" menu
+
 0.05 2018-09-21
  - Remove duplicated methods from core RT
  - Respect SuppressIfEmpty config
diff --git a/MANIFEST b/MANIFEST
index 38cbebe..85126d4 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -2,7 +2,6 @@ Changes
 etc/chart_callback.patch
 etc/subscription_callbacks.patch
 etc/tabs_privileged_callback.patch
-etc/tabs_privileged_callback_44.patch
 html/Callbacks/RT-Extension-ExcelFeed/Dashboards/Subscription.html/MassageSubscriptionFields
 html/Callbacks/RT-Extension-ExcelFeed/Dashboards/Subscription.html/SubscriptionFields
 html/Callbacks/RT-Extension-ExcelFeed/Dashboards/Subscription.html/SubscriptionFormEnd
diff --git a/META.yml b/META.yml
index 314e054..79c4fdc 100644
--- a/META.yml
+++ b/META.yml
@@ -24,7 +24,7 @@ requires:
   perl: 5.10.1
 resources:
   license: http://opensource.org/licenses/gpl-license.php
-version: '0.05'
+version: '0.06'
 x_module_install_rtx_version: '0.42'
 x_requires_rt: 4.2.10
 x_rt_too_new: 5.2.0
diff --git a/lib/RT/Extension/ExcelFeed.pm b/lib/RT/Extension/ExcelFeed.pm
index eba8aeb..3370686 100644
--- a/lib/RT/Extension/ExcelFeed.pm
+++ b/lib/RT/Extension/ExcelFeed.pm
@@ -2,7 +2,7 @@ use strict;
 use warnings;
 package RT::Extension::ExcelFeed;
 
-our $VERSION = '0.05';
+our $VERSION = '0.06';
 
 =head1 NAME
 

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


More information about the Bps-public-commit mailing list