to handle
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1662
HTTP::Handle 0.2
HTTP::Handle is a HTTP Class designed for streaming. more>>
HTTP::Handle is a HTTP Class designed for streaming.
SYNOPSIS
use HTTP::Handle;
my $http = HTTP::Handle->new( uri => "http://www.google.com/" );
$http->connect();
my $fd = $http->fd();
while () {
print "--> $_";
}
The HTTP::Handle module allows you to make HTTP requests and handle the data yourself. The general ideas is that you use this module to make a HTTP request and handle non-header data yourself. I needed such a feature for my mp3 player to listen to icecast streams.
HTTP::Handle->new()
Create a new HTTP::Handle object thingy.
Arguments possible:
url => "http://www.google.com/"
Sets the initial URL to connect to.
follow_redirects => [ 0 | 1 ]
Automatically follow HTTP redirects. This defaults to true (1). Set to 0 to disable this.
http_request => HASHREF
Any thing put in here will be sent as "key: value" in the http request string.
$http->connect()
Connect, send the http request, and process the response headers.
This function returns -1 on failure, undef otherwise. The reason for failure will be printed to STDERR.
$http->fd()
Get the file descriptor (socket) were using to connect.
$http->url( [ url_string ])
Get or set the URL. If a url string is passed, you will change the url that is requested. If no parameter is passed, a URI object will be returned containing the
$http->follow_redirects( [ 0 | 1 ] )
If a value is passed then you will set whether or not we will automatically follow HTTP 302 Redirects. If no value is passed, then we will return whatever the current option is.
Defaults to 1 (will follow redirects).
$http->http_request_string()
Returns a string containing the HTTP request and headers, this is used when
$http->connect() is called.
<<lessSYNOPSIS
use HTTP::Handle;
my $http = HTTP::Handle->new( uri => "http://www.google.com/" );
$http->connect();
my $fd = $http->fd();
while () {
print "--> $_";
}
The HTTP::Handle module allows you to make HTTP requests and handle the data yourself. The general ideas is that you use this module to make a HTTP request and handle non-header data yourself. I needed such a feature for my mp3 player to listen to icecast streams.
HTTP::Handle->new()
Create a new HTTP::Handle object thingy.
Arguments possible:
url => "http://www.google.com/"
Sets the initial URL to connect to.
follow_redirects => [ 0 | 1 ]
Automatically follow HTTP redirects. This defaults to true (1). Set to 0 to disable this.
http_request => HASHREF
Any thing put in here will be sent as "key: value" in the http request string.
$http->connect()
Connect, send the http request, and process the response headers.
This function returns -1 on failure, undef otherwise. The reason for failure will be printed to STDERR.
$http->fd()
Get the file descriptor (socket) were using to connect.
$http->url( [ url_string ])
Get or set the URL. If a url string is passed, you will change the url that is requested. If no parameter is passed, a URI object will be returned containing the
$http->follow_redirects( [ 0 | 1 ] )
If a value is passed then you will set whether or not we will automatically follow HTTP 302 Redirects. If no value is passed, then we will return whatever the current option is.
Defaults to 1 (will follow redirects).
$http->http_request_string()
Returns a string containing the HTTP request and headers, this is used when
$http->connect() is called.
Download (0.005MB)
Added: 2006-11-16 License: Perl Artistic License Price:
1072 downloads
Autodia::Handler::Cpp 2.03
Autodia::Handler::Cpp Perl module is an AutoDia handler for C++. more>>
Autodia::Handler::Cpp Perl module is an AutoDia handler for C++.
This module parses files into a Diagram Object, which all handlers use. The role of the handler is to parse through the file extracting information such as Class names, attributes, methods and properties.
HandlerPerl parses files using simple perl rules. A possible alternative would be to write HandlerCPerl to handle C style perl or HandleHairyPerl to handle hairy perl.
HandlerPerl is registered in the Autodia.pm module, which contains a hash of language names and the name of their respective language - in this case:
%language_handlers = { .. , cpp => "Autodia::Handler::Cpp", .. };
CONSTRUCTION METHOD
use Autodia::Handler::Cpp;
my $handler = Autodia::Handler::Cpp->New(%Config);
This creates a new handler using the Configuration hash to provide rules selected at the command line.
ACCESS METHODS
This parses the named file and returns 1 if successful or 0 if the file could not be opened.
$handler->output_xml(); # interpolates values into an xml or html template
$handler->output_graphviz(); # generates a gif file via graphviz
<<lessThis module parses files into a Diagram Object, which all handlers use. The role of the handler is to parse through the file extracting information such as Class names, attributes, methods and properties.
HandlerPerl parses files using simple perl rules. A possible alternative would be to write HandlerCPerl to handle C style perl or HandleHairyPerl to handle hairy perl.
HandlerPerl is registered in the Autodia.pm module, which contains a hash of language names and the name of their respective language - in this case:
%language_handlers = { .. , cpp => "Autodia::Handler::Cpp", .. };
CONSTRUCTION METHOD
use Autodia::Handler::Cpp;
my $handler = Autodia::Handler::Cpp->New(%Config);
This creates a new handler using the Configuration hash to provide rules selected at the command line.
ACCESS METHODS
This parses the named file and returns 1 if successful or 0 if the file could not be opened.
$handler->output_xml(); # interpolates values into an xml or html template
$handler->output_graphviz(); # generates a gif file via graphviz
Download (0.060MB)
Added: 2007-05-29 License: Perl Artistic License Price:
880 downloads
Email::Handle 0.01
Email::Handle is a Objective Email Handler. more>>
Email::Handle is a Objective Email Handler.
SYNOPSIS
use Email::Handle;
my $email = Email::Handle->new(root@example.com);
print $email->is_valid ? yes : no;
print $email->obfuscate;
print $email->anonymize;
print $email;
$email->send(From => foo@example.com);
This module is also convenient for using on the DB application with Template and Class::DBI / DBIx::Class.
# setup the table that has column of email with this module
my $loader = Class::DBI::Loader->new(
...
namespace => MyApp
);
$loader->find_class(user)->has_a(email => Email::Handle);
# then output records with TT2
my $tmpl = Template->new;
$tmpl->process(
sample.tt,
{ users => $loader->find_class(user)->retrieve_all }
);
# You can write the template with some methods of this module like this
[% WHILE (user IN users) %]
[% user.email.obfuscate IF user.email.is_valid %]
[% END %]
<<lessSYNOPSIS
use Email::Handle;
my $email = Email::Handle->new(root@example.com);
print $email->is_valid ? yes : no;
print $email->obfuscate;
print $email->anonymize;
print $email;
$email->send(From => foo@example.com);
This module is also convenient for using on the DB application with Template and Class::DBI / DBIx::Class.
# setup the table that has column of email with this module
my $loader = Class::DBI::Loader->new(
...
namespace => MyApp
);
$loader->find_class(user)->has_a(email => Email::Handle);
# then output records with TT2
my $tmpl = Template->new;
$tmpl->process(
sample.tt,
{ users => $loader->find_class(user)->retrieve_all }
);
# You can write the template with some methods of this module like this
[% WHILE (user IN users) %]
[% user.email.obfuscate IF user.email.is_valid %]
[% END %]
Download (0.005MB)
Added: 2007-08-03 License: Perl Artistic License Price:
813 downloads
Sensibe IRC Handler 0.1
Sensible IRC Handler aims to provide an interface for Gaim that handles irc:// links in Firefox Browser. more>>
Sensible IRC Handler aims to provide an interface for Gaim that handles irc:// links in Firefox Browser. This will provide the same xchat-gnome functionality to handle irc:// links, but for Gaim.
Recent changes in inclusion of packages for future Ubuntu release will not include xchat-gnome because of recursive duplication with Gaims IRC capabilities, so IRC will be entirely handled in Gaim.
This will use Gaim as an IRC client, but will not alter the main Gaim configurations, this would create a temporary configurations for the current sessions. A functionality to add the IRC channels defined in InternetRelayChat in Gaim buddy list, will be easy, but will not add them by default. Adding them for a user requires further discussions.
Enhancements:
- GTK+ version 2.2.x
<<lessRecent changes in inclusion of packages for future Ubuntu release will not include xchat-gnome because of recursive duplication with Gaims IRC capabilities, so IRC will be entirely handled in Gaim.
This will use Gaim as an IRC client, but will not alter the main Gaim configurations, this would create a temporary configurations for the current sessions. A functionality to add the IRC channels defined in InternetRelayChat in Gaim buddy list, will be easy, but will not add them by default. Adding them for a user requires further discussions.
Enhancements:
- GTK+ version 2.2.x
Download (0.20MB)
Added: 2006-06-01 License: GPL (GNU General Public License) Price:
1242 downloads
Agenda Displayer 1.4
Agenda is a Web-based application that let you manage your appointments. more>>
Agenda is a Web-based application that let you manage your appointments.
It can display information by day, week, month, and year. Agenda Displayer supports official holidays.
Enhancements:
- This release added a world clock, an astrological calendar, a todo handler, a login system, a countdown function, support for generating iCal files with a .ics extension, a new way to handle your annual days off, sunrise and sunset times, and moon phase classes.
<<lessIt can display information by day, week, month, and year. Agenda Displayer supports official holidays.
Enhancements:
- This release added a world clock, an astrological calendar, a todo handler, a login system, a countdown function, support for generating iCal files with a .ics extension, a new way to handle your annual days off, sunrise and sunset times, and moon phase classes.
Download (0.18MB)
Added: 2006-05-09 License: GPL (GNU General Public License) Price:
1270 downloads
mod_haydn 0.0.6
mod_haydn is an apache module which allows you to embed MSIL bytecodes. more>>
mod_haydn is an apache module which allows you to embed MSIL bytecodes (the foundation of Microsofts CLR/.NET) into Apache. mod_haydn allows you to access all of Apaches API from any CLR/.NET enabled language.
Currently it only has partial support for the Apache 1.3 api, allowing you to handle requests (and get associated request information), set apache translation, authentication, and authorization handlers. Support is planned for Apache 2.0, and more specialized Apache API features.
Known Bugs:
Currently, when using Mono with the Boehm GC, you cannot handle multiple requests with the same process (which is needless to say, quite essential). This works fine without the Boehm GC engine. I assume that this is a Mono problem, and not an apache module problem (as others have also encountered this problem) -- however this is not verified yet.
<<lessCurrently it only has partial support for the Apache 1.3 api, allowing you to handle requests (and get associated request information), set apache translation, authentication, and authorization handlers. Support is planned for Apache 2.0, and more specialized Apache API features.
Known Bugs:
Currently, when using Mono with the Boehm GC, you cannot handle multiple requests with the same process (which is needless to say, quite essential). This works fine without the Boehm GC engine. I assume that this is a Mono problem, and not an apache module problem (as others have also encountered this problem) -- however this is not verified yet.
Download (0.010MB)
Added: 2006-05-15 License: BSD License Price:
1257 downloads
PandaLex PDF Parser 0.5
PandaLex PDF Parser is a flex and bison parser for PDF documents. more>>
PandaLex is the PDF parsing code from Panda, which has been split into its own project to increase its utility.
It is a flex and bison description of the PDF specification, which allows programmers to define callbacks to handle different document elements.
<<lessIt is a flex and bison description of the PDF specification, which allows programmers to define callbacks to handle different document elements.
Download (0.38MB)
Added: 2005-05-04 License: GPL (GNU General Public License) Price:
1639 downloads
PBButtonsd 0.8.1a
PBButtons is a daemon to handle special hardware on the Apple iBook/PowerBook/TiBook. more>>
PBButtons is a daemon to handle special hardware on the Apple iBook/PowerBook/TiBook. It controls the display brightness, the sound volume, mutes the sound, changes the trackpad mode, puts the machine to sleep, or ejects the CDROM on command.
PBButtonsd project also provides basic power management features. An included client gives the user visual feedback about all actions with nice little popup windows.
Enhancements:
- remove hdparm option -p because the option does not do what it is supposed to and anyway the kernel does a good controlling the IDE speed settings.
<<lessPBButtonsd project also provides basic power management features. An included client gives the user visual feedback about all actions with nice little popup windows.
Enhancements:
- remove hdparm option -p because the option does not do what it is supposed to and anyway the kernel does a good controlling the IDE speed settings.
Download (0.39MB)
Added: 2007-07-29 License: GPL (GNU General Public License) Price:
817 downloads
Xchangeboard 1.75
Xchangeboard is forum software based on PHP and MySQL. more>>
Xchangeboard is forum software based on PHP and MySQL. The project offers an easy way of administration to handle design and/or user-specific tasks. The look and feel resembles other well known boards.
Enhancements:
- An issue has been fixed that allowed a user to conduct SQL injection attacks when the option magic_quotes_gpc was turned of.
- Some new features and improvements were implemented, and some other small bugs have been fixed.
<<lessEnhancements:
- An issue has been fixed that allowed a user to conduct SQL injection attacks when the option magic_quotes_gpc was turned of.
- Some new features and improvements were implemented, and some other small bugs have been fixed.
Download (0.52MB)
Added: 2007-03-26 License: GPL (GNU General Public License) Price:
942 downloads
Grester 0.3 Alpha
Grester project is a Maven2 plugin for Jester, the JUnit tester tool. more>>
Grester project is a Maven2 plugin for Jester, the JUnit tester tool. It enables Jester to be executed at any valid Maven lifecycle phase in a Maven Project.
It saves developers from constructing cumbersome Java classpath entries on the commandline every time they need Jester to run against JUnit Tests in the project.
It can also help to dispense with a suite of scripts that may have been written to handle complex Java classpath executions for Maven projects.
<<lessIt saves developers from constructing cumbersome Java classpath entries on the commandline every time they need Jester to run against JUnit Tests in the project.
It can also help to dispense with a suite of scripts that may have been written to handle complex Java classpath executions for Maven projects.
Download (0.11MB)
Added: 2007-06-23 License: GPL (GNU General Public License) Price:
853 downloads
MadMail 0.2
MadMail is a simple Webmail client which can handle POP3, SMTP, and IMAP servers. more>>
MadMail is a simple Webmail client which can handle POP3, SMTP, and IMAP servers. I
Main features:
- multi-language support
- no Database required
<<lessMain features:
- multi-language support
- no Database required
Download (0.055MB)
Added: 2006-06-12 License: GPL (GNU General Public License) Price:
1229 downloads
POE::Component::Audio::Mad::Handle 0.3
POE::Component::Audio::Mad::Handle is a POE Component to facilitate IPC with the POE::Wheel::Audio::Mad mpeg decoder. more>>
POE::Component::Audio::Mad::Handle is a POE Component to facilitate IPC with the POE::Wheel::Audio::Mad mpeg decoder.
SYNOPSIS
use POE;
use POE::Component::Audio::Mad::Handle;
## create an IPC bridge on stdin/stdout
create POE::Component::Audio::Mad::Handle();
## create a custom IPC bridge..
create POE::Component::Audio::Mad::Handle (
Driver => POE::Driver::SysRW->new(),
Filter => POE::Filter::Audio::Mad->new(),
Handle => $two_way_handle,
# -or-
InputHandle => $one_way_handle_in,
OutputHandle => $one_way_handle_out
);
POE::Component::Audio::Mad::Handle is a POE Component to implement basic inter-process communication with the POE::Wheel::Audio::Mad mpeg decoder and a bi-directional or two unidirectional filehandles.
This Component operates by creating an instance of POE::Wheel::Audio::Mad and an instance of POE::Wheel::ReadWrite and then facilitates communication between the two. All options passed to the create() constructor are filled in with defaults and then directly passed to POE::Wheel::ReadWrites constructor; see its documentation for a description of available options.
You may use any options you wish. Decoder status messages will be sent through the filter and then delivered to the appropriate filehandle. Commands received through the appropriate filehandle will be sent through the filter and used to affect POE::Wheel::Audio::Mad operations.
<<lessSYNOPSIS
use POE;
use POE::Component::Audio::Mad::Handle;
## create an IPC bridge on stdin/stdout
create POE::Component::Audio::Mad::Handle();
## create a custom IPC bridge..
create POE::Component::Audio::Mad::Handle (
Driver => POE::Driver::SysRW->new(),
Filter => POE::Filter::Audio::Mad->new(),
Handle => $two_way_handle,
# -or-
InputHandle => $one_way_handle_in,
OutputHandle => $one_way_handle_out
);
POE::Component::Audio::Mad::Handle is a POE Component to implement basic inter-process communication with the POE::Wheel::Audio::Mad mpeg decoder and a bi-directional or two unidirectional filehandles.
This Component operates by creating an instance of POE::Wheel::Audio::Mad and an instance of POE::Wheel::ReadWrite and then facilitates communication between the two. All options passed to the create() constructor are filled in with defaults and then directly passed to POE::Wheel::ReadWrites constructor; see its documentation for a description of available options.
You may use any options you wish. Decoder status messages will be sent through the filter and then delivered to the appropriate filehandle. Commands received through the appropriate filehandle will be sent through the filter and used to affect POE::Wheel::Audio::Mad operations.
Download (0.022MB)
Added: 2006-11-16 License: Perl Artistic License Price:
1072 downloads
pAgenda 3.2
pAgenda is a Cross-platform calendar/schedule. more>>
pAgenda is a Cross-platform calendar/schedule.
Uses sqlite DB to handle multiple schedules with ease in single, small, portable files -- easy to backup or transfer.
Simple, functional and the strongest feature is how well it prints out a daily schedule with a single-click.
Source code available for Linux. Windows requires no installation, just unzip and run.
<<lessUses sqlite DB to handle multiple schedules with ease in single, small, portable files -- easy to backup or transfer.
Simple, functional and the strongest feature is how well it prints out a daily schedule with a single-click.
Source code available for Linux. Windows requires no installation, just unzip and run.
Download (0.060MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
1042 downloads
netToe 1.1.0
netToe project is a Tic Tac Toe game for the Linux console, playable over the network. more>>
netToe project is a Tic Tac Toe game for the Linux console, playable over the network.
netToe is a Tic Tac Toe-like game for the Linux console written in C using UNIX sockets. It is playable by 2 players over the network, against computer AI, or against another player on the same machine.
Enhancements:
- Completed the code section regarding colors.
- netToe now uses colors !
- Modified the parse_cmd_args(...) function to accept more than one argument at time, option --no-colors added. (ref: misc.c)
- Added modules terminal.c and terminal.h Those file include the new code to handle colors in nettoe.
- Added modules matrices.c and matrices.h Those files include the new code to handle the nettoe board matrix.
- Removed netmisc.c and netmisc.h modules and included the code in the network.c and network.h modules.
<<lessnetToe is a Tic Tac Toe-like game for the Linux console written in C using UNIX sockets. It is playable by 2 players over the network, against computer AI, or against another player on the same machine.
Enhancements:
- Completed the code section regarding colors.
- netToe now uses colors !
- Modified the parse_cmd_args(...) function to accept more than one argument at time, option --no-colors added. (ref: misc.c)
- Added modules terminal.c and terminal.h Those file include the new code to handle colors in nettoe.
- Added modules matrices.c and matrices.h Those files include the new code to handle the nettoe board matrix.
- Removed netmisc.c and netmisc.h modules and included the code in the network.c and network.h modules.
Download (MB)
Added: 2006-11-27 License: GPL (GNU General Public License) Price:
1064 downloads
Jtalk 20060521
Jtalk is a Jabber client that provides an interface somewhat similar to the historic Unix Talk system. more>>
Jtalk is a Jabber client that provides an interface somewhat similar to the historic Unix Talk system. Jtalk is distributed under the terms of the GNU General Public Licence.
Note: jtalk is not a full-featured Jabber client.
Jtalk project focuses only on the presence and messages. To handle your rooster, undate your information, create accounts and so on, you need another, more complete, Jabber client.
Main features:
- Jabber and Jabber-over-TLS (= SSL) protocol support provided by the Loudmouth library.
- One-to-one and one-to-several chat in a separate terminal.
- Readline-based client.
- Support for UTF-8 terminals.
<<lessNote: jtalk is not a full-featured Jabber client.
Jtalk project focuses only on the presence and messages. To handle your rooster, undate your information, create accounts and so on, you need another, more complete, Jabber client.
Main features:
- Jabber and Jabber-over-TLS (= SSL) protocol support provided by the Loudmouth library.
- One-to-one and one-to-several chat in a separate terminal.
- Readline-based client.
- Support for UTF-8 terminals.
Download (0.016MB)
Added: 2006-05-25 License: GPL (GNU General Public License) Price:
1248 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 handle 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