Main > Free Download Search >

Free forms and surfaces software for linux

forms and surfaces

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1546
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
Form Spam Bot Blocker 0.2

Form Spam Bot Blocker 0.2


Form Spam Bot Blocker is a PHP class that can generate forms that prevent submission by spam robots. more>>
Form Spam Bot Blocker is a PHP class that can generate forms that prevent submission by spam robots without requiring human users to enter special values.

The project generates hidden inputs for forms that have special values that are verified on the server after the form is submitted to eventually detect whether the form was sent by a spam robot.

The class can generate an hidden input that contains an encoded value of the user browser, user computer IP address and the current time.

The class verifies whether these browser name and IP address are still the same, and also whether the form is being submitted by a normal time interval after it was create, like when it is submitted by a real human user.

The class also generates a text input that are invisible for the user. A human user would not fill this input. If the input is submitted with a value, it was certainly a robot.

When the class detects a situation that demonstrates the form was submitted by a robot, the application should not accept the form submission.

<<less
Download (MB)
Added: 2007-05-01 License: GPL (GNU General Public License) Price:
908 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
Formitable 1.1

Formitable 1.1


Formitable is a PHP class used to ease the creation of submit-ready HTML forms from MySQL database tables. more>>
Formitable is a PHP class used to ease the creation of submit-ready HTML forms from MySQL database tables.
Formitable project analyzes the fields of a given table and outputs the best input type for each (e.g. enum type becomes radio buttons or select, set type becomes checkboxes or multiselect). Data is automatically inserted into the table upon form submission.
Main features:
- Output a complete form in a few lines of code
- Validate data via regular expressions and provide custom feedback
- Support for normalized data/lookup tables
- Easily retrieve and update existing records
- Outputs attributes such as MAXLENGTH to reflect your table design
- Customize all aspects of output, integrate forms into your layout
- Full CSS styling
- Accessibility support such as labels, fieldsets, legends and more
Enhancements:
- Forms can now be printed using a template with printFromTemplate.
- Custom template delimiters can be set using setTemplateDelimiters.
- Bugs were fixed.
<<less
Download (0.018MB)
Added: 2006-11-21 License: GPL (GNU General Public License) Price:
1068 downloads
FormFox 1.6

FormFox 1.6


FormFox is an extension which displays the the site to which the information youve entered is being sent. more>>
FormFox is an extension which displays the the site to which the information youve entered is being sent.

Do you know where your form information is going? This extension displays the form action (the site to which the information youve entered is being sent.)

In any place where you can enter data, from search boxes to order forms, mouse over the final Submit button to reveal the destination.

<<less
Download (0.003MB)
Added: 2007-04-11 License: MPL (Mozilla Public License) Price:
1003 downloads
mod_form 1.0

mod_form 1.0


mod_form is a utility to decode data submitted from Web forms. more>>
mod_form is a utility to decode data submitted from Web forms. It deals with both GET and POST methods where the data are encoded using the default content type application/x-www-form-urlencoded.

mod_form does not decode multipart/form-data (file upload) forms: for those you should use mod_upload.

Usage:

When mod_form is active, form data will be decoded to an apr_table_t*. Modules can access the table using the optional function form_data, or individual form fields using form_value:

#include "mod_form.h"

some_func(request_rec* r) {
apr_table_t* (*form_vars)(request_rec*) ;
apr_table_t* (*form_lookup)(request_rec*, const char*) ;
apr_table_t* form_data ;
const char* val ;
const char* key = "some-form-field" ;

/* get the whole table */
form_vars = APR_RETRIEVE_OPTIONAL_FN(form_data) ;
if ( form_vars ) {
form_data = form_vars(r) ;
}

/* or get individual values */
form_lookup = APR_RETRIEVE_OPTIONAL_FN(form_value) ;
if ( form_lookup ) {
val = form_lookup(r, key) ;
}
}

<<less
Download (0.009MB)
Added: 2006-05-16 License: GPL (GNU General Public License) Price:
1256 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
PHP HTML Form Generation and Validation Class 1.0 Beta 3

PHP HTML Form Generation and Validation Class 1.0 Beta 3


PHP HTML Form Generation and Validation Class is a PHP class for easy HTML form generation and validation. more>>
PHP HTML Form Generation and Validation Class is a PHP class for easy HTML form generation and validation.

If youre a web developer you know that designing HTML forms and writing the PHP code for their validation is a really dull task. And if youre like me you mustve looked around the web to see what you can find in order to ease this task.

I made this class first of all because being addicted to coding, I just had to. But what had me really thinking, after looking at some of others people work was: "cool, but what if I have to put the label on top of the text box and not to the left of it? or what if I have to put three controls in a row?" because the vast majority of the HTML form processors Ive seen were just adding the controls one beneath the other and as a webdeveloper I can tell you, besides the login window, I was never asked to build a form where all the controls are just one beneath the other... Now, I am sure that in some of them there were workaround for these things but I wanted it really simple. Oh, and another thing: I wanted the error messages generated by the form validation to be wherever I wanted not just on top, not just on bottom. I want them wherever I feel like theyre looking ok!

So thats why this PHP class is as straightforward as it gets: it provides an easy and intuitive way of handling both HTML form design - based on templates, where you can design your form any way you want, and basic server-side form validation. As this is a BETA version, currently there are only a few validation rules available but you can easily write custom validation rules, both for server-side and client-side.

It provides all the basic controls available in an HTML form plus a date picker control.

In order for the date control to work you must also download the PHP Date Picker Class from the downloads section and configure the PHP Form Generation and Validation Class by setting the datePickerPath property to point to the date picker class!

Youll get a better picture of what Im trying to say by downloading the class and running the example and browsing through the documentation

Suggestions, comments and requests are welcomed.

The code is heavily documented so you can easily understand every aspect of it.

<<less
Download (0.13MB)
Added: 2007-02-19 License: GPL (GNU General Public License) Price:
981 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
Raster3D 2.7c

Raster3D 2.7c


Raster3D is a powerful set of tools for generating high quality raster images of proteins or other molecules. more>>
Raster3D is a powerful set of tools for generating high quality raster images of proteins or other molecules.
The core program renders spheres, triangles, cylinders, and quadric surfaces with specular highlighting, Phong shading, and shadowing.
It uses an efficient software Z-buffer algorithm that is independent of any graphics hardware.
Main features:
- Raster3D uses a fast Z-buffer algorithm to produce high quality pixel images featuring one shadowing light source, additional non-shadowing light sources, specular highlighting, transparency, and Phong shaded surfaces. Output is in the form of a pixel image with 24 bits of color information per pixel plus one matte channel.
- Raster3D does not depend on graphics hardware. The rendering program currently supports output to files in AVS, JPEG, TIFF, PNG and SGI libimage format. To actually view or manipulate the images produced, you must also have installed an image viewing package (e.g. John Cristys ImageMagick or the SGI libimage utilities). The Raster3D rendering program can be integrated with ImageMagick to expand the flexibility of output formats and interactive use.
- Ancillary programs are provided for the generation of object descriptions based on atomic coordinates stored in PDB format. Although Raster3D is not intended as a general purpose ray-tracing package, nothing in the rendering process is specific to molecular graphics. Some of the algorithms used have been chosen for speed rather than generality, however. They work well for molecular graphics images, but possibly would produce odd results if used for very different types of image.
- Raster3D currently supports rendering six object types: spheres, triangles, planes, smooth-ended cylinders, round-ended cylinders, and quadric surfaces. It also supports the definition of material properties (transparency, bounding planes, color, reflectivity) that apply to groups of objects within the rendered scene.
Enhancements:
- changed the default output format to PNG for all programs
<<less
Download (MB)
Added: 2006-08-31 License: Other/Proprietary License Price:
1149 downloads
phpForm 0.0.3

phpForm 0.0.3


phpForm provides a PHP3 application that allows you to easily create Web forms. more>>
phpForm provides a PHP3 application that allows you to easily create Web forms.

phpForm is a PHP3 script that allows you to easily create Web forms. It allows you to create, administer, preview, and log forms.

It also includes a simple function for including a form into a Web page.

<<less
Download (0.022MB)
Added: 2007-03-15 License: GPL (GNU General Public License) Price:
954 downloads
Tux Racer 0.61

Tux Racer 0.61


Tux Racer is a very fun arcade game for Linux. more>>
Tux Racer is a very fun arcade game for Linux.
The main goal in Tux Racer is to have fun! Race down mountainous terrain as quickly as possible, while collecting herring to increase your score!
Main features:
- Fun, easy to learn
- Exciting 3D courses
- Sophisticated physics result in thrilling rides down the mountains
- Collect herring while avoiding obstacles for high scores
- Race over a variety of surfaces, including fluffy snow and slick ice
- Race in various weather conditions and lighting conditions
- Create your own courses using any paint program such as The GIMP (no 3D modeller required)
- Suitable for all ages.
<<less
Download (0.62MB)
Added: 2005-12-21 License: GPL (GNU General Public License) Price:
1425 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
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
Tk::form 804.027

Tk::form 804.027


Tk::form is a Perl module with a geometry manager based on attachment rules. more>>
Tk::form is a Perl module with a geometry manager based on attachment rules.

SYNOPSIS

$widget->form?(args)?
$widget->formOption?(args)?

The form method is used to communicate with the form Geometry Manager, a geometry manager that arranges the geometry of the children in a parent window according to attachment rules. The form geometry manager is very flexible and powerful; it can be used to emulate all the existing features of the Tk packer and placer geometry managers (see pack, place). The form method can have any of several forms, depending on Option:

$slave->form?(options)?

Sets or adjusts the attachment values of the slave window according to the -option=>value argument pairs.

-b => attachment

Abbreviation for the -bottom option.

-bottom => attachment

Specifies an attachment for the bottom edge of the slave window. The attachment must specified according to "SPECIFYING ATTACHMENTS" below.

-bottomspring => weight

Specifies the weight of the spring at the bottom edge of the slave window. See "USING SPRINGS" below.

-bp => value

Abbreviation for the -padbottom option.

-bs => weight

Abbreviation for the -bottomspring option.

-fill => style

Specifies the fillings when springs are used for this widget. The value must be x, y, both or none.

-in => $master

Places the slave window into the specified $master window. If the slave was originally in another master window, all attachment values with respect to the original master window are discarded. Even if the attachment values are the same as in the original master window, they need to be specified again. The -in flag, when needed, must appear as the first flag of options. Otherwise an error is generated.

-l => attachment

Abbreviation for the -left option.

-left => attachment

Specifies an attachment for the left edge of the slave window. The attachment must specified according to "SPECIFYING ATTACHMENTS" below.

-leftspring => weight

Specifies the weight of the spring at the left edge of the slave window. See "USING SPRINGS" below.

-lp => value

Abbreviation for the -padleft option.

-ls => weight

Abbreviation for the -leftspring option.

-padbottom => value

Specifies the amount of external padding to leave on the bottom side of the slave. The value may have any of the forms acceptable to Tk_GetPixels.

-padleft => value

Specifies the amount of external padding to leave on the left side of the slave.

-padright => value

Specifies the amount of external padding to leave on the right side of the slave.

-padtop => value

Specifies the amount of external padding to leave on the top side of the slave.

-padx => value

Specifies the amount of external padding to leave on both the left and the right sides of the slave.

-pady => value

Specifies the amount of external padding to leave on both the top and the bottom sides of the slave.

-r => attachment

Abbreviation for the -right option.

-right => attachment

Specifies an attachment for the right edge of the slave window. The attachment must specified according to "SPECIFYING ATTACHMENTS" below.

-rightspring => weight

Specifies the weight of the spring at the right edge of the slave window. See "USING SPRINGS" below.

-rp => value

Abbreviation for the -padright option.

-rs => weight

Abbreviation for the -rightspring option.

-t => attachment

Abbreviation for the -top option.

-top => attachment

Specifies an attachment for the top edge of the slave window. The attachment must specified according to "SPECIFYING ATTACHMENTS" below.

-topspring => weight

Specifies the weight of the spring at the top edge of the slave window. See "USING SPRINGS" below.

-tp => value

Abbreviation for the -padtop option.

-ts => weight

Abbreviation for the -topspring option.

$master->formCheck

This method checks whether there is circular dependency in the attachments of the masters slaves (see "CIRCULAR DEPENDENCY" below). It returns the Boolean value TRUE if it discover circular dependency and FALSE otherwise.

$slave->formForget

Removes the slave from its master and unmaps its window. The slave will no longer be managed by form. All attachment values with respect to its master window are discarded. If another slave is attached to this slave, then the attachment of the other slave will be changed to grid attachment based on its geometry.

$master->formGrid?(x_size, y_size)?

When x_size and y_size are given, this method returns the number of grids of the $master window in a pair of integers of the form (x_size, y_size). When both x_size and y_size are given, this method changes the number of horizontal and vertical grids on the master window.

$slave->formInfo?(-option)?

Queries the attachment options of a slave window. -option can be any of the options accepted by the form method. If -option is given, only the value of that option is returned. Otherwise, this method returns a list whose elements are the current configuration state of the slave given in the same option-value form that might be specified to form. The first two elements in this list list are "-in=>$master" where $master is the slaves master window.

$master->formSlaves

Returns a list of all of the slaves for the master window. The order of the slaves in the list is the same as their order in the packing order. If master has no slaves then an empty string is returned.

<<less
Download (5.7MB)
Added: 2007-07-05 License: Perl Artistic License Price:
842 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5