Update of /cvsroot/appwrap/AppWrap/bin
In directory sc8-pr-cvs1:/tmp/cvs-serv9991
Modified Files:
AppWrap_admin.pl
Log Message:
migrate to table_type my_tables directive
Index: AppWrap_admin.pl
===================================================================
RCS file: /cvsroot/appwrap/AppWrap/bin/AppWrap_admin.pl,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** AppWrap_admin.pl 22 Nov 2002 11:14:37 -0000 1.10
--- AppWrap_admin.pl 5 Dec 2002 03:59:50 -0000 1.11
***************
*** 13,17 ****
use ExtUtils::MakeMaker qw(prompt);
! our $VERSION = '0.12';
# this script automatically inserts AppWrap directives into
--- 13,17 ----
use ExtUtils::MakeMaker qw(prompt);
! our $VERSION = '0.13';
# this script automatically inserts AppWrap directives into
***************
*** 735,739 ****
$plan->{menu_order} = next_menu_order($args, 'reports');
$plan->{rows_per} = -1;
! $plan->{report} = 1;
# increment the count of directives added. Exclude 'menu_tab'
# as it was added by default, we only revise it here. Same for
--- 735,740 ----
$plan->{menu_order} = next_menu_order($args, 'reports');
$plan->{rows_per} = -1;
! $plan->{table_type} = 'report';
! # $plan->{report} = 1;
# increment the count of directives added. Exclude 'menu_tab'
# as it was added by default, we only revise it here. Same for
***************
*** 750,754 ****
# default, so don't count it again here.
$plan->{menu_order} = next_menu_order($args, 'admin');
! $plan->{user_data} = 1;
$args->{count} += 1;
}
--- 751,756 ----
# default, so don't count it again here.
$plan->{menu_order} = next_menu_order($args, 'admin');
! $plan->{table_type} = 'user_data';
! # $plan->{user_data} = 1;
$args->{count} += 1;
}
|