mirror of
https://codeberg.org/scip/Config-General.git
synced 2025-12-18 21:20:59 +01:00
2.59
git-svn-id: http://dev.catalyst.perl.org/repos/Config-General/trunk@106 be1acefe-a474-0410-9a34-9b3221f2030f
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2.59 - fix rt.cpan.org#107108 by adding support for IncludeOptional.
|
||||||
|
- clarified documentation on StoreDelimiter.
|
||||||
|
|
||||||
|
2.58 - bumbp version
|
||||||
|
|
||||||
2.57 - fix rt.cpan.org#104548, dont allow special chars like newline
|
2.57 - fix rt.cpan.org#104548, dont allow special chars like newline
|
||||||
or < in keys, which leads to faile when saving.
|
or < in keys, which leads to faile when saving.
|
||||||
|
|
||||||
|
|||||||
10
General.pm
10
General.pm
@@ -32,7 +32,7 @@ use Carp::Heavy;
|
|||||||
use Carp;
|
use Carp;
|
||||||
use Exporter;
|
use Exporter;
|
||||||
|
|
||||||
$Config::General::VERSION = "2.58";
|
$Config::General::VERSION = "2.59";
|
||||||
|
|
||||||
use vars qw(@ISA @EXPORT_OK);
|
use vars qw(@ISA @EXPORT_OK);
|
||||||
use base qw(Exporter);
|
use base qw(Exporter);
|
||||||
@@ -1600,7 +1600,8 @@ values of the options will B<not> lowercased.
|
|||||||
If set to a true value, the parser will consider "include ..." as valid include
|
If set to a true value, the parser will consider "include ..." as valid include
|
||||||
statement (just like the well known Apache include statement).
|
statement (just like the well known Apache include statement).
|
||||||
|
|
||||||
|
It also supports apache's "IncludeOptional" statement with the same behavior,
|
||||||
|
that is, if the include file doesn't exist no error will be thrown.
|
||||||
|
|
||||||
=item B<-IncludeRelative>
|
=item B<-IncludeRelative>
|
||||||
|
|
||||||
@@ -1630,6 +1631,7 @@ include all matching files (e.g. <<include conf.d/*.conf>>). Also note that as
|
|||||||
with standard file patterns, * will not match dot-files, so <<include dir/*>>
|
with standard file patterns, * will not match dot-files, so <<include dir/*>>
|
||||||
is often more desirable than including a directory with B<-IncludeDirectories>.
|
is often more desirable than including a directory with B<-IncludeDirectories>.
|
||||||
|
|
||||||
|
An include option will not cause a parser error if the glob didn't return anything.
|
||||||
|
|
||||||
=item B<-IncludeAgain>
|
=item B<-IncludeAgain>
|
||||||
|
|
||||||
@@ -2743,7 +2745,7 @@ I recommend you to read the following documents, which are supplied with Perl:
|
|||||||
|
|
||||||
=head1 LICENSE AND COPYRIGHT
|
=head1 LICENSE AND COPYRIGHT
|
||||||
|
|
||||||
Copyright (c) 2000-2014 Thomas Linden
|
Copyright (c) 2000-2015 Thomas Linden
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
modify it under the same terms as Perl itself.
|
modify it under the same terms as Perl itself.
|
||||||
@@ -2772,7 +2774,7 @@ Thomas Linden <tlinden |AT| cpan.org>
|
|||||||
|
|
||||||
=head1 VERSION
|
=head1 VERSION
|
||||||
|
|
||||||
2.58
|
2.59
|
||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
||||||
|
|||||||
4
README
4
README
@@ -80,7 +80,7 @@ UPDATE
|
|||||||
COPYRIGHT
|
COPYRIGHT
|
||||||
Config::General
|
Config::General
|
||||||
Config::General::Extended
|
Config::General::Extended
|
||||||
Copyright (c) 2000-2014 by Thomas Linden <tom@daemon.de>
|
Copyright (c) 2000-2015 by Thomas Linden <tom@daemon.de>
|
||||||
|
|
||||||
Config::General::Interpolated
|
Config::General::Interpolated
|
||||||
Copyright (c) 2001 by Wei-Hon Chen <plasmaball@pchome.com.tw>
|
Copyright (c) 2001 by Wei-Hon Chen <plasmaball@pchome.com.tw>
|
||||||
@@ -104,4 +104,4 @@ AUTHOR
|
|||||||
|
|
||||||
|
|
||||||
VERSION
|
VERSION
|
||||||
2.58
|
2.59
|
||||||
|
|||||||
Reference in New Issue
Block a user