mirror of
https://codeberg.org/scip/Config-General.git
synced 2025-12-16 20:21:01 +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
|
||||
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 Exporter;
|
||||
|
||||
$Config::General::VERSION = "2.58";
|
||||
$Config::General::VERSION = "2.59";
|
||||
|
||||
use vars qw(@ISA @EXPORT_OK);
|
||||
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
|
||||
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>
|
||||
|
||||
@@ -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/*>>
|
||||
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>
|
||||
|
||||
@@ -2743,7 +2745,7 @@ I recommend you to read the following documents, which are supplied with Perl:
|
||||
|
||||
=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
|
||||
modify it under the same terms as Perl itself.
|
||||
@@ -2772,7 +2774,7 @@ Thomas Linden <tlinden |AT| cpan.org>
|
||||
|
||||
=head1 VERSION
|
||||
|
||||
2.58
|
||||
2.59
|
||||
|
||||
=cut
|
||||
|
||||
|
||||
4
README
4
README
@@ -80,7 +80,7 @@ UPDATE
|
||||
COPYRIGHT
|
||||
Config::General
|
||||
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
|
||||
Copyright (c) 2001 by Wei-Hon Chen <plasmaball@pchome.com.tw>
|
||||
@@ -104,4 +104,4 @@ AUTHOR
|
||||
|
||||
|
||||
VERSION
|
||||
2.58
|
||||
2.59
|
||||
|
||||
Reference in New Issue
Block a user