Main > Free Download Search >

Free webtest 2.04 software for linux

webtest 2.04

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 21
HTTP::WebTest 2.04

HTTP::WebTest 2.04


HTTP::WebTest is a Perl module for testing static and dynamic web content. more>>
HTTP::WebTest is a Perl module for testing static and dynamic web content.

SYNOPSIS

use HTTP::WebTest;

my $webtest = new HTTP::WebTest;

# run test from file
$webtest->run_wtscript(script.wt);

# or (to pass test parameters as method arguments)
$webtest->run_tests($tests);

Introduction

This module runs tests on remote URLs containing Perl/JSP/HTML/JavaScript/etc. and generates a detailed test report. This module can be used "as-is" or its functionality can be extended using plugins. Plugins can define test types and provide additional report capabilities. This module comes with a set of default plugins but can be easily extended with third party plugins.

The wt script is provided for running HTTP::WebTest from the command line.
The test specifications can be read from a parameter file in wtscript format or input as method arguments. The test results can be displayed on the terminal, directed to a file, stored in a scalar variable. The test results can also be emailed. The report can be modified and extended using report plugins.

Each URL/web file is tested by fetching it from the web server using a local instance of an HTTP user agent. The basic test is simply whether or not the fetch was successful. You may also test using literal strings or regular expressions that are either required to exist or forbidden to exist in the fetched page. You may also specify tests for the minimum and maximum number of bytes in the returned page. You may also specify tests for the minimum and maximum web server response time.

Data flow for HTTP::WebTest:

-------------- -------------
| | | |
| Input |------------->| WebTest |
| parameters | | |
| | -------------
-------------- | ^
| |
V |
------------- ------------
| | request | |
| Remote || user |
| | response | agent |
------------- | |
------------

<<less
Download (0.088MB)
Added: 2006-12-14 License: Perl Artistic License Price:
1044 downloads
PBNJ 2.04

PBNJ 2.04


PBNJ is a network tool that can be used to give an overview of a machine or multiple machines. more>>
PBNJ is a network tool that can be used to give an overview of a machine or multiple machines which includes the details about the services running on them.
PBNJ is different from other tools because it is based on using a scan from nmap parsed to amap. PBNJ project parses the data from a scan and inputs it into a CSV format file for each ip address scanned.
However, pbnj is able to handle additional scans and parse the data while only looking for changes.
For example, if a machine was updated with a newer version of OpenSSH than was running when the first scan was performed, the CSV file would contain the difference of the scan.
Enhancements:
- converted text files files from unix to dos format
- added backwards compatibility for --scan
- update man pages to reflect removal of --scan
- fixed ip parsing bug for certain ips
- removed -s ( default is to scan all ips )
- fixed help and manpages to reflect changes
- -p doesnt require arguments. Therefore, to perform
- ping scan use the following: scanpbnj -p 192.168.1.1/24
- fixed bug when inserting a service with an unknown name.
- added more tests
- small Makefile.PL change of manpages
<<less
Download (0.026MB)
Added: 2006-11-15 License: GPL (GNU General Public License) Price:
1074 downloads
Text::Kakasi 2.04

Text::Kakasi 2.04


Text::Kakasi is a perl frontend to kakasi. more>>
Text::Kakasi is a perl frontend to kakasi.

SYNOPSIS

use Text::Kakasi;
# functional
$res = Text::Kakasi::getopt_argv(-JJ, -c, -w);
$str = Text::Kakasi::do_kakasi($japanese_text);
# object-oriented
$obj = Text::Kakasi->new(-JJ, -c, -w);
$str = $obj->get($japanese_text);

This module provides interface to kakasi (kanji kana simple inverter). kakasi is a set of programs and libraries which does what Japanese input methods do in reverse order. You feed Japanese and kakasi converts it to phonetic representation thereof. kakasi can also be used to tokenizing Japanese text. To find more about kakasi, see http://kakasi.namazu.org/ .

Text::Kakasi now features both functional and object-oriented APIs. functional APIs are 100% compatible with ver. 1.05. But to take advantage of "Perl 5.8 Features", you should use OOP APIs instead.

See Text::Kakasi::JP for the Japanese version of this document.

<<less
Download (0.022MB)
Added: 2006-08-28 License: Perl Artistic License Price:
1158 downloads
Helherron 2.04

Helherron 2.04


Helherron is a fantasy RPG game for PC computers. more>>
Helherron is a fantasy RPG game for PC computers.

The isle of Helherron is at chaos. Beloved King Krohl has been kidnapped. Nobody knows by whom, but the legends are wild. The villagers tell, still shaking in terror, that it was done by dark, winged man-like creatures that took off to the sky shrieking, with poor King Krolh with them.

And worse yet, the isles seem to be cursed somehow. Its hard to determine how, but you sure can feel it. It hangs in the air heavy, like a Shadow of Death, and you can see it shimmering bloody red in the horizon of the night sky.

The villagers tell that just lately, after King Krolh was kidnapped, their villages have been raided by grotesque cross-breeds between man and beast. Most apparently that is also due to the Curse placed over Helherron and its sister isles. But the worst is yet to be told.

The Divine Sceptre, given to the people of Helherron by the Divine Cleric Order and crafted by the Creator itself, which was at King Krolhs possession, is now missing too. It was most apparently stolen at the same time King Krolh was kidnapped. Thus, the only hope for Helherron is to send a party of heroes to find the Divine Sceptre so that order and peace can be once again returned.
<<less
Download (6.1MB)
Added: 2006-06-13 License: GPL (GNU General Public License) Price:
1236 downloads
Bumpmap 2.04

Bumpmap 2.04


Bumpmap plug-in uses the algorithm described by John Schlag, Fast Embossing Effects on Raster Image Data. more>>
Bumpmap plug-in uses the algorithm described by John Schlag, "Fast Embossing Effects on Raster Image Data in Graphics Gems IV (ISBN 0-12-336155-9).

Bumpmap takes an image to be applied as a bump map to another image, producing a nice embossing effect.

<<less
Download (0.046MB)
Added: 2006-09-21 License: Perl Artistic License Price:
1128 downloads
HTTP::WebTest::XMLParser 1.00

HTTP::WebTest::XMLParser 1.00


HTTP::WebTest::XMLParser is a Perl module to parse wtscript in XML representation. more>>
HTTP::WebTest::XMLParser is a Perl module to parse webscript in XML representation.

SYNOPSIS

use HTTP::WebTest::XMLParser;
my ($tests, $opts) = HTTP::WebTest::XMLParser->parse($xmldata);

use HTTP::WebTest;
my $wt = new HTTP::WebTest;
$wt->run_tests($tests, $opts);

HTTP::WebTest::XMLParser->as_xml($tests, $opts, { nocode => 1 });

Parses a wtscript file in XML format and converts it to a set of test objects.

XML SYNTAX

The xml format follows wtscript closely, with the following rules:

- the root element is
- global paramters are in a element
- test definitions are in elements
- a list is represented by a element
- a scalar param. is represented by a element
- a code segment is represented by a element
- named parameters are named throug a name attribute

The DTD is available in scripts/webtest.dtd from the distribition. For examples see the test definitions in t/*xml from the distribution.

A conversion script from wtscript to XML is available in scripts/testconversion from the distribution. This script also converts XML definitions from earlier alpha versions of this module.

<<less
Download (0.011MB)
Added: 2006-12-14 License: Perl Artistic License Price:
1044 downloads
Text::Kakasi::JP 2.04

Text::Kakasi::JP 2.04


Text::Kakasi::JP is a Japanese Perl extension for Text::Kakasi. more>>
Text::Kakasi::JP is a Japanese Perl extension for Text::Kakasi.

SYNOPSIS

use Text::Kakasi;
# functional
$res = Text::Kakasi::getopt_argv(kakasi, -ieuc, -w);
$str = Text::Kakasi::do_kakasi($japanese_text);
# object-oriented
$obj = Text::Kakasi->new(-ieuc,-w);
$str = $obj->get($japanese_text);

<<less
Download (0.022MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1178 downloads
Chatbot::Alpha 2.04

Chatbot::Alpha 2.04


Chatbot::Alpha provides a simple chatterbot brain. more>>
Chatbot::Alpha provides a simple chatterbot brain.
The Alpha brain was developed by AiChaos, Inc. for our chatterbots. The Alpha brains language is line-by-line, command-driven. Alpha is a simplistic brain yet is very powerful for making impressive response systems.
// Test Replies
// Chatbot-Alpha 2.0 - Mid-sentence redirections.
+ redirect test
- If you said hello I wouldve said: {@hello} But if you said whats up Id say: {@whats up}
// Redirect test with .
+ i say *
- Indeed you do say. {@ }
// Chatbot-Alpha 1.7 - A reply with continuation...
+ tell me a poem
- Little Miss Muffet,n
^ sat on her tuffet,n
^ in a nonchalant sort of way.nn
^ With her forcefield around her,n
^ the spider, the boundern
^ is not in the picture today.
// Chatbot-Alpha 1.7 - Check syntax errors on deep recursion.
+ one
@ two
+ two
@ one
// A standard reply to "hello", with multiple responses.
+ hello
- Hello there!
- Whats up?
- This is random, eh?
Enhancements:
- Fixed up some Perl warnings within the code.
- Renamed the example script to example.pl to not confuse Makefile.
<<less
Download (0.030MB)
Added: 2007-03-31 License: GPL (GNU General Public License) Price:
973 downloads
drumachine 2.04

drumachine 2.04


Drumachine is a program which translates a simple drum-pattern description file into a CSOUND score. more>>
Drumachine is a program which translates a simple drum-pattern description file into a CSOUND score. It is useful in the creation of percussion tracks with csound, ranging from the trivial to the extremely involved and complex. I have compiled and tested the program under Linux only.

Drumachine now supports time-variable volume and tempo changes. Now, the creation of Crescendo/Decrescendo and Ritard/Accelerando is very easy.


Download drumachine2.04.tar.gz (~215k), should you be so inclined. The archive contains a Linux executable of drumachine, and the source code from which it was compiled. There is also a selection of drum samples included in the archive (AIFF), which should enable one to get started on her way to creating gourmet percussion tracks with drumachine.

If you like, you can sneek a peek at the manual, which is really a working drumachine score at the same time. The same score without the manual-devoted portions may also be viewed should one wish to know what it is like to look at a more typical example of a drumachine score-file.

The release notes detail new features and bug-fixes from rev to rev. Reading it can help one decide whether to download a new version.
<<less
Download (0.21MB)
Added: 2006-07-19 License: GPL (GNU General Public License) Price:
1194 downloads
Chatbot::Alpha::Sort 2.04

Chatbot::Alpha::Sort 2.04


Chatbot::Alpha::Sort is a Perl module for alphabetic sorting of Chatbot::Alpha documents. more>>
Chatbot::Alpha::Sort is a Perl module for alphabetic sorting of Chatbot::Alpha documents.

SYNOPSIS

use Chatbot::Alpha::Sort;

# Create a new sorter.
my $sort = new Chatbot::Alpha::Sort();

# Sort your files.
$sort->start (
dir => ./before,
out => ./after,
ext => cba,
);

Chatbot::Alpha::Sort can take your numerous unsorted Alpha documents, and create nicely formatted documents from A.cba to Z.cba with triggers sorted alphabetically within each document.

METHODS

new (ARGUMENTS)

Creates a new Chatbot::Alpha::Sort object. You should only need one object, since each sort request creates its own Chatbot::Alpha, unless you intend to run multiple sorts at the same time.

Returns a Chatbot::Alpha::Sort instance.

version

Returns the version number of the module.

start (ARGUMENTS)

Starts the sorting process. ARGUMENTS is a hash that you must pass in to tell the module how to do things. The arguments are as follows:

dir => DIRECTORY
The directory at which your original Alpha documents
can be found. Defaults to CWD.
out => DIRECTORY
Another directory for which your newly formatted Alpha
documents will be written to. Defaults to CWD.
ext => EXTENSION
The file extension of your Alpha documents. Defaults
to cba
files => SORT_TYPE
The sorting method for which your new files will be sorted.
See below for the sort types.

<<less
Download (0.030MB)
Added: 2007-04-02 License: Perl Artistic License Price:
943 downloads
Math::MagicSquare 2.04

Math::MagicSquare 2.04


Math::MagicSquare is a Magic Square Checker and Designer. more>>
Math::MagicSquare is a Magic Square Checker and Designer.

SYNOPSIS

use Math::MagicSquare;

$a= Math::MagicSquare -> new ([num,...,num],
...,
[num,...,num]);
$a->print("string");
$a->printhtml();
$a->printimage();
$a->check();
$a->rotation();
$a->reflection();

The following methods are available:

new

Constructor arguments are a list of references to arrays of the same length.

$a = Math::MagicSquare -> new ([num,...,num],
...,
[num,...,num]);

check

This function can return 4 value

0: the Square is not Magic
1: the Square is a Semimagic Square (the sum of the rows and the columns is equal)
2: the Square is a Magic Square (the sum of the rows, the columns and the diagonals is equal)
3: the Square ia Panmagic Square (the sum of the rows, the columns, the diagonals and the broken diagonals is equal)

print

Prints the Square on STDOUT. If the method has additional parameters, these are printed before the Magic Square is printed.

printhtml

Prints the Square on STDOUT in an HTML format (exactly a inside a TABLE)

printimage

Prints the Square on STDOUT in png format.

rotation

Rotates the Magic Square of 90 degree clockwise

reflection

Reflect the Magic Square

<<less
Download (0.007MB)
Added: 2007-07-02 License: Perl Artistic License Price:
845 downloads
BioBrew Linux 3.0.2.04

BioBrew Linux 3.0.2.04


BioBrew Linux is an open source Linux distribution based on the NPACI Rocks cluster software and enhanced for bioinformaticists. more>>
BioBrew Linux is an open source Linux distribution that is enhanced for life scientists. It is customized for cluster and bioinformatics computing. It automates cluster installation, includes all the HPC software a cluster enthusiast needs, and contains popular bioinformatics applications.

BioBrew Linux is an open source Linux distribution based on the NPACI Rocks cluster software and enhanced for bioinformaticists and life scientists. While it looks, feels, and operates like ordinary Red Hat Linux, BioBrew Linux includes popular cluster software e.g. MPICH, LAM-MPI, PVM, Modules, PVFS, Myrinet GM, Sun Grid Engine, gcc, Ganglia, and Globus, *and* popular bioinformatics software e.g. the NCBI toolkit, BLAST, mpiBLAST, HMMER, ClustalW, GROMACS, PHYLIP, WISE, FASTA, and EMBOSS.

It runs on everything from notebook computers to large clusters. BioBrew Linux for the Itanium architecture is only available for purchase at this time through Callident. Please contact Brewmeister Glen Otero for information regarding BioBrew Linux on Itanium.
<<less
Download (1980MB)
Added: 2005-05-18 License: GPL (GNU General Public License) Price:
1622 downloads
Pod::Man 2.04

Pod::Man 2.04


Pod::Man is a Perl module to convert POD data to formatted *roff input. more>>
Pod::Man is a Perl module to convert POD data to formatted *roff input.

SYNOPSIS

use Pod::Man;
my $parser = Pod::Man->new (release => $VERSION, section => 8);

# Read POD from STDIN and write to STDOUT.
$parser->parse_file (*STDIN);

# Read POD from file.pod and write to file.1.
$parser->parse_from_file (file.pod, file.1);

Pod::Man is a module to convert documentation in the POD format (the preferred language for documenting Perl) into *roff input using the man macro set. The resulting *roff code is suitable for display on a terminal using nroff(1), normally via man(1), or printing using troff(1). It is conventionally invoked using the driver script pod2man, but it can also be used directly.
As a derived class from Pod::Simple, Pod::Man supports the same methods and interfaces. See Pod::Simple for all the details.

new() can take options, in the form of key/value pairs that control the behavior of the parser. See below for details.

If no options are given, Pod::Man uses the name of the input file with any trailing .pod, .pm, or .pl stripped as the man page title, to section 1 unless the file ended in .pm in which case it defaults to section 3, to a centered title of "User Contributed Perl Documentation", to a centered footer of the Perl version it is run with, and to a left-hand footer of the modification date of its input (or the current date if given STDIN for input).

Pod::Man assumes that your *roff formatters have a fixed-width font named CW. If yours is called something else (like CR), use the fixed option to specify it. This generally only matters for troff output for printing. Similarly, you can set the fonts used for bold, italic, and bold italic fixed-width output.

Besides the obvious pod conversions, Pod::Man also takes care of formatting func(), func(3), and simple variable references like $foo or @bar so you dont have to use code escapes for them; complex expressions like $fred{stuff} will still need to be escaped, though. It also translates dashes that arent used as hyphens into en dashes, makes long dashes--like this--into proper em dashes, fixes "paired quotes," makes C++ look right, puts a little space between double underbars, makes ALLCAPS a teeny bit smaller in troff, and escapes stuff that *roff treats as special so that you dont have to.

<<less
Download (0.075MB)
Added: 2006-08-14 License: Perl Artistic License Price:
1166 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
Chatbot::Alpha::Syntax 2.04

Chatbot::Alpha::Syntax 2.04


Chatbot::Alpha::Syntax is a Perl module for syntax checking of Chatbot::Alpha replies. more>>
Chatbot::Alpha::Syntax is a Perl module for syntax checking of Chatbot::Alpha replies.

SYNOPSIS

use Chatbot::Alpha::Syntax;

my $syntax = new Chatbot::Alpha::Syntax;

# Set strict syntax.
$syntax->syntax (strict);

# Changed my mind, use loose
$syntax->syntax (loose);

# Only allow SOME commands.
$syntax->deny_type (allow_some);

# Allow only +s and -s.
$syntax->allow (+, -);

# Syntax-check this file.
$syntax->check ("replies.cba");

Chatbot::Alpha::Syntax provides syntax checking for Alpha documents. All syntax errors result in a die so dont expect to run your syntax checking halfway through a large applications process. Doing it in initialization is always fine though.

<<less
Download (0.030MB)
Added: 2007-04-02 License: Perl Artistic License Price:
939 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 2
  • 1
  • 2