[freeside-commits] freeside/FS/FS/detail_format accountcode_default.pm, 1.1, 1.2 basic.pm, 1.1, 1.2 default.pm, 1.1, 1.2 description_default.pm, 1.1, 1.2 simple2.pm, 1.1, 1.2 simple.pm, 1.1, 1.2 source_default.pm, 1.1, 1.2 sum_count.pm, 1.2, 1.3 sum_duration.pm, 1.2, 1.3 sum_duration_prefix.pm, 1.2, 1.3

Mark Wells mark at wavetail.420.am
Thu Jan 5 12:51:24 PST 2012


Update of /home/cvs/cvsroot/freeside/FS/FS/detail_format
In directory wavetail.420.am:/tmp/cvs-serv6785/detail_format

Modified Files:
	accountcode_default.pm basic.pm default.pm 
	description_default.pm simple2.pm simple.pm source_default.pm 
	sum_count.pm sum_duration.pm sum_duration_prefix.pm 
Log Message:
"use base" for compatibility

Index: simple2.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/detail_format/simple2.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -w -d -r1.1 -r1.2
--- simple2.pm	3 Jan 2012 21:13:33 -0000	1.1
+++ simple2.pm	5 Jan 2012 20:51:22 -0000	1.2
@@ -1,7 +1,7 @@
 package FS::detail_format::simple2;
 
 use strict;
-use parent qw(FS::detail_format);
+use base qw(FS::detail_format);
 use Date::Format qw(time2str);
 
 sub name { 'Simple with source' }

Index: accountcode_default.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/detail_format/accountcode_default.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -w -d -r1.1 -r1.2
--- accountcode_default.pm	3 Jan 2012 21:13:32 -0000	1.1
+++ accountcode_default.pm	5 Jan 2012 20:51:21 -0000	1.2
@@ -1,7 +1,7 @@
 package FS::detail_format::accountcode_default;
 
 use strict;
-use parent qw(FS::detail_format);
+use base qw(FS::detail_format);
 use Date::Format qw(time2str);
 
 sub name { 'Default with accountcode' }

Index: default.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/detail_format/default.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -w -d -r1.1 -r1.2
--- default.pm	3 Jan 2012 21:13:32 -0000	1.1
+++ default.pm	5 Jan 2012 20:51:22 -0000	1.2
@@ -1,7 +1,7 @@
 package FS::detail_format::default;
 
 use strict;
-use parent qw(FS::detail_format);
+use base qw(FS::detail_format);
 use Date::Format qw(time2str);
 
 sub name { 'Default' }

Index: basic.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/detail_format/basic.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -w -d -r1.1 -r1.2
--- basic.pm	3 Jan 2012 21:13:32 -0000	1.1
+++ basic.pm	5 Jan 2012 20:51:22 -0000	1.2
@@ -1,7 +1,7 @@
 package FS::detail_format::basic;
 
 use strict;
-use parent qw(FS::detail_format);
+use base qw(FS::detail_format);
 use Date::Format qw(time2str);
 
 sub name { 'Basic' }

Index: simple.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/detail_format/simple.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -w -d -r1.1 -r1.2
--- simple.pm	3 Jan 2012 21:13:33 -0000	1.1
+++ simple.pm	5 Jan 2012 20:51:22 -0000	1.2
@@ -1,7 +1,7 @@
 package FS::detail_format::simple;
 
 use strict;
-use parent qw(FS::detail_format);
+use base qw(FS::detail_format);
 use Date::Format qw(time2str);
 
 sub name { 'Simple' }

Index: sum_duration.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/detail_format/sum_duration.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -w -d -r1.2 -r1.3
--- sum_duration.pm	4 Jan 2012 21:11:00 -0000	1.2
+++ sum_duration.pm	5 Jan 2012 20:51:22 -0000	1.3
@@ -2,7 +2,7 @@
 
 use strict;
 use vars qw( $DEBUG );
-use parent qw(FS::detail_format);
+use base qw(FS::detail_format);
 use FS::Record qw(qsearchs);
 use FS::cust_svc;
 use FS::svc_Common; # for label

Index: sum_count.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/detail_format/sum_count.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -w -d -r1.2 -r1.3
--- sum_count.pm	4 Jan 2012 21:11:00 -0000	1.2
+++ sum_count.pm	5 Jan 2012 20:51:22 -0000	1.3
@@ -2,7 +2,7 @@
 
 use strict;
 use vars qw( $DEBUG );
-use parent qw(FS::detail_format);
+use base qw(FS::detail_format);
 use FS::Record qw(qsearchs);
 use FS::cust_svc;
 use FS::svc_Common; # for label

Index: sum_duration_prefix.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/detail_format/sum_duration_prefix.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -w -d -r1.2 -r1.3
--- sum_duration_prefix.pm	4 Jan 2012 21:11:01 -0000	1.2
+++ sum_duration_prefix.pm	5 Jan 2012 20:51:22 -0000	1.3
@@ -2,7 +2,7 @@
 
 use strict;
 use vars qw( $DEBUG );
-use parent qw(FS::detail_format);
+use base qw(FS::detail_format);
 use List::Util qw(sum);
 
 $DEBUG = 0;

Index: source_default.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/detail_format/source_default.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -w -d -r1.1 -r1.2
--- source_default.pm	3 Jan 2012 21:13:33 -0000	1.1
+++ source_default.pm	5 Jan 2012 20:51:22 -0000	1.2
@@ -1,7 +1,7 @@
 package FS::detail_format::source_default;
 
 use strict;
-use parent qw(FS::detail_format);
+use base qw(FS::detail_format);
 use Date::Format qw(time2str);
 
 sub name { 'Default with source' }

Index: description_default.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/detail_format/description_default.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -w -d -r1.1 -r1.2
--- description_default.pm	3 Jan 2012 21:13:32 -0000	1.1
+++ description_default.pm	5 Jan 2012 20:51:22 -0000	1.2
@@ -1,7 +1,7 @@
 package FS::detail_format::description_default;
 
 use strict;
-use parent qw(FS::detail_format);
+use base qw(FS::detail_format);
 use Date::Format qw(time2str);
 
 sub name { 'Default with description field as destination' }



More information about the freeside-commits mailing list