Main > Free Download Search >

Free summarizes software for linux

summarizes

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 50
Mail::Summary 0.02

Mail::Summary 0.02


Mail::Summary is a Perl module that can scan read your mail! more>>
Mail::Summary is a Perl module that can scan read your mail!

SYNOPSIS

my $ms = Mail::Summary->new({ maildir => /home/mwk/Maildir });

my @mail_summaries = $ms->summaries;

Too busy to read your mail? Subscribe to too many mailing lists? Take two folders into the shower? Well, for the busy on the go geek of today, here is the answer! Get all your messages summarised, to save you having to read them, or to read them by which summary looks better!

new

my $ms = Mail::Summary->new({ maildir => /home/mwk/Maildir });

This will make a new Mail::Summary object.

maildir

my $maildir = $ms->maildir;

This is the mail directory as defined by the user.

summaries

my @mail_summaries = $ms->summaries;

This will return a list, with every entry in the list being a summary of an individual message.

<<less
Download (0.003MB)
Added: 2006-12-04 License: Perl Artistic License Price:
1054 downloads
SugarCRM 4.5.1

SugarCRM 4.5.1


SugarCRM is the premier commercial open source customer relationship management application provider. more>>
SugarCRM project is the premier commercial open source customer relationship management application provider, breaking the rules set by conventional CRM solutions.
The limitations of traditional CRM software can be summarized by the lack of flexibility, high costs, and closed-source structure which is embedded into the traditional product offerings. This has led to a failure rate of over 70% with traditional CRM implementations.
SugarCRM provides a powerful solution built on a pure open source stack, offering functionality constructed by the best open source CRM experts from around the world. The Sugar Suite is SugarCRMs vanguard CRM solution that understands todays business demands.
SugarCRM provides a complete set of solutions to deliver the best CRM solution based on your needs. These include:
Main features:
- Low acquisition cost
- Low total cost of ownership (TCO)
- Fast and easy user adoption
- Flexible solution to blend with current business processes
- Open standards for low cost integration with legacy systems
<<less
Download (MB)
Added: 2007-02-25 License: MPL (Mozilla Public License) Price:
619 downloads
URI 1.35

URI 1.35


URI is Uniform Resource Identifiers (absolute and relative). more>>
URI is Uniform Resource Identifiers (absolute and relative). This module implements the URI class. Objects of this class represent "Uniform Resource Identifier references" as specified in RFC 2396 (and updated by RFC 2732).

A Uniform Resource Identifier is a compact string of characters that identifies an abstract or physical resource. A Uniform Resource Identifier can be further classified as either a Uniform Resource Locator (URL) or a Uniform Resource Name (URN). The distinction between URL and URN does not matter to the URI class interface. A "URI-reference" is a URI that may have additional information attached in the form of a fragment identifier.

An absolute URI reference consists of three parts: a scheme, a scheme-specific part and a fragment identifier. A subset of URI references share a common syntax for hierarchical namespaces. For these, the scheme-specific part is further broken down into authority, path and query components. These URIs can also take the form of relative URI references, where the scheme (and usually also the authority) component is missing, but implied by the context of the URI reference. The three forms of URI reference syntax are summarized as follows:

< scheme >:< scheme-specific-part >#< fragment >
< scheme >://< authority >< path >?< query >#< fragment >
< path >?< query >#< fragment >

The components into which a URI reference can be divided depend on the scheme. The URI class provides methods to get and set the individual components. The methods available for a specific URI object depend on the scheme.
<<less
Download (0.094MB)
Added: 2006-05-05 License: Perl Artistic License Price:
1269 downloads
Karrigell 2.3.5

Karrigell 2.3.5


Karrigell is a simple but full-featured web framework, written in Python. more>>
Karrigell is a simple but full-featured web framework, written in Python.
Karrigell can also work with Apache and Xitami, and any database with a Python interface. It allows execution of Python scripts and of pages mixing Python and HTML, easy handling of authentication and sessions, building pages from components, and internationalization features.
It comes with a complete documentation and several demos, including a wiki server, a forum, and a portal with personalization and news editing.
Main features:
- a powerful built-in web server, so theres no need to download, install and configure a separate one
- a pure-Python database engine : KirbyBase
Enhancements:
- a first version of the integration of Karrigell behind Apache using CGI mode (see the documentation page about Apache for details)
- name REQUEST added in the namespace (same as QUERY)
- name CONFIG added in the namespace : alias for k_config, with attributes taken from the configuration file
- added a page in the documentation summarizing the names available in the namespace bug fixes (in CGI scripts)
<<less
Download (0.68MB)
Added: 2007-05-19 License: GPL (GNU General Public License) Price:
889 downloads
Scriptalicious 1.10

Scriptalicious 1.10


Scriptalicious Perl module can make scripts more delicious to SysAdmins. more>>
Scriptalicious Perl module can make scripts more delicious to SysAdmins.

SYNOPSIS

use Scriptalicious
-progname => "pu";

our $VERSION = "1.00";

my $url = ".";
getopt getconf("u|url" => $url);

run("echo", "doing something with $url");
my $output = capture("svn", "info", $url);

__END__

=head1 NAME

pu - an uncarved block of wood

=head1 SYNOPSIS

pu [options] arguments

=head1 DESCRIPTION

This scripts function is to be a blank example that many
great and simple scripts may be built upon.

Remember, you cannot carve rotten wood.

=head1 COMMAND LINE OPTIONS

=over

=item B< -h, --help >

Display a program usage screen and exit.

=item B< -V, --version >

Display program version and exit.

=item B< -v, --verbose >

Verbose command execution, displaying things like the
commands run, their output, etc.

=item B< -q, --quiet >

Suppress all normal program output; only display errors and
warnings.

=item B< -d, --debug >

Display output to help someone debug this script, not the
process going on.

=back

This module helps you write scripts that conform to best common practices, quickly. Just include the above as a template, and your script will accept all of the options that are included in the manual page, as well as summarising them when you use the -h option.

(Unfortunately, it is not possible to have a `use dependency automatically add structure to your POD yet, so you have to include the above manually. If you want your help message and Perldoc to be meaningful, that is.)

Shortcuts are provided to help you abort or die with various error conditions; all of which print the name of the program running (taken from $0 if not passed). The motive for this is that "small" scripts tend to just get written and forgotten; so, when you have a larger system that is built out of lots of these pieces it is sometimes guesswork figuring out which script a printed message comes from!

For instance, if your program is called with invalid arguments, you may simply call abort with a one-line message saying what the particular problem was. When the script is run, it will invite the person running the script to try to use the --help option, which gives them a summary and in turn invites them to read the Perldoc. So, it reads well in the source;

@ARGV and abort "unexpected arguments: @ARGV";
$file or abort "no filename supplied";

And in the output;

somescript: no filename supplied!
Try `somescript --help for a summary of options

On the other hand, if you call barf, then it is considered to be a hard run-time failure, and the invitation to read the --help page to get usage not given. Also, the messages are much tidier than you get with die et al.

open FOO, "<<less
Download (0.020MB)
Added: 2007-07-23 License: Perl Artistic License Price:
823 downloads
more.groupware 0.7.4

more.groupware 0.7.4


Moregroupware is groupware that includes standard modules like calendar, news, contacts, and more. more>>
Moregroupware is groupware that includes standard modules like news, contacts, calendar and more. To make a long story short: moregroupware is a web-based groupware application. Some of the features that are worth being mentioned:
- Contact/address management
- Webmail
- full-featured Calendar
- ToDo management
- News
- Project management
- Some preferences for each module
- available in different languages
- Skins based on Cascading Style Sheets
Main features:
- simple setup wizard
- easy module management and upgrade
- advanced rights management
- integrated online help
- easily skinnable with CSS
- based on the Smarty template engine
- works on MySQL and PostgreSQL
- available in more languages than just english
Enhancements:
- This release finally summarizes the tons of bugfixes done over the past year (more than that), and as usual we have updated the bundled libraries to current versions.
- Please read the NEWS-0.7.4 file and the documentation for more information.
- more.groupware is a web-based groupware written in PHP. Including modules like webmail, notes, todo, contacts, project management, calendar and others.
<<less
Download (2.3MB)
Added: 2006-04-28 License: GPL (GNU General Public License) Price:
1280 downloads
Thresh 1.5.0b

Thresh 1.5.0b


Thresh is an application for Snort that manages alert thresholding and suppression. more>>
Thresh is an application for Snort that manages alert thresholding and suppression. It was designed to assist the administrator with tuning one or more Snort sensors. The project was designed to run under Red Hat flavors of Linux.
It summarizes Snort Alerts by alert count, allows creation and editing of threshold.conf files, prunes your Snort database based on your tunings, and allows you to preview your alert suppressions before deletion.
Enhancements:
- DB queries were corrected.
- Database pruning based on suppression sets was added.
- A major code cleanup was undertaken.
- All errors with signature name queries were corrected along with all read/write calls to config files.
- The number of floating variables between POSTs on all pages was reduced. Descriptions were added to description boxes. Rule edit/delete options were added. Issues with alert counts were corrected.
- A cool way was devised to do CIDR block DELETEs and SELECTs in MySQL.
<<less
Download (0.032MB)
Added: 2007-03-26 License: GPL (GNU General Public License) Price:
981 downloads
libqsearch 0.8

libqsearch 0.8


libqsearch provides an API for searching for a set of patterns. more>>
libqsearch is a C library aimed to search for set of patterns in buffers as fast as possible. It has also been ported to kernel space.

The idea is to have an API frontend that give you the ability to load plugins. Each plugin can provide one or more algorithms. Each algorithm can be instantiated to one or more search objects. Then you add patterns to the object (patterns can include (!), and can be case sensitive or not, include jokers, ..).

Then you compile it. The search object will then be able to search simultaneously every patterns (even of heterogeneous types) in a given buffer. One of the interests is the use of states to summarize a past search.

States are trivially implemented for automata based algorithms, and are not so hard to implement for other algorithms (if n is the longest pattern, just keep the n-1 last bytes in the state for the next search). This give you the ability to match patterns that overlap on 2 buffers without having to worry about that (TCP reassembly for IDSes is greatly simplified : no need to move paylods to adjacents zones, no need to keep a paylod in memory waiting for the next. Benefits for AV that work on flux could be great too).

This API is also implemented for linux kernels. For each algorithm, a wrapper is automatically generated for it to be compiled with the kernel. The API and the algorithms can also be compiled as LKM.
<<less
Download (0.40MB)
Added: 2006-03-29 License: GPL (GNU General Public License) Price:
1304 downloads
Minalyzer Lite 2007.05

Minalyzer Lite 2007.05


Minalyzer Lite index and search tools to your internet or intranet website. more>>
Minalyzer Lite project index and search tools to your internet or intranet website. Minalyzer Lite supports user searches by indexing data from combinations of databases, file systems and websites. The project runs on almost all Operating Systems. It even copes with restrictive shared hosting.
Pump up your website with powerful search tools
- Standard search functionality through web forms.
- Advanced query options such as keyword forcing (+) and keyword exclusion (-).
- Targeted searches in single or multiple index collections.
- Summarized and highlighted results, properly paginated.
- Search by field or location within your website.
- Maintain high performance by running resource-intensive processes on remote computers.
Easy to integrate
- Fully customizable look and feel for seamless integration with your website.
- Tailored indexing, e.g. indexes files directly from a file system, from a dynamic websites database or by crawling the website; or by using a combination of all the three.
- Generates multiple index collections for different parts of your site, e.g. for FAQ, documentation, forums and blogs.
- Attractively priced custom programming service available for all of the above.
- Comes with a sample web application demonstrating integration with sites built using ASP. NET, PHP, Perl, and HTML (CGI-Scripts enabled).
Deployable across a range of environments
- Operating System/Platform independent.
- Works with most shared hosting accounts.
- Language independent - works with all web programming languages, e.g. ASP. NET, PHP, Perl, and HTML (CGI-Scripts enabled).
- Indexes portable between multiple Operating Systems, e.g. create and index in a Windows environment then transfer it to a Linux server.
- Indexing support for arc files generated by Heritrix Crawler.
Easy to install and administer
- Simple xcopy/ftp installation.
- No dependencies on other sites or companies - the executable runs locally.
- Tracks user search activity through detailed search logs.
- Optional web form interface for indexing.
- Works around web server restrictions by generating indexes locally and then uploading them.
Enhancements:
Features Added:
- Added reporting capabilities to generate pdf reports.
- Implemented Jericho HTML parser for HTML parsing.
Changes in this version:
- Enhanced example scripts to add more logging.
<<less
Download (MB)
Added: 2007-06-20 License: Freely Distributable Price:
859 downloads
Teromail 0.3.55

Teromail 0.3.55


Teromail is a free summarizing webmail with smart search. more>> <<less
Download (0.018MB)
Added: 2006-09-14 License: GPL (GNU General Public License) Price:
1135 downloads
Build Order Analyzer 2.0

Build Order Analyzer 2.0


Build Order Anlyzer for the Axis & Allies RTS is a tool for analyzing builds in the Axis & Allies RTS game. more>>
Build Order Anlyzer for the Axis & Allies RTS is a tool for analyzing builds in the Axis & Allies RTS game. Many sites go to great lengths to explain Build Orders, but the Build Order Analyzer is the first tool to actually allow players the ability to define a Build Order and then compare it to other Build Orders over time.

Key Facts to know about the Build Order Analyzer:

Only tool of its kind
Can support multiple types of RTS based games (not just Axis & Allies RTS!)
Built on Java technology & open source software

The Build Order Anlyzer 2.0 for Axis & Allies RTS is a tool for analyzing builds in the Axis & Allies RTS game. Wikipedia has a great defnition for a Build Order. To summarize, a Build Order in an RTS game defines the order in which a player builds their buildings, units, and upgrades. Understanding the timing and affect of various build trees is critical in making the appropriate tactical decisions during the game.

The BOA allows a player to build and analyze multiple Build Orders without playing a game. Lose to a player due to their build? Then plug it into the BOA and figure out a build to counter it! Gamers no longer have to play game, after game, after game to figure out a decent counter to another players Build Order, they can use the BOA to figure it out. The BOA can literally save serious gamers hundreds of hours of game play!

<<less
Download (0.002MB)
Added: 2006-07-24 License: Freeware Price:
1188 downloads
XML::Parser::PerlSAX 0.08

XML::Parser::PerlSAX 0.08


XML::Parser::PerlSAX is a Perl SAX parser using XML::Parser. more>>
XML::Parser::PerlSAX is a Perl SAX parser using XML::Parser.

SYNOPSIS

use XML::Parser::PerlSAX;

$parser = XML::Parser::PerlSAX->new( [OPTIONS] );
$result = $parser->parse( [OPTIONS] );

$result = $parser->parse($string);

XML::Parser::PerlSAX is a PerlSAX parser using the XML::Parser module. This man page summarizes the specific options, handlers, and properties supported by XML::Parser::PerlSAX; please refer to the PerlSAX standard in `PerlSAX.pod for general usage information.

METHODS

new

Creates a new parser object. Default options for parsing, described below, are passed as key-value pairs or as a single hash. Options may be changed directly in the parser object unless stated otherwise. Options passed to `parse() override the default options in the parser object for the duration of the parse.

parse

Parses a document. Options, described below, are passed as key-value pairs or as a single hash. Options passed to `parse() override default options in the parser object.

location

Returns the location as a hash:

ColumnNumber The column number of the parse.
LineNumber The line number of the parse.
BytePosition The current byte position of the parse.
PublicId A string containing the public identifier, or undef
if none is available.
SystemId A string containing the system identifier, or undef
if none is available.
Base The current value of the base for resolving relative
URIs.

ALPHA WARNING: The `SystemId and `PublicId properties returned are the system and public identifiers of the document passed to `parse(), not the identifiers of the currently parsing external entity. The column, line, and byte positions are of the current entity being parsed.

<<less
Download (0.063MB)
Added: 2006-06-14 License: GPL (GNU General Public License) Price:
1234 downloads
WAP::SAXDriver::wbxml 2.04

WAP::SAXDriver::wbxml 2.04


WAP::SAXDriver::wbxml is a Perl module with SAX parser for WBXML file. more>>
WAP::SAXDriver::wbxml is a Perl module with SAX parser for WBXML file.

SYNOPSIS

use WAP::SAXDriver::wbxml;

$parser = WAP::SAXDriver::wbxml->new( [OPTIONS] );
$result = $parser->parse( [OPTIONS] );

WAP::SAXDriver::wbxml is a SAX2 driver, and it inherits of XML::SAX::Base. This man page summarizes the specific options, handlers, and properties supported by WAP::SAXDriver::wbxml; please refer to the SAX 2.0 standard for general usage information.

A WBXML file is the binarized form of XML file according the specification :

WAP - Wireless Application Protocol /
Binary XML Content Format Specification /
Version 1.3 WBXML (15th May 2000 Approved)

This module could be parametrized by the file WAP::SAXDriver::wbrules.pl what contains all specific values used by WAP applications.

This module needs IO::File, IO::String and I18N::Charset modules.

<<less
Download (0.023MB)
Added: 2006-09-20 License: Perl Artistic License Price:
1134 downloads
Realms of Rivalry

Realms of Rivalry


Realms of Rivalry is an online tactical rpg. more>>
Realms of Rivalry is an online tactical rpg. Play short skirmishes in random-generated game worlds.
The game can be summarized as an online graphical turn-based strategy/rpg game where you can play short tactical skirmishes with 2-4 players in small random-generated game worlds. The game is free and can be played either as an applet or downloadable client.
The time-limited turns (30-90 secs) give the game a semi-realtime feel, and the game has sometimes been characterized as "chess on steroids".
Main features:
- Community friendly game lobby where you can chat with others and join realms.
- Up to 4 players simultaneously battling on the same realm.
- Players control teams of 3 characters: Warrior, Archer and Mage.
- Time-limited turn-based gameplay.
- Random-generated game worlds (realms).
- CPU controlled monsters.
- Several weapons, armor, traps and other items.
- Occlusion calculation used in combat situations.
- Interrupts.
- Different types of terrain.
- Buy & sell items at vendors.
- Monster respawning.
- Ingame chat.
- Detailed end-of-game summary panel.
Explore the map and kill creatures to obtain weapons, potions, runes, traps and more to aid you in your quest for domination!
The game development has been very "test-driven" in the sense that the game quickly was made playable and that features and changes were added and removed continuously during development. This hopefully improves gameplay, but of course at the expense of dramatically increased development time.
Realms of rivalry was never intended to "soothe the masses", but were made entirely to match the game that we ourselves would like to play - something we have done for many, many hours :-) But of course, some of you might enjoy this game aswell, and that is why we decided to share it with you!.
<<less
Download (MB)
Added: 2007-01-29 License: Freeware Price:
999 downloads
APbyAS 01a

APbyAS 01a


APbyAS provides Italian Web-based process re-engineering support. more>>
APbyAS provides Italian Web-based process re-engineering support.

Each employee survey his own real job and registers activities and times on weekly and annual basis. Results are summarized per unit and whole organization, with totals and averages.
<<less
Download (MB)
Added: 2007-01-08 License: GPL (GNU General Public License) Price:
1019 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 4
  • 1
  • 2
  • 3
  • 4