config
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1091
Xmms::Config 0.12
Xmms::Config is a Perl Interface to xmms_cfg API. more>>
Xmms::Config is a Perl Interface to xmms_cfg API.
SYNOPSIS
my $file = Xmms::Config->file; #$ENV{HOME}/.xmms/config
my $cfg = Xmms::Config->new($file);
<<lessSYNOPSIS
my $file = Xmms::Config->file; #$ENV{HOME}/.xmms/config
my $cfg = Xmms::Config->new($file);
Download (0.18MB)
Added: 2007-04-23 License: Perl Artistic License Price:
914 downloads
NetCARD Config 1.05
NetCARD Config project helps linux users to configure network cards for two ip one for DSL network one for Local Network. more>>
NetCARD Config project helps linux users to configure network cards for two ip one for DSL network one for Local Network.
<<less Download (0.030MB)
Added: 2006-03-27 License: GPL (GNU General Public License) Price:
1315 downloads
Config::Sofu 0.3
Config::Sofu is a simple Sofu configuration file parser. more>>
Config::Sofu is a simple Sofu configuration file parser.
SYNOPSIS
use vars qw/%CONFIG/;
use Config::Sofu "config.sofu";
if ($CONFIG{FOOBAR}) {
...
}
if ($CONFIG{Bar}->[7]->{Foo} eq "Foobar") {
...
}
Save the new configuration:
$CONFIG{FOOBAR}="Bar times Foo";
Config::Sofu::save;
or
Config::Sofu::save(%CompletlyNewConfig)
SYNTAX
This class exports the hash %CONFIG by default which contains all the information of the file which is given to the use statement.
<<lessSYNOPSIS
use vars qw/%CONFIG/;
use Config::Sofu "config.sofu";
if ($CONFIG{FOOBAR}) {
...
}
if ($CONFIG{Bar}->[7]->{Foo} eq "Foobar") {
...
}
Save the new configuration:
$CONFIG{FOOBAR}="Bar times Foo";
Config::Sofu::save;
or
Config::Sofu::save(%CompletlyNewConfig)
SYNTAX
This class exports the hash %CONFIG by default which contains all the information of the file which is given to the use statement.
Download (0.002MB)
Added: 2007-04-12 License: Perl Artistic License Price:
925 downloads
dtRdr::Config 0.0.11
dtRdr::Config is a Perl module with Factory class for configuration system. more>>
dtRdr::Config is a Perl module with Factory class for configuration system.
Factory Methods
factory_read_config
Constructor function (see new)
my $obj = factory_read_config($file);
new
$conf = dtRdr::Config->new($file);
get_library_info
my @libraries = $conf->get_library_info;
<<lessFactory Methods
factory_read_config
Constructor function (see new)
my $obj = factory_read_config($file);
new
$conf = dtRdr::Config->new($file);
get_library_info
my @libraries = $conf->get_library_info;
Download (2.8MB)
Added: 2007-03-14 License: Perl Artistic License Price:
955 downloads
Net::Delicious::Constants::Config 1.01
Net::Delicious::Constants::Config are constant variables for Net::Delicious default configs. more>>
Net::Delicious::Constants::Config are constant variables for Net::Delicious default configs.
SYNOPSIS
use Net::Delicious::Constants qw (:config)
__top
Constant variables for Net::Delicious default configs.
<<lessSYNOPSIS
use Net::Delicious::Constants qw (:config)
__top
Constant variables for Net::Delicious default configs.
Download (0.018MB)
Added: 2006-07-27 License: Perl Artistic License Price:
1184 downloads
Chroniton::Config 0.03
Chroniton::Config it manages config file for Chroniton. more>>
Chroniton::Config it manages config file for Chroniton.
SYNOPSIS
my $config = Chroniton::Config->new;
METHODS
new
Creates an instance. Takes no arguments.
destination
Returns the directory where the backup should be placed.
locations
Returns a list of directories to be backed up.
config_file
Returns the path to the config file.
archive_after
Returns the number of days between archiving operations.
exclude
Returns a list of compiled regular expressions. If a path matches one of these, dont back it up.
Chroniton::Config->_create
Creates an empty config file.
<<lessSYNOPSIS
my $config = Chroniton::Config->new;
METHODS
new
Creates an instance. Takes no arguments.
destination
Returns the directory where the backup should be placed.
locations
Returns a list of directories to be backed up.
config_file
Returns the path to the config file.
archive_after
Returns the number of days between archiving operations.
exclude
Returns a list of compiled regular expressions. If a path matches one of these, dont back it up.
Chroniton::Config->_create
Creates an empty config file.
Download (0.054MB)
Added: 2006-06-28 License: Perl Artistic License Price:
1213 downloads
Config::Scoped 0.11
Config:Scoped is a feature rich configuration file parser. more>>
Config:Scoped is a feature rich configuration file parser.
Main features:
- Complex recursive datastructures to any extent with scalars, lists and hashes as elements,
- As a subset parses any complex Perl datastructures (no references and globs) without *do* or *require*,
- Include files with recursion checks,
- Controlled macro expansion in double quoted tokens,
- Lexically scoped parameter assignments and pragma directives,
- Perl quote like constructs to any extent, , "", and here docs<<less
Main features:
- Complex recursive datastructures to any extent with scalars, lists and hashes as elements,
- As a subset parses any complex Perl datastructures (no references and globs) without *do* or *require*,
- Include files with recursion checks,
- Controlled macro expansion in double quoted tokens,
- Lexically scoped parameter assignments and pragma directives,
- Perl quote like constructs to any extent, , "", and here docs<<less
Download (0.065MB)
Added: 2007-04-12 License: Perl Artistic License Price:
927 downloads
DNS::Config 0.66
DNS::Config is a Perl module with DNS Configuration. more>>
DNS::Config is a Perl module with DNS Configuration.
SYNOPSIS
use DNS::Config;
my $config = new DNS::Config();
$config->debug();
ABSTRACT
This class represents a configuration for a domain name service daemon (DNS).
A domain name service daemon configuration knows about the zone information actively provided to the service users as well as lots of other configuration data.
This class allows to represent this configuration data in a more or less generic way. Another class, the file adaptor, then knows how to write the information to a file in a daemon specific format.
So far this class is strongly related to the ISCs Bind domain name service daemon but it is inteded to get more generic in upcoming releases. Your help is welcome.
<<lessSYNOPSIS
use DNS::Config;
my $config = new DNS::Config();
$config->debug();
ABSTRACT
This class represents a configuration for a domain name service daemon (DNS).
A domain name service daemon configuration knows about the zone information actively provided to the service users as well as lots of other configuration data.
This class allows to represent this configuration data in a more or less generic way. Another class, the file adaptor, then knows how to write the information to a file in a daemon specific format.
So far this class is strongly related to the ISCs Bind domain name service daemon but it is inteded to get more generic in upcoming releases. Your help is welcome.
Download (0.014MB)
Added: 2007-04-16 License: Perl Artistic License Price:
926 downloads
Config::JSON 1.0.3
Config::JSON is a JSON based config file system. more>>
Config::JSON is a JSON based config file system.
SYNOPSIS
use Config::JSON;
my $config = Config::JSON->create($pathToFile);
my $config = Config::JSON->new($pathToFile);
my $element = $config->get($param);
$config->set($param,$value);
$config->delete($param);
$config->deleteFromHash($name, $key);
$config->deleteFromArray($name, $value);
$config->addToHash($name, $key, $value);
$config->addToArray($name, $value);
my $path = $config->getFilename;
Example Config File
# config-file-type: JSON 1
{
"dsn" : "DBI:mysql:test",
"user" : "tester",
"password" : "xxxxxx",
# some colors to choose from
"colors" : [ "red", "green", "blue" ],
# some statistics
"stats" : {
"health" : 32,
"vitality" : 11
}
}
Note that you can put comments in the config file as long as # is the first non-space character on the line. However, if you use this API to write to the config file, your comments will be eliminated.
<<lessSYNOPSIS
use Config::JSON;
my $config = Config::JSON->create($pathToFile);
my $config = Config::JSON->new($pathToFile);
my $element = $config->get($param);
$config->set($param,$value);
$config->delete($param);
$config->deleteFromHash($name, $key);
$config->deleteFromArray($name, $value);
$config->addToHash($name, $key, $value);
$config->addToArray($name, $value);
my $path = $config->getFilename;
Example Config File
# config-file-type: JSON 1
{
"dsn" : "DBI:mysql:test",
"user" : "tester",
"password" : "xxxxxx",
# some colors to choose from
"colors" : [ "red", "green", "blue" ],
# some statistics
"stats" : {
"health" : 32,
"vitality" : 11
}
}
Note that you can put comments in the config file as long as # is the first non-space character on the line. However, if you use this API to write to the config file, your comments will be eliminated.
Download (0.005MB)
Added: 2007-04-12 License: Perl Artistic License Price:
925 downloads
JoeDog::Config 2.01
JoeDog::Config provides a perl extension for parsing data/configuration file. more>>
JoeDog::Config provides a perl extension for parsing data/configuration file.
It reads columns, key-value pairs, and INI style config files into arrays, hashes and hashes of hashes. It can take characters or regexes for separators.
ABSTRACT:
This is a autoloadable module which allows the programmer
to read data from an configuration file into various perl
data types, arrays, multi-dimentional arrays and hashes.
INSTALLATION
JoeDog::Config.pm was built using perl Make::Maker utility
If you are familiar with that utility you should have no
problem with this installation as it will be familiar:
$ perl Makefile.PL
$ make
$ make test
$ su
$ make install
USAGE
use JoeDog::Config;
my $cnf = new JoeDog::Config(filename);
my @array = $cnf->get_column();
my @arrays = $cnf->get_columns(sep);
my @aoa = $cnf->get_table(sep,num);
my @aoa = $cnf->get_table(sep,[num1, num2, etc...]);
my %hash = $cnf->get_hash(sep);
my %hashes = $cnf->get_hashes(sep);
<<lessIt reads columns, key-value pairs, and INI style config files into arrays, hashes and hashes of hashes. It can take characters or regexes for separators.
ABSTRACT:
This is a autoloadable module which allows the programmer
to read data from an configuration file into various perl
data types, arrays, multi-dimentional arrays and hashes.
INSTALLATION
JoeDog::Config.pm was built using perl Make::Maker utility
If you are familiar with that utility you should have no
problem with this installation as it will be familiar:
$ perl Makefile.PL
$ make
$ make test
$ su
$ make install
USAGE
use JoeDog::Config;
my $cnf = new JoeDog::Config(filename);
my @array = $cnf->get_column();
my @arrays = $cnf->get_columns(sep);
my @aoa = $cnf->get_table(sep,num);
my @aoa = $cnf->get_table(sep,[num1, num2, etc...]);
my %hash = $cnf->get_hash(sep);
my %hashes = $cnf->get_hashes(sep);
Download (0.014MB)
Added: 2007-03-23 License: GPL (GNU General Public License) Price:
945 downloads
Rsync::Config 0.3.1
Rsync::Config is a Perl module for rsync configuration generator. more>>
Rsync::Config is a Perl module for rsync configuration generator.
Rsync::Config is a module who can be used to create rsync configuration files. A configuration file (from Rsync::Config point of view) is made by atoms and modules with atoms. A atom is the smallest piece from the configuration file. This module inherits from Rsync::Config::Module .
INHERITANCE
Objects from Rsync::Config inherits as in the next scheme
/--- Rsync::Config::Module --- Rsync::Config
Rsync::Config::Renderer
--- Rsync::Config::Blank
/
Rsync::Config::Atom --- --- Rsync::Config::Comment
SYNOPSIS
use Rsync::Config;
use Rsync::Config::Atom;
use Rsync::Config::Module;
sub main {
my ($conf, $module);
$conf = new Rsync::Config();
$conf->add_comment(Main configuration file for our rsync daemon);
$conf->add_atom(read only,yes);
$conf->add_atom(chroot,yes);
$module = new Rsync::Config::Module(name => cpan);
$module->add_atom(path,/var/ftp/pub/mirrors/ftp.cpan.org/);
$module->add_atom(comment, CPAN mirror);
$conf->add_module($module);
$conf->to_file(/etc/rsyncd.conf);
}
<<lessRsync::Config is a module who can be used to create rsync configuration files. A configuration file (from Rsync::Config point of view) is made by atoms and modules with atoms. A atom is the smallest piece from the configuration file. This module inherits from Rsync::Config::Module .
INHERITANCE
Objects from Rsync::Config inherits as in the next scheme
/--- Rsync::Config::Module --- Rsync::Config
Rsync::Config::Renderer
--- Rsync::Config::Blank
/
Rsync::Config::Atom --- --- Rsync::Config::Comment
SYNOPSIS
use Rsync::Config;
use Rsync::Config::Atom;
use Rsync::Config::Module;
sub main {
my ($conf, $module);
$conf = new Rsync::Config();
$conf->add_comment(Main configuration file for our rsync daemon);
$conf->add_atom(read only,yes);
$conf->add_atom(chroot,yes);
$module = new Rsync::Config::Module(name => cpan);
$module->add_atom(path,/var/ftp/pub/mirrors/ftp.cpan.org/);
$module->add_atom(comment, CPAN mirror);
$conf->add_module($module);
$conf->to_file(/etc/rsyncd.conf);
}
Download (0.022MB)
Added: 2007-01-16 License: MPL (Mozilla Public License) Price:
1011 downloads
Rsync::Config::Blank 0.3.1
Rsync::Config::Blank is a basic atom object. more>>
Rsync::Config::Blank is a basic atom object.
SUBROUTINES/METHODS
new
FIXME: constructor
to_string
returns a stringified version of the comment.
name
Unused here. Useful for derivated classes, as "name" accessor/mutator.
value
Unused here. Useful for derivated classes, as "value" accessor/mutator.
<<lessSUBROUTINES/METHODS
new
FIXME: constructor
to_string
returns a stringified version of the comment.
name
Unused here. Useful for derivated classes, as "name" accessor/mutator.
value
Unused here. Useful for derivated classes, as "value" accessor/mutator.
Download (0.022MB)
Added: 2007-01-18 License: Perl Artistic License Price:
1009 downloads
network-config 0.1
network-config is a simple network configuration tool. more>>
network-config is a simple network configuration tool.
Network-config is a simple and easy to use program that helps configuring the network interfaces for linux-based operating systems. It allows to have multiple configurations for the same computer and to easy configure NAT for internet sharing.
It can also be used to scan for wireless networks. It is written in perl and uses gtk2+, but also works as a command line program.
<<lessNetwork-config is a simple and easy to use program that helps configuring the network interfaces for linux-based operating systems. It allows to have multiple configurations for the same computer and to easy configure NAT for internet sharing.
It can also be used to scan for wireless networks. It is written in perl and uses gtk2+, but also works as a command line program.
Download (0.032MB)
Added: 2006-08-07 License: GPL (GNU General Public License) Price:
1186 downloads
Config::General 2.32
Config::General is a perl module opens a config file and parses its contents for you. more>>
Config::General is a perl module opens a config file and parses its contents for you.
Config::General library provides variable interpolation, saving of configs (kinda serializer), an OOP-Interface and much more.
The format of config files supported by Config::General is inspired by the well known apache config format, in fact, this module is 100% compatible to apache configs(read-only), but you can also just use simple name/value pairs in your config files.
In addition to the capabilities of an apache config file it supports some enhancements such as here-documents, C-style comments or multiline options.
Installation:
To install, type:
perl Makefile.PL
make
make test
make install
To read the complete documentation, type:
perldoc Config::General
perldoc Config::General::Extended
perldoc Config::General::Interpolated
See some example config files which can be parsed with Config::Genreal in the subdirectory t/cfg.*
Enhancements:
- A number of bugs were fixed and unit tests were improved.
<<lessConfig::General library provides variable interpolation, saving of configs (kinda serializer), an OOP-Interface and much more.
The format of config files supported by Config::General is inspired by the well known apache config format, in fact, this module is 100% compatible to apache configs(read-only), but you can also just use simple name/value pairs in your config files.
In addition to the capabilities of an apache config file it supports some enhancements such as here-documents, C-style comments or multiline options.
Installation:
To install, type:
perl Makefile.PL
make
make test
make install
To read the complete documentation, type:
perldoc Config::General
perldoc Config::General::Extended
perldoc Config::General::Interpolated
See some example config files which can be parsed with Config::Genreal in the subdirectory t/cfg.*
Enhancements:
- A number of bugs were fixed and unit tests were improved.
Download (0.042MB)
Added: 2007-02-27 License: Artistic License Price:
970 downloads
pkg-config 0.20
pkg-config is a system for managing library compile/link flags that works with automake and autoconf. more>>
pkg-config is a helper tool used when compiling applications and libraries. It helps you insert the correct compiler options on the command line so an application can use gcc -o test test.c `pkg-config --libs --cflags glib-2.0` for instance, rather than hard-coding values on where to find glib (or other libraries). It is language-agnostic, so it can be used for defining the location of documentation tools, for instance.
The program free software and licensed under the [WWW]GPL version 2 or any later version (at your option).
pkg-config works on multiple platforms: Linux and other UNIX-like operating systems, Mac OS X and Windows. It does not require anything but a reasonably well working C compiler and a C library, but can use an installed glib if that is present. (A copy of glib 1.2.8 is shipped together with pkg-config and this is sufficient for pkg-config to compile and work properly.)
The first implementation was written in shell, by James Henstridge. Later, it was rewritten in C by Havoc Pennington. It also grew an autoconf macro written by Tim Janik, later rewritten by Scott James Remnant.
Enhancements:
- Segfaults were fixed.
- Win32 fixes were made.
- The --short-errors option was added, and is now used by pkg.m4 if available.
- This gives a better error message if some libraries cant be found.
<<lessThe program free software and licensed under the [WWW]GPL version 2 or any later version (at your option).
pkg-config works on multiple platforms: Linux and other UNIX-like operating systems, Mac OS X and Windows. It does not require anything but a reasonably well working C compiler and a C library, but can use an installed glib if that is present. (A copy of glib 1.2.8 is shipped together with pkg-config and this is sufficient for pkg-config to compile and work properly.)
The first implementation was written in shell, by James Henstridge. Later, it was rewritten in C by Havoc Pennington. It also grew an autoconf macro written by Tim Janik, later rewritten by Scott James Remnant.
Enhancements:
- Segfaults were fixed.
- Win32 fixes were made.
- The --short-errors option was added, and is now used by pkg.m4 if available.
- This gives a better error message if some libraries cant be found.
Download (0.94MB)
Added: 2005-10-26 License: GPL (GNU General Public License) Price:
1462 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above config search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed