Config-Model
view release on metacpan or search on metacpan
lib/Config/Model/Cookbook/CreateModelFromDoc.pod view on Meta::CPAN
# To change this file, use:
# dpkg-reconfigure popularity-contest
#
# You can also edit it by hand, if you so choose.
#
# See /usr/share/popularity-contest/default.conf for more info
# on the options.
MY_HOSTID="172921501FFFFFAAAA6897etc"
PARTICIPATE="yes"
USEHTTP="yes"
DAY="5"
The important part is the mention of C<default.conf> which contains
all the required information to create C<Popcon>'s configuration model.
=head1 C<Popcon> documentation
Let's start from C<default.conf> file. Since this file is loaded
by C<popcon> I<before> loading C</etc/popularity-contest.conf</t>,
all values there can be used as application default values (aka
I<upstream_default>):
# Default config file for Debian's popularity-contest package.
#
# Local overrides are in /etc/popularity-contest.conf
# PARTICIPATE can be one of "yes" or "no".
# If you don't want to participate in the contest, say "no"
# and we won't send messages.
#
# If this option is missing, the default is "no".
#
PARTICIPATE="no"
# MAILTO specifies the address to e-mail statistics to each week.
#
MAILTO="survey@popcon.debian.org"
# MAILFROM is the forged sender email address you want to use in
# email submitted to the popularity-contest. If this is commented
# out, no From: or Sender: lines will be added to the outgoing mail,
# and it will be your MTA's job to add them. This is usually what
# you want.
#
# If your MTA is misconfigured or impossible to configure correctly,
# and it always generates invalid From: and/or Sender: lines, you
# can force different results by setting MAILFROM here. This can
# cause problems with spam bouncers, so most people should leave it
# commented out.
#
#MAILFROM="root@example.org"
# SUBMITURLS is a space separated list of where to submit
# popularity-contest reports using http.
SUBMITURLS="http://popcon.debian.org/cgi-bin/popcon.cgi"
# USEHTTP enables http reporting. Set this to 'yes' to enable it.
USEHTTP="yes"
# HTTP_PROXY allows one to specify an HTTP proxy server, the syntax is
# HTTP_PROXY="http://proxy:port". This overrides the environment
# variable http_proxy.
# MY_HOSTID is a secret number that the popularity-contest receiver
# uses to keep track of your submissions. Whenever you send in a
# new entry, it overwrites the last one that had the same HOSTID.
#
# This key was generated automatically so you should normally just
# leave it alone.
#
#MY_HOSTID="_ID_"
This file contains everything we need:
=over
=item *
Parameter names
=item *
Documentation
=item *
Default values
=back
Now, we will use our favorite editor to edit this file and add YAML
tags that can be understood by C<cme meta edit>
=head1 Creating the YAML skeleton
C<cme meta edit> is able to load a model described in
YAML. To do this the above file needs to be translated in YAML. That's
not as complicated as it may sound.
First, a YAML file must begin with B<--->. Then the class must be declared:
---
class:
PopCon:
Note that, like with Python language, the indentation is important to
define the structure of the file. Here, the C<PopCon> class is followed by
a ':' as it defines a new hierarchical level to describes the
configuration elements of this class:
element:
Now we can deal with the configuration parameters. Let's detail the
C<PARTICIPATE> element. Here's the spec in from C<default.conf>:
# PARTICIPATE can be one of "yes" or "no".
# If you don't want to participate in the contest, say "no"
# and we won't send messages.
#
# If this option is missing, the default is "no".
#
PARTICIPATE="no"
In the YAML file, the comments are copied in the C<description> field and
the value shown in C<default.conf> is used as upstream default:
---
class:
PopCon:
element:
PARTICIPATE:
upstream_default: no
description: >
If you don't want to participate in the contest,
say "no" and we won't send messages.
Likewise for the remaining parameters:
MAILTO:
description: >
specifies the address to e-mail statistics to each week.
default: 'survey@popcon.debian.org'
MAILFROM:
description: >-
MAILFROM is the forged sender email address you want to use
in email submitted to the popularity-contest. If this is
commented out, no From: or Sender: lines will be added to the
outgoing mail, and it will be your MTA's job to add them. This
is usually what you want.
If your MTA is misconfigured or
impossible to configure correctly, and it always generates
invalid From: and/or Sender: lines, you can force different
results by setting MAILFROM here. This can cause problems with
spam bouncers, so most people should leave it commented out.
In the description above, the C<chimping> marker '-' after '>' is used to
keep paragraph formatting in the help.
SUBMITURLS:
description: >
Space separated list of where to submit popularity-contest
reports using http.
default: >
http://popcon.debian.org/cgi-bin/popcon.cgi
USEHTTP:
description: >
enables http reporting. Set this to 'yes' to enable it.
default: "yes"
HTTP_PROXY:
description: >
allows one to specify an HTTP proxy server, the syntax is
"http://proxy:port". This overrides the environment variable
http_proxy.
MY_HOSTID:
description: >-
secret number that the popularity-contest receiver uses to
keep track of your submissions. Whenever you send in a new
entry, it overwrites the last one that had the same HOSTID.
This key was generated automatically so you should normally
just leave it alone.
=head1 Loading the YAML skeleton
Now that the YAML file was created, you can turn it into a model and
load it in the model editor GUI with the following command:
cme meta edit popcon -load-yaml popcon.yml -force
Note that the model is incomplete: some mandatory parameters are
missing from the YAML file so the I<-force> option must be used. These
missing parameters are also flagged with a red cross in the GUI.
=head1 Completing missing model parts
To complete the model, the easiest way is to run the wizard to
complete the missing values. In the GUI, you can use the menu
C<< File -> wizard >> to launch the wizard.
Then click on the 'OK' button in
the new window.
The wizard will first stop on the parameter list (not because there's
an error, but because the parameter list is flagged as I<important>)
There, you can re-order the parameters by selecting one and clicking
on one of the blue arrows to move it up or down. Once you're
satisfied, click on I<Next>.
The widget will now stop on the first missing information. Just select
the correct type ('leaf' here), click 'store' and 'Next'.
You can repeat these steps until the wizard exits.
=head1 Specifying read and write backend
Once the model is complete, it's time to specify how to read and write the file. In
C<Popcon> class specification:
=over
=item *
right-click on I<read_config>
=item *
click on I<push new node> to create a new read specification
( run in 0.736 second using v1.01-cache-2.11-cpan-71847e10f99 )