[Bps-public-commit] RT-Extension-CustomField-HideEmptyValues branch, master, updated. 1.10
Alex Vandiver
alexmv at bestpractical.com
Wed Jan 21 13:46:59 EST 2015
The branch, master has been updated
via 8723b3d2f4c2deb7687d43fa60d6e824476b2b3e (commit)
via ffc758e2b7ca0fdb9acfd6a9a61f7c75e7dd3351 (commit)
from 9a446e7cac3e459bc5a06b0cfd0c20db7200dc01 (commit)
Summary of changes:
CHANGES | 3 +++
MANIFEST | 1 +
META.yml | 5 +++--
Makefile.PL | 1 +
.../CustomField-HideEmptyValues/m/ticket/show/MassageCustomFields | 1 +
inc/Module/Install.pm | 6 +++++-
inc/Module/Install/Base.pm | 2 +-
inc/Module/Install/Can.pm | 2 +-
inc/Module/Install/Fetch.pm | 2 +-
inc/Module/Install/Include.pm | 2 +-
inc/Module/Install/Makefile.pm | 2 +-
inc/Module/Install/Metadata.pm | 2 +-
inc/Module/Install/RTx.pm | 2 +-
inc/Module/Install/Win32.pm | 2 +-
inc/Module/Install/WriteAll.pm | 2 +-
lib/RT/Extension/CustomField/HideEmptyValues.pm | 2 +-
16 files changed, 24 insertions(+), 13 deletions(-)
create mode 100644 html/Callbacks/CustomField-HideEmptyValues/m/ticket/show/MassageCustomFields
- Log -----------------------------------------------------------------
commit ffc758e2b7ca0fdb9acfd6a9a61f7c75e7dd3351
Author: Alex Vandiver <alexmv at bestpractical.com>
Date: Wed Jan 21 13:44:30 2015 -0500
Add the callabck to the mobile view
diff --git a/html/Callbacks/CustomField-HideEmptyValues/m/ticket/show/MassageCustomFields b/html/Callbacks/CustomField-HideEmptyValues/m/ticket/show/MassageCustomFields
new file mode 100644
index 0000000..f75436a
--- /dev/null
+++ b/html/Callbacks/CustomField-HideEmptyValues/m/ticket/show/MassageCustomFields
@@ -0,0 +1 @@
+<& /Callbacks/CustomField-HideEmptyValues/Elements/ShowCustomFields/MassageCustomFields, %ARGS &>
commit 8723b3d2f4c2deb7687d43fa60d6e824476b2b3e
Author: Alex Vandiver <alexmv at bestpractical.com>
Date: Wed Jan 21 13:46:31 2015 -0500
Version 1.10 releng
diff --git a/CHANGES b/CHANGES
index 564a423..082a59f 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+1.10 2015-01-21
+ - Hide empty CFs in the mobile interface as well
+
1.00 2014-09-30
- Packaging updates
diff --git a/MANIFEST b/MANIFEST
index 13b5dc3..e301e0d 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,5 +1,6 @@
CHANGES
html/Callbacks/CustomField-HideEmptyValues/Elements/ShowCustomFields/MassageCustomFields
+html/Callbacks/CustomField-HideEmptyValues/m/ticket/show/MassageCustomFields
inc/Module/Install.pm
inc/Module/Install/Base.pm
inc/Module/Install/Can.pm
diff --git a/META.yml b/META.yml
index 2f6c0b3..2b1b154 100644
--- a/META.yml
+++ b/META.yml
@@ -8,7 +8,7 @@ configure_requires:
ExtUtils::MakeMaker: 6.59
distribution_type: module
dynamic_config: 1
-generated_by: 'Module::Install version 1.12'
+generated_by: 'Module::Install version 1.14'
license: gpl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -22,7 +22,8 @@ requires:
perl: 5.8.3
resources:
license: http://opensource.org/licenses/gpl-license.php
-version: '1.00'
+ repository: https://github.com/bestpractical/rt-extension-customfield-hideemptyvalues
+version: '1.10'
x_module_install_rtx_version: '0.36'
x_requires_rt: 4.0.0
x_rt_too_new: 4.4.0
diff --git a/Makefile.PL b/Makefile.PL
index 5fbf6c4..4a58068 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,6 +1,7 @@
use inc::Module::Install;
RTx('RT-Extension-CustomField-HideEmptyValues');
+repository('https://github.com/bestpractical/rt-extension-customfield-hideemptyvalues');
rt_too_new('4.4.0');
diff --git a/inc/Module/Install.pm b/inc/Module/Install.pm
index 5460dd5..ff767fa 100644
--- a/inc/Module/Install.pm
+++ b/inc/Module/Install.pm
@@ -31,7 +31,7 @@ BEGIN {
# This is not enforced yet, but will be some time in the next few
# releases once we can make sure it won't clash with custom
# Module::Install extensions.
- $VERSION = '1.12';
+ $VERSION = '1.14';
# Storage for the pseudo-singleton
$MAIN = undef;
@@ -378,6 +378,7 @@ eval( $] >= 5.006 ? <<'END_NEW' : <<'END_OLD' ); die $@ if $@;
sub _read {
local *FH;
open( FH, '<', $_[0] ) or die "open($_[0]): $!";
+ binmode FH;
my $string = do { local $/; <FH> };
close FH or die "close($_[0]): $!";
return $string;
@@ -386,6 +387,7 @@ END_NEW
sub _read {
local *FH;
open( FH, "< $_[0]" ) or die "open($_[0]): $!";
+ binmode FH;
my $string = do { local $/; <FH> };
close FH or die "close($_[0]): $!";
return $string;
@@ -416,6 +418,7 @@ eval( $] >= 5.006 ? <<'END_NEW' : <<'END_OLD' ); die $@ if $@;
sub _write {
local *FH;
open( FH, '>', $_[0] ) or die "open($_[0]): $!";
+ binmode FH;
foreach ( 1 .. $#_ ) {
print FH $_[$_] or die "print($_[0]): $!";
}
@@ -425,6 +428,7 @@ END_NEW
sub _write {
local *FH;
open( FH, "> $_[0]" ) or die "open($_[0]): $!";
+ binmode FH;
foreach ( 1 .. $#_ ) {
print FH $_[$_] or die "print($_[0]): $!";
}
diff --git a/inc/Module/Install/Base.pm b/inc/Module/Install/Base.pm
index f9bf5de..4206347 100644
--- a/inc/Module/Install/Base.pm
+++ b/inc/Module/Install/Base.pm
@@ -4,7 +4,7 @@ package Module::Install::Base;
use strict 'vars';
use vars qw{$VERSION};
BEGIN {
- $VERSION = '1.12';
+ $VERSION = '1.14';
}
# Suspend handler for "redefined" warnings
diff --git a/inc/Module/Install/Can.pm b/inc/Module/Install/Can.pm
index b4e5e3b..9929b1b 100644
--- a/inc/Module/Install/Can.pm
+++ b/inc/Module/Install/Can.pm
@@ -8,7 +8,7 @@ use Module::Install::Base ();
use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
- $VERSION = '1.12';
+ $VERSION = '1.14';
@ISA = 'Module::Install::Base';
$ISCORE = 1;
}
diff --git a/inc/Module/Install/Fetch.pm b/inc/Module/Install/Fetch.pm
index 54f14fb..3d8de76 100644
--- a/inc/Module/Install/Fetch.pm
+++ b/inc/Module/Install/Fetch.pm
@@ -6,7 +6,7 @@ use Module::Install::Base ();
use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
- $VERSION = '1.12';
+ $VERSION = '1.14';
@ISA = 'Module::Install::Base';
$ISCORE = 1;
}
diff --git a/inc/Module/Install/Include.pm b/inc/Module/Install/Include.pm
index 7224cff..f274f87 100644
--- a/inc/Module/Install/Include.pm
+++ b/inc/Module/Install/Include.pm
@@ -6,7 +6,7 @@ use Module::Install::Base ();
use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
- $VERSION = '1.12';
+ $VERSION = '1.14';
@ISA = 'Module::Install::Base';
$ISCORE = 1;
}
diff --git a/inc/Module/Install/Makefile.pm b/inc/Module/Install/Makefile.pm
index 81cddd5..66993af 100644
--- a/inc/Module/Install/Makefile.pm
+++ b/inc/Module/Install/Makefile.pm
@@ -8,7 +8,7 @@ use Fcntl qw/:flock :seek/;
use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
- $VERSION = '1.12';
+ $VERSION = '1.14';
@ISA = 'Module::Install::Base';
$ISCORE = 1;
}
diff --git a/inc/Module/Install/Metadata.pm b/inc/Module/Install/Metadata.pm
index 2c66b1e..e547fa0 100644
--- a/inc/Module/Install/Metadata.pm
+++ b/inc/Module/Install/Metadata.pm
@@ -6,7 +6,7 @@ use Module::Install::Base ();
use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
- $VERSION = '1.12';
+ $VERSION = '1.14';
@ISA = 'Module::Install::Base';
$ISCORE = 1;
}
diff --git a/inc/Module/Install/RTx.pm b/inc/Module/Install/RTx.pm
index 73e7245..1b55bfa 100644
--- a/inc/Module/Install/RTx.pm
+++ b/inc/Module/Install/RTx.pm
@@ -123,7 +123,7 @@ install ::
$has_etc{acl}++;
}
if ( -e 'etc/initialdata' ) { $has_etc{initialdata}++; }
- if ( grep { /\d+\.\d+(\.\d+)?.*$/ } glob('etc/upgrade/*.*') ) {
+ if ( grep { /\d+\.\d+\.\d+.*$/ } glob('etc/upgrade/*.*.*') ) {
$has_etc{upgrade}++;
}
diff --git a/inc/Module/Install/Win32.pm b/inc/Module/Install/Win32.pm
index e48c32d..9706e5f 100644
--- a/inc/Module/Install/Win32.pm
+++ b/inc/Module/Install/Win32.pm
@@ -6,7 +6,7 @@ use Module::Install::Base ();
use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
- $VERSION = '1.12';
+ $VERSION = '1.14';
@ISA = 'Module::Install::Base';
$ISCORE = 1;
}
diff --git a/inc/Module/Install/WriteAll.pm b/inc/Module/Install/WriteAll.pm
index 409ef40..dbedc00 100644
--- a/inc/Module/Install/WriteAll.pm
+++ b/inc/Module/Install/WriteAll.pm
@@ -6,7 +6,7 @@ use Module::Install::Base ();
use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
- $VERSION = '1.12';
+ $VERSION = '1.14';
@ISA = qw{Module::Install::Base};
$ISCORE = 1;
}
diff --git a/lib/RT/Extension/CustomField/HideEmptyValues.pm b/lib/RT/Extension/CustomField/HideEmptyValues.pm
index 8c72a75..2c71606 100644
--- a/lib/RT/Extension/CustomField/HideEmptyValues.pm
+++ b/lib/RT/Extension/CustomField/HideEmptyValues.pm
@@ -4,7 +4,7 @@ use warnings;
package RT::Extension::CustomField::HideEmptyValues;
-our $VERSION = '1.00';
+our $VERSION = '1.10';
=head1 NAME
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list