|
From: Chris W. <la...@us...> - 2001-10-29 05:12:36
|
Update of /cvsroot/openinteract/OpenInteract/pkg/base_page/conf
In directory usw-pr-cvs1:/tmp/cvs-serv5041/conf
Modified Files:
spops.perl
Log Message:
added backwards compatibility option
Index: spops.perl
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/pkg/base_page/conf/spops.perl,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** spops.perl 2001/10/26 21:09:05 1.5
--- spops.perl 2001/10/29 05:12:33 1.6
***************
*** 9,12 ****
--- 9,13 ----
boxes main_template mime_type template_parse
active_on expires_on is_active is_file / ],
+ fulltext_field => [ qw/ title author keywords content / ],
column_group => {},
id_field => 'location',
***************
*** 16,20 ****
base_table => 'page',
sql_defaults => [ qw/ template_parse is_active is_file / ],
! alias => [ 'static_page', 'basicpage' ],
has_a => { 'OpenInteract::PageContent' => 'location' },
links_to => {},
--- 17,26 ----
base_table => 'page',
sql_defaults => [ qw/ template_parse is_active is_file / ],
!
! # Only uncomment this (and comment out the next line) after you've
! # moved all the data over
! # alias => [ 'static_page', 'basicpage' ],
! alias => [],
!
has_a => { 'OpenInteract::PageContent' => 'location' },
links_to => {},
***************
*** 40,46 ****
'content_type' => {
class => 'OpenInteract::ContentType',
isa => [ qw/ OpenInteract::SPOPS::DBI SPOPS::DBI::MySQL SPOPS::DBI / ],
! field => [ qw/ mime_type extensions description / ],
id_field => 'content_type_id',
base_table => 'content_type',
name => 'mime_type',
--- 46,54 ----
'content_type' => {
class => 'OpenInteract::ContentType',
+ code_class => [ 'OpenInteract::ContentType' ],
isa => [ qw/ OpenInteract::SPOPS::DBI SPOPS::DBI::MySQL SPOPS::DBI / ],
! field => [ qw/ content_type_id mime_type extensions description / ],
id_field => 'content_type_id',
+ increment_field => 1,
base_table => 'content_type',
name => 'mime_type',
|