configfile
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 24
ConfigFile for Haskell 1.0.0
ConfigFile for Haskell is a configuration file parser and writer library for Haskell. more>>
ConfigFile for Haskell is a configuration file parser and writer library for Haskell.
The ConfigFile module works with configuration files in a standard format that is easy for the user to edit, easy for the programmer to work with, yet remains powerful and flexible. It is inspired by, and compatible with, Pythons ConfigParser module. It uses files that resemble Windows .INI-style files, but with numerous improvements.
ConfigFile provides simple calls to both read and write config files. Its possible to make a config file parsable by this module, the Unix shell, and make.
Enhancements:
- This package was formerly part of MissingH and is being split off as part of the MissingH transition plan.
<<lessThe ConfigFile module works with configuration files in a standard format that is easy for the user to edit, easy for the programmer to work with, yet remains powerful and flexible. It is inspired by, and compatible with, Pythons ConfigParser module. It uses files that resemble Windows .INI-style files, but with numerous improvements.
ConfigFile provides simple calls to both read and write config files. Its possible to make a config file parsable by this module, the Unix shell, and make.
Enhancements:
- This package was formerly part of MissingH and is being split off as part of the MissingH transition plan.
Download (0.034MB)
Added: 2006-12-11 License: LGPL (GNU Lesser General Public License) Price:
1047 downloads
Config::IniFiles 2.38
Config::IniFiles is a module for reading .ini-style configuration files. more>>
Config::IniFiles is a module for reading .ini-style configuration files.
SYNOPSIS
use Config::IniFiles;
my $cfg = new Config::IniFiles( -file => "/path/configfile.ini" );
print "The value is " . $cfg->val( Section, Parameter ) . "."
if $cfg->val( Section, Parameter );
Config::IniFiles provides a way to have readable configuration files outside your Perl script. Configurations can be imported (inherited, stacked,...), sections can be grouped, and settings can be accessed from a tied hash.
FILE FORMAT
INI files consist of a number of sections, each preceded with the section name in square brackets. The first non-blank character of the line indicating a section must be a left bracket and the last non-blank character of a line indicating a section must be a right bracket. The characters making up the section name can be any symbols at all. However section names must be unique.
Parameters are specified in each section as Name=Value. Any spaces around the equals sign will be ignored, and the value extends to the end of the line. Parameter names are localized to the namespace of the section, but must be unique within a section.
[section]
Parameter=Value
Both the hash mark (#) and the semicolon (;) are comment characters. by default (this can be changed by configuration) Lines that begin with either of these characters will be ignored. Any amount of whitespace may precede the comment character.
Multi-line or multi-valued parameters may also be defined ala UNIX "here document" syntax:
Parameter=<<less
SYNOPSIS
use Config::IniFiles;
my $cfg = new Config::IniFiles( -file => "/path/configfile.ini" );
print "The value is " . $cfg->val( Section, Parameter ) . "."
if $cfg->val( Section, Parameter );
Config::IniFiles provides a way to have readable configuration files outside your Perl script. Configurations can be imported (inherited, stacked,...), sections can be grouped, and settings can be accessed from a tied hash.
FILE FORMAT
INI files consist of a number of sections, each preceded with the section name in square brackets. The first non-blank character of the line indicating a section must be a left bracket and the last non-blank character of a line indicating a section must be a right bracket. The characters making up the section name can be any symbols at all. However section names must be unique.
Parameters are specified in each section as Name=Value. Any spaces around the equals sign will be ignored, and the value extends to the end of the line. Parameter names are localized to the namespace of the section, but must be unique within a section.
[section]
Parameter=Value
Both the hash mark (#) and the semicolon (;) are comment characters. by default (this can be changed by configuration) Lines that begin with either of these characters will be ignored. Any amount of whitespace may precede the comment character.
Multi-line or multi-valued parameters may also be defined ala UNIX "here document" syntax:
Parameter=<<less
Download (0.036MB)
Added: 2006-06-15 License: Perl Artistic License Price:
1226 downloads
App::Conf::File 0.965
App::Conf::File is a Perl module to load and access configuration data. more>>
App::Conf::File is a Perl module to load and access configuration data.
SYNOPSIS
use App::Conf;
$config = App::Conf->new();
$config = App::Conf->new(configFile => $file);
print $config->dump(), "n"; # use Data::Dumper to spit out the Perl representation
# accessors
$property_value = $config->get($property_name);
$branch = $config->get_branch($branch_name); # get hashref of properties
# on-demand loading helper methods (private methods)
$config->overlay($config2); # merge the two config structures using overlay rules
$config->overlay($config1, $config2); # merge $config2 onto $config1
$config->graft($branch_name, $config2); # graft new config structure onto branch
# By convention, the configurations for each App-Context service will be located
# two levels under the hash ref as shown.
$config->{Conf} # config settings for all Conf services
$config->{Conf}{default} # config settings for the default Conf service
$config->{Security} # config settings for all Security services
$config->{Security}{default} # config settings for the default Security service
$config->{Template}{tt} # config settings for the Template service named "tt"
# The default driver (if "configClass" not supplied) reads in a Perl
# data structure from the file. Alternate drivers can read a Storable,
# unvalidated XML, DTD-validated XML, RDF-validated XML, or any other
# file format or data source anyone cares to write a driver for.
$conf = {
Standard => {
Log-Dispatch => {
logdir => /var/p5ee,
}
},
Authen => {
passwd => /etc/passwd,
seed => 303292,
},
};
# A comparable unvalidating XML file would look like this.
< conf>
< Standard>
< Log-Dispatch logdir="/var/p5ee"/>
< /Standard>
< Authen passwd="/etc/passwd" seed="303292"/>
< /conf>
# A comparable ini file (.ini) would look like this.
[Standard.Log-Dispatch]
logdir = /var/p5ee
[Authen]
passwd = /etc/passwd
seed = 303292
# A comparable Java properties-like file would look like this.
Standard.Log-Dispatch.logdir = /var/p5ee
Authen.passwd = /etc/passwd
Authen.seed = 303292
<<lessSYNOPSIS
use App::Conf;
$config = App::Conf->new();
$config = App::Conf->new(configFile => $file);
print $config->dump(), "n"; # use Data::Dumper to spit out the Perl representation
# accessors
$property_value = $config->get($property_name);
$branch = $config->get_branch($branch_name); # get hashref of properties
# on-demand loading helper methods (private methods)
$config->overlay($config2); # merge the two config structures using overlay rules
$config->overlay($config1, $config2); # merge $config2 onto $config1
$config->graft($branch_name, $config2); # graft new config structure onto branch
# By convention, the configurations for each App-Context service will be located
# two levels under the hash ref as shown.
$config->{Conf} # config settings for all Conf services
$config->{Conf}{default} # config settings for the default Conf service
$config->{Security} # config settings for all Security services
$config->{Security}{default} # config settings for the default Security service
$config->{Template}{tt} # config settings for the Template service named "tt"
# The default driver (if "configClass" not supplied) reads in a Perl
# data structure from the file. Alternate drivers can read a Storable,
# unvalidated XML, DTD-validated XML, RDF-validated XML, or any other
# file format or data source anyone cares to write a driver for.
$conf = {
Standard => {
Log-Dispatch => {
logdir => /var/p5ee,
}
},
Authen => {
passwd => /etc/passwd,
seed => 303292,
},
};
# A comparable unvalidating XML file would look like this.
< conf>
< Standard>
< Log-Dispatch logdir="/var/p5ee"/>
< /Standard>
< Authen passwd="/etc/passwd" seed="303292"/>
< /conf>
# A comparable ini file (.ini) would look like this.
[Standard.Log-Dispatch]
logdir = /var/p5ee
[Authen]
passwd = /etc/passwd
seed = 303292
# A comparable Java properties-like file would look like this.
Standard.Log-Dispatch.logdir = /var/p5ee
Authen.passwd = /etc/passwd
Authen.seed = 303292
Download (0.12MB)
Added: 2007-06-21 License: Perl Artistic License Price:
856 downloads
Template::Plugin::Config::General 0.01
Template::Plugin::Config::General is a template toolkit plugin which implements wrapper around Config::General module. more>>
Template::Plugin::Config::General is a template toolkit plugin which implements wrapper around Config::General module.
SYNOPSIS
# Config file format
; app.cfg - common configuration for scripts and both
; static and dynamic template pages.
base_url = /~liol
images_url = $base_url/images
< news >
title = Top News
url = $base_url/news
images_url = $url/images
< /news >
< admin >
title = Admin area
url = $base_url/admin
images_url = $url/images
< /admin >
include specific.cfg
# Reading configuration from code
use Config::General;
$plConfig = new Config::General(
-ConfigFile => app.cfg,
-ConfigPath => [ /web/etc ]
-InterPolateVars => 1,
-UseApacheInclude => 1,
);
my %cfg = $plConfig->getall;
# Reading configuration from template
[%-
USE plConfig = Config::General(
ConfigFile = app.cfg,
ConfigPath = [ /web/etc ]
InterPolateVars = 1,
UseApacheInclude = 1,
);
cfg = plConfig.getall;
-%]
[% cfg.news.title %]
[% cfg.admin.images_url %]
This module implements interface wrapper around Config::General. The task of easy access to configuration items from both code and templates may appear in applications which uses configuration files which are saved apart from code and templates. This module would help to avoid data doubling. To access configuration from code we can use Config::General module which parses apache-like config files. This plugin makes the same thing for templates. So we can use the same file in both code, "dynamic" templates and "static" templates. There is no difference what application uses template - ttree or other script. Plugin would provide proper configuration.
<<lessSYNOPSIS
# Config file format
; app.cfg - common configuration for scripts and both
; static and dynamic template pages.
base_url = /~liol
images_url = $base_url/images
< news >
title = Top News
url = $base_url/news
images_url = $url/images
< /news >
< admin >
title = Admin area
url = $base_url/admin
images_url = $url/images
< /admin >
include specific.cfg
# Reading configuration from code
use Config::General;
$plConfig = new Config::General(
-ConfigFile => app.cfg,
-ConfigPath => [ /web/etc ]
-InterPolateVars => 1,
-UseApacheInclude => 1,
);
my %cfg = $plConfig->getall;
# Reading configuration from template
[%-
USE plConfig = Config::General(
ConfigFile = app.cfg,
ConfigPath = [ /web/etc ]
InterPolateVars = 1,
UseApacheInclude = 1,
);
cfg = plConfig.getall;
-%]
[% cfg.news.title %]
[% cfg.admin.images_url %]
This module implements interface wrapper around Config::General. The task of easy access to configuration items from both code and templates may appear in applications which uses configuration files which are saved apart from code and templates. This module would help to avoid data doubling. To access configuration from code we can use Config::General module which parses apache-like config files. This plugin makes the same thing for templates. So we can use the same file in both code, "dynamic" templates and "static" templates. There is no difference what application uses template - ttree or other script. Plugin would provide proper configuration.
Download (0.003MB)
Added: 2007-04-06 License: Perl Artistic License Price:
931 downloads
GO::View 0.72
GO::View is a Perl module that creates a gif or png image for visualizing the GO DAG. more>>
GO::View is a Perl module that creates a gif or png image for visualizing the GO DAG.
This perl module generates a graphic that displays the parent and child relationships of a selected GO term. It also provides the visualization for the GO::TermFinder perl module created by the Stanford Microarray Database (SMD). This module is useful when analyzing experimental or computational results that produce a set of gene products that may have a common function or process.
SYNOPSIS
use GO::View;
my $goView =
GO::View->new(-goid => $goid,
-ontologyProvider => $ontology,
-annotationProvider => $annotation,
-termFinder => @pvalues,
-aspect => P,
-configFile => $confFile,
-imageDir => "/tmp",
-imageUrlRoot => "http://www.ABC.com/tmp",
-imageName => "GOview.88.png",
-tree => up,
-nodeUrl => $goUrl,
-geneUrl => $geneUrl,
-pvalueCutOff => 0.01,
-imageLabel => "SGD");
argument required expect data and type
-------------------------------------------------------------------------
-goid No A gene ontology ID (GOID).
If nothing is passed in, the module
will use the top goid of each ontology
branch (i.e, goid for
molecular_function, biological_process,
or cellular_component)
-ontologyProvider Yes An ontology provider instance.
-annotationProvider No An annotation provider instance. It is
required for creating tree for GO Term
Finder result.
-termFinder No An array of hash references returned
from findTerms method of
GO::TermFinder module. It is required
for creating tree for GO Term Finder
result.
-aspect No . The aspect of the ontology
provider. It is required for creating
tree for GO Term Finder result.
-configFile Yes The configuration file for setting the
general variables for the graphic
display.
-imageDir Yes The directory for storing the newly
created image file. It must be
world (nobody) readable and writable
if you want to display the image to
the web.
-imageUrlRoot No The url root for the -imageDir. It is
required if you want to display the
image to the web.
-imageName No The image file name. By default, the
name will be something like
GOview.xxxx.png. The xxxx will be
the process id. A suffix for the image (.png
or .gif) should not be provided, as that will
be determined at run time, depending on the
capabilities of the GD library.
-treeType No . The tree type.
1. up => display the ancestor tree
for the given goid.
2. down => display the descendant tree
for the given goid.
By default, it will display the
descendant tree.
-geneUrl No The URL for each Gene to link to.
It needs to have the text in
the url which will be substituted
by the real goid for a node.
-nodeUrl No The url for each GO node to link to.
It needs to have the text in
the url which will be substituted
by the real goid for a node.
-pvalueCutOff No The p-value cutoff for displaying
the graphic for GO Term Finder.
The default is 0.01
-imageLabel No The image label which will appear at
the left bottom corner of the map.
------------------------------------------------------------------------
To display the image on the web:
$goView->showGraph;
To create and return image file name with full path:
my $imageFile = $goView->createImage;
<<lessThis perl module generates a graphic that displays the parent and child relationships of a selected GO term. It also provides the visualization for the GO::TermFinder perl module created by the Stanford Microarray Database (SMD). This module is useful when analyzing experimental or computational results that produce a set of gene products that may have a common function or process.
SYNOPSIS
use GO::View;
my $goView =
GO::View->new(-goid => $goid,
-ontologyProvider => $ontology,
-annotationProvider => $annotation,
-termFinder => @pvalues,
-aspect => P,
-configFile => $confFile,
-imageDir => "/tmp",
-imageUrlRoot => "http://www.ABC.com/tmp",
-imageName => "GOview.88.png",
-tree => up,
-nodeUrl => $goUrl,
-geneUrl => $geneUrl,
-pvalueCutOff => 0.01,
-imageLabel => "SGD");
argument required expect data and type
-------------------------------------------------------------------------
-goid No A gene ontology ID (GOID).
If nothing is passed in, the module
will use the top goid of each ontology
branch (i.e, goid for
molecular_function, biological_process,
or cellular_component)
-ontologyProvider Yes An ontology provider instance.
-annotationProvider No An annotation provider instance. It is
required for creating tree for GO Term
Finder result.
-termFinder No An array of hash references returned
from findTerms method of
GO::TermFinder module. It is required
for creating tree for GO Term Finder
result.
-aspect No . The aspect of the ontology
provider. It is required for creating
tree for GO Term Finder result.
-configFile Yes The configuration file for setting the
general variables for the graphic
display.
-imageDir Yes The directory for storing the newly
created image file. It must be
world (nobody) readable and writable
if you want to display the image to
the web.
-imageUrlRoot No The url root for the -imageDir. It is
required if you want to display the
image to the web.
-imageName No The image file name. By default, the
name will be something like
GOview.xxxx.png. The xxxx will be
the process id. A suffix for the image (.png
or .gif) should not be provided, as that will
be determined at run time, depending on the
capabilities of the GD library.
-treeType No . The tree type.
1. up => display the ancestor tree
for the given goid.
2. down => display the descendant tree
for the given goid.
By default, it will display the
descendant tree.
-geneUrl No The URL for each Gene to link to.
It needs to have the text in
the url which will be substituted
by the real goid for a node.
-nodeUrl No The url for each GO node to link to.
It needs to have the text in
the url which will be substituted
by the real goid for a node.
-pvalueCutOff No The p-value cutoff for displaying
the graphic for GO Term Finder.
The default is 0.01
-imageLabel No The image label which will appear at
the left bottom corner of the map.
------------------------------------------------------------------------
To display the image on the web:
$goView->showGraph;
To create and return image file name with full path:
my $imageFile = $goView->createImage;
Download (0.85MB)
Added: 2006-07-31 License: Perl Artistic License Price:
1184 downloads
Bandwidth Monitor NG 0.6
Bandwidth Monitor NG is a small and simple console-based live bandwidth monitor. more>>
Bandwidth Monitor NG is a small and simple console-based live bandwidth monitor.
I have sucessfully tested on (if you have any other sucessfull or unsucessfull, please mail me):
Linux 2.4, Linux 2.6
FreeBSD 4.8, 5.3
MacOS X 10.1, 10.2, 10.3
Solaris 10 64bit x86
SunOS 5.9 sparc Solaris 9
OpenBSD 3.4, 3.6
NetBSD 1.6.1, 2.0
IRIX64 6.5
Main features:
- supports /proc/net/dev, netstat, getifaddr, sysctl, kstat and libstatgrab
- unlimited number of interfaces supported
- interfaces are added or removed dynamically from list
- white-/blacklist of interfaces
- output of KB/s, Kb/s, packets, errors, average, max and total sum
- output in curses, plain console, CSV or HTML
- configfile
Enhancements:
- Changes in this release include curses2 output (a nice bar chart), disk input for BSD, Mac OS X, Linux, and Solaris, Win32 network bandwidth support, use of autotools, and lots of fixes.
<<lessI have sucessfully tested on (if you have any other sucessfull or unsucessfull, please mail me):
Linux 2.4, Linux 2.6
FreeBSD 4.8, 5.3
MacOS X 10.1, 10.2, 10.3
Solaris 10 64bit x86
SunOS 5.9 sparc Solaris 9
OpenBSD 3.4, 3.6
NetBSD 1.6.1, 2.0
IRIX64 6.5
Main features:
- supports /proc/net/dev, netstat, getifaddr, sysctl, kstat and libstatgrab
- unlimited number of interfaces supported
- interfaces are added or removed dynamically from list
- white-/blacklist of interfaces
- output of KB/s, Kb/s, packets, errors, average, max and total sum
- output in curses, plain console, CSV or HTML
- configfile
Enhancements:
- Changes in this release include curses2 output (a nice bar chart), disk input for BSD, Mac OS X, Linux, and Solaris, Win32 network bandwidth support, use of autotools, and lots of fixes.
Download (0.066MB)
Added: 2007-03-01 License: GPL (GNU General Public License) Price:
971 downloads
formHandler 2.1.0
formHandler provides a modular PHP mailscript with a lot of default modules. more>>
formHandler provides a modular PHP mailscript with a lot of default modules.
formHandler is a package of PHP-scripts for basic sending of data to a mailaddress submitted in an HTML form.
This package is fully object-oriented and extremely modular. Performance is very good, and it is very easy to add home-made modules.
Several modules are included with formHandler, such as Required-module, Template-modules, Reply-module, Attachment-module, Fieldcheck-module, and Referer-module.
It is possible to use this script for every form on your site.
Whats New in 2.1.0 Development Release:
- This is a development release.
- Some small bugs have been fixed.
- Also some small features have been added. Most aliases to existing options.
- Lots of usefull documentation has been added. This documentation can also be found on the homepage. Especially usefull is the module usage documentation.
- Some options are marked to change in the future.
- A tool to check if the used version is the latest, was added.
Enhancements:
- Setcookie module created.
- Referer-check module was created.
- Log-message was created.
- Problem with double Debug-output was fixed.
- Centralization of all config-options into the configfile.inc.php file.
<<lessformHandler is a package of PHP-scripts for basic sending of data to a mailaddress submitted in an HTML form.
This package is fully object-oriented and extremely modular. Performance is very good, and it is very easy to add home-made modules.
Several modules are included with formHandler, such as Required-module, Template-modules, Reply-module, Attachment-module, Fieldcheck-module, and Referer-module.
It is possible to use this script for every form on your site.
Whats New in 2.1.0 Development Release:
- This is a development release.
- Some small bugs have been fixed.
- Also some small features have been added. Most aliases to existing options.
- Lots of usefull documentation has been added. This documentation can also be found on the homepage. Especially usefull is the module usage documentation.
- Some options are marked to change in the future.
- A tool to check if the used version is the latest, was added.
Enhancements:
- Setcookie module created.
- Referer-check module was created.
- Log-message was created.
- Problem with double Debug-output was fixed.
- Centralization of all config-options into the configfile.inc.php file.
Download (0.10MB)
Added: 2007-03-05 License: LGPL (GNU Lesser General Public License) Price:
966 downloads
ldapvacation 1.1.1
ldapvacation is an LDAP-enabled version of the vacation program that sends an more>>
ldapvacation returns a message to the sender of a message telling them that you are currently not reading your mail.
SYNOPSIS
ldapvacation [ -tVv ] [ -b searchbase ] [ -C configfile ] [ -D binddn ]
[ -d dest ] [ -f from ] [ -h ldaphost ] [ -l logfacility ]
[ -m mailattr ] [ -p ldapport ] [ -q query ] [ -u ldapurl ]
[ -w bindpasswd ] [ -x spamheader ]
Options:
-t Use TLS when connecting to the LDAP server.
-V Show the version number and exit.
-v Run in verbose more. Informal message are displayed on standard output and in the syslog.
-b searchbase
Specify the searchbase for LDAP searches.
-C configfile
Read configuration options from configfile.
-D binddn
Specify the distinguished name to use when binding to the LDAP server.
-d dest
Specify the message destination user. If this option is not set, ldapvacation will use the login
name of the user executing it.
-f from
Specify the envelope sender address.
-h ldaphost
Specify the hostname of the LDAP server. This option is deprecated, please use a LDAP URL in-
stead.
-l logfacility
Set the log facility for syslog to logfacility. Possible values are daemon, mail, user, local0,
local1, local2, local3, local4, local5, local6, local7, local8, and local9.
-m mailattr
Specify the LDAP attribute which is used to store local addresses.
-p ldapport
Specify the TCP port number on which to contact the LDAP server. This option is deprecated,
please use a LDAP URL instead.
-q query
Specify the LDAP query to find entries.
-u ldapurl
Specify the LDAP URL of the server to connect to.
-w bindpasswd
Specify the password to use when binding to the LDAP server.
Enhancements:
- A bug in the config file parser was fixed.
<<lessSYNOPSIS
ldapvacation [ -tVv ] [ -b searchbase ] [ -C configfile ] [ -D binddn ]
[ -d dest ] [ -f from ] [ -h ldaphost ] [ -l logfacility ]
[ -m mailattr ] [ -p ldapport ] [ -q query ] [ -u ldapurl ]
[ -w bindpasswd ] [ -x spamheader ]
Options:
-t Use TLS when connecting to the LDAP server.
-V Show the version number and exit.
-v Run in verbose more. Informal message are displayed on standard output and in the syslog.
-b searchbase
Specify the searchbase for LDAP searches.
-C configfile
Read configuration options from configfile.
-D binddn
Specify the distinguished name to use when binding to the LDAP server.
-d dest
Specify the message destination user. If this option is not set, ldapvacation will use the login
name of the user executing it.
-f from
Specify the envelope sender address.
-h ldaphost
Specify the hostname of the LDAP server. This option is deprecated, please use a LDAP URL in-
stead.
-l logfacility
Set the log facility for syslog to logfacility. Possible values are daemon, mail, user, local0,
local1, local2, local3, local4, local5, local6, local7, local8, and local9.
-m mailattr
Specify the LDAP attribute which is used to store local addresses.
-p ldapport
Specify the TCP port number on which to contact the LDAP server. This option is deprecated,
please use a LDAP URL instead.
-q query
Specify the LDAP query to find entries.
-u ldapurl
Specify the LDAP URL of the server to connect to.
-w bindpasswd
Specify the password to use when binding to the LDAP server.
Enhancements:
- A bug in the config file parser was fixed.
Download (0.020MB)
Added: 2006-03-28 License: BSD License Price:
1305 downloads
NOTE 1.3.1
NOTE provides a console note management tool. more>>
NOTE provides a console note management tool.
NOTE is a small console program that allows you to manage notes similar to programs like "knotes" from the command line. It supports different database backends for storage, and includes a DBI-based MySQL module and another module that uses a binary file for storage and a DBM module.
Main features:
- Several different database backends, mysql(DBI), dbm, binary(bin file), general and text (text files).
- Commandline interface using the standard perl module etopt::Long, which allows you tuse short or long command-line options.
- Interactive interface(pure ascii), the following functions are available in interactive mode: list, display, topic, delete, edit, help.
- Highly confiurable using a perlish configfile ~/.noterc. although it is configurable it is not required, note can run without a configfile using useful default presets.
- Colourized output is supported using ASCII Escape-Sequences.
- The user can customize the color for each item.
- Data can be stored in various different database backends, since all database access is excluded from the program itself in perl modules.
- Notes can be deleted, edited and you can search trough your notes.
- Notes can be categorized. Each category(topic) can contain multiple notes and even more sup-topics. There is nlimitation about sub topics.
- You can view all notes in a list and it is possible only tview notes under a certain topic.
- There is a tree-view, which allows you tget an overview of your topic-hierarchy.
- Notes can be encrypted using DES or IDEA algorythms and Crypt::CBC.
- You can dump the contents of your note database inta plain text file, which can later be imported. Imports can be appended or it can overwrite an existing database (-o).
- Note has scripting capabilities, you can create a new note by piping another commands output tnote, you can alsimport a notedump from stdin as well es duming tstdout instead a file. Additional, there is an option --raw available, which prints everything out completely without formatting.
- for better performance, note can cache the database for listings or searching.
- It can be installed without root-privileges.
- if Term::ReadLine (and Term::ReadLine::Gnu) is installed, history and auto-completion are supported in interactive mode.
- Last, a while aga user stated: "... it simply does, what it says ..."
<<lessNOTE is a small console program that allows you to manage notes similar to programs like "knotes" from the command line. It supports different database backends for storage, and includes a DBI-based MySQL module and another module that uses a binary file for storage and a DBM module.
Main features:
- Several different database backends, mysql(DBI), dbm, binary(bin file), general and text (text files).
- Commandline interface using the standard perl module etopt::Long, which allows you tuse short or long command-line options.
- Interactive interface(pure ascii), the following functions are available in interactive mode: list, display, topic, delete, edit, help.
- Highly confiurable using a perlish configfile ~/.noterc. although it is configurable it is not required, note can run without a configfile using useful default presets.
- Colourized output is supported using ASCII Escape-Sequences.
- The user can customize the color for each item.
- Data can be stored in various different database backends, since all database access is excluded from the program itself in perl modules.
- Notes can be deleted, edited and you can search trough your notes.
- Notes can be categorized. Each category(topic) can contain multiple notes and even more sup-topics. There is nlimitation about sub topics.
- You can view all notes in a list and it is possible only tview notes under a certain topic.
- There is a tree-view, which allows you tget an overview of your topic-hierarchy.
- Notes can be encrypted using DES or IDEA algorythms and Crypt::CBC.
- You can dump the contents of your note database inta plain text file, which can later be imported. Imports can be appended or it can overwrite an existing database (-o).
- Note has scripting capabilities, you can create a new note by piping another commands output tnote, you can alsimport a notedump from stdin as well es duming tstdout instead a file. Additional, there is an option --raw available, which prints everything out completely without formatting.
- for better performance, note can cache the database for listings or searching.
- It can be installed without root-privileges.
- if Term::ReadLine (and Term::ReadLine::Gnu) is installed, history and auto-completion are supported in interactive mode.
- Last, a while aga user stated: "... it simply does, what it says ..."
Download (0.041MB)
Added: 2007-02-07 License: GPL (GNU General Public License) Price:
995 downloads
ABacoD 1.4
ABacoD is an automatic backup script. more>>
ABacoD is an automatic backup script.
Transfers files and directory renaming them with a configurable logic.
Source path can contain wildchars:
* :every string
? :every char
[...] :one specified char
Destination path can contain:
^n^ :replaced with the result of n-th expansion in source path (starting from 0)
^d^ :replaced with hour/date of the trensfer (the format is configurable)
Accept command line argumnt and/or a configuration file. Command line argument overwrite corresponding configuration files. Append implies deletion of source file.
Does not implements loops, therefore you must use cron or similar systems.
IMPORTANT NOTE: - Abacod deletes files! Testing parameters with the DUMMY (or -t) flag is safety. More safety is run with a user whose rights are the minumum possible.
Syntax
abacod [OPTION] CONFIGFILE"
-V, --version print version
-h, --help print this help
-v, --verbose print what is going to do
-t, --test dont touch filesistem, print only
-p, --srcpath SRCPATH source path (can use wildchar: *,?,[...])
-d, --dstpath DSTPATH destination path:
^n^ is replaced with n-th wildchar
^d^ is replaced with current date
-r, --deletesrc delete source
-i, --ignoredirs ignore subdirs of srcpath
-a, --append append
-o, --overwritemode MODE overwrite mode:
0: never
1: ever
2: only if newer
3: only if bigger
-m, --maxtransfer AMOUNT stop after AMOUNT transfer
-s, --transfersleep SEC sleep between transfer (default 1)
--errorsleep SEC sleep before exit on error (default 30)
-u, --forcedumask UMASK umask to use
--forcedowner ID set owner ID
--forcedgroup ID set group ID
-e, --dateformat FORMAT format to use for date (date syntax)
--testmountpoint MOUNTPOINT test mountpoint before proceeding
--testping ADDRESSORNAME ping this address before proceeding
every command line values overwrites configuration file one if there is no configuration file command ends with a -
<<lessTransfers files and directory renaming them with a configurable logic.
Source path can contain wildchars:
* :every string
? :every char
[...] :one specified char
Destination path can contain:
^n^ :replaced with the result of n-th expansion in source path (starting from 0)
^d^ :replaced with hour/date of the trensfer (the format is configurable)
Accept command line argumnt and/or a configuration file. Command line argument overwrite corresponding configuration files. Append implies deletion of source file.
Does not implements loops, therefore you must use cron or similar systems.
IMPORTANT NOTE: - Abacod deletes files! Testing parameters with the DUMMY (or -t) flag is safety. More safety is run with a user whose rights are the minumum possible.
Syntax
abacod [OPTION] CONFIGFILE"
-V, --version print version
-h, --help print this help
-v, --verbose print what is going to do
-t, --test dont touch filesistem, print only
-p, --srcpath SRCPATH source path (can use wildchar: *,?,[...])
-d, --dstpath DSTPATH destination path:
^n^ is replaced with n-th wildchar
^d^ is replaced with current date
-r, --deletesrc delete source
-i, --ignoredirs ignore subdirs of srcpath
-a, --append append
-o, --overwritemode MODE overwrite mode:
0: never
1: ever
2: only if newer
3: only if bigger
-m, --maxtransfer AMOUNT stop after AMOUNT transfer
-s, --transfersleep SEC sleep between transfer (default 1)
--errorsleep SEC sleep before exit on error (default 30)
-u, --forcedumask UMASK umask to use
--forcedowner ID set owner ID
--forcedgroup ID set group ID
-e, --dateformat FORMAT format to use for date (date syntax)
--testmountpoint MOUNTPOINT test mountpoint before proceeding
--testping ADDRESSORNAME ping this address before proceeding
every command line values overwrites configuration file one if there is no configuration file command ends with a -
Download (0.011MB)
Added: 2005-11-04 License: GPL (GNU General Public License) Price:
1449 downloads
Cow outputs waves 0.1.2
Cow is something like a waveform editor in that it generates a wave file from one or more graphs for amplitude and frequency. more>>
Cow is something like a waveform editor in that it generates a wave file from one or more graphs for amplitude and frequency. It has a graphical user interface that simplifies this process.
First i wrote some classes to generate wavefiles with graphs for amplitude and frequency. Thats really simple sound synthesis. The waveformeditor of Christopher Rowley[1] inspired me. As it worked i made a little GUI just because its more compfortable to edit the
graphs... Ok. I could produce sounds, thats fine. Someone lend me a midi-keyboard and i programmed something to play the sound at different tonepitches. Well, thats it. Was a funny project, still works for me, but i guess it is dead. This will be the last release so
far. Hope you have fun with it .
cowman reads midi-events from /dev/midi00 and plays the apropriate note on /dev/dsp. You must start it with a cow-file as command-line-option or with a configfile. See manpage.
<<lessFirst i wrote some classes to generate wavefiles with graphs for amplitude and frequency. Thats really simple sound synthesis. The waveformeditor of Christopher Rowley[1] inspired me. As it worked i made a little GUI just because its more compfortable to edit the
graphs... Ok. I could produce sounds, thats fine. Someone lend me a midi-keyboard and i programmed something to play the sound at different tonepitches. Well, thats it. Was a funny project, still works for me, but i guess it is dead. This will be the last release so
far. Hope you have fun with it .
cowman reads midi-events from /dev/midi00 and plays the apropriate note on /dev/dsp. You must start it with a cow-file as command-line-option or with a configfile. See manpage.
Download (0.084MB)
Added: 2006-07-24 License: GPL (GNU General Public License) Price:
1188 downloads
LCDTicker 0.2
LCDTicker is a news ticker for LCDproc. more>>
LCDTicker is a newsticker for LCDproc. It downloads news from an RSS newsserver and prints it on a display.
At the moment LCDTicker supports only the first line on a display, because I have a one line display.
Installation
extract the archive, type
"make"
and then
"make install" (make sure you are root at this moment),
copy lcdticker.conf to /etc
"cp lcdticker.conf /etc"
if do your start lcdticker automatically an systemstart, copy lcdtickerd to /etc/init.d
"cp lcdtickerd /etc/init.d"
create a Symlink to /etc/rc2.d as example
"ln -s /etc/inid.d/lcdtickerd /etc/rc2.d/S89lcdtickerd"
and for the shutdown
"ln -s /etc/init.d/lcdtickerd /etc/rc0.d/K10lcdtickerd"
Enhancements:
- Add a new argument: "-c" path to load the configfile
- Change the default path of the configfile from HOMEDIR/.lcdticker/lcdticker.conf to /etc/lcdticker.conf
- Change the path to load the news file from HOMEDIR/.lcdticker to /tmp
- Add a init.d startscript
- Add a changelog
<<lessAt the moment LCDTicker supports only the first line on a display, because I have a one line display.
Installation
extract the archive, type
"make"
and then
"make install" (make sure you are root at this moment),
copy lcdticker.conf to /etc
"cp lcdticker.conf /etc"
if do your start lcdticker automatically an systemstart, copy lcdtickerd to /etc/init.d
"cp lcdtickerd /etc/init.d"
create a Symlink to /etc/rc2.d as example
"ln -s /etc/inid.d/lcdtickerd /etc/rc2.d/S89lcdtickerd"
and for the shutdown
"ln -s /etc/init.d/lcdtickerd /etc/rc0.d/K10lcdtickerd"
Enhancements:
- Add a new argument: "-c" path to load the configfile
- Change the default path of the configfile from HOMEDIR/.lcdticker/lcdticker.conf to /etc/lcdticker.conf
- Change the path to load the news file from HOMEDIR/.lcdticker to /tmp
- Add a init.d startscript
- Add a changelog
Download (0.015MB)
Added: 2005-04-26 License: GPL (GNU General Public License) Price:
1641 downloads
IsoQlog 2.2.1
Isoqlog is an MTA log analysis program written in C. more>>
Isoqlog is an MTA log analysis program written in C. It designed to scan qmail, postfix, sendmail, exim logfile and produce usage statistics in HTML format. for viewing through a browser.
It produces Top domains output according to Incoming, Outgoing, total mails and bytes, it keeps your main domain mail statistics with Days Top Domain, Top Users values for per day, per month, and years.
Main features:
- Multi MTA support(qmail (multilog and syslog), postfix, sendmail, exim)
- Multi-domain support: Shows quite detailed statistics for not only your main domain, but also, any domain you want.
- Displays statistics for common mail delivery errors.
- For each domain you specify; displays Top incoming, outgoing, total and byte based statistics for users.
- Displays servers activity based on incoming, outgoing, total mails and size of incoming mail, for domain and its users.
- All days, all months, all years activities ( above ones ) are stored for future inspection.
- Multi-language Support ( Turkish, English, German,Portuguese,Spanish ,Italian,french, Swedish, Dutch, Polish, Norwegian, Russian, Czech, Romanian, Danish)
Enhancements:
- Zero size bug fixed.
- All Makefile.am files renewed
- "data" Directory created
- htmltemp & lang folders moved from isoqlog/ to data/
- isoqlog/isoqlog.conf-dist moved to data/isoqlog.conf-dist.in
- isoqlog.conf-dist file added to configure.in for updating prefix
- data/Makefile.am created
- CONFIGFILE variable defined in configure.in (see main.c:54-> readconfig(CONFIGFILE)
- config.h included in main.c
- you can change prefix as shown below (now it works, tested on slackware 10):
./configure --prefix=/usr/jail/ozkan
<<lessIt produces Top domains output according to Incoming, Outgoing, total mails and bytes, it keeps your main domain mail statistics with Days Top Domain, Top Users values for per day, per month, and years.
Main features:
- Multi MTA support(qmail (multilog and syslog), postfix, sendmail, exim)
- Multi-domain support: Shows quite detailed statistics for not only your main domain, but also, any domain you want.
- Displays statistics for common mail delivery errors.
- For each domain you specify; displays Top incoming, outgoing, total and byte based statistics for users.
- Displays servers activity based on incoming, outgoing, total mails and size of incoming mail, for domain and its users.
- All days, all months, all years activities ( above ones ) are stored for future inspection.
- Multi-language Support ( Turkish, English, German,Portuguese,Spanish ,Italian,french, Swedish, Dutch, Polish, Norwegian, Russian, Czech, Romanian, Danish)
Enhancements:
- Zero size bug fixed.
- All Makefile.am files renewed
- "data" Directory created
- htmltemp & lang folders moved from isoqlog/ to data/
- isoqlog/isoqlog.conf-dist moved to data/isoqlog.conf-dist.in
- isoqlog.conf-dist file added to configure.in for updating prefix
- data/Makefile.am created
- CONFIGFILE variable defined in configure.in (see main.c:54-> readconfig(CONFIGFILE)
- config.h included in main.c
- you can change prefix as shown below (now it works, tested on slackware 10):
./configure --prefix=/usr/jail/ozkan
Download (0.15MB)
Added: 2005-10-05 License: GPL (GNU General Public License) Price:
1480 downloads
SQMixer 0.6.1
SQMixer is an audio mixer for OSS-compatible drivers that uses QT. more>>
SQMixer is an audio mixer for OSS-compatible drivers that uses QT.
Some systems require unusual options for compilation or linking that the `configure script does not know about. You can give `configure initial values for variables by setting them in the environment. Using a Bourne-compatible shell, you can do that on the command line like
this:
CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure
Or on systems that have the `env program, you can do it in this way:
env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure
Main features:
- GUI in QT
- 1 fader on mono channel / 2 faders on stereo channel
- muting on each channel
- each channel can be hidden
Enhancements:
- all important parameters can be saved in a configfile
- channels can be labeled individually
<<lessSome systems require unusual options for compilation or linking that the `configure script does not know about. You can give `configure initial values for variables by setting them in the environment. Using a Bourne-compatible shell, you can do that on the command line like
this:
CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure
Or on systems that have the `env program, you can do it in this way:
env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure
Main features:
- GUI in QT
- 1 fader on mono channel / 2 faders on stereo channel
- muting on each channel
- each channel can be hidden
Enhancements:
- all important parameters can be saved in a configfile
- channels can be labeled individually
Download (0.37MB)
Added: 2006-08-04 License: GPL (GNU General Public License) Price:
1176 downloads
dbxbandmin 0.1
dbxbandmin collects traffic via ipchains/iptables/ipfwadm-rules and writes the data into an Interbase database. more>>
dbxbandmin collects traffic via ipchains/iptables/ipfwadm-rules and writes the data into an Interbase database. It uses Perls DBI-driver and can be extended with support for various database versions.
- You need a kernel with firewall-support
- you need ipfwadm or ipchains or iptables
- you need the InterBase-Client
- you need Perl 5.xx, pE. 5.5
- you need IBPerl0.8x
- you need DBI-Modul for Perl
- you need DBD::InterBase
(try "perl -Mcpan -e shell;" and type "install DBD::Interbase")
If you do not know what parts you needed, try install.sh for reports
First you must install a "Listening" firewall-policy. The tool tng-acc-bandminstart will do this. Follow the instructions of TNG-installation. The options-overview can you get by typing
"./tng-acc-bandmin --help", if you want a german-explanation, try "./tng-acc-bandmin --language=german --help". To remove firewall-policy use tng-acc-bandminstop.
If you have questions after reading all damn documentation, please dont hesitate to ask me for tng-acc-bandmin or marco for TNG in general.
Enhancements:
- tng-acc-bandmin.rc, tng-acc-bandmin: - added POD-documentation about all - checking if "kennung" exists - tng-acc-bandmin supports now a quiet simple and human-readable configfile - fixed misspelled words - moved short switch for "ReadDevices" from "-c" to "-r" - added switch to use a special config file (default one in current dir is "./.tng-acc-bandmin.rc"), please check documentation for side-effects - virtualization of "DBI"-driver, that means the DBI-Call is complete configurable by configfile or -switches - added an example for a configfile
<<less- You need a kernel with firewall-support
- you need ipfwadm or ipchains or iptables
- you need the InterBase-Client
- you need Perl 5.xx, pE. 5.5
- you need IBPerl0.8x
- you need DBI-Modul for Perl
- you need DBD::InterBase
(try "perl -Mcpan -e shell;" and type "install DBD::Interbase")
If you do not know what parts you needed, try install.sh for reports
First you must install a "Listening" firewall-policy. The tool tng-acc-bandminstart will do this. Follow the instructions of TNG-installation. The options-overview can you get by typing
"./tng-acc-bandmin --help", if you want a german-explanation, try "./tng-acc-bandmin --language=german --help". To remove firewall-policy use tng-acc-bandminstop.
If you have questions after reading all damn documentation, please dont hesitate to ask me for tng-acc-bandmin or marco for TNG in general.
Enhancements:
- tng-acc-bandmin.rc, tng-acc-bandmin: - added POD-documentation about all - checking if "kennung" exists - tng-acc-bandmin supports now a quiet simple and human-readable configfile - fixed misspelled words - moved short switch for "ReadDevices" from "-c" to "-r" - added switch to use a special config file (default one in current dir is "./.tng-acc-bandmin.rc"), please check documentation for side-effects - virtualization of "DBI"-driver, that means the DBI-Call is complete configurable by configfile or -switches - added an example for a configfile
Download (0.019MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1205 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 2
- 1
- 2
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above configfile 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