-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
68 lines (46 loc) · 1.88 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
Config::File - Parse a simple configuration file
Config::File provides an interface to parse simple -although complete
for most needs- configuration files. The syntax of the configuration
file is as follows:
# This is a comment
VALUE_ONE = foo
VALUE_TWO = $VALUE_ONE/bar
VALUE_THREE = The value contains a \# (hash). # This is a comment.
Options can be clustered when creating groups:
CLUSTER_ONE[data] = data cluster one
CLUSTER_ONE[value] = value cluster one
CLUSTER_TWO[data] = data cluster two
CLUSTER_TWO[value] = value cluster two
Then values can be fetched using this syntax:
$hash_config->{CLUSTER_ONE}{data};
There can be as many sub-options in a cluster as needed.
BIG_CLUSTER[part1][part2][part3] = data
is fetched by:
$hash_config->{BIG_CLUSTER}{part1}{part2}{part3};
There are a couple of restrictions as for the names of the keys. First of all,
all the characters should be alphabetic, numeric, underscores or hyphens, with
square brackets allowed for the clustering. That is, the keys should conform
to /^[A-Za-z0-9_-]+$/
This means also that no space is allowed in the key part of the line.
CLUSTER_ONE[data] = data cluster one # Right
CLUSTER_ONE[ data ] = data cluster one # Wrong
For further details, please refer to the module's documentation.
INSTALLATION
Installing this module is like installing any standard Perl module,
this means:
perl Makefile.PL
make
make test
make install
DEPENDENCIES
This module requires only core modules:
Carp
Exporter
IO::File
COPYRIGHT AND LICENCE
Development was started by Sebastien J. Gross <seb@sjgross.org>, from 2003
maintained by Gunnar Wolf <gwolf@gwolf.org>. By 2018 Stockholm University took
over as maintainer.
All rights reserved. This program is free software; you can redistribute
it and/or modify it under the terms of the GPL v2 (or later, at your
choice).