summaryrefslogtreecommitdiffstats
path: root/doc/smokeping_extend.pod
diff options
context:
space:
mode:
authorNiko Tyni <ntyni@iki.fi>2005-03-09 18:17:06 +0100
committerNiko Tyni <ntyni@iki.fi>2005-03-09 18:17:06 +0100
commit1eda41862b7279427ab2da51b8dd12767118bfa4 (patch)
tree5d7c277a0dc98cf9029cee51746326b2a323e716 /doc/smokeping_extend.pod
parent8acdb5d58ba10ecc1dc1d57be7fdc151515c82e0 (diff)
downloadsmokeping-1eda41862b7279427ab2da51b8dd12767118bfa4.tar.gz
smokeping-1eda41862b7279427ab2da51b8dd12767118bfa4.tar.xz
* change all ISG::ParseConfig references to its new name, Config::Grammar
Diffstat (limited to 'doc/smokeping_extend.pod')
-rw-r--r--doc/smokeping_extend.pod10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/smokeping_extend.pod b/doc/smokeping_extend.pod
index 402efac..0a0eb41 100644
--- a/doc/smokeping_extend.pod
+++ b/doc/smokeping_extend.pod
@@ -94,13 +94,13 @@ convenience method called C<_makevars> that does this, and the common idiom is
}
The variables are declared in a syntax that comes from the module used
-for parsing the configuration file, C<ISG::ParseConfig>. Each variable
+for parsing the configuration file, C<Config::Grammar>. Each variable
should be a hash that uses the "special variable keys" documented in
-L<ISG::ParseConfig>. See C<Smokeping::probes::skel> and the other
+L<Config::Grammar>. See C<Smokeping::probes::skel> and the other
probes for examples.
For reference, here are the keys the hash should have. Much of this
-is taken straight from the C<ISG::ParseConfig> manual.
+is taken straight from the C<Config::Grammar> manual.
=over
@@ -150,11 +150,11 @@ the returned string as content.
The C<probevars> and C<targetvars> methods should return hash references
that contain the variable names as keys and the hashes described above
-as values. In addition the C<ISG::ParseConfig> special section key
+as values. In addition the C<Config::Grammar> special section key
C<_mandatory> is supported and should contain a reference to a list of
mandatory variables. The C<_makevars> method is available of this special
key and merges the mandatory lists in its arguments. Note that no other
-C<ISG::ParseConfig> special section keys are supported.
+C<Config::Grammar> special section keys are supported.
=head1 INITIALIZATION