in reply to Re: Parameters not in order by using Config:Tiny
in thread Parameters not in order by using Config::Tiny
I think this requirement comes from the code in 1133314:
foreach $ini_sect ( keys %ini_file ) { %$ini_sect = %{ $ini_file{$ini_sect} }; }
This builds up a common structure from information distributed across different sections. I use a similar approach to have "common" and "specialized" sections:
[GENERAL] FOO=bar TEMPLATE=./templates/mytemplate-v3.html [until-20150409] TEMPLATE=./templates/mytemplate-v2.html [until-20150307] TEMPLATE=./templates/mytemplate-v1.html
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Parameters not in order by using Config:Tiny
by 1nickt (Canon) on Jul 06, 2015 at 15:02 UTC | |
by Corion (Patriarch) on Jul 06, 2015 at 15:11 UTC |