Probably best directed at [EMAIL PROTECTED]
And probably best given a two word name below Config::,
as 'Properties' seems a bit too generic to be helpful.
Tim.
On Mon, Mar 04, 2002 at 05:52:57PM +0100, Johan Vromans wrote:
> Hi,
>
> Config::Properties lets you make config files with properties like
>
> foo.bar=blech
> foo.bar.boz=blah
> foo.bar.buzz=bly
>
> I have a module that lets you extend this like
>
> foo {
> bar = blech
> bar.boz = blah
> bar.buzz = bly
> }
>
> and so on. Nesting is unlimited.
>
> Main accessor is a config routine:
>
> config("foo","bar")
>
> would return "blech" using the above examples.
> When called in list context, it returns ("boz","buzz"), a list with
> all subkeys of "bar" in the order they appeared in the file.
>
> Would this module provide appreciated functionality?
> How should it be called?
>
> -- Johan
>
>
>