You can subscribe to this list here.
| 2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(381) |
Nov
(176) |
Dec
(310) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2002 |
Jan
(334) |
Feb
(96) |
Mar
(149) |
Apr
(214) |
May
(120) |
Jun
(56) |
Jul
(10) |
Aug
(273) |
Sep
(182) |
Oct
(56) |
Nov
(125) |
Dec
(22) |
| 2003 |
Jan
(63) |
Feb
(181) |
Mar
(498) |
Apr
(433) |
May
(39) |
Jun
(512) |
Jul
(276) |
Aug
(156) |
Sep
(101) |
Oct
(66) |
Nov
(24) |
Dec
(161) |
| 2004 |
Jan
(1) |
Feb
(377) |
Mar
(68) |
Apr
(26) |
May
(107) |
Jun
(333) |
Jul
(13) |
Aug
|
Sep
(76) |
Oct
(88) |
Nov
(170) |
Dec
(91) |
| 2005 |
Jan
(52) |
Feb
(239) |
Mar
(402) |
Apr
(15) |
May
(2) |
Jun
(1) |
Jul
(13) |
Aug
|
Sep
(71) |
Oct
(34) |
Nov
|
Dec
|
| 2006 |
Jan
(5) |
Feb
(5) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(3) |
Sep
(7) |
Oct
(2) |
Nov
|
Dec
|
| 2007 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Chris W. <la...@us...> - 2001-10-17 12:11:08
|
Update of /cvsroot/openinteract/OpenInteract/pkg/base_page/doc In directory usw-pr-cvs1:/tmp/cvs-serv23884/base_page/doc Added Files: base_page.pod titles Log Message: add intro docs --- NEW FILE: base_page.pod --- =head1 NAME base_page - This package will do everything! =head1 SYNOPSIS =head1 DESCRIPTION =head1 OBJECTS No objects created by this package. =head1 ACTIONS No actions defined in this package. =head1 RULESETS No rulesets defined in this package. =head1 ERRORS No custom error handlers defined in this package. =head1 BUGS None known. =head1 TO DO =head1 SEE ALSO =head1 AUTHORS Who AmI <me...@wh...> --- NEW FILE: titles --- base_page.pod This package will do everything! |
|
From: Chris W. <la...@us...> - 2001-10-17 12:10:58
|
Update of /cvsroot/openinteract/OpenInteract/pkg/base_page/conf
In directory usw-pr-cvs1:/tmp/cvs-serv23798/base_page/conf
Added Files:
action.perl spops.perl
Log Message:
add action/object config
--- NEW FILE: action.perl ---
$action = {
'basepage' => {
'class' => 'OpenInteract::Handler::BasePage',
'security' => 'yes',
# The next three items are used in the new version of
# the handler
# What should we try on directory requests or when we
# don't find an object?
'object_home_name' => 'home',
# What should we try on directory requests or when we
# don't find a file?
'filesystem_home_name' => 'index.html',
# Storage preference. Choices are:
# 'object', 'filesystem', 'both-object', 'both-filesystem'
#
# The entry with the 'both' items is what we should
# try first -- try fetching the object first with 'both-object'
# and the filesystem file first with 'both-filesystem'.
'storage' => 'both-object',
},
'editdocumentbox' => { redir => 'edit_document_box' },
'edit_document_box' => {
'weight' => 4,
'title' => 'Document Info',
'template' => 'edit_document_box',
'package' => 'static_page',
'security' => 'no',
},
};
--- NEW FILE: spops.perl ---
$spops = {
'basicpage' => {
class => 'OpenInteract::BasicPage',
code_class => 'OpenInteract::BasicPage',
isa => [ qw/ OpenInteract::SPOPS::DBI
SPOPS::Secure::Hierarchy
SPOPS::Utility SPOPS::DBI / ],
field => [ qw/ location directory title author keywords
active_on expires_on boxes main_template
is_file / ],
column_group => {},
id_field => 'location',
no_insert => [],
skip_undef => [],
no_update => [],
base_table => 'basic_page',
sql_defaults => [],
alias => [ 'static_page' ],
has_a => {},
links_to => {},
track => { create => 1, update => 1, remove => 1 },
display => { url => '/BasicPage/show/' },
name => 'title',
object_name => 'Document',
storage => 'filesystem',
db_table => 'basic_page_content',
hierarchy_separator => '/',
hierarchy_field => 'location',
},
};
|
|
From: Chris W. <la...@us...> - 2001-10-17 12:10:12
|
Update of /cvsroot/openinteract/OpenInteract/pkg/base_page/OpenInteract/SQLInstall
In directory usw-pr-cvs1:/tmp/cvs-serv23597/pkg/base_page/OpenInteract/SQLInstall
Added Files:
BasePage.pm
Log Message:
add handler/installer
--- NEW FILE: BasePage.pm ---
package OpenInteract::SQLInstall::BasePage;
# $Id: BasePage.pm,v 1.1 2001/10/17 12:10:09 lachoy Exp $
# Do installation of SQL for this package
use strict;
use vars qw( %HANDLERS );
@OpenInteract::SQLInstall::BasePage::ISA = qw( OpenInteract::SQLInstall );
my %files = (
tables => [ 'page.sql', 'page_content.sql' ],
security => [ 'install_security.dat' ],
);
%HANDLERS = (
create_structure => { '_default_' => [ 'create_structure',
{ table_file_list => $files{tables} } ] },
install_security => { '_default_' => [ 'install_data',
{ data_file_list => $files{security} } ] },
);
1;
|
|
From: Chris W. <la...@us...> - 2001-10-17 12:10:12
|
Update of /cvsroot/openinteract/OpenInteract/pkg/base_page/OpenInteract/Handler
In directory usw-pr-cvs1:/tmp/cvs-serv23597/pkg/base_page/OpenInteract/Handler
Added Files:
BasePage.pm
Log Message:
add handler/installer
--- NEW FILE: BasePage.pm ---
package OpenInteract::Handler::BasePage;
# $Id: BasePage.pm,v 1.1 2001/10/17 12:10:09 lachoy Exp $
use strict;
use OpenInteract::CommonHandler qw( OK ERROR );
use OpenInteract::Handler::GenericDispatcher qw( DEFAULT_SECURITY_KEY );
use SPOPS::Secure qw( :level );
@OpenInteract::Handler::BasePage::ISA = qw( OpenInteract::CommonHandler SPOPS::Secure );
$OpenInteract::Handler::BasePage::VERSION = sprintf("%d.%02d", q$Revision: 1.1 $ =~ /(\d+)\.(\d+)/);
$OpenInteract::Handler::BasePage::author = 'ch...@cw...';
$OpenInteract::Handler::BasePage::default_method = 'show';
@OpenInteract::Handler::BasePage::forbidden_methods = ();
%OpenInteract::Handler::BasePage::security = (
DEFAULT_SECURITY_KEY() => SEC_LEVEL_WRITE,
show => SEC_LEVEL_NONE, notify => SEC_LEVEL_READ,
);
sub MY_PACKAGE { return 'base_page' }
sub MY_HANDLER_PATH { return '/BasePage' }
sub MY_OBJECT_TYPE { return 'basicpage' }
sub MY_OBJECT_CLASS {
return OpenInteract::Request->instance->basicpage
}
sub MY_SEARCH_FIELDS { return () }
sub MY_OBJECT_FORM_TITLE { return 'Edit Page' }
sub MY_OBJECT_FORM_TEMPLATE { return '' }
sub MY_EDIT_RETURN_URL { return '/Thingy/search_form/' }
sub MY_EDIT_FIELDS {
return qw( myobject_id name type quantity purpose_in_life )
}
sub MY_EDIT_FIELDS_TOGGLED { return qw( is_indoctrinated ) }
sub MY_EDIT_FIELDS_DATE { return qw( birth_date ) }
sub MY_ALLOW_SEARCH_FORM { return undef }
sub MY_ALLOW_SEARCH { return undef }
sub MY_ALLOW_SHOW { return 1 }
sub MY_ALLOW_EDIT { return 1 }
sub MY_ALLOW_REMOVE { return 1 }
sub MY_ALLOW_WIZARD { return undef }
1;
|
|
From: Chris W. <la...@us...> - 2001-10-17 12:09:49
|
Update of /cvsroot/openinteract/OpenInteract/pkg/base_page
In directory usw-pr-cvs1:/tmp/cvs-serv23449/pkg/base_page
Added Files:
Changes MANIFEST MANIFEST.SKIP package.conf
Log Message:
added meta stuff
--- NEW FILE: Changes ---
Revision history for OpenInteract package base_page.
0.01 Mon Oct 15 22:11:22 2001
Package skeleton created by oi_manage
--- NEW FILE: MANIFEST ---
Changes
MANIFEST
MANIFEST.SKIP
OpenInteract/Handler/BasePage.pm
OpenInteract/SQLInstall/BasePage.pm
conf/action.perl
conf/spops.perl
doc/base_page.pod
doc/titles
package.conf
template/edit_document_box.meta
template/edit_document_box.tmpl
template/static_dir_listing.meta
template/static_dir_listing.tmpl
template/static_page_form.meta
template/static_page_form.tmpl
--- NEW FILE: MANIFEST.SKIP ---
\bCVS\b
~$
\.old$
\.bak$
^tmp
^_
--- NEW FILE: package.conf ---
name base_page
version 0.01
author Chris Winters <ch...@cw...>
module File::Basename
module Date::Calc
template_plugin
url http://www.openinteract.org/
sql_installer OpenInteract::SQLInstall::BasePage
description
Object and handler representing a static web page, either from the
filesystem or from objects stored within a database. You choose which
(or both) you would like to use from the <conf/action.perl> file. This
will be the default handler for most OpenInteract applications, and is
a fundamental part of the system.
|
|
From: Chris W. <la...@us...> - 2001-10-17 12:09:25
|
Update of /cvsroot/openinteract/OpenInteract In directory usw-pr-cvs1:/tmp/cvs-serv23356 Modified Files: FAQ Log Message: fix typo Index: FAQ =================================================================== RCS file: /cvsroot/openinteract/OpenInteract/FAQ,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** FAQ 2001/10/11 03:16:39 1.10 --- FAQ 2001/10/17 12:09:19 1.11 *************** *** 355,359 **** handler as before, and because there aren't any restrictions on content (e.g., we don't test to see if there's a news item or title ! before saving) OI happy creates an empty news item. Solution: Use concrete URLs for your images, particularly using --- 355,359 ---- handler as before, and because there aren't any restrictions on content (e.g., we don't test to see if there's a news item or title ! before saving) OI happily creates an empty news item. Solution: Use concrete URLs for your images, particularly using |
|
From: Chris W. <la...@us...> - 2001-10-17 12:08:54
|
Update of /cvsroot/openinteract/OpenInteract In directory usw-pr-cvs1:/tmp/cvs-serv23227 Modified Files: MANIFEST Log Message: added template/global_javascript and template/object_updates Index: MANIFEST =================================================================== RCS file: /cvsroot/openinteract/OpenInteract/MANIFEST,v retrieving revision 1.64 retrieving revision 1.65 diff -C2 -d -r1.64 -r1.65 *** MANIFEST 2001/10/15 05:29:33 1.64 --- MANIFEST 2001/10/17 12:08:51 1.65 *************** *** 122,125 **** --- 122,126 ---- template/form_text template/form_textarea + template/global_javascript template/header_cell template/header_row *************** *** 133,136 **** --- 134,138 ---- template/label_row_begin template/label_text_row + template/object_updates template/page_count template/row_color |
|
From: Chris W. <la...@us...> - 2001-10-17 12:07:48
|
Update of /cvsroot/openinteract/OpenInteract/template
In directory usw-pr-cvs1:/tmp/cvs-serv22887
Modified Files:
show_label
Log Message:
put a pre- and post-label in
Index: show_label
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/template/show_label,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** show_label 2001/10/14 20:54:47 1.2
--- show_label 2001/10/17 12:07:43 1.3
***************
*** 1,4 ****
[%########################################
! show_label( label, is_required, required_display )
Display a label. If it's required, pass in a true value for
'is_required'. If it's required and you don't pass anything in
--- 1,4 ----
[%########################################
! show_label( label, is_required, required_display, pre_label, post_label )
Display a label. If it's required, pass in a true value for
'is_required'. If it's required and you don't pass anything in
***************
*** 12,14 ****
[%- req = required_display -%]
[% END %]
! <b>[% label %][% req %]</b>
\ No newline at end of file
--- 12,14 ----
[%- req = required_display -%]
[% END %]
! [% pre_label %]<b>[% label %][% req %][% post_label %]</b>
\ No newline at end of file
|
|
From: Chris W. <la...@us...> - 2001-10-17 12:07:22
|
Update of /cvsroot/openinteract/OpenInteract/template
In directory usw-pr-cvs1:/tmp/cvs-serv22747
Added Files:
object_updates
Log Message:
added simple template widget for displaying updates for an object
--- NEW FILE: object_updates ---
[%- IF update_list.size == 0 -%]
brand new!
[%- ELSE -%]
<table border="0" cellpadding="3" cellspacing="0">
[% FOREACH item = update_list -%]
<tr><td><font size="-1">[% item.login_name %]</font></td>
<td><font size="-1">[% item.date %]</font></td>
<td><font size="-1">[% item.notes %]</font></td></tr>
[%- END %]
</table>
[%- END -%]
|
|
From: Chris W. <la...@us...> - 2001-10-17 12:06:55
|
Update of /cvsroot/openinteract/OpenInteract/template
In directory usw-pr-cvs1:/tmp/cvs-serv22584
Modified Files:
label_row_begin
Log Message:
small change
Index: label_row_begin
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/template/label_row_begin,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** label_row_begin 2001/10/09 00:52:45 1.4
--- label_row_begin 2001/10/17 12:06:52 1.5
***************
*** 9,12 ****
<tr valign="[% row_valign %]" bgcolor="[% INCLUDE row_color %]">
<td align="[% label_align %]" colspan="[% colspan %]">
! [%- INCLUDE show_label -%]
</td>
--- 9,12 ----
<tr valign="[% row_valign %]" bgcolor="[% INCLUDE row_color %]">
<td align="[% label_align %]" colspan="[% colspan %]">
! [%- PROCESS show_label -%]
</td>
|
|
From: Chris W. <la...@us...> - 2001-10-17 12:06:33
|
Update of /cvsroot/openinteract/OpenInteract/template
In directory usw-pr-cvs1:/tmp/cvs-serv22482
Added Files:
global_javascript
Log Message:
add template for javascript to appear on every page
--- NEW FILE: global_javascript ---
function confirm_remove( object_type, name, url ) {
var msg = 'Do you want to remove ' + object_type + ' (' + name + ') ?'
if ( confirm( msg ) ) {
self.location = url;
}
}
|
|
From: Chris W. <la...@us...> - 2001-10-17 12:05:56
|
Update of /cvsroot/openinteract/OpenInteract/pkg/base_theme/template In directory usw-pr-cvs1:/tmp/cvs-serv22295/base_theme/template Modified Files: base_main.tmpl base_simple.tmpl Log Message: add the 'global_javascript' template to base_main and base_simple Index: base_main.tmpl =================================================================== RCS file: /cvsroot/openinteract/OpenInteract/pkg/base_theme/template/base_main.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** base_main.tmpl 2001/08/13 16:10:15 1.3 --- base_main.tmpl 2001/10/17 12:05:53 1.4 *************** *** 8,11 **** --- 8,13 ---- [% page.script %] + [% PROCESS global_javascript %] + // --> </script> Index: base_simple.tmpl =================================================================== RCS file: /cvsroot/openinteract/OpenInteract/pkg/base_theme/template/base_simple.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** base_simple.tmpl 2001/10/03 13:08:13 1.3 --- base_simple.tmpl 2001/10/17 12:05:53 1.4 *************** *** 7,10 **** --- 7,12 ---- [% page.script %] + [%- PROCESS global_javascript -%] + // --> </script> |
|
From: Chris W. <la...@us...> - 2001-10-17 12:05:55
|
Update of /cvsroot/openinteract/OpenInteract/pkg/base_theme In directory usw-pr-cvs1:/tmp/cvs-serv22295/base_theme Modified Files: Changes package.conf Log Message: add the 'global_javascript' template to base_main and base_simple Index: Changes =================================================================== RCS file: /cvsroot/openinteract/OpenInteract/pkg/base_theme/Changes,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** Changes 2001/10/03 13:08:01 1.17 --- Changes 2001/10/17 12:05:53 1.18 *************** *** 1,4 **** --- 1,9 ---- Revision history for OpenInteract package base_theme. + 1.28 Wed Oct 17 08:19:55 EDT 2001 + + Add 'global_javascript' template to appear on every page, via + base_main and base_simple. + 1.27 Wed Oct 3 09:21:19 EDT 2001 Index: package.conf =================================================================== RCS file: /cvsroot/openinteract/OpenInteract/pkg/base_theme/package.conf,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** package.conf 2001/10/03 13:08:01 1.17 --- package.conf 2001/10/17 12:05:53 1.18 *************** *** 1,4 **** name base_theme ! version 1.27 author Chris Winters (ch...@cw...) url http://www.openinteract.org/ --- 1,4 ---- name base_theme ! version 1.28 author Chris Winters (ch...@cw...) url http://www.openinteract.org/ |
|
From: Chris W. <la...@us...> - 2001-10-17 12:03:56
|
Update of /cvsroot/openinteract/OpenInteract/pkg/static_page/conf
In directory usw-pr-cvs1:/tmp/cvs-serv21679/static_page/conf
Modified Files:
spops.perl
Log Message:
cosmetic
Index: spops.perl
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/pkg/static_page/conf/spops.perl,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** spops.perl 2001/08/12 01:45:37 1.6
--- spops.perl 2001/10/17 12:03:53 1.7
***************
*** 1,30 ****
$spops = {
! 'basicpage' => {
! class => 'OpenInteract::BasicPage',
! code_class => 'OpenInteract::BasicPage',
! isa => [ qw/ OpenInteract::SPOPS::DBI SPOPS::Secure::Hierarchy
! SPOPS::Utility SPOPS::DBI / ],
! field => [ qw/ location directory title author keywords pagetext script
! active_on expires_on boxes main_template is_file / ],
! column_group => { listing => [ qw/ location directory title author keywords
! active_on expires_on is_file / ] },
! id_field => 'location',
! no_insert => [],
! skip_undef => [],
! no_update => [],
! base_table => 'basic_page',
! content_table => 'basic_page_content',
! sql_defaults => [],
! alias => [ 'static_page' ],
! has_a => {},
! links_to => {},
! track => { create => 1, update => 1, remove => 1 },
! display => { url => '/BasicPage/show/' },
! name => 'title',
! object_name => 'Document',
!
! hierarchy_separator => '/',
! hierarchy_field => 'location',
! },
!
};
--- 1,30 ----
$spops = {
! 'basicpage' => {
! class => 'OpenInteract::BasicPage',
! code_class => 'OpenInteract::BasicPage',
! isa => [ qw/ OpenInteract::SPOPS::DBI
! SPOPS::Secure::Hierarchy
! SPOPS::Utility SPOPS::DBI / ],
! field => [ qw/ location directory title author keywords
! active_on expires_on boxes main_template
! is_file / ],
! column_group => {},
! id_field => 'location',
! no_insert => [],
! skip_undef => [],
! no_update => [],
! base_table => 'basic_page',
! sql_defaults => [],
! alias => [ 'static_page' ],
! has_a => {},
! links_to => {},
! track => { create => 1, update => 1, remove => 1 },
! display => { url => '/BasicPage/show/' },
! name => 'title',
! object_name => 'Document',
! storage => 'filesystem',
! db_table => 'basic_page_content',
! hierarchy_separator => '/',
! hierarchy_field => 'location',
! },
};
|
|
From: Chris W. <la...@us...> - 2001-10-17 12:03:33
|
Update of /cvsroot/openinteract/OpenInteract/pkg/static_page In directory usw-pr-cvs1:/tmp/cvs-serv21530/static_page Modified Files: Changes package.conf Log Message: change ruleset_add -> ruleset_behavior Index: Changes =================================================================== RCS file: /cvsroot/openinteract/OpenInteract/pkg/static_page/Changes,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** Changes 2001/10/12 16:04:14 1.26 --- Changes 2001/10/17 12:03:31 1.27 *************** *** 1,4 **** --- 1,8 ---- Revision history for OpenInteract package static_page + 1.52 Wed Oct 17 08:17:53 EDT 2001 + + Change ruleset_add -> ruleset_behavior in OI/BasicPage.pm + 1.51 Fri Oct 12 08:55:12 EDT 2001 Index: package.conf =================================================================== RCS file: /cvsroot/openinteract/OpenInteract/pkg/static_page/package.conf,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** package.conf 2001/10/12 16:04:14 1.27 --- package.conf 2001/10/17 12:03:31 1.28 *************** *** 1,4 **** name static_page ! version 1.51 author Chris Winters (ch...@cw...) url http://www.openinteract.org/ --- 1,4 ---- name static_page ! version 1.52 author Chris Winters (ch...@cw...) url http://www.openinteract.org/ |
|
From: Chris W. <la...@us...> - 2001-10-17 12:03:33
|
Update of /cvsroot/openinteract/OpenInteract/pkg/static_page/OpenInteract
In directory usw-pr-cvs1:/tmp/cvs-serv21530/static_page/OpenInteract
Modified Files:
BasicPage.pm
Log Message:
change ruleset_add -> ruleset_behavior
Index: BasicPage.pm
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/pkg/static_page/OpenInteract/BasicPage.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** BasicPage.pm 2001/07/10 13:52:14 1.2
--- BasicPage.pm 2001/10/17 12:03:31 1.3
***************
*** 61,65 ****
# whenever we save the object
! sub ruleset_add {
my ( $class, $rs_table ) = @_;
push @{ $rs_table->{pre_save_action} }, \&find_directory;
--- 61,65 ----
# whenever we save the object
! sub ruleset_behavior {
my ( $class, $rs_table ) = @_;
push @{ $rs_table->{pre_save_action} }, \&find_directory;
***************
*** 131,135 ****
Set the C<directory> property from the C<location> property
! =head1 BUGS
None known.
--- 131,135 ----
Set the C<directory> property from the C<location> property
! =head1 BUGS
None known.
|
|
From: Chris W. <la...@us...> - 2001-10-17 12:02:16
|
Update of /cvsroot/openinteract/OpenInteract/pkg/static_page/OpenInteract/Handler
In directory usw-pr-cvs1:/tmp/cvs-serv21202/static_page/OpenInteract/Handler
Modified Files:
BasicPage.pm
Log Message:
cosmetic
Index: BasicPage.pm
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/pkg/static_page/OpenInteract/Handler/BasicPage.pm,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** BasicPage.pm 2001/10/12 16:04:14 1.15
--- BasicPage.pm 2001/10/17 12:02:13 1.16
***************
*** 71,75 ****
if ( $@ ) {
OpenIntereact::Error->set( SPOPS::Error->get );
! $R->throw( { code => 403 } );
$params->{dir_list} = [];
}
--- 71,75 ----
if ( $@ ) {
OpenIntereact::Error->set( SPOPS::Error->get );
! $R->throw({ code => 403 });
$params->{dir_list} = [];
}
|
|
From: Chris W. <la...@us...> - 2001-10-17 04:54:33
|
Update of /cvsroot/openinteract/OpenInteract/conf
In directory usw-pr-cvs1:/tmp/cvs-serv26968
Modified Files:
sample-server.perl
Log Message:
make all modifications from moving to .ini-style
Index: sample-server.perl
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/conf/sample-server.perl,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** sample-server.perl 2001/10/11 03:29:01 1.26
--- sample-server.perl 2001/10/17 04:54:30 1.27
***************
*** 55,58 ****
--- 55,64 ----
+ 'datasource' => {
+ 'default_connection_db' => 'main',
+ 'default_connection_ldap' => 'main',
+ },
+
+
########################################
# DBI Datasource Definitions
***************
*** 89,93 ****
# long_read_len (see DBI docs under 'LongTruncOk')
- 'default_connection_db' => 'main',
'db_info' => {
main => {
--- 95,98 ----
***************
*** 137,141 ****
# See entry in Net::LDAP->new() for possible values
- 'default_connection_ldap' => 'main',
'ldap_info' => {
main => {
--- 142,145 ----
***************
*** 308,311 ****
--- 312,320 ----
'compile_ext' => '.ttc',
+ # Extension for template files -- used to lookup files by
+ # the TT provider module (shouldn't need to change).
+
+ 'template_ext' => 'tmpl',
+
},
***************
*** 321,335 ****
'system_alias' => {
! 'OpenInteract::Cookies::Apache' => [ qw/ cookies / ],
! 'OpenInteract::Session::DBI' => [ qw/ session / ],
! 'OpenInteract::Template::Process' => [ qw/ template / ],
! 'OpenInteract::PackageRepository' => [ qw/ repository / ],
! 'OpenInteract::Package' => [ qw/ package / ],
! 'OpenInteract::Error' => [ qw/ error / ],
! 'OpenInteract::Auth' => [ qw/ auth auth_user auth_group / ],
! '%%WEBSITE_NAME%%::Security' => [ qw/ security_object object_security security / ],
! 'SPOPS::Secure' => [ qw/ secure / ],
! 'OpenInteract::Error::Main' => [ qw/ error_handler / ],
! 'OpenInteract::Handler::Component' => [ qw/ component / ],
},
--- 330,348 ----
'system_alias' => {
! cookies => 'OpenInteract::Cookies::Apache',
! session => 'OpenInteract::Session::DBI',
! template => 'OpenInteract::Template::Process',
! repository => 'OpenInteract::PackageRepository',
! package => 'OpenInteract::Package',
! error => 'OpenInteract::Error',
! auth => 'OpenInteract::Auth',
! auth_user => 'OpenInteract::Auth',
! auth_group => 'OpenInteract::Auth',
! security_object => '%%WEBSITE_NAME%%::Security',
! object_security => '%%WEBSITE_NAME%%::Security',
! security => '%%WEBSITE_NAME%%::Security',
! secure => 'SPOPS::Secure',
! error_handler => 'OpenInteract::Error::Main',
! component => 'OpenInteract::Handler::Component',
},
***************
*** 401,421 ****
# Errors
#
! # Class of error object (shouldn't need to change)
!
! 'error_object_class' => '%%WEBSITE_NAME%%::ErrorObject',
!
! # Class of default error handler -- one that can handle
! # every error thrown by OpenInteract (shouldn't need to
# change)
!
! 'default_error_handler' => 'OpenInteract::Error::System',
! ########################################
! # File Extensions
! #
! # Extension for template files -- used to lookup files by
! # the TT provider module (shouldn't need to change).
- 'template_ext' => 'tmpl',
########################################
--- 414,428 ----
# Errors
#
! # error_object_class: Class of error object (shouldn't need to
# change)
! # default_error_handler: Class of default error handler -- one
! # that can handle every error thrown by OpenInteract (shouldn't
! # need to change)
! 'error' => {
! 'error_object_class' => '%%WEBSITE_NAME%%::ErrorObject',
! 'default_error_handler' => 'OpenInteract::Error::System',
! },
########################################
***************
*** 425,431 ****
# overwritten at server startup.
! 'stash_class' => '',
! 'website_name' => '',
! 'request_class' => '',
########################################
--- 432,440 ----
# overwritten at server startup.
! 'server_info' => {
! 'stash_class' => '',
! 'website_name' => '',
! 'request_class' => '',
! },
########################################
***************
*** 452,471 ****
# how OpenInteract should respond to a null action (under the ''
# key) and how it should respond to an action that is not found
! # (under '_notfound_')
!
! # Note that we used to use 'default' instead of
! # '_default_action_info_' -- the former is now deprecated, so you
! # should move to the new one!
! 'action' => {
! '_default_action_info_' => {
'template_processor' => 'OpenInteract::Template::Process',
'conductor' => 'main',
'method' => 'handler',
},
! '' => {
'redir' => 'basicpage',
},
! '_notfound_' => {
'redir' => 'basicpage',
},
--- 461,476 ----
# how OpenInteract should respond to a null action (under the ''
# key) and how it should respond to an action that is not found
! # (under 'not_found')
! 'action_info' => {
! 'default' => {
'template_processor' => 'OpenInteract::Template::Process',
'conductor' => 'main',
'method' => 'handler',
},
! 'none' => {
'redir' => 'basicpage',
},
! 'not_found' => {
'redir' => 'basicpage',
},
|
|
From: Chris W. <la...@us...> - 2001-10-17 04:53:50
|
Update of /cvsroot/openinteract/OpenInteract/conf In directory usw-pr-cvs1:/tmp/cvs-serv26878 Modified Files: sample-server.ini Log Message: small mods -- comment the 'Global' item and add the 'server_info' section Index: sample-server.ini =================================================================== RCS file: /cvsroot/openinteract/OpenInteract/conf/sample-server.ini,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** sample-server.ini 2001/10/17 02:45:17 1.2 --- sample-server.ini 2001/10/17 04:53:47 1.3 *************** *** 1,2 **** --- 1,6 ---- + # + # Items in this section will be available from the configuration + # object's root, at least for the time being + [Global] DEBUG = 0 *************** *** 335,338 **** --- 339,351 ---- # + # These are overwritten at server startup + + [server_info] + stash_class = + request_class = + website_name = + + + # # Caching is currently not implemented but when it is all cache # information will go here. *************** *** 382,402 **** [action_info not_found] redir = basicpage - - - # NOTES: - # -- Create new section 'datasource' and put 'default_datasource_db' - # and 'default_datasource_ldap' there - - # -- Put some 'template_ext' into [template_info] group - - # -- Create new section 'error' and put 'error_object_class' and - # 'default_error_handler' there - - # -- Create new section 'mail' and put 'smtp_host', 'admin_email', - # 'content_email' there - - # -- Reverse how we do 'system_alias' -- it's easier now :-) - - # -- split up our action items into 'action_info default', - # 'action_info none' and 'action_info not_found' sections in the - # group 'action_info' --- 395,396 ---- |
|
From: Chris W. <la...@us...> - 2001-10-17 04:49:01
|
Update of /cvsroot/openinteract/OpenInteract/OpenInteract/Config
In directory usw-pr-cvs1:/tmp/cvs-serv26087
Modified Files:
Ini.pm IniFile.pm
Log Message:
small modifications -- basically working now
Index: Ini.pm
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/OpenInteract/Config/Ini.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Ini.pm 2001/10/17 02:58:22 1.1
--- Ini.pm 2001/10/17 04:48:58 1.2
***************
*** 4,7 ****
--- 4,8 ----
use strict;
+ use OpenInteract::Config qw( _w DEBUG );
# Stuff in metadata (_m):
***************
*** 49,53 ****
my ( $self, $filename ) = @_;
! warn "Trying to read file ($filename)\n";
open( CONF, $filename ) || die "Cannot open ($filename) for reading: $!";
--- 50,54 ----
my ( $self, $filename ) = @_;
! DEBUG && _w( 1, "Trying to read INI file ($filename)" );
open( CONF, $filename ) || die "Cannot open ($filename) for reading: $!";
***************
*** 69,73 ****
}
if ( /^\s*\[\s*(\S|\S.*\S)\s*\]\s*$/) {
! warn "--Found section ($1)\n";
( $section, $sub_section ) = $self->read_section_head( $1, \@comments );
@comments = ();
--- 70,74 ----
}
if ( /^\s*\[\s*(\S|\S.*\S)\s*\]\s*$/) {
! DEBUG && _w( 2, "Found section ($1)" );
( $section, $sub_section ) = $self->read_section_head( $1, \@comments );
@comments = ();
***************
*** 75,79 ****
}
my ( $param, $value ) = /^\s*([^=]+?)\s*=\s*(.*)\s*$/;
! warn "--Setting ($param) to ($value)\n";
$self->read_item( $section, $sub_section, $param, $value );
}
--- 76,80 ----
}
my ( $param, $value ) = /^\s*([^=]+?)\s*=\s*(.*)\s*$/;
! DEBUG && _w( 2, "Setting ($param) to ($value)" );
$self->read_item( $section, $sub_section, $param, $value );
}
***************
*** 100,119 ****
sub read_item {
my ( $self, $section, $sub_section, $param, $value ) = @_;
! my $set_value_in = ( $sub_section )
! ? $self->{ $section }{ $sub_section }
! : $self->{ $section };
! my $existing = $set_value_in->{ $param };
! if ( $existing and ref $set_value_in eq 'ARRAY' ) {
! push @{ $set_value_in->{ $param } }, $value;
}
elsif ( $existing ) {
! push @{ $set_value_in->{ $param } }, $existing, $value
}
else {
! $set_value_in->{ $param } = $value;
}
}
-
########################################
# OUTPUT
--- 101,133 ----
sub read_item {
my ( $self, $section, $sub_section, $param, $value ) = @_;
!
! # Special case -- 'Global' stuff goes in the config object root
!
! if ( $section eq 'Global' ) {
! push @{ $self->{_m}{global} }, $param;
! $self->set_value( $self, $param, $value );
! return;
}
+
+ return ( $sub_section )
+ ? $self->set_value( $self->{ $section }{ $sub_section }, $param, $value )
+ : $self->set_value( $self->{ $section }, $param, $value );
+ }
+
+
+ sub set_value {
+ my ( $self, $set_in, $param, $value ) = @_;
+ my $existing = $set_in->{ $param };
+ if ( $existing and ref $set_in->{ $param } eq 'ARRAY' ) {
+ push @{ $set_in->{ $param } }, $value;
+ }
elsif ( $existing ) {
! push @{ $set_in->{ $param } }, $existing, $value
}
else {
! $set_in->{ $param } = $value;
}
}
########################################
# OUTPUT
***************
*** 128,134 ****
$filename = "$filename.new";
}
! warn "--Writing INI to ($filename) (original: $original_filename)\n";
open( OUT, "> $filename" ) || die "Cannot write configuration to ($filename): $!";
! print OUT "# Written by ", ref $self, " at ", scalar localtime, "\n\n";
foreach my $full_section ( @{ $self->{_m}{order} } ) {
print OUT $self->{_m}{comments}{ $full_section }, "\n",
--- 142,155 ----
$filename = "$filename.new";
}
!
! # Set 'Global' items from the config object root
!
! foreach my $key ( @{ $self->{_m}{global} } ) {
! $self->{Global}{ $key } = $self->{ $key };
! }
!
! DEBUG && _w( 1, "--Writing INI to ($filename) (original: $original_filename)" );
open( OUT, "> $filename" ) || die "Cannot write configuration to ($filename): $!";
! print OUT "# Written by ", ref $self, " at ", scalar localtime, "\n";
foreach my $full_section ( @{ $self->{_m}{order} } ) {
print OUT $self->{_m}{comments}{ $full_section }, "\n",
Index: IniFile.pm
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/OpenInteract/Config/IniFile.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** IniFile.pm 2001/10/17 02:58:22 1.1
--- IniFile.pm 2001/10/17 04:48:58 1.2
***************
*** 4,8 ****
use strict;
- use Data::Dumper qw( Dumper );
use OpenInteract::Config qw( _w DEBUG );
use OpenInteract::Config::Ini;
--- 4,7 ----
***************
*** 22,25 ****
--- 21,26 ----
+ # Cheeseball, but it works
+
sub write_config {
my ( $self ) = @_;
***************
*** 28,32 ****
$backup->write_file;
}
-
--- 29,32 ----
|
|
From: Chris W. <la...@us...> - 2001-10-17 04:47:12
|
Update of /cvsroot/openinteract/OpenInteract/pkg/system_doc/OpenInteract/Handler
In directory usw-pr-cvs1:/tmp/cvs-serv25485/pkg/system_doc/OpenInteract/Handler
Modified Files:
SystemDoc.pm
Log Message:
modify to reflect server configuration file changes
Index: SystemDoc.pm
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/pkg/system_doc/OpenInteract/Handler/SystemDoc.pm,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** SystemDoc.pm 2001/08/24 21:00:23 1.7
--- SystemDoc.pm 2001/10/17 04:47:08 1.8
***************
*** 18,23 ****
$OpenInteract::Handler::SystemDoc::default_method = 'listing';
@OpenInteract::Handler::SystemDoc::forbidden_methods = qw( _colonify _uncolonify );
! %OpenInteract::Handler::SystemDoc::security = (
! listing => SEC_LEVEL_READ, show => SEC_LEVEL_READ,
);
--- 18,23 ----
$OpenInteract::Handler::SystemDoc::default_method = 'listing';
@OpenInteract::Handler::SystemDoc::forbidden_methods = qw( _colonify _uncolonify );
! %OpenInteract::Handler::SystemDoc::security = (
! listing => SEC_LEVEL_READ, show => SEC_LEVEL_READ,
);
***************
*** 28,36 ****
my ( $class, $p ) = @_;
my $R = OpenInteract::Request->instance;
! my $params = { error_msg => $p->{error_msg},
main_script => MAIN_SCRIPT };
$R->{page}->{title} = 'OpenInteract System Documentation / Menu';
! return $R->template->handler( {}, $params,
! { db => 'system_doc_menu',
package => 'system_doc' } );
}
--- 28,36 ----
my ( $class, $p ) = @_;
my $R = OpenInteract::Request->instance;
! my $params = { error_msg => $p->{error_msg},
main_script => MAIN_SCRIPT };
$R->{page}->{title} = 'OpenInteract System Documentation / Menu';
! return $R->template->handler( {}, $params,
! { db => 'system_doc_menu',
package => 'system_doc' } );
}
***************
*** 41,45 ****
my ( $class, $p ) = @_;
my $R = OpenInteract::Request->instance;
! my $params = { error_msg => $p->{error_msg},
main_script => MAIN_SCRIPT };
--- 41,45 ----
my ( $class, $p ) = @_;
my $R = OpenInteract::Request->instance;
! my $params = { error_msg => $p->{error_msg},
main_script => MAIN_SCRIPT };
***************
*** 48,53 ****
# so we can read the files from 'doc/' directly
! my $repos = OpenInteract::PackageRepository->fetch(
! undef,
{ directory => $R->CONFIG->{dir}->{base} } );
my $pkg_list = $repos->fetch_all_packages();
--- 48,53 ----
# so we can read the files from 'doc/' directly
! my $repos = OpenInteract::PackageRepository->fetch(
! undef,
{ directory => $R->CONFIG->{dir}->{base} } );
my $pkg_list = $repos->fetch_all_packages();
***************
*** 75,79 ****
my ( $filename, $title ) = /^([\w.]+)\s+(.*)$/;
$R->DEBUG && $R->scrib( 1, "Found $filename / $title from $_" );
! push @{ $pkg->{tmp_doc_list} },
{ filename => $filename, title => $title };
}
--- 75,79 ----
my ( $filename, $title ) = /^([\w.]+)\s+(.*)$/;
$R->DEBUG && $R->scrib( 1, "Found $filename / $title from $_" );
! push @{ $pkg->{tmp_doc_list} },
{ filename => $filename, title => $title };
}
***************
*** 90,105 ****
# Ensure that we get no tmp files and that the file exists
! my @doc_files = grep { -f "$doc_dir/$_" }
! grep ! /^(tmp|\.|\_)/,
! grep ! /~$/,
readdir( DOC );
closedir( DOC );
! $pkg->{tmp_doc_list} = [ map { { filename => $_,
! title => "$_ (no title)" } }
@doc_files ];
}
$params->{package_list} = $pkg_list;
$R->{page}->{title} = 'OpenInteract Package Documentation';
! return $R->template->handler( {}, $params,
{ db => 'package_doc',
package => 'system_doc' } );
--- 90,105 ----
# Ensure that we get no tmp files and that the file exists
! my @doc_files = grep { -f "$doc_dir/$_" }
! grep ! /^(tmp|\.|\_)/,
! grep ! /~$/,
readdir( DOC );
closedir( DOC );
! $pkg->{tmp_doc_list} = [ map { { filename => $_,
! title => "$_ (no title)" } }
@doc_files ];
}
$params->{package_list} = $pkg_list;
$R->{page}->{title} = 'OpenInteract Package Documentation';
! return $R->template->handler( {}, $params,
{ db => 'package_doc',
package => 'system_doc' } );
***************
*** 121,125 ****
my %this_inc = %INC;
my @top = ();
! my $website_name = $R->CONFIG->{website_name};
$R->DEBUG && $R->scrib( 1, "Website name being filtered: ($website_name)" );
--- 121,125 ----
my %this_inc = %INC;
my @top = ();
! my $website_name = $R->CONFIG->{server_info}{website_name} || $R->CONFIG->{website_name};
$R->DEBUG && $R->scrib( 1, "Website name being filtered: ($website_name)" );
***************
*** 155,159 ****
$curr_parent = $first;
$curr_parent =~ s/\.pm$//;
! $top[ $count ] = [ $curr_parent, [] ]; # _colonify( $curr_parent )
}
$R->DEBUG && $R->scrib( 1, "Found package $full_pkg" );
--- 155,159 ----
$curr_parent = $first;
$curr_parent =~ s/\.pm$//;
! $top[ $count ] = [ $curr_parent, [] ]; # _colonify( $curr_parent )
}
$R->DEBUG && $R->scrib( 1, "Found package $full_pkg" );
***************
*** 163,169 ****
$params->{module_list} = \@top;
$R->DEBUG && $R->scrib( 1, "Number of module parents found: ", scalar @top );
!
$R->{page}->{title} = 'OpenInteract System Documentation / Module Documentation';
! return $R->template->handler( {}, $params,
{ db => 'system_module_listing',
package => 'system_doc' } );
--- 163,169 ----
$params->{module_list} = \@top;
$R->DEBUG && $R->scrib( 1, "Number of module parents found: ", scalar @top );
!
$R->{page}->{title} = 'OpenInteract System Documentation / Module Documentation';
! return $R->template->handler( {}, $params,
{ db => 'system_module_listing',
package => 'system_doc' } );
|
|
From: Chris W. <la...@us...> - 2001-10-17 04:47:12
|
Update of /cvsroot/openinteract/OpenInteract/script
In directory usw-pr-cvs1:/tmp/cvs-serv25485/script
Modified Files:
oi_manage
Log Message:
modify to reflect server configuration file changes
Index: oi_manage
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/script/oi_manage,v
retrieving revision 1.45
retrieving revision 1.46
diff -C2 -d -r1.45 -r1.46
*** oi_manage 2001/10/10 13:55:07 1.45
--- oi_manage 2001/10/17 04:47:08 1.46
***************
*** 1191,1195 ****
ACTION:
foreach my $action ( sort keys %{ $C->{action} } ) {
- next ACTION if ( $action eq '_default_action_info_' );
if ( ! $action or $action =~ /^_/ ) {
my $redir_action = $C->{action}{ $action }{redir};
--- 1191,1194 ----
***************
*** 2440,2444 ****
DBKEY:
foreach my $db_key ( keys %{ $C->{db_info} } ) {
! my $default_status = ( $db_key eq $C->{default_connection_db} )
? " (default connection) " : '';
push @msg, "\nStatus of connection <<$db_key>>$default_status\n$SEP";
--- 2439,2444 ----
DBKEY:
foreach my $db_key ( keys %{ $C->{db_info} } ) {
! my $default_status = ( $db_key eq $C->{datasource}{default_connection_db} ||
! $db_key eq $C->{default_connection_db} )
? " (default connection) " : '';
push @msg, "\nStatus of connection <<$db_key>>$default_status\n$SEP";
***************
*** 2526,2530 ****
LDAPKEY:
foreach my $ldap_key ( keys %{ $C->{ldap_info} } ) {
! my $default_status = ( $ldap_key eq $C->{default_connection_ldap} )
? " (default connection) " : '';
push @msg, "\nStatus of connection <<$ldap_key>>$default_status\n$SEP";
--- 2526,2531 ----
LDAPKEY:
foreach my $ldap_key ( keys %{ $C->{ldap_info} } ) {
! my $default_status = ( $ldap_key eq $C->{datasource}{default_connection_ldap} ||
! $ldap_key eq $C->{default_connection_ldap} )
? " (default connection) " : '';
push @msg, "\nStatus of connection <<$ldap_key>>$default_status\n$SEP";
|
|
From: Chris W. <la...@us...> - 2001-10-17 04:47:12
|
Update of /cvsroot/openinteract/OpenInteract/pkg/base_user/OpenInteract/SQLInstall
In directory usw-pr-cvs1:/tmp/cvs-serv25485/pkg/base_user/OpenInteract/SQLInstall
Modified Files:
User.pm
Log Message:
modify to reflect server configuration file changes
Index: User.pm
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/pkg/base_user/OpenInteract/SQLInstall/User.pm,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** User.pm 2001/08/12 14:45:42 1.4
--- User.pm 2001/10/17 04:47:08 1.5
***************
*** 36,40 ****
ok => 1 };
my $CONFIG = $R->CONFIG;
! my $user = $R->user->new({ email => $CONFIG->{admin_email},
login_name => 'superuser',
first_name => 'Super',
--- 36,40 ----
ok => 1 };
my $CONFIG = $R->CONFIG;
! my $user = $R->user->new({ email => $CONFIG->{mail}{admin_email} || $CONFIG->{admin_email},
login_name => 'superuser',
first_name => 'Super',
|
|
From: Chris W. <la...@us...> - 2001-10-17 04:47:12
|
Update of /cvsroot/openinteract/OpenInteract/extra_packages/weblink/OpenInteract/Handler
In directory usw-pr-cvs1:/tmp/cvs-serv25485/extra_packages/weblink/OpenInteract/Handler
Modified Files:
Weblink.pm
Log Message:
modify to reflect server configuration file changes
Index: Weblink.pm
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/extra_packages/weblink/OpenInteract/Handler/Weblink.pm,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Weblink.pm 2001/09/05 22:58:57 1.3
--- Weblink.pm 2001/10/17 04:47:08 1.4
***************
*** 229,233 ****
}
else {
! my $to = $R->CONFIG->{content_email} || $R->CONFIG->{admin_email};
$weblink->notify({ notes => 'Be sure to login as an admin, then go to the listed URL.',
subject => 'CTAA On-Line: New Link for Approval',
--- 229,233 ----
}
else {
! my $to = $R->CONFIG->{mail}{content_email} || $R->CONFIG->{mail}{admin_email} || $R->CONFIG->{admin_email};
$weblink->notify({ notes => 'Be sure to login as an admin, then go to the listed URL.',
subject => 'CTAA On-Line: New Link for Approval',
|
|
From: Chris W. <la...@us...> - 2001-10-17 04:47:12
|
Update of /cvsroot/openinteract/OpenInteract/pkg/base_user
In directory usw-pr-cvs1:/tmp/cvs-serv25485/pkg/base_user
Modified Files:
Changes package.conf
Log Message:
modify to reflect server configuration file changes
Index: Changes
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/pkg/base_user/Changes,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** Changes 2001/10/07 20:16:20 1.23
--- Changes 2001/10/17 04:47:08 1.24
***************
*** 1,4 ****
--- 1,9 ----
Revision history for OpenInteract package base_user.
+ 1.38 Tue Oct 16 23:52:13 EDT 2001
+
+ Updated '$CONFIG->{admin_email}' to
+ '$CONFIG->{mail}{admin_email}' in SQLInstaller
+
1.37 Sun Oct 7 16:29:42 EDT 2001
Index: package.conf
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/pkg/base_user/package.conf,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** package.conf 2001/10/07 20:16:20 1.23
--- package.conf 2001/10/17 04:47:08 1.24
***************
*** 1,4 ****
name base_user
! version 1.37
author Chris Winters (ch...@cw...)
url http://www.openinteract.org/
--- 1,4 ----
name base_user
! version 1.38
author Chris Winters (ch...@cw...)
url http://www.openinteract.org/
|