Codebase list libconfig-properties-perl-upstream / c2b00fa
import Config-Properties 1.67 from CPAN git-cpan-module: Config-Properties git-cpan-version: 1.67 git-cpan-authorid: SALVA git-cpan-file: authors/id/S/SA/SALVA/Config-Properties-1.67.tar.gz Salvador Fandino Garcia authored 16 years ago Michael G. Schwern committed 14 years ago
4 changed file(s) with 23 addition(s) and 14 deletion(s). Raw diff Collapse all Expand all
00 Revision history for Perl extension Config::Properties.
1
2 1.67 Aug 20, 2007
3 - splitToTree was not handling defaults properly (bug report
4 and patch submitted by Filip Chodounsky)
5
6 1.66 Sep 8 2006
7 - this module is very stable now, use 1.x version numbers to
8 reflect it.
19
210 0.65 Sep 8 2006
311 - add setFromTree and changeFromTree methods as requested by
0 # http://module-build.sourceforge.net/META-spec.html
1 #XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
2 name: Config-Properties
3 version: 0.65
4 version_from: Properties.pm
5 installdirs: site
6 requires:
0 --- #YAML:1.0
1 name: Config-Properties
2 version: 1.67
3 abstract: ~
4 license: ~
5 generated_by: ExtUtils::MakeMaker version 6.32
6 distribution_type: module
7 requires:
78 File::Temp: 0
89 Test::More: 0
910 Text::Wrap: 2001.0929
10
11 distribution_type: module
12 generated_by: ExtUtils::MakeMaker version 6.30_01
11 meta-spec:
12 url: http://module-build.sourceforge.net/META-spec-v1.2.html
13 version: 1.2
22 use strict;
33 use warnings;
44
5 our $VERSION = '0.65';
5 our $VERSION = '1.67';
66
77 use IO::Handle;
88 use Carp;
339339 sub _split_to_tree {
340340 my ($self, $tree, $re, $start) = @_;
341341 if (defined $self->{defaults}) {
342 $self->{defaults}->_split_to_tree($tree, $re);
342 $self->{defaults}->_split_to_tree($tree, $re, $start);
343343 }
344344 for my $key (keys %{$self->{properties}}) {
345345 my $ekey = $key;
732732
733733 C<Config::Properties> was originally developed by Randy Jay Yarger. It
734734 was mantained for some time by Craig Manley and finally it passed
735 hands to Salvador FandiE<ntilde>o <sfandino@yahoo.com>, its current
735 hands to Salvador FandiE<ntilde>o <sfandino@yahoo.com>, the current
736736 maintainer.
737737
738738 =head1 COPYRIGHT AND LICENSE
4242
4343 Copyright (c) 2001 Randy Jay Yarger. All Rights Reserved.
4444 Copyright (c) 2002 Craig Manley
45 Copyright (c) 2003 Salvador Fandiño <sfandino@yahoo.com>
45 Copyright (c) 2003-2006 Salvador Fandiño <sfandino@yahoo.com>
4646
4747 This program is free software; you can redistribute it and/or modify
4848 it under the same terms as Perl itself.