I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2006-11-21 10:17:44-08 by salva in response to 3586
Re: recurse on load?
yes, you can use a validator (an undocumented feature of Config::Properties, look in the module source for more info) to change properties as they are read:
sub my_validator { $_[2] =~ s/\$\{([\w\.]+)\}/$_[0]->getProperty($1)/ge } my $cfg = Config::Properties->new(...); $cfg->setValidator(\&my_validator); $cfg->read();
Direct Responses: Write a response