|
From: Chris W. <la...@us...> - 2001-11-20 04:03:50
|
Update of /cvsroot/openinteract/OpenInteract/pkg/base_box/conf
In directory usw-pr-cvs1:/tmp/cvs-serv24936/conf
Modified Files:
action.perl
Log Message:
modify the login box and ensure we have adequate debugging for custom
handler and for box removal
Index: action.perl
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/pkg/base_box/conf/action.perl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** action.perl 2001/07/20 10:25:53 1.4
--- action.perl 2001/11/20 04:03:48 1.5
***************
*** 10,13 ****
--- 10,14 ----
},
'templates_used_box' => {
+ name => 'templates_used_box',
class => 'OpenInteract::Handler::SystemBoxes',
method => 'templates_used',
***************
*** 17,22 ****
},
'object_modify_box' => {
! template => 'object_modify_box',
! package => 'base_box',
weight => 4,
title => 'Object Info',
--- 18,23 ----
},
'object_modify_box' => {
! name => 'object_modify_box',
! template => 'base_box::object_modify_box',
weight => 4,
title => 'Object Info',
***************
*** 24,29 ****
},
'login_box' => {
! template => 'login_box',
! package => 'base_box',
weight => 1,
title => 'Login',
--- 25,30 ----
},
'login_box' => {
! name => 'login_box',
! template => 'base_box::login_box',
weight => 1,
title => 'Login',
***************
*** 31,36 ****
},
'user_info_box' => {
! template => 'user_info_box',
! package => 'base_box',
weight => 1,
title => 'Your Info',
--- 32,37 ----
},
'user_info_box' => {
! name => 'user_info_box',
! template => 'base_box::user_info_box',
weight => 1,
title => 'Your Info',
***************
*** 38,43 ****
},
'admin_tools_box' => {
! template => 'admin_tools_box',
! package => 'base_box',
weight => 10,
title => 'Admin Tools',
--- 39,44 ----
},
'admin_tools_box' => {
! name => 'admin_tools_box',
! template => 'base_box::admin_tools_box',
weight => 10,
title => 'Admin Tools',
***************
*** 45,52 ****
},
'powered_by_box' => {
! 'weight' => 8,
! 'title' => 'Powered By',
! 'template' => 'powered_by_box',
! 'package' => 'base_box'
},
'object_mod_box' => { 'redir' => 'object_modify_box' },
--- 46,54 ----
},
'powered_by_box' => {
! name => 'powered_by_box',
! template => 'base_box::powered_by_box',
! weight => 8,
! title => 'Powered By',
! security => 'no',
},
'object_mod_box' => { 'redir' => 'object_modify_box' },
|