diff options
author | James FitzGibbon <jfitz@FreeBSD.org> | 1996-10-24 08:11:12 +0000 |
---|---|---|
committer | James FitzGibbon <jfitz@FreeBSD.org> | 1996-10-24 08:11:12 +0000 |
commit | 5a823a9b6da10b6c98c75b1cc6b604090bd95c06 (patch) | |
tree | 063d0dff8b962cfaa5ebbf95788eadb72e6b41a6 /devel/p5-IniConf/pkg-descr | |
parent | e6bc1acf66bc9fb5e95f151af2a8775bb3f6d8c6 (diff) |
Notes
Diffstat (limited to 'devel/p5-IniConf/pkg-descr')
-rw-r--r-- | devel/p5-IniConf/pkg-descr | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/devel/p5-IniConf/pkg-descr b/devel/p5-IniConf/pkg-descr new file mode 100644 index 000000000000..2b247d9e949a --- /dev/null +++ b/devel/p5-IniConf/pkg-descr @@ -0,0 +1,17 @@ +IniConf provides a way to have readable configuration files outside your +Perl script. The configuration can be safely reloaded upon receipt of a +signal. + +USAGE + +Get a new IniConf object with the new method: + + $cfg = IniConf->new( -file => "/path/configfile.ini" ); + $cfg = new IniConf -file => "/path/configfile.ini"; + +Optional named parameters may be specified after the configuration file +name. See the new in the METHODS section, below. INI files consist of a +number of sections, each preceeded with the section name in square brackets. +Parameters are specified in each section as Name=Value. Any spaces around +the equals sign will be ignored, and the value extends to the end of the +line |