Main > Free Download Search >

Free well formed software for linux

well formed

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1355
Tk Web form Buddy 0.03

Tk Web form Buddy 0.03


Tk Web form Buddy is a helper for Web forms. more>>
Tk Web form Buddy project is a helper for Web forms.
The Tk Web form Buddy is a Tk script that allows one easily to make a series of strings available to the X11 PRIMARY selection, which is useful for filling in Web forms that have common/repetitive data.
How many times have you wished to have something to always fill in your name, address, email, etc.?
Its not automatic enough to fill these in for you, but you can click on each button to make it the PRIMARY selection so that you can paste these strings into a Web form, with the middle mouse button for example.
Enhancements:
- should now work under ActiveTCL by setting the Win32 clipboard
<<less
Download (0.005MB)
Added: 2006-09-29 License: MIT/X Consortium License Price:
1123 downloads
Resizeable Form Fields 0.2.1

Resizeable Form Fields 0.2.1


Resizeable Form Fields is an extension which allows you to resize HTML form fields, including textareas, select boxes and more. more>>
Resizeable Form Fields is an extension which allows you to resize HTML form fields, including textareas, select boxes and more.

Resize HTML form fields, including textareas, select boxes, text fields, and iframes.

<<less
Download (0.004MB)
Added: 2007-04-04 License: MPL (Mozilla Public License) Price:
937 downloads
Web Form Factory 0.1.3

Web Form Factory 0.1.3


Web Form Factory is a simple application that binds HTML forms to a database. more>>
Web Form Factory is a simple application that binds HTML forms to a database. It analyzes the HTML file you supply and identifies all the common input types it contains, including text fields, drop down lists, checkboxes, radio buttons, and text areas.
Once all the input types have been detected, it then performs some validation tests that ensures that enough information is contained within the HTML form to allow the program to bind the inputs properly. It then generates the required backend PHP code and returns the form back to the you in a zip file.
Enhancements:
- Form Validation Capabilities were added.
- The user can easily specify which fields are mandatory, and the location and appearance of error messages can be configured.
- A new Tag engine was added.
- Tags can be used to make form generation even simpler and faster by eliminating repetitive form coding tasks.
<<less
Download (0.16MB)
Added: 2006-08-25 License: BSD License Price:
1157 downloads
WWW-Form 1.17

WWW-Form 1.17


WWW::Form is a module for handling the world-wide-web form process. more>>
WWW::Form is a module for handling the world-wide-web form process. The project enables generating forms, filling them from user input, verifying them, and re-displaying them in case something is wrong.

<<less
Download (0.021MB)
Added: 2007-03-20 License: Perl Artistic License Price:
948 downloads
IPv4 form 1.0

IPv4 form 1.0


IPv4 form provides a tool for making RIPE IPv4 request forms. more>>
IPv4 form provides a tool for making RIPE IPv4 request forms.

IPv4 form is a utility for checking the #ADDRESSING PLAN# part of a RIPE IPv4 PA request form. It makes a "totals:" row for this form and produces readable output with spaces between columns. This output can be directly copied to a RIPE form.

<<less
Download (0.24MB)
Added: 2007-04-25 License: GPL (GNU General Public License) Price:
920 downloads
Tie::Form 0.02

Tie::Form 0.02


Tie::Form is a Perl module to access a machine readable database file that minics a hardcopy form. more>>
Tie::Form is a Perl module to access a machine readable database file that minics a hardcopy form.

SYNOPSIS

require Tie::Form;

#####
# Using support methods and file handle with
# the file subroutines such as open(), readline()
# print(), close()
#
tie *FORM_FILEHANDLE, Tie::Form, @options
$form = tied *FORM_FILEHANDLE;

#####
# Using support methods only, no file subroutines
#
$form = Tie::Form->new(@options);

$encoded_fields = $form->decode_record($record);
@fields = $form->decode_field($encoded_fields);

$encoded_fields = $form->encode_field (@fields);
$record = $form->encode_record($encoded_fields);

$record = $form->get_record();

####
# Subroutine interface
#
$encoded_fields = decode_record($record);
@fields = decode_field($encoded_fields);

$encoded_fields = encode_field (@fields);
$record = encode_record($encoded_fields);

If a subroutine or method will process a list of options, @options, that subroutine will also process an array reference, @options, [@options], or hash reference, %options, {@options}.

<<less
Download (0.087MB)
Added: 2007-02-16 License: Perl Artistic License Price:
980 downloads
Firefox Form Widgets 0.1

Firefox Form Widgets 0.1


Firefox Form Widgets is a replacement for the default form widgets in Firefox. more>>
Firefox Form Widgets is a replacement for the default form widgets in Firefox. Its not dependent upon KDE, but I styled it with KDE in mind. The CSS is modified from the default one. I created all but the radio and checkbox images, which were created by the Pretty Widgets for OS X (readme included).

The style is such that everything can still be styled by a website. For the buttons, if only a background color is supplied, the gradient is still applied making it look better.

I made this for my personal use, but I decided to distribute it in case people want it. I would like to put some more work into it if there is interest.

To install, download and then:

sudo cp -r /usr/lib/firefox/res/ /usr/lib/firefox/res_original
tar -xvvzf KDEwidgets.tar.gz
sudo mv ./KDEwidgets/* /usr/lib/firefox/res/

<<less
Download (0.007MB)
Added: 2007-08-15 License: GPL (GNU General Public License) Price:
805 downloads
Rose::HTML::Form 0.53

Rose::HTML::Form 0.53


Rose::HTML::Form is a HTML form base class. more>>
Rose::HTML::Form is a HTML form base class.

SYNOPSIS

package PersonForm;

use Rose::HTML::Form;
our @ISA = qw(Rose::HTML::Form);

use Person;

sub build_form
{
my($self) = shift;

$self->add_fields
(
name => { type => text, size => 25, required => 1 },
email => { type => email, size => 50, required => 1 },
phone => { type => phone },
);
}

sub validate
{
my($self) = shift;

# Base class will validate individual fields in isolation,
# confirming that all required fields are filled in, and that
# the email address and phone number are formatted correctly.
my $ok = $self->SUPER::validate(@_);
return $ok unless($ok);

# Inter-field validation goes here
if($self->field(name)->internal_value ne John Doe &&
$self->field(phone)->internal_value =~ /^555/)
{
$self->error(Only John Doe can have a 555 phone number.);
return 0;
}

return 1;
}

sub init_with_person # give a friendlier name to a base-class method
{
my($self, $person) = @_;
$self->init_with_object($person);
}

sub person_from_form
{
my($self) = shift;

# Base class method does most of the work
my $person = $self->object_from_form(class => Person);

# Now fill in the non-obvious details...
# e.g., set alt phone to be the same as the regular phone
$person->alt_phone($self->field(phone)->internal_value);

return $person;
}

...

#
# Sample usage in a hypothetical web application
#

$form = PersonForm->new;

if(...)
{
# Get query parameters in a hash ref and pass to the form
my $params = MyWebServer->get_query_params();
$form->params($params);

# ...or initialize form params from a CGI object
# $form->params_from_cgi($cgi); # $cgi "isa" CGI

# ...or initialize params from an Apache request object
# (mod_perl 1 and 2 both supported)
# $form->params_from_apache($r);

# Initialize the fields based on params
$form->init_fields();

unless($form->validate)
{
return error_page(error => $form->error);
}

$person = $form->person_from_form; # $person is a Person object

do_something_with($person);
...
}
else
{
$person = ...; # Get or create a Person object somehow

# Initialize the form with the Person object
$form->init_with_person($person);

# Pass the initialized form object to the template
display_page(form => $form);
}
...

Rose::HTML::Form is more than just an object representation of the HTML tag. It is meant to be a base class for custom form classes that can be initialized with and return "rich" values such as objects, or collections of objects.

Building up a reusable library of form classes is extremely helpful when building large web applications with forms that may appear in many different places. Similar forms can inherit from a common subclass, and forms may be nested.

This class inherits from, and follows the conventions of, Rose::HTML::Object. Inherited methods that are not overridden will not be documented a second time here. See the Rose::HTML::Object documentation for more information.

<<less
Download (0.10MB)
Added: 2006-09-29 License: Perl Artistic License Price:
1120 downloads
Form Saver 0.7.0

Form Saver 0.7.0


Form Saver enables you to saves form field data as autofill-bookmarklets. more>>
Form Saver enables you to saves form field data as autofill-bookmarklets.

Saves form field data as autofill-bookmarklets. Works with inputs, checkboxes, radio groups, textareas, and selects. As always, feel free to email me with suggestions or issues.

I designed this because when testing a form, I hated filling in every option each time.

<<less
Download (0.063MB)
Added: 2007-04-25 License: MPL (Mozilla Public License) Price:
960 downloads
Contact Form Killer 1.4

Contact Form Killer 1.4


Contact Form Killer is a free tool you can use to generate contact forms for your site. more>>
Contact Form Killer is a free tool you can use to generate contact forms for your site, or let your web site visitors add contact forms themselves.
Contact Form Killer script takes care of messy form validation with both JavaScript and PHP, just in case they have JavaScript disabled. The contact forms it generates are nicely formatted and can be further edited to match the look and feel of your site.
Main features:
- Easy to install. Just unzip and upload, or if youre using it on a local server, just unzip!
- Quick generation of contact forms that usually take hours to code.
- JavaScript validation of each input for ultimate usability.
- PHP validation to make sure JavaScript-disablers dont slip the radar.
- Over 10 inputs to pick and choose from.
- Form generation is really easy, just click the checkboxes next to the inputs you want, click submit and youre done!
<<less
Download (0.012MB)
Added: 2006-01-31 License: Freeware Price:
768 downloads
Wordplay 0.3

Wordplay 0.3


Wordplay is a game for Unix/GTK+. more>>
Wordplay is a game for Unix/GTK+. Wordplay is primarily aimed at Scrabble players looking to improve their anagramming and hooking skills, but can also be played for fun. The dictionary used is the full TWL98 word list (used for tournaments and club play in the U.S. and Canada).

Three types of games are available:

Word Mine: Find all words of a certain length which can be formed from the letters of a larger word. Letters may be repeated only as often as they appear in the given word.
Word Hooks: Find all words which "hook" off a given word: forming a new word by adding a letter to the beginning or end.
Bingos: Find all anagrams of the given (seven or more) letters. In a Scrabble game, playing a word which uses all letters on your rack is a bingo, netting you a 50-point bonus. The bingo puzzles included with wordplay comprise the 500 most statistically likely bingo-able 7-letter and 8-letter combinations, based on the standard Scrabble bag letter distribution.

<<less
Download (0.25MB)
Added: 2007-08-19 License: GPL (GNU General Public License) Price:
799 downloads
WheatBlog 1.1

WheatBlog 1.1


WheatBlogApp is a PHP/MySQL application for maintaining a Web log on your own server. more>>
Wheatblog is blogware: its a web-based content management system for maintaining online blogs, journals, news pages, and about anything else you can think of writing down.
WheatBlog allows reader interaction with a comment system, and generates valid RSS 2.0 feeds. It is powered by PHP and is compatible with the MySQL and SQLite database systems.
Main features:
- Simple, straightforward installation and use.
- All pages are dynamically created using PHP and a database.
- Posts can be assigned to categories and viewed by category or title.
- Permanent URLs, or permalinks, provide a unique, unchanging link
- to each post, and are readily indexed by search engines.
- All posts allow reader comments, but can be locked by the administrator at any time.
- A post can be marked visible or hidden at any time, allowing multiple revisions before publishing.
- All post dates are arbitrary (not based on timestamps) and therefore completely controllable by the author.
- Generates valid, well-formed RSS 2.0 feeds of your visible posts for effortless syndication.
- Valid XHTML makes customization as easy as modifying one CSS file.
- Best of all, its open source! You can hack it to suit your needs!
Enhancements:
- This release includes comment spam protection (via a simple CAPTCHA implementation) and improves RSS feeds.
<<less
Download (0.40MB)
Added: 2006-08-02 License: GPL (GNU General Public License) Price:
1178 downloads
Contact Form 2.01.00

Contact Form 2.01.00


Contact Form is a perl script that you can run on your website that will allow others to send you email through a web interface. more>>
Contact Form is a perl script that you can run on your website that will allow others to send you email through a web interface. Unlike other web to email gateways, Contact Form is designed to thwart spammers.
It does not allow email to be sent to unknown addresses, nor does it reveal addresses that it knows.
Main features:
- Allow email to be sent to a list of known email addresses through a web interface.
- Prevent email from being sent to other addresses.
- Never reveal email addresses through the web interface.
- Contain no cross site scripting (XSS) vulnerabilities.
- Do not allow arbitrary code to be run on the host.
- Provide adequate information in email headers to trace any spammers.
- Allow, but do not require, an external form.
- Server side validity checking of all data before email is sent.
- Optional client side validity checking of all data before the form is submitted.
- A default configuration that requires only a list of email addresses to be ready for use.
- A customizable interface that allows arbitrary fields.
- Easy to change the way it looks to integrate into your website
Setup:
- Download the contactform archive.
- Extract the contents of the download.
- Place contact.pl in your webservers cgi-bin directory or another place that allows scripts.
- Edit contact.pl to change the email addresses to which email can be sent.
- Optional - Change any other parameters in contact.pl to taste.
- Point your web browser at contact.pl on your server.
- Send yourself email through the web.
<<less
Download (0.021MB)
Added: 2007-07-10 License: GPL (GNU General Public License) Price:
844 downloads
Test::XML::Order 0.04

Test::XML::Order 0.04


Test::XML::Order is a Perl module to compare the order of XML tags in perl tests. more>>
Test::XML::Order is a Perl module to compare the order of XML tags in perl tests.

SYNOPSIS

use Test::XML::Order tests => 3;
is_xml_in_order( , ); # PASS
is_xml_in_order( , ); # FAIL
isnt_xml_in_order( , ); # PASS

This module contains generic XML testing tools. See below for a list of other modules with functions relating to specific XML modules.

FUNCTIONS

is_xml_in_order ( GOT, EXPECTED [, TESTNAME ] )

This function compares GOT and EXPECTED, both of which are strings of XML. The comparison works only on the order of the tags, attributes are ignored.

Returns true or false, depending upon test success.

isnt_xml_in_order( GOT, MUST_NOT_BE [, TESTNAME ] )

This function is similar to is_xml_in_order(), except that it will fail if GOT and MUST_NOT_BE have elements in the same order.

NOTES

Please note the following about Test::XML::Order.

The package does not check that the input is well formed XML. You should use Test::XML or a similar package if you want to make sure the XML is well formed.
Only the order of tags are checked, so

is_xml_in_order(< a a="b"/ >x< b >< /b >, < a/ >< b a="c" >asdf< /b >);

passes as the inputs have the same order: < a/ >< b/ >.

The tree structure is tested so the the test below passes.

isnt_xml_in_order(< a >< b/ >< /a >, < a/ >< b/ >);

<<less
Download (0.005MB)
Added: 2007-05-07 License: Perl Artistic License Price:
901 downloads
Quinti Secure Contact Form 1

Quinti Secure Contact Form 1


Quinti Secure Contact Form is a contact form for Web pages that is not vulnerable to robots. more>>
Quinti Secure Contact Form is a contact form for Web pages that is not vulnerable to robots who would abuse such forms for sending spam.
It uses both JavaScript field validators and CAPTCHA for verifying the validity of the sender. Quinti Secure Contact Form is easy to install and configure, and uses valid XHTML 1.1.
I have been attacked thousand times by spammers from my contact form, they use robots and take advantage of certain vulnerabilities of the mail forms to send their spam, and fill up my mailbox up to such an extent that they make your mail practically useless.
There are two ways of tackling this problem: Introducing a CAPTCHA validated through JavaScript, as i explain later.
And introducing certain functions in PHP that prevent these attacks, as you will see in the examples below
At the moment, go to the problem.
Main features:
- Invulnerable secure antispam contact form,
- JavaScript field validator in php (to insert multi-language variables and other variables, if you wish)
- Prevent spammers from using your form to send garbage, guaranteed.
- CAPTCHA to avoid Javascript validated Spam
- Easy to install and configure
- Valid XHTML 1.1
<<less
Download (3.5MB)
Added: 2006-03-02 License: Free for non-commercial use Price:
1335 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5