Update of /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30824/OpenInteract2
Modified Files:
Package.pm
Log Message:
OIN-137: move from package.conf to package.ini
Index: Package.pm
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/Package.pm,v
retrieving revision 1.49
retrieving revision 1.50
diff -C2 -d -r1.49 -r1.50
*** Package.pm 26 Feb 2005 23:04:05 -0000 1.49
--- Package.pm 28 Feb 2005 00:59:18 -0000 1.50
***************
*** 272,285 ****
}
- sub get_doc_files {
- my ( $self ) = @_;
- my $files = $self->get_files;
- my @base_doc_files = grep { m|^doc| } @{ $files };
- my $dir = $self->directory;
- my @check_files = map { catfile( $dir, $_ ) } @base_doc_files;
- $self->_check_file_validity( \@check_files );
- return \@base_doc_files;
- }
-
sub get_message_files {
my ( $self ) = @_;
--- 272,275 ----
***************
*** 378,382 ****
# Creates a package directories using our base subdirectories
! # along with a package.conf file and some other goodies (?)
# Currently we're taking the strategy that exceptions from the action
--- 368,372 ----
# Creates a package directories using our base subdirectories
! # along with a package.ini file and some other goodies (?)
# Currently we're taking the strategy that exceptions from the action
***************
*** 1674,1684 ****
Returns: arrayref of relative action configuration files.
- B<get_doc_files()>
-
- Retrieves all documentation from the package. This includes all files
- in C<doc/>.
-
- Returns: arrayref of relative documentation files.
-
B<get_message_files()>
--- 1664,1667 ----
|