|
From: Chris W. <la...@us...> - 2001-10-24 23:08:05
|
Update of /cvsroot/openinteract/OpenInteract/pkg/base_page/conf
In directory usw-pr-cvs1:/tmp/cvs-serv22705/conf
Modified Files:
action.perl spops.perl
Log Message:
more updates (stability! functionality!)
Index: action.perl
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/pkg/base_page/conf/action.perl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** action.perl 2001/10/24 20:55:37 1.3
--- action.perl 2001/10/24 23:04:17 1.4
***************
*** 1,5 ****
$action = {
'page' => {
! 'class' => 'OpenInteract::Handler::BasePage',
'security' => 'yes',
'directory_index' => [ 'index.html', 'home.html', 'index', 'home' ],
--- 1,5 ----
$action = {
'page' => {
! 'class' => 'OpenInteract::Handler::Page',
'security' => 'yes',
'directory_index' => [ 'index.html', 'home.html', 'index', 'home' ],
***************
*** 10,14 ****
'weight' => 4,
'title' => 'Document Info',
! 'template' => 'static_page::edit_document_box',
'security' => 'no',
},
--- 10,14 ----
'weight' => 4,
'title' => 'Document Info',
! 'template' => 'base_page::edit_document_box',
'security' => 'no',
},
Index: spops.perl
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/pkg/base_page/conf/spops.perl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** spops.perl 2001/10/24 20:55:37 1.3
--- spops.perl 2001/10/24 23:04:19 1.4
***************
*** 7,11 ****
SPOPS::Utility SPOPS::DBI / ],
field => [ qw/ location directory title author keywords
! boxes main_template mime_type
active_on expires_on is_active is_file / ],
column_group => {},
--- 7,11 ----
SPOPS::Utility SPOPS::DBI / ],
field => [ qw/ location directory title author keywords
! boxes main_template mime_type template_parse
active_on expires_on is_active is_file / ],
column_group => {},
***************
*** 27,39 ****
hierarchy_field => 'location',
},
'page_content' => {
class => 'OpenInteract::PageContent',
! code_class => '',
! isa => [ qw/ SPOPS::DBI / ],
field => [ qw/ location content / ],
id_field => 'location',
base_table => 'page_content',
has_a => { 'OpenInteract::Page' => 'location' },
- links_to => {},
object_name => 'Document',
},
--- 27,38 ----
hierarchy_field => 'location',
},
+
'page_content' => {
class => 'OpenInteract::PageContent',
! isa => [ 'OpenInteract::SPOPS::DBI', 'SPOPS::DBI' ],
field => [ qw/ location content / ],
id_field => 'location',
base_table => 'page_content',
has_a => { 'OpenInteract::Page' => 'location' },
object_name => 'Document',
},
|