Update of /cvsroot/openinteract/OpenInteract/pkg/system_doc/OpenInteract/SQLInstall
In directory usw-pr-cvs1:/tmp/cvs-serv19448/OpenInteract/SQLInstall
Modified Files:
SystemDoc.pm
Log Message:
read in the data in data/page.dat
Index: SystemDoc.pm
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/pkg/system_doc/OpenInteract/SQLInstall/SystemDoc.pm,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** SystemDoc.pm 2001/02/02 06:20:42 1.1.1.1
--- SystemDoc.pm 2001/10/29 03:37:58 1.2
***************
*** 11,18 ****
--- 11,21 ----
my %files = (
+ data => [ 'page.dat' ],
security => [ 'install_security.dat' ],
);
%HANDLERS = (
+ install_data => { '_default_' => [ 'install_data',
+ { data_file_list => $files{data} } ] },
install_security => { '_default_' => [ 'install_data',
{ data_file_list => $files{security} } ] },
***************
*** 20,52 ****
1;
-
- __END__
-
- =pod
-
- =head1 NAME
-
- OpenInteract::SQLInstall::SystemDoc - SQL installer for the system_doc package
-
- =head1 SYNOPSIS
-
- =head1 DESCRIPTION
-
- =head1 BUGS
-
- =head1 TO DO
-
- =head1 SEE ALSO
-
- =head1 COPYRIGHT
-
- Copyright (c) 2001 intes.net, inc.. All rights reserved.
-
- This library is free software; you can redistribute it and/or modify
- it under the same terms as Perl itself.
-
- =head1 AUTHORS
-
- Chris Winters <ch...@cw...>
-
- =cut
--- 23,24 ----
|