to retrieve
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 653
GTorrentViewer 0.2b
GTorrentViewer is a GTK2-based viewer and editor for BitTorrent meta files. more>>
GTorrentViewer is a GTK2-based viewer and editor for BitTorrent meta files. It is able to retrieve information from trackers, check files, show detailed information, and modify .torrent files without having to start downloading.
The purpose of GTorrentViewer is to give the ability to see and modify all the possible information from .torrent files without having to start downloading and the ability to see in real time the current number of seeds and peers on the torrent, so you will always know the status before start the download.
<<lessThe purpose of GTorrentViewer is to give the ability to see and modify all the possible information from .torrent files without having to start downloading and the ability to see in real time the current number of seeds and peers on the torrent, so you will always know the status before start the download.
Download (0.099MB)
Added: 2005-07-28 License: GPL (GNU General Public License) Price:
1551 downloads
AutoBrowser 0.3
AutoBrowser is a stateful replacement for lwp-request. more>>
AutoBrowser is a stateful replacement for lwp-request. ("GET"/"POST" commandline tools) It provides a mechanism to describe a series of interactions with a server and tracks cookies, redirections, etc throughout the interaction. It is essentially a non-interactive web browser. It supports SSL connections.
I needed to retrieve a CSV file from a companys web site automatically on a daily basis -- however they were using SSL and their site required that I log in and navigate the menus in order to actually get the file. Thats how autobrowser appeared.
<<lessI needed to retrieve a CSV file from a companys web site automatically on a daily basis -- however they were using SSL and their site required that I log in and navigate the menus in order to actually get the file. Thats how autobrowser appeared.
Download (0.005MB)
Added: 2006-06-15 License: GPL (GNU General Public License) Price:
1226 downloads
Nameko 1.3.1 (NamekoAttachmentsRetriever)
Nameko is a set of tools for working with e-mails in PHP. more>>
Nameko is a set of tools for working with e-mails in PHP.
The core of Nameko is composed by a set of classes for retrieve mail from a POP3 server, and parsing them to get the body (both in plain text and HTML, if included) and the attachments.
The class to retrieve e-mails from a POP3 server is NamekoPop3Interface; once you get an e-mail with this class in raw format, you can parse it with the NamekoMailParser class to get all its parts.
But there is much more. There are some special build with this classes to do directly some special tasks.
Using the NamekoAttachmentsRetriever class you can retrieve attachments directly from a mailbox. The project is based on both NamekoPop3Interface (to get the e-mail from the POP3 server) and NamekoMailParser (to parse the mail looking for attachments).
Nameko technology
Nameko is a set of PHP classes. It requires PHP 5 at server side: it doesnt work with older version of PHP.
At the client side Nameko require a browser that support Javascript and CSS. The best choose is Firefox, or one of the other Gecko based browsers such as Mozilla or Netscape Navigator. It also works with Opera, Konqueror and Internet Explorer, for both Linux and Microsoft Windows platforms. I know there are some problem with browsers for Mac, and Im working to fix them.
The communication between the browser and the server it has been used the AJAX technology, XML and JSON: that make the interface to be more responsive and hopefully easier to use. Im working also on a traditional interface, to make the webmail accessible also for older and textual browsers.
Enhancements:
- The class NamekoMailParser has been upgraded to version 1.3.1.
<<lessThe core of Nameko is composed by a set of classes for retrieve mail from a POP3 server, and parsing them to get the body (both in plain text and HTML, if included) and the attachments.
The class to retrieve e-mails from a POP3 server is NamekoPop3Interface; once you get an e-mail with this class in raw format, you can parse it with the NamekoMailParser class to get all its parts.
But there is much more. There are some special build with this classes to do directly some special tasks.
Using the NamekoAttachmentsRetriever class you can retrieve attachments directly from a mailbox. The project is based on both NamekoPop3Interface (to get the e-mail from the POP3 server) and NamekoMailParser (to parse the mail looking for attachments).
Nameko technology
Nameko is a set of PHP classes. It requires PHP 5 at server side: it doesnt work with older version of PHP.
At the client side Nameko require a browser that support Javascript and CSS. The best choose is Firefox, or one of the other Gecko based browsers such as Mozilla or Netscape Navigator. It also works with Opera, Konqueror and Internet Explorer, for both Linux and Microsoft Windows platforms. I know there are some problem with browsers for Mac, and Im working to fix them.
The communication between the browser and the server it has been used the AJAX technology, XML and JSON: that make the interface to be more responsive and hopefully easier to use. Im working also on a traditional interface, to make the webmail accessible also for older and textual browsers.
Enhancements:
- The class NamekoMailParser has been upgraded to version 1.3.1.
Download (0.014MB)
Added: 2007-07-12 License: GPL (GNU General Public License) Price:
834 downloads
Storable 2.16
Storable package contains persistence for Perl data structures. more>>
Storable package contains persistence for Perl data structures.
SYNOPSIS
use Storable;
store %table, file;
$hashref = retrieve(file);
use Storable qw(nstore store_fd nstore_fd freeze thaw dclone);
# Network order
nstore %table, file;
$hashref = retrieve(file); # There is NO nretrieve()
# Storing to and retrieving from an already opened file
store_fd @array, *STDOUT;
nstore_fd %table, *STDOUT;
$aryref = fd_retrieve(*SOCKET);
$hashref = fd_retrieve(*SOCKET);
# Serializing to memory
$serialized = freeze %table;
%table_clone = %{ thaw($serialized) };
# Deep (recursive) cloning
$cloneref = dclone($ref);
# Advisory locking
use Storable qw(lock_store lock_nstore lock_retrieve)
lock_store %table, file;
lock_nstore %table, file;
$hashref = lock_retrieve(file);
The Storable package brings persistence to your Perl data structures containing SCALAR, ARRAY, HASH or REF objects, i.e. anything that can be conveniently stored to disk and retrieved at a later time.
It can be used in the regular procedural way by calling store with a reference to the object to be stored, along with the file name where the image should be written.
The routine returns undef for I/O problems or other internal error, a true value otherwise. Serious errors are propagated as a die exception.
To retrieve data stored to disk, use retrieve with a file name. The objects stored into that file are recreated into memory for you, and a reference to the root object is returned. In case an I/O error occurs while reading, undef is returned instead. Other serious errors are propagated via die.
Since storage is performed recursively, you might want to stuff references to objects that share a lot of common data into a single array or hash table, and then store that object. That way, when you retrieve back the whole thing, the objects will continue to share what they originally shared.
At the cost of a slight header overhead, you may store to an already opened file descriptor using the store_fd routine, and retrieve from a file via fd_retrieve. Those names arent imported by default, so you will have to do that explicitly if you need those routines. The file descriptor you supply must be already opened, for read if youre going to retrieve and for write if you wish to store.
store_fd(%table, *STDOUT) || die "cant store to stdoutn";
$hashref = fd_retrieve(*STDIN);
You can also store data in network order to allow easy sharing across multiple platforms, or when storing on a socket known to be remotely connected. The routines to call have an initial n prefix for network, as in nstore and nstore_fd. At retrieval time, your data will be correctly restored so you dont have to know whether youre restoring from native or network ordered data. Double values are stored stringified to ensure portability as well, at the slight risk of loosing some precision in the last decimals.
When using fd_retrieve, objects are retrieved in sequence, one object (i.e. one recursive tree) per associated store_fd.
If youre more from the object-oriented camp, you can inherit from Storable and directly store your objects by invoking store as a method. The fact that the root of the to-be-stored tree is a blessed reference (i.e. an object) is special-cased so that the retrieve does not provide a reference to that object but rather the blessed object reference itself. (Otherwise, youd get a reference to that blessed object).
<<lessSYNOPSIS
use Storable;
store %table, file;
$hashref = retrieve(file);
use Storable qw(nstore store_fd nstore_fd freeze thaw dclone);
# Network order
nstore %table, file;
$hashref = retrieve(file); # There is NO nretrieve()
# Storing to and retrieving from an already opened file
store_fd @array, *STDOUT;
nstore_fd %table, *STDOUT;
$aryref = fd_retrieve(*SOCKET);
$hashref = fd_retrieve(*SOCKET);
# Serializing to memory
$serialized = freeze %table;
%table_clone = %{ thaw($serialized) };
# Deep (recursive) cloning
$cloneref = dclone($ref);
# Advisory locking
use Storable qw(lock_store lock_nstore lock_retrieve)
lock_store %table, file;
lock_nstore %table, file;
$hashref = lock_retrieve(file);
The Storable package brings persistence to your Perl data structures containing SCALAR, ARRAY, HASH or REF objects, i.e. anything that can be conveniently stored to disk and retrieved at a later time.
It can be used in the regular procedural way by calling store with a reference to the object to be stored, along with the file name where the image should be written.
The routine returns undef for I/O problems or other internal error, a true value otherwise. Serious errors are propagated as a die exception.
To retrieve data stored to disk, use retrieve with a file name. The objects stored into that file are recreated into memory for you, and a reference to the root object is returned. In case an I/O error occurs while reading, undef is returned instead. Other serious errors are propagated via die.
Since storage is performed recursively, you might want to stuff references to objects that share a lot of common data into a single array or hash table, and then store that object. That way, when you retrieve back the whole thing, the objects will continue to share what they originally shared.
At the cost of a slight header overhead, you may store to an already opened file descriptor using the store_fd routine, and retrieve from a file via fd_retrieve. Those names arent imported by default, so you will have to do that explicitly if you need those routines. The file descriptor you supply must be already opened, for read if youre going to retrieve and for write if you wish to store.
store_fd(%table, *STDOUT) || die "cant store to stdoutn";
$hashref = fd_retrieve(*STDIN);
You can also store data in network order to allow easy sharing across multiple platforms, or when storing on a socket known to be remotely connected. The routines to call have an initial n prefix for network, as in nstore and nstore_fd. At retrieval time, your data will be correctly restored so you dont have to know whether youre restoring from native or network ordered data. Double values are stored stringified to ensure portability as well, at the slight risk of loosing some precision in the last decimals.
When using fd_retrieve, objects are retrieved in sequence, one object (i.e. one recursive tree) per associated store_fd.
If youre more from the object-oriented camp, you can inherit from Storable and directly store your objects by invoking store as a method. The fact that the root of the to-be-stored tree is a blessed reference (i.e. an object) is special-cased so that the retrieve does not provide a reference to that object but rather the blessed object reference itself. (Otherwise, youd get a reference to that blessed object).
Download (0.17MB)
Added: 2007-05-22 License: Perl Artistic License Price:
885 downloads
Poisson Media Recovery 0.03
Poisson Media Recovery project can be used to retrieve slightly damaged files from CD-ROM media. more>>
Poisson Media Recovery project can be used to retrieve slightly damaged files from CD-ROM media.
It sequentially mounts and umounts the device, and on each mount it tries to read as many new 512 byte sectors as possible.
I was able to use this tool to save some files from old CDs.
<<lessIt sequentially mounts and umounts the device, and on each mount it tries to read as many new 512 byte sectors as possible.
I was able to use this tool to save some files from old CDs.
Download (0.002MB)
Added: 2007-08-22 License: Public Domain Price:
797 downloads
QtTV 0.0.3-pre1
QtTV is a TV Guide. It reads from an XMLTV formatted document to retrieve listings, then allows output sorted by time, per channel or in a grid of time vs channel more>>
QtTV is a TV Guide. It reads from an XMLTV formatted document to retrieve listings, then allows output sorted by time, per channel or in a grid of time vs channel.
For now, the package requires the XMLTV listings to be in "/root/Documents/tv.xml" if you are installing on the zaurus. Windows or linux compilations allow you to choose a file.
Be aware that this software is slow to load and may be buggy.
<<lessFor now, the package requires the XMLTV listings to be in "/root/Documents/tv.xml" if you are installing on the zaurus. Windows or linux compilations allow you to choose a file.
Be aware that this software is slow to load and may be buggy.
Download (0.56MB)
Added: 2005-11-04 License: GPL (GNU General Public License) Price:
1452 downloads
JTestCase 4.0.0
JTestCase is a 100% pure Java, open-source framework that helps in separating test case data from test case units. more>>
JTestCase is a 100% pure Java, open-source framework that helps in separating test case data from test case units.
Although the following examples show JTestCase used together with junit, please note that JTestCase has no dependence on junit itself.
A moderately complex java projects may comprise hundreds of junit test case. JTestCase helps you organize your test cases in a rationale and efficient way.
To achieve this goal JTestCase provides:
- A propetary XML format to define your test cases in an abstract way.
- Easy-to-use API to retrieve data from XML file and to do assertion.
<<lessAlthough the following examples show JTestCase used together with junit, please note that JTestCase has no dependence on junit itself.
A moderately complex java projects may comprise hundreds of junit test case. JTestCase helps you organize your test cases in a rationale and efficient way.
To achieve this goal JTestCase provides:
- A propetary XML format to define your test cases in an abstract way.
- Easy-to-use API to retrieve data from XML file and to do assertion.
Download (0.64MB)
Added: 2006-08-19 License: GPL (GNU General Public License) Price:
1162 downloads
GNOME Transfer Manager 0.4.12
GNOME Transfer Manager allows the user to retrieve multiple files from the web. more>>
GNOME Transfer Manager allows the user to retrieve multiple files from the web.
These files can be retrieved in multiple parts and each part retrieved on a separate session that the user is connected to the Internet. This is most useful to users with dialup connections. The program performs these tasks using wget as its back-end.
The program supports CORBA. This makes it easy for other programs to use GTransferManager to handle the transfer of files from the Internet.
The program also has an applet which communicates with program using CORBA. The applet can launch the program, request for a new download or accept drops of URLs from netscape, gFTP, gmc and give these URLs to GTM.
<<lessThese files can be retrieved in multiple parts and each part retrieved on a separate session that the user is connected to the Internet. This is most useful to users with dialup connections. The program performs these tasks using wget as its back-end.
The program supports CORBA. This makes it easy for other programs to use GTransferManager to handle the transfer of files from the Internet.
The program also has an applet which communicates with program using CORBA. The applet can launch the program, request for a new download or accept drops of URLs from netscape, gFTP, gmc and give these URLs to GTM.
Download (0.48MB)
Added: 2006-07-12 License: GPL (GNU General Public License) Price:
1208 downloads
PApp::Storable 1.2
Storable module is a persistence for Perl data structures. more>>
Storable module is a persistence for Perl data structures.
SYNOPSIS
use Storable;
store %table, file;
$hashref = retrieve(file);
use Storable qw(nstore store_fd nstore_fd freeze thaw dclone);
# Network order
nstore %table, file;
$hashref = retrieve(file); # There is NO nretrieve()
# Storing to and retrieving from an already opened file
store_fd @array, *STDOUT;
nstore_fd %table, *STDOUT;
$aryref = fd_retrieve(*SOCKET);
$hashref = fd_retrieve(*SOCKET);
# Serializing to memory
$serialized = freeze %table;
%table_clone = %{ thaw($serialized) };
# Deep (recursive) cloning
$cloneref = dclone($ref);
# Advisory locking
use Storable qw(lock_store lock_nstore lock_retrieve)
lock_store %table, file;
lock_nstore %table, file;
$hashref = lock_retrieve(file);
The Storable package brings persistence to your Perl data structures containing SCALAR, ARRAY, HASH or REF objects, i.e. anything that can be conveniently stored to disk and retrieved at a later time.
It can be used in the regular procedural way by calling store with a reference to the object to be stored, along with the file name where the image should be written.
The routine returns undef for I/O problems or other internal error, a true value otherwise. Serious errors are propagated as a die exception.
To retrieve data stored to disk, use retrieve with a file name. The objects stored into that file are recreated into memory for you, and a reference to the root object is returned. In case an I/O error occurs while reading, undef is returned instead. Other serious errors are propagated via die.
Since storage is performed recursively, you might want to stuff references to objects that share a lot of common data into a single array or hash table, and then store that object. That way, when you retrieve back the whole thing, the objects will continue to share what they originally shared.
At the cost of a slight header overhead, you may store to an already opened file descriptor using the store_fd routine, and retrieve from a file via fd_retrieve. Those names arent imported by default, so you will have to do that explicitly if you need those routines. The file descriptor you supply must be already opened, for read if youre going to retrieve and for write if you wish to store.
store_fd(%table, *STDOUT) || die "cant store to stdoutn";
$hashref = fd_retrieve(*STDIN);
You can also store data in network order to allow easy sharing across multiple platforms, or when storing on a socket known to be remotely connected. The routines to call have an initial n prefix for network, as in nstore and nstore_fd. At retrieval time, your data will be correctly restored so you dont have to know whether youre restoring from native or network ordered data. Double values are stored stringified to ensure portability as well, at the slight risk of loosing some precision in the last decimals.
When using fd_retrieve, objects are retrieved in sequence, one object (i.e. one recursive tree) per associated store_fd.
If youre more from the object-oriented camp, you can inherit from Storable and directly store your objects by invoking store as a method. The fact that the root of the to-be-stored tree is a blessed reference (i.e. an object) is special-cased so that the retrieve does not provide a reference to that object but rather the blessed object reference itself. (Otherwise, youd get a reference to that blessed object).
<<lessSYNOPSIS
use Storable;
store %table, file;
$hashref = retrieve(file);
use Storable qw(nstore store_fd nstore_fd freeze thaw dclone);
# Network order
nstore %table, file;
$hashref = retrieve(file); # There is NO nretrieve()
# Storing to and retrieving from an already opened file
store_fd @array, *STDOUT;
nstore_fd %table, *STDOUT;
$aryref = fd_retrieve(*SOCKET);
$hashref = fd_retrieve(*SOCKET);
# Serializing to memory
$serialized = freeze %table;
%table_clone = %{ thaw($serialized) };
# Deep (recursive) cloning
$cloneref = dclone($ref);
# Advisory locking
use Storable qw(lock_store lock_nstore lock_retrieve)
lock_store %table, file;
lock_nstore %table, file;
$hashref = lock_retrieve(file);
The Storable package brings persistence to your Perl data structures containing SCALAR, ARRAY, HASH or REF objects, i.e. anything that can be conveniently stored to disk and retrieved at a later time.
It can be used in the regular procedural way by calling store with a reference to the object to be stored, along with the file name where the image should be written.
The routine returns undef for I/O problems or other internal error, a true value otherwise. Serious errors are propagated as a die exception.
To retrieve data stored to disk, use retrieve with a file name. The objects stored into that file are recreated into memory for you, and a reference to the root object is returned. In case an I/O error occurs while reading, undef is returned instead. Other serious errors are propagated via die.
Since storage is performed recursively, you might want to stuff references to objects that share a lot of common data into a single array or hash table, and then store that object. That way, when you retrieve back the whole thing, the objects will continue to share what they originally shared.
At the cost of a slight header overhead, you may store to an already opened file descriptor using the store_fd routine, and retrieve from a file via fd_retrieve. Those names arent imported by default, so you will have to do that explicitly if you need those routines. The file descriptor you supply must be already opened, for read if youre going to retrieve and for write if you wish to store.
store_fd(%table, *STDOUT) || die "cant store to stdoutn";
$hashref = fd_retrieve(*STDIN);
You can also store data in network order to allow easy sharing across multiple platforms, or when storing on a socket known to be remotely connected. The routines to call have an initial n prefix for network, as in nstore and nstore_fd. At retrieval time, your data will be correctly restored so you dont have to know whether youre restoring from native or network ordered data. Double values are stored stringified to ensure portability as well, at the slight risk of loosing some precision in the last decimals.
When using fd_retrieve, objects are retrieved in sequence, one object (i.e. one recursive tree) per associated store_fd.
If youre more from the object-oriented camp, you can inherit from Storable and directly store your objects by invoking store as a method. The fact that the root of the to-be-stored tree is a blessed reference (i.e. an object) is special-cased so that the retrieve does not provide a reference to that object but rather the blessed object reference itself. (Otherwise, youd get a reference to that blessed object).
Download (0.39MB)
Added: 2007-08-02 License: Perl Artistic License Price:
813 downloads
Stofa 0.1.1
Stofa is a graphical tool for connecting to the StofaNet internet provider in denmark. more>>
Stofa is a graphical tool for connecting to the StofaNet internet provider in denmark.
Enhancements:
- Stofa changed their telnet service, so it is no longer possible to retrieve the time that you have been online.
- So that field was removed, and the dialog was tidyed.
- The usage retrieving logged you in everytime, even if you were logged off, that was fixed.
- The Sign On/Off button was changed to a normal button instead of the up/down button.
<<lessEnhancements:
- Stofa changed their telnet service, so it is no longer possible to retrieve the time that you have been online.
- So that field was removed, and the dialog was tidyed.
- The usage retrieving logged you in everytime, even if you were logged off, that was fixed.
- The Sign On/Off button was changed to a normal button instead of the up/down button.
Download (0.006MB)
Added: 2007-02-23 License: GPL (GNU General Public License) Price:
973 downloads
Apache-Storage 1.00
Apache::Storage is Perl module containing simple functions to store and retrieve information from within the Apache process. more>>
Apache::Storage is Perl module containing simple functions to store and retrieve information from within the Apache process.
<<less Download (0.004MB)
Added: 2005-08-24 License: GPL (GNU General Public License) Price:
1521 downloads
OODBC for unix 1.05
Object adapter for ODBC more>> OODBC is object interface built above ODBC API for C++ language. The primary goal of OODBC is to provide a flexible and convenient interface to relational databases for C++ language. Anyone who has to use ODBC or similar SQL interfaces will understand what I am speaking about. So binding of variables is performed exactly in place where they are used in the query. Programmer should not worry about specifying types and sizes of query parameters, binding buffers to retrieve results, allocation and deallocation of resources. As a result programming of interaction with database becomes significantly less error prone. What is more important, this interface allows programmer to abstract from relational database table and deal only with application objects. OODBC also provides flexible mapping of application classes on relational database tables, making application code less dependent of the database structure.<<less
Download (21KB)
Added: 2009-04-18 License: Freeware Price: Free
188 downloads
PasswordMaker 1.6.2
PasswordMaker is a small, lightweight, free, extension for Internet Explorer, Firefox, Mozilla, Netscape, Flock. more>>
PasswordMaker project is a small, lightweight, free, extension for Internet Explorer, Firefox, Mozilla, Netscape, Flock, and Yahoo! Widgets which creates unique, secure passwords that are very easy for you to retrieve but no one else. Nothing is stored anywhere, anytime, so theres nothing to be hacked, lost, or stolen.
How It Works:
You provide PasswordMaker two pieces of information: a "master password" -- that one, single password you like -- and the URL of the website requiring a password. Through the magic of one-way hash algorithms, PasswordMaker calculates a message digest, also known as a digital fingerprint, which can be used as your password for the website.
Although one-way hash algorithms have a number of interesting characteristics, the one capitalized by PasswordMaker is that the resulting fingerprint (password) does "not reveal anything about the input that was used to generate it." In other words, if someone has one or more of your generated passwords, it is computationally infeasible for him to derive your master password or to calculate your other passwords. Computationally infeasible means even computers like this wont help!
<<lessHow It Works:
You provide PasswordMaker two pieces of information: a "master password" -- that one, single password you like -- and the URL of the website requiring a password. Through the magic of one-way hash algorithms, PasswordMaker calculates a message digest, also known as a digital fingerprint, which can be used as your password for the website.
Although one-way hash algorithms have a number of interesting characteristics, the one capitalized by PasswordMaker is that the resulting fingerprint (password) does "not reveal anything about the input that was used to generate it." In other words, if someone has one or more of your generated passwords, it is computationally infeasible for him to derive your master password or to calculate your other passwords. Computationally infeasible means even computers like this wont help!
Download (0.16MB)
Added: 2007-07-23 License: GPL (GNU General Public License) Price:
1855 downloads
Notebook 0.4
Notebook is a logbook manager for Gnome. more>>
Notebook is a logbook manager for Gnome.
It can store any kind of data (just text for the moment) in XML files, and makes it very easy to retrieve stored information.
It is integrated with Gnome (i.e uses Gnomes default browser). Future plans include files attachment (drag and drop), text formatting, note printing, and Epiphany/Mozilla integration (via a plugin).
<<lessIt can store any kind of data (just text for the moment) in XML files, and makes it very easy to retrieve stored information.
It is integrated with Gnome (i.e uses Gnomes default browser). Future plans include files attachment (drag and drop), text formatting, note printing, and Epiphany/Mozilla integration (via a plugin).
Download (0.12MB)
Added: 2005-11-21 License: GPL (GNU General Public License) Price:
1593 downloads
Aranha server monitor 0.1.0
Aranha server monitor is an application using rrdtool and XML-RPC to monitor servers with a XUL GUI. more>>
Aranha is an application that uses an XML-RPC layer to retrieve information from one or more servers. The type of information gathered is implemented via plugins, and can be displayed or archived in several different ways.
The data is gathered in Round Robin Databases (integrated with rrdtool) and can be accessed using a XUL interface available from the system. Plugins are very easy to write.
Configuration
To configure this module, either pass specific configuration values to
Makefile.PL like this:
perl Makefile.PL CONFIG_VAR="config val"
or
edit the %DEFAULTS variable on the toplevel Makefile.PL
Installation
To install this module type the following:
perl Makefile.PL
make
make test
make install
<<lessThe data is gathered in Round Robin Databases (integrated with rrdtool) and can be accessed using a XUL interface available from the system. Plugins are very easy to write.
Configuration
To configure this module, either pass specific configuration values to
Makefile.PL like this:
perl Makefile.PL CONFIG_VAR="config val"
or
edit the %DEFAULTS variable on the toplevel Makefile.PL
Installation
To install this module type the following:
perl Makefile.PL
make
make test
make install
Download (0.080MB)
Added: 2005-04-12 License: GPL (GNU General Public License) Price:
1656 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 to retrieve 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