Sponsored Content
Special Forums News, Links, Events and Announcements Software Releases - RSS News Config::Model 0.620 (Default branch) Post 302177003 by Linux Bot on Wednesday 19th of March 2008 08:30:07 PM
Old 03-19-2008
Config::Model 0.620 (Default branch)

Config-Model provides a framework for validating the semantic content of any configuration data. With a configuration model (data structure), config-model provides a validation engine. A curses interface is provided to enter configuration data. Config-Model includes a model example for fstab and a small fstab demo. License: GNU Lesser General Public License (LGPL) Changes:
This release fixes handling of the Term::ReadLine::Gnu dependency, which is now optional. A simple UI (based on STDIN and STDOUT) has been added so that configuration editing can be embedded in another program.Image

More...
 
Config::Model::Itself::BackendDetector(3pm)		User Contributed Perl Documentation	       Config::Model::Itself::BackendDetector(3pm)

NAME
Config::Model::Itself::BackendDetector - Detect available read/write backends SYNOPSIS
# this class should be referenced in a configuration model and # created only by Config::Model::Node my $model = Config::Model->new() ; $model ->create_config_class ( name => "Test", 'element' => [ 'backend' => { type => 'leaf', class => 'Config::Model::Itself::BackendDetector' , value_type => 'enum', # specify backends built in Config::Model choice => [qw/cds_file perl_file ini_file augeas custom/], help => { cds_file => "file ...", ini_file => "Ini file ...", perl_file => "file perl", custom => "Custom format", augeas => "Experimental backend", } } ], ); my $root = $model->instance(root_class_name => 'Test') -> config_root ; my $backend = $root->fetch_element('backend') ; my @choices = $backend->get_choice ; DESCRIPTION
This class is derived from Config::Model::Value. It is designed to be used in a 'enum' value where the choice (the available backends) are the backend built in Config::Model and all the plugin backends. The plugin backends are all the "Config::Model::Backend::*" classes. This module will detect available plugin backend and query their pod documentation to provide a contextual help for config-model graphical editor. AUTHOR
Dominique Dumont, (ddumont at cpan dot org) SEE ALSO
Config::Model, Config::Model::Node, Config::Model::Value perl v5.14.2 2012-06-22 Config::Model::Itself::BackendDetector(3pm)
All times are GMT -4. The time now is 10:38 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy