reporter herald
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 36
XBlock-Reporter 1.2
XBlock-Reporter is a shell/PHP/MySQL frontend. more>>
Xblock reporter is a set of PHP and shell scripts to insert an exported report from an 8e6 Xstop R3000 appliance into a database, and then output that in a searchable web based format.
XBlock Reporter is a shell/PHP/MySQL front end to take the logs from an 8E6 Xstop appliance and store the data for searching/reporting.
<<lessXBlock Reporter is a shell/PHP/MySQL front end to take the logs from an 8E6 Xstop appliance and store the data for searching/reporting.
Download (4.6MB)
Added: 2006-07-10 License: GPL (GNU General Public License) Price:
1203 downloads
CPAN::Reporter 0.38
CPAN::Reporter is a Perl module to provides Test::Reporter support for CPAN.pm. more>>
CPAN::Reporter is a Perl module to provides Test::Reporter support for CPAN.pm.
SYNOPSIS
From the CPAN shell:
cpan> install CPAN::Reporter
cpan> reload cpan
cpan> o conf init test_report
CPAN::Reporter is an add-on for the CPAN.pm module that uses Test::Reporter to send the results of module tests to the CPAN Testers project. Support for CPAN::Reporter is available in CPAN.pm as of version 1.88.
The goal of the CPAN Testers project (http://testers.cpan.org/) is to test as many CPAN packages as possible on as many platforms as possible. This provides valuable feedback to module authors and potential users to identify bugs or platform compatibility issues and improves the overall quality and value of CPAN.
One way individuals can contribute is to send test results for each module that they test or install. Installing CPAN::Reporter gives the option of automatically generating and emailing test reports whenever tests are run via CPAN.pm.
GETTING STARTED
The first step in using CPAN::Reporter is to install it using whatever version of CPAN.pm is already installed. CPAN.pm will be upgraded as a dependency if necessary.
cpan> install CPAN::Reporter
If CPAN.pm was upgraded, it needs to be reloaded.
cpan> reload cpan
If upgrading from a very old version of CPAN.pm, users may be prompted to renew their configuration settings, including the test_report option to enable CPAN::Reporter.
If not prompted automatically, users should manually initialize CPAN::Reporter support. After enabling CPAN::Reporter, CPAN.pm will automatically continue with interactive configuration of CPAN::Reporter options. (Remember to commit the CPAN configuration changes.)
cpan> o conf init test_report
cpan> o conf commit
Once CPAN::Reporter is enabled and configured, test or install modules with CPAN.pm as usual.
For example, to force CPAN to repeat tests for CPAN::Reporter to see how it works:
cpan> force test CPAN::Reporter
<<lessSYNOPSIS
From the CPAN shell:
cpan> install CPAN::Reporter
cpan> reload cpan
cpan> o conf init test_report
CPAN::Reporter is an add-on for the CPAN.pm module that uses Test::Reporter to send the results of module tests to the CPAN Testers project. Support for CPAN::Reporter is available in CPAN.pm as of version 1.88.
The goal of the CPAN Testers project (http://testers.cpan.org/) is to test as many CPAN packages as possible on as many platforms as possible. This provides valuable feedback to module authors and potential users to identify bugs or platform compatibility issues and improves the overall quality and value of CPAN.
One way individuals can contribute is to send test results for each module that they test or install. Installing CPAN::Reporter gives the option of automatically generating and emailing test reports whenever tests are run via CPAN.pm.
GETTING STARTED
The first step in using CPAN::Reporter is to install it using whatever version of CPAN.pm is already installed. CPAN.pm will be upgraded as a dependency if necessary.
cpan> install CPAN::Reporter
If CPAN.pm was upgraded, it needs to be reloaded.
cpan> reload cpan
If upgrading from a very old version of CPAN.pm, users may be prompted to renew their configuration settings, including the test_report option to enable CPAN::Reporter.
If not prompted automatically, users should manually initialize CPAN::Reporter support. After enabling CPAN::Reporter, CPAN.pm will automatically continue with interactive configuration of CPAN::Reporter options. (Remember to commit the CPAN configuration changes.)
cpan> o conf init test_report
cpan> o conf commit
Once CPAN::Reporter is enabled and configured, test or install modules with CPAN.pm as usual.
For example, to force CPAN to repeat tests for CPAN::Reporter to see how it works:
cpan> force test CPAN::Reporter
Download (0.044MB)
Added: 2007-01-24 License: Perl Artistic License Price:
1003 downloads
Data::Report 0.06
Data::Report provides a framework for flexible reporting. more>>
Data::Report provides a framework for flexible reporting.
Data::Report is a flexible, plugin-driven reporting framework. It makes it easy to define reports that can be produced in text, HTML and CSV. Textual ornaments like extra empty lines, dashed lines, and cell lines can be added in a way similar to HTML style sheets.
The Data::Report framework consists of three parts:
The plugins
Plugins implement a specific type of report. Standard plugins provided are Data::Report::Plugin::Text for textual reports, Data::Report::Plugin::Html for HTML reports, and Data::Report::Plugin::Csv for CSV (comma-separated) files.
Users can, and are encouraged, to develop their own plugins to handle different styles and types of reports.
The base class
The base class Data::Report::Base implements the functionality common to all reporters, plus a number of utility functions the plugins can use.
The factory
The actual Data::Report module is a factory that creates a reporter for a given report type by selecting the appropriate plugin and returning an instance thereof.
<<lessData::Report is a flexible, plugin-driven reporting framework. It makes it easy to define reports that can be produced in text, HTML and CSV. Textual ornaments like extra empty lines, dashed lines, and cell lines can be added in a way similar to HTML style sheets.
The Data::Report framework consists of three parts:
The plugins
Plugins implement a specific type of report. Standard plugins provided are Data::Report::Plugin::Text for textual reports, Data::Report::Plugin::Html for HTML reports, and Data::Report::Plugin::Csv for CSV (comma-separated) files.
Users can, and are encouraged, to develop their own plugins to handle different styles and types of reports.
The base class
The base class Data::Report::Base implements the functionality common to all reporters, plus a number of utility functions the plugins can use.
The factory
The actual Data::Report module is a factory that creates a reporter for a given report type by selecting the appropriate plugin and returning an instance thereof.
Download (0.016MB)
Added: 2007-03-31 License: Perl Artistic License Price:
937 downloads
Devel::Tinderbox::Reporter 0.10
Devel::Tinderbox::Reporter is a Perl module with client to send reports to Tinderbox. more>>
Devel::Tinderbox::Reporter is a Perl module with client to send reports to Tinderbox.
SYNOPSIS
use Devel::Tinderbox::Reporter;
my $report = Devel::Tinderbox::Reporter->new;
$report->from(your@mail.address.com);
$report->to(tinderbox@their.address.com);
$report->project(the_project);
$report->boxname(your.machine.name);
$report->style(unix);
$report->start;
...go and test your project...
$report->log($build_log);
$report->end($status);
Tinderbox collects and summaries build and test reports from many developers on many machines. This is a simple client for testers to make reports to Tinderbox servers.
<<lessSYNOPSIS
use Devel::Tinderbox::Reporter;
my $report = Devel::Tinderbox::Reporter->new;
$report->from(your@mail.address.com);
$report->to(tinderbox@their.address.com);
$report->project(the_project);
$report->boxname(your.machine.name);
$report->style(unix);
$report->start;
...go and test your project...
$report->log($build_log);
$report->end($status);
Tinderbox collects and summaries build and test reports from many developers on many machines. This is a simple client for testers to make reports to Tinderbox servers.
Download (0.003MB)
Added: 2006-10-03 License: Perl Artistic License Price:
1116 downloads
Test::Reporter::Date::Format 1.27
Test::Reporter::Date::Format Perl module contains date formating subroutines. more>>
Test::Reporter::Date::Format Perl module contains date formating subroutines.
SYNOPSIS
use Test::Reporter::Date::Format;
@lt = localtime(time);
print time2str($template, time);
print strftime($template, @lt);
print time2str($template, time, $zone);
print strftime($template, @lt, $zone);
print ctime(time);
print asctime(@lt);
print ctime(time, $zone);
print asctime(@lt, $zone);
This module provides routines to format dates into ASCII strings. They correspond to the C library routines strftime and ctime.
time2str(TEMPLATE, TIME [, ZONE])
time2str converts TIME into an ASCII string using the conversion specification given in TEMPLATE. ZONE if given specifies the zone which the output is required to be in, ZONE defaults to your current zone.
strftime(TEMPLATE, TIME [, ZONE])
strftime is similar to time2str with the exception that the time is passed as an array, such as the array returned by localtime.
ctime(TIME [, ZONE])
ctime calls time2str with the given arguments using the conversion specification "%a %b %e %T %Yn"
asctime(TIME [, ZONE])
asctime calls time2str with the given arguments using the conversion specification "%a %b %e %T %Yn"
<<lessSYNOPSIS
use Test::Reporter::Date::Format;
@lt = localtime(time);
print time2str($template, time);
print strftime($template, @lt);
print time2str($template, time, $zone);
print strftime($template, @lt, $zone);
print ctime(time);
print asctime(@lt);
print ctime(time, $zone);
print asctime(@lt, $zone);
This module provides routines to format dates into ASCII strings. They correspond to the C library routines strftime and ctime.
time2str(TEMPLATE, TIME [, ZONE])
time2str converts TIME into an ASCII string using the conversion specification given in TEMPLATE. ZONE if given specifies the zone which the output is required to be in, ZONE defaults to your current zone.
strftime(TEMPLATE, TIME [, ZONE])
strftime is similar to time2str with the exception that the time is passed as an array, such as the array returned by localtime.
ctime(TIME [, ZONE])
ctime calls time2str with the given arguments using the conversion specification "%a %b %e %T %Yn"
asctime(TIME [, ZONE])
asctime calls time2str with the given arguments using the conversion specification "%a %b %e %T %Yn"
Download (0.023MB)
Added: 2007-07-24 License: Perl Artistic License Price:
822 downloads
Plone Error Reporting 1.1
Plone Error Reporting is a project which facilitates the submission of useful bug reports to Plone. more>>
Plone Error Reporting is a project which facilitates the submission of useful bug reports to Plone.
PloneErrorReporting replaces default_error_message and prefs_error_log_showEntry with pages that facilitate the submission of useful bug reports to Plone.
It is designed with the goal of improving the information provided by bug reporters.
To see PloneErrorReporting in action, first install the product, then create a python script called imabug in the ZMI that contains the single line
raise AttributeError, bad attribute
Now, while still authenticated, load the page http://mysite/imabug. You should see a step-by-step procedure for reporting bugs at the bottom of the error page as long as you are logged in as a Manager. Similarly, when you view bugs in the Plone error log, you will see the bug submitting procedure.
Enhancements:
- Moved the product to use its own translation domain. This fixes an issue were half-translated sentences showed up in the templates.
<<lessPloneErrorReporting replaces default_error_message and prefs_error_log_showEntry with pages that facilitate the submission of useful bug reports to Plone.
It is designed with the goal of improving the information provided by bug reporters.
To see PloneErrorReporting in action, first install the product, then create a python script called imabug in the ZMI that contains the single line
raise AttributeError, bad attribute
Now, while still authenticated, load the page http://mysite/imabug. You should see a step-by-step procedure for reporting bugs at the bottom of the error page as long as you are logged in as a Manager. Similarly, when you view bugs in the Plone error log, you will see the bug submitting procedure.
Enhancements:
- Moved the product to use its own translation domain. This fixes an issue were half-translated sentences showed up in the templates.
Download (0.010MB)
Added: 2007-02-20 License: GPL (GNU General Public License) Price:
976 downloads
WASTE 1.5 beta 3
WASTE provides a encrypted communication tool that allows for safe chat and transfer. more>>
WASTE provides a encrypted communication tool that allows for safe chat and transfer.
WASTE is a mesh-based workgroup tool that allows for encrypted, private communication between distant parties on the Internet, independent of local network organization. I
t is RSA secured, and has been heralded as the most secure P2P connection protocol currently in development. WASTE functions as a both a server and a client under *nix, Mac OS X, and Windows, as well as a server only mode under *nix and Windows.
WASTE is a software product and protocol that enables secure distributed communication for small (on the order of 10-50 nodes) trusted groups of users.
WASTE is designed to enable small companies and small teams within larger companies to easily communicate and collaborate in a secure and efficient fashion, independent of physical network topology.
Main features:
- WASTE is currently available for 32-bit Windows operating systems as a client and server, Mac OS X as a limited client and server, and as a limited functionality server for Linux, FreeBSD, Mac OS X, and Windows. Porting to other operating systems should be a breeze, as the source is provided (and the network code itself is pretty portable).
- WASTE is licensed under the GPL.
- WASTE currently provides the following services:
- Instant Messaging (with presence)
- Group Chat
- File browsing/searching
- File transfer (upload and download)
- Network architecture: WASTE uses a distributed architecture that allows for nodes to connect in a partial mesh type network. Nodes on the network can broadcast and route traffic. Nodes that are not publicly accessible or on slow links can choose not to route traffic. This network is built such that all services utilize the network, so firewall issues become moot. more information.
- Security: WASTE uses link-level encryption to secure links, and public keys for authentication. RSA is used for session key exchange and authentication, and the links are encrypted using Blowfish in PCBC mode. The automatic key distribution security model is very primitive at the moment, and may not lend itself well to some social situations. more information.
Enhancements:
- A preliminary port of WASTE to wxWidgets.
- Compiled for Linux, and based on WASTE v1.5 beta 3 for Windows.
- Now includes seperate source for the current wxWidgets port (also in development and will be unified in the next version).
<<lessWASTE is a mesh-based workgroup tool that allows for encrypted, private communication between distant parties on the Internet, independent of local network organization. I
t is RSA secured, and has been heralded as the most secure P2P connection protocol currently in development. WASTE functions as a both a server and a client under *nix, Mac OS X, and Windows, as well as a server only mode under *nix and Windows.
WASTE is a software product and protocol that enables secure distributed communication for small (on the order of 10-50 nodes) trusted groups of users.
WASTE is designed to enable small companies and small teams within larger companies to easily communicate and collaborate in a secure and efficient fashion, independent of physical network topology.
Main features:
- WASTE is currently available for 32-bit Windows operating systems as a client and server, Mac OS X as a limited client and server, and as a limited functionality server for Linux, FreeBSD, Mac OS X, and Windows. Porting to other operating systems should be a breeze, as the source is provided (and the network code itself is pretty portable).
- WASTE is licensed under the GPL.
- WASTE currently provides the following services:
- Instant Messaging (with presence)
- Group Chat
- File browsing/searching
- File transfer (upload and download)
- Network architecture: WASTE uses a distributed architecture that allows for nodes to connect in a partial mesh type network. Nodes on the network can broadcast and route traffic. Nodes that are not publicly accessible or on slow links can choose not to route traffic. This network is built such that all services utilize the network, so firewall issues become moot. more information.
- Security: WASTE uses link-level encryption to secure links, and public keys for authentication. RSA is used for session key exchange and authentication, and the links are encrypted using Blowfish in PCBC mode. The automatic key distribution security model is very primitive at the moment, and may not lend itself well to some social situations. more information.
Enhancements:
- A preliminary port of WASTE to wxWidgets.
- Compiled for Linux, and based on WASTE v1.5 beta 3 for Windows.
- Now includes seperate source for the current wxWidgets port (also in development and will be unified in the next version).
Download (3.4MB)
Added: 2007-02-28 License: GPL (GNU General Public License) Price:
970 downloads
Campcaster 1.2.0
Campcaster is a free and open source automation system for radio stations. more>>
Campcaster is a free and open source automation system for radio stations.
Campcaster is the first free and open radio management software that provides live studio broadcast capabilities as well as remote automation in one integrated system.
Radio is still the most powerful method of disseminating news and educational material to disadvantaged groups and in areas with high poverty, scant technological infrastructure, and/or instability. But while radio is extremely effective, the tools available to most community stations are very limited in function. The Campcaster project addresses this by giving stations a free and open source, end-to-end solution for managing a radio station by using standard personal computers.
Campcaster is the first free and open source radio management software to provide both live studio broadcast capabilities as well as remote automation in one integrated system.
Campcaster has been designed to be modular and scalable. It can be used by both large and small stations in a number of scenarios:
- Unmanned broadcast units can be controlled remotely through the Internet
- An unlimited number of Campcaster-powered PCs in a radio station can deliver live broadcasts as well as program automation by accessing a central audio storage system
- A stations library can be digitized and made centrally accessible from both local studios as well as the web
- Reporters and show producers can file their reports and shows directly to the central archive fron the field via any web browser
Campcaster is capable of combining local audio files and remote web streams, supporting the widely used MP3 format and its open equivalent Ogg Vorbis.
As with all Campware products, multilinguality is a central feature in Campcaster: virtually everything in the user interface can be translated into any language using Unicode. Multilinguality is implemented on all levels of the user interface as well as for the metadata for audio files in the storage system. Campcaster is currently available in 9 languages, and it is very easy to localize into additional languages.
Campcaster has been designed for a Linux environment, but it was built it on top of standard, cross-platform classes. Such an architecture allows for easy porting of Campcaster to different operating systems in the future.
<<lessCampcaster is the first free and open radio management software that provides live studio broadcast capabilities as well as remote automation in one integrated system.
Radio is still the most powerful method of disseminating news and educational material to disadvantaged groups and in areas with high poverty, scant technological infrastructure, and/or instability. But while radio is extremely effective, the tools available to most community stations are very limited in function. The Campcaster project addresses this by giving stations a free and open source, end-to-end solution for managing a radio station by using standard personal computers.
Campcaster is the first free and open source radio management software to provide both live studio broadcast capabilities as well as remote automation in one integrated system.
Campcaster has been designed to be modular and scalable. It can be used by both large and small stations in a number of scenarios:
- Unmanned broadcast units can be controlled remotely through the Internet
- An unlimited number of Campcaster-powered PCs in a radio station can deliver live broadcasts as well as program automation by accessing a central audio storage system
- A stations library can be digitized and made centrally accessible from both local studios as well as the web
- Reporters and show producers can file their reports and shows directly to the central archive fron the field via any web browser
Campcaster is capable of combining local audio files and remote web streams, supporting the widely used MP3 format and its open equivalent Ogg Vorbis.
As with all Campware products, multilinguality is a central feature in Campcaster: virtually everything in the user interface can be translated into any language using Unicode. Multilinguality is implemented on all levels of the user interface as well as for the metadata for audio files in the storage system. Campcaster is currently available in 9 languages, and it is very easy to localize into additional languages.
Campcaster has been designed for a Linux environment, but it was built it on top of standard, cross-platform classes. Such an architecture allows for easy porting of Campcaster to different operating systems in the future.
Download (MB)
Added: 2007-02-20 License: GPL (GNU General Public License) Price:
986 downloads
Hyperic SIGAR 1.4
Hyperic SIGAR is a System Information Gatherer and Reporter. more>>
Hyperic SIGAR (System Information Gatherer and Reporter) is a cross-platform, cross-language library and command-line tool for accessing operating system and hardware level information in Java, Perl and .NET.
Hyperic developed SIGAR to overcome the lack of portable access to low-level hardware and operating system metrics found in the Java platform. Its now a key component of the Hyperic HQ management platform since it provides HQ with visibility into things that are otherwise impossible to get to through the standard Java API.
Over the last four years of development, weve enhanced SIGAR to support multiple language bindings and operate on more than 10 OS/hardware combinations.
We think other applications would benefit from the type of information SIGAR provides. We also want to create and foster a community of users who will help us push this technology forward and incorporate it into both open source and commercial applications. So we decided to make this technology open source to give others the ability to enhance their applications.
Main features:
- System memory statistics - total, free, shared
- CPU statistics - load averages, user cpu, system cpu
- Process level statistics - process arguments, memory consumption, cpu consumption, credential info, state, environment, open file descriptors
- File system level statistics - local and remote mounted file systems (NTFS, ext, SMB, NFS, etc), capacity, utilization
- Network interface level statistics - all available network interfaces detected and monitored for bytes received/transmitted, packets received/transmitted, collisions, errors, dropped packets
Enhancements:
- Improved performance and efficiency.
- A bug with User Mode Linux VMs where SIGAR acquired incorrect CPU info has been fixed.
<<lessHyperic developed SIGAR to overcome the lack of portable access to low-level hardware and operating system metrics found in the Java platform. Its now a key component of the Hyperic HQ management platform since it provides HQ with visibility into things that are otherwise impossible to get to through the standard Java API.
Over the last four years of development, weve enhanced SIGAR to support multiple language bindings and operate on more than 10 OS/hardware combinations.
We think other applications would benefit from the type of information SIGAR provides. We also want to create and foster a community of users who will help us push this technology forward and incorporate it into both open source and commercial applications. So we decided to make this technology open source to give others the ability to enhance their applications.
Main features:
- System memory statistics - total, free, shared
- CPU statistics - load averages, user cpu, system cpu
- Process level statistics - process arguments, memory consumption, cpu consumption, credential info, state, environment, open file descriptors
- File system level statistics - local and remote mounted file systems (NTFS, ext, SMB, NFS, etc), capacity, utilization
- Network interface level statistics - all available network interfaces detected and monitored for bytes received/transmitted, packets received/transmitted, collisions, errors, dropped packets
Enhancements:
- Improved performance and efficiency.
- A bug with User Mode Linux VMs where SIGAR acquired incorrect CPU info has been fixed.
Download (1.7MB)
Added: 2007-04-20 License: GPL (GNU General Public License) Price:
920 downloads
Mail::Message::Head::Partial 2.065
Mail::Message::Head::Partial is a subset of header information of a message. more>>
Mail::Message::Head::Partial is a subset of header information of a message.
INHERITANCE
Mail::Message::Head::Partial
is a Mail::Message::Head::Complete
is a Mail::Message::Head
is a Mail::Reporter
SYNOPSIS
my $partial = $head->strip;
$partial->isa(Mail::Message::Head) # true
$partial->isDelayed # false
$partial->isPartial # true
$partial->removeFields( qr/^X-/ );
$partial->removeFieldsExcept( qw/To From/ );
$partial->removeResentGroups;
$partial->removeListGroup;
$partial->removeSpamGroups;
Header information consumes a considerable amount of memory. Most of this information is only useful during a short period of time in your program, or sometimes it is not used at all. You then can decide to remove most of the header information. However, be warned that it will be lost permanently: the header (and therefore the messsage) gets mutulated!
<<lessINHERITANCE
Mail::Message::Head::Partial
is a Mail::Message::Head::Complete
is a Mail::Message::Head
is a Mail::Reporter
SYNOPSIS
my $partial = $head->strip;
$partial->isa(Mail::Message::Head) # true
$partial->isDelayed # false
$partial->isPartial # true
$partial->removeFields( qr/^X-/ );
$partial->removeFieldsExcept( qw/To From/ );
$partial->removeResentGroups;
$partial->removeListGroup;
$partial->removeSpamGroups;
Header information consumes a considerable amount of memory. Most of this information is only useful during a short period of time in your program, or sometimes it is not used at all. You then can decide to remove most of the header information. However, be warned that it will be lost permanently: the header (and therefore the messsage) gets mutulated!
Download (0.58MB)
Added: 2006-06-28 License: Perl Artistic License Price:
1213 downloads
Mail::Message::Head::FieldGroup 2.069
Mail::Message::Head::FieldGroup is a Perl module with a sub set of fields in a header. more>>
Mail::Message::Head::FieldGroup is a Perl module with a sub set of fields in a header.
INHERITANCE
Mail::Message::Head::FieldGroup
is a Mail::Reporter
Mail::Message::Head::FieldGroup is extended by
Mail::Message::Head::ListGroup
Mail::Message::Head::ResentGroup
Mail::Message::Head::SpamGroup
Some fields have a combined meaning: a set of fields which represent one intermediate step during the transport of the message (a resent group, implemented in Mail::Message::Head::ResentGroup), fields added by mailing list software (implemented in Mail::Message::Head::ListGroup), or fields added by Spam detection related software (implemented by Mail::Message::Head::SpamGroup). Each set of fields can be extracted or added as group with objects which are based on the implementation in this class.
<<lessINHERITANCE
Mail::Message::Head::FieldGroup
is a Mail::Reporter
Mail::Message::Head::FieldGroup is extended by
Mail::Message::Head::ListGroup
Mail::Message::Head::ResentGroup
Mail::Message::Head::SpamGroup
Some fields have a combined meaning: a set of fields which represent one intermediate step during the transport of the message (a resent group, implemented in Mail::Message::Head::ResentGroup), fields added by mailing list software (implemented in Mail::Message::Head::ListGroup), or fields added by Spam detection related software (implemented by Mail::Message::Head::SpamGroup). Each set of fields can be extracted or added as group with objects which are based on the implementation in this class.
Download (0.57MB)
Added: 2007-01-11 License: Perl Artistic License Price:
1016 downloads
NXscript 0.2.605
NXscript is a collection of Python scripts for XChat, the popular IRC client. more>>
NXscript is a collection of Python scripts for XChat, the popular IRC client. NXscript suite offer some features not found in XChat by default.
These features are meant to make communicating with your friends on IRC easier and more comfortable. In a way, this script is similiar to what NNscript is for mIRC.
Its features include an away notifier, ban protection, a BMPx announcer, a clone scanner, an IRC status reporter, a name finder, a Rhythmbox announcer, a slap script, and an XQF announcer.
<<lessThese features are meant to make communicating with your friends on IRC easier and more comfortable. In a way, this script is similiar to what NNscript is for mIRC.
Its features include an away notifier, ban protection, a BMPx announcer, a clone scanner, an IRC status reporter, a name finder, a Rhythmbox announcer, a slap script, and an XQF announcer.
Download (0.015MB)
Added: 2006-06-07 License: GPL (GNU General Public License) Price:
1241 downloads
WebService::Mappoint 0.30
WebService::Mappoint is a client SOAP implementation for Mappoint, Microsofts geographic maps web service, based on SOAP::Lite. more>>
WebService::Mappoint is a client SOAP implementation for Mappoint, Microsofts geographic maps web service, based on SOAP::Lite.
SYNOPSIS
Map fetch example for use with Mappoint 3.0 service.
use WebService::Mappoint;
use MIME::Base64;
my $render = new WebService::Mappoint::Render();
my $map;
$map = $render->GetMap(
specification => [
DataSourceName => MapPoint.EU,
Options => [
Format => [
Height => 320,
Width => 320
],
],
Views => [
MapView:ViewByScale =>
[
CenterPoint =>
[ Latitude => 37.7632,
Longitude => -122.439702 ],
MapScale => 100000000
],
],
Pushpins => [
Pushpin =>
[
IconName => 176,
IconDataSource => MapPoint.Icons,
PinID => san_francisco,
Label => San Francisco,
ReturnsHotArea => false,
LatLong => [ Latitude => 37.7632,
Longitude => -122.439702 ],
]
]
] );
my $image = decode_base64($map->result->{MapImage}{MimeData}{Bits});
open( GIF, ">san_francisco.gif" );
print( GIF $image );
<<lessSYNOPSIS
Map fetch example for use with Mappoint 3.0 service.
use WebService::Mappoint;
use MIME::Base64;
my $render = new WebService::Mappoint::Render();
my $map;
$map = $render->GetMap(
specification => [
DataSourceName => MapPoint.EU,
Options => [
Format => [
Height => 320,
Width => 320
],
],
Views => [
MapView:ViewByScale =>
[
CenterPoint =>
[ Latitude => 37.7632,
Longitude => -122.439702 ],
MapScale => 100000000
],
],
Pushpins => [
Pushpin =>
[
IconName => 176,
IconDataSource => MapPoint.Icons,
PinID => san_francisco,
Label => San Francisco,
ReturnsHotArea => false,
LatLong => [ Latitude => 37.7632,
Longitude => -122.439702 ],
]
]
] );
my $image = decode_base64($map->result->{MapImage}{MimeData}{Bits});
open( GIF, ">san_francisco.gif" );
print( GIF $image );
Download (0.008MB)
Added: 2007-04-02 License: Perl Artistic License Price:
935 downloads
PROPS 0.7
PROPS is an open, extensible Internet publishing system designed specifically for periodicals. more>>
PROPS is an open, extensible Internet publishing system designed specifically for periodicals such as newspapers and magazines who want to publish online, either exclusively or as an extension of their print publication.
PROPS is written entirely in PHP4 using a MySQL database backend, and is free software released under the GNU General Public License (GPL).
Main features:
- Easy to install
- Well-documented, robust API allowing third party developers to create plug-ins to extend base functionality
- Delivery of content to multiple target platforms (HTML, XML/XSL, WAP/WML, text, etc)
- Readers may format a story for printing, or email to a friend
- Pages are presented as static URLs so that spider type search engines may crawl and index them
- Strict separation of design and content - designers control site look and feel by developing templates using standard site editing tools such as Dreamweaver, GoLive, BBEdit, etc., while editors manage site content via a web interface
- Permissions-based multiuser site management screens allow a PROPS site to be maintained by a distributed team of reporters and editors
- Will support the XML-based News Industry Text Format
- Will speak various XML dialects for both import and export, allowing syndication in both directions, and enabling PROPS sites to participate in distributed news networks
- Is targeted at mid-sized publishers serving fewer than one million page views daily, however will be architected to scale through deployment of multiple front-end web servers, separate image servers, etc.
<<lessPROPS is written entirely in PHP4 using a MySQL database backend, and is free software released under the GNU General Public License (GPL).
Main features:
- Easy to install
- Well-documented, robust API allowing third party developers to create plug-ins to extend base functionality
- Delivery of content to multiple target platforms (HTML, XML/XSL, WAP/WML, text, etc)
- Readers may format a story for printing, or email to a friend
- Pages are presented as static URLs so that spider type search engines may crawl and index them
- Strict separation of design and content - designers control site look and feel by developing templates using standard site editing tools such as Dreamweaver, GoLive, BBEdit, etc., while editors manage site content via a web interface
- Permissions-based multiuser site management screens allow a PROPS site to be maintained by a distributed team of reporters and editors
- Will support the XML-based News Industry Text Format
- Will speak various XML dialects for both import and export, allowing syndication in both directions, and enabling PROPS sites to participate in distributed news networks
- Is targeted at mid-sized publishers serving fewer than one million page views daily, however will be architected to scale through deployment of multiple front-end web servers, separate image servers, etc.
Download (0.70MB)
Added: 2005-10-28 License: GPL (GNU General Public License) Price:
1459 downloads
Mail::Message::Convert::MailInternet 2.066
Mail::Message::Convert::MailInternet is a Perl module that can translate Mail::Message to Mail::Internet vv. more>>
Mail::Message::Convert::MailInternet is a Perl module that can translate Mail::Message to Mail::Internet vv.
INHERITANCE
Mail::Message::Convert::MailInternet
is a Mail::Message::Convert
is a Mail::Reporter
SYNOPSIS
use Mail::Message::Convert::MailInternet;
my $convert = Mail::Message::Convert::MailInternet->new;
my Mail::Message $msg = Mail::Message->new;
my Mail::Internet $intern = $convert->export($msg);
my Mail::Internet $intern = Mail::Internet->new;
my Mail::Message $msg = $convert->from($intern);
use Mail::Box::Manager;
my $mgr = Mail::Box::Manager->new;
my $folder = $mgr->open(folder => Outbox);
$folder->addMessage($intern);
The Mail::Internet class of message is very popular for all kinds of message applications written in Perl. However, the format was developed when e-mail messages where still small and attachments where rare; Mail::Message is much more flexible in this respect.
<<lessINHERITANCE
Mail::Message::Convert::MailInternet
is a Mail::Message::Convert
is a Mail::Reporter
SYNOPSIS
use Mail::Message::Convert::MailInternet;
my $convert = Mail::Message::Convert::MailInternet->new;
my Mail::Message $msg = Mail::Message->new;
my Mail::Internet $intern = $convert->export($msg);
my Mail::Internet $intern = Mail::Internet->new;
my Mail::Message $msg = $convert->from($intern);
use Mail::Box::Manager;
my $mgr = Mail::Box::Manager->new;
my $folder = $mgr->open(folder => Outbox);
$folder->addMessage($intern);
The Mail::Internet class of message is very popular for all kinds of message applications written in Perl. However, the format was developed when e-mail messages where still small and attachments where rare; Mail::Message is much more flexible in this respect.
Download (0.57MB)
Added: 2006-08-08 License: GPL (GNU General Public License) Price:
1172 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 reporter herald 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