Main > Free Download Search >

Free custom fields software for linux

custom fields

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1890
Crimson Fields 0.5.1

Crimson Fields 0.5.1


Crimson Fields is a tactical war game in the tradition of Battle Isle. more>>
Crimson Fields project is a tactical war game in the tradition of Battle Isle.

The outcome of the war lies in your hands. You decide which units are sent to the front lines, and when to unleash the reserves. Your mission objectives range from defending strategically vital locations to simply destroying all enemy forces in the area. Protect supply convoys or raid enemy facilities to uncover technological secrets or fill your storage bays so you can repair damaged units or build new ones in your own factories. Lead your troops to victory!

Tools are available to create custom maps and campaigns. You can also play the original Battle Isle maps if you have a copy of the game.

You can pit yourself against another human player either in hot-seat mode in front of the same machine or via e-mail, or against the computer.

Crimson Fields is distributed under the terms of the GNU General Public License (GPL). It has been developed and tested on Intel architecture with Linux, but it shouldnt be too hard to make it compile and run on other operating systems as well. So far it has been reported to work with Linux, various flavours of BSD, Sun Solaris, MacOS X, BeOS, and MS Windows.

<<less
Download (0.78MB)
Added: 2007-01-24 License: GPL (GNU General Public License) Price:
1005 downloads
Sort::Fields 0.90

Sort::Fields 0.90


Sort::Fields is a Perl module that can sort lines containing delimited fields. more>>
Sort::Fields is a Perl module that can sort lines containing delimited fields.

SYNOPSIS

use Sort::Fields;
@sorted = fieldsort [3, 2n], @lines;
@sorted = fieldsort +, [-1, -3, 0], @lines;

$sort_3_2n = make_fieldsort [3, 2n], @lines;
@sorted = $sort_3_2n->(@lines);

Sort::Fields provides a general purpose technique for efficiently sorting lists of lines that contain data separated into fields.

Sort::Fields automatically imports two subroutines, fieldsort and make_fieldsort, and two variants, stable_fieldsort and make_stable_fieldsort. make_fieldsort generates a sorting subroutine and returns a reference to it. fieldsort is a wrapper for the make_fieldsort subroutine.

The first argument to make_fieldsort is a delimiter string, which is used as a regular expression argument for a split operator. The delimiter string is optional. If it is not supplied, make_fieldsort splits each line using /s+/.

The second argument is an array reference containing one or more field specifiers. The specifiers indicate what fields in the strings will be used to sort the data. The specifier "1" indicates the first field, "2" indicates the second, and so on. A negative specifier like "-2" means to sort on the second field in reverse (descending) order. To indicate a numeric rather than alphabetic comparison, append "n" to the specifier. A specifier of "0" means the entire string ("-0" means the entire string, in reverse order).

The order in which the specifiers appear is the order in which they will be used to sort the data. The primary key is first, the secondary key is second, and so on.
fieldsort [1, 2], @data is roughly equivalent to make_fieldsort([1, 2])->(@data). Avoid calling fieldsort repeatedly with the same sort specifiers. If you need to use a particular sort more than once, it is more efficient to call make_fieldsort once and reuse the subroutine it returns.

stable_fieldsort and make_stable_fieldsort are like their "unstable" counterparts, except that the items that compare the same are maintained in their original order.

EXAMPLES

Some sample data (in array @data):

123 asd 1.22 asdd
32 ewq 2.32 asdd
43 rewq 2.12 ewet
51 erwt 34.2 ewet
23 erww 4.21 ewet
91 fdgs 3.43 ewet
123 refs 3.22 asdd
123 refs 4.32 asdd

# alpha sort on column 1
print fieldsort [1], @data;

123 asd 1.22 asdd
123 refs 3.22 asdd
123 refs 4.32 asdd
23 erww 4.21 ewet
32 ewq 2.32 asdd
43 rewq 2.12 ewet
51 erwt 34.2 ewet
91 fdgs 3.43 ewet

# numeric sort on column 1
print fieldsort [1n], @data;

23 erww 4.21 ewet
32 ewq 2.32 asdd
43 rewq 2.12 ewet
51 erwt 34.2 ewet
91 fdgs 3.43 ewet
123 asd 1.22 asdd
123 refs 3.22 asdd
123 refs 4.32 asdd

# reverse numeric sort on column 1
print fieldsort [-1n], @data;

123 asd 1.22 asdd
123 refs 3.22 asdd
123 refs 4.32 asdd
91 fdgs 3.43 ewet
51 erwt 34.2 ewet
43 rewq 2.12 ewet
32 ewq 2.32 asdd
23 erww 4.21 ewet

# alpha sort on column 2, then alpha on entire line
print fieldsort [2, 0], @data;

123 asd 1.22 asdd
51 erwt 34.2 ewet
23 erww 4.21 ewet
32 ewq 2.32 asdd
91 fdgs 3.43 ewet
123 refs 3.22 asdd
123 refs 4.32 asdd
43 rewq 2.12 ewet

# alpha sort on column 4, then numeric on column 1, then reverse
# numeric on column 3
print fieldsort [4, 1n, -3n], @data;

32 ewq 2.32 asdd
123 refs 4.32 asdd
123 refs 3.22 asdd
123 asd 1.22 asdd
23 erww 4.21 ewet
43 rewq 2.12 ewet
51 erwt 34.2 ewet
91 fdgs 3.43 ewet

# now, splitting on either literal period or whitespace
# sort numeric on column 4 (fractional part of decimals) then
# numeric on column 3 (whole part of decimals)
print fieldsort (?:.|s+), [4n, 3n], @data;

51 erwt 34.2 ewet
43 rewq 2.12 ewet
23 erww 4.21 ewet
123 asd 1.22 asdd
123 refs 3.22 asdd
32 ewq 2.32 asdd
123 refs 4.32 asdd
91 fdgs 3.43 ewet

# alpha sort on column 4, then numeric on the entire line
# NOTE: produces warnings under -w
print fieldsort [4, 0n], @data;

32 ewq 2.32 asdd
123 asd 1.22 asdd
123 refs 3.22 asdd
123 refs 4.32 asdd
23 erww 4.21 ewet
43 rewq 2.12 ewet
51 erwt 34.2 ewet
91 fdgs 3.43 ewet

# stable alpha sort on column 4 (maintains original relative order
# among items that compare the same)
print stable_fieldsort [4], @data;

123 asd 1.22 asdd
32 ewq 2.32 asdd
123 refs 3.22 asdd
123 refs 4.32 asdd
43 rewq 2.12 ewet
51 erwt 34.2 ewet
23 erww 4.21 ewet
91 fdgs 3.43 ewet

<<less
Download (0.005MB)
Added: 2007-05-21 License: Perl Artistic License Price:
887 downloads
Custom Eclipse Builder 0.1

Custom Eclipse Builder 0.1


The Custom Eclipse Builder is a lightweight Ant-based project to build a company/personal customized Eclipse distribution. more>>
Custom Eclipse Builder is a lightweight Ant-based project to build a company and personal customized Eclipse distribution including company and personal relevant plugins, preferences and settings.
The modern software development process becomes more and more distributed characted. Now, a usual project is not a one-men work more, but a collective work of bunch of people communicating through network. Therefore, its very important that each involved developer stands to the rules and guidelines applied for the project.
There are many tools that makes the development process easy. One of these tools that increases in popularity more and more is Eclipse. The number of companies, organizations or project teams using Eclipse grows permanently. Typically, in such a company a developer takes itself care of downloading and configuring Eclipse and all kinds of Plugins.
Therefore, the more developers using Eclipse within of organization the more different versions, configurations and settings do exist. When a group of developers is working for a project and sharing the projects resources (and this is the typical case) using of different tools and versions may lead to any kinds of conflicts (unfortunately this is the typical case too).
The Custom Eclipse Builder is a very easy way to solve all these problems. After you have installed and configured Builder you can build your own Eclipse distribution each time you wish (e.g. by scheduling a cron job) in just a few minutes. The Builder will download all desired Eclipse- and plugins distributions full automatically.
There is no need to check a new plugins version you wish to include in the distribution is realised. The Custom Eclipse Builder takes care of plugins version management. Once installed and configured you can use Builder over a couple of months without any modifications.
Enhancements:
- This release fixes some minor bugs and supports building distributions based on Eclipse 3.2M1, 3.2M2, and 3.2M3.
<<less
Download (1.2MB)
Added: 2005-11-27 License: GPL (GNU General Public License) Price:
1426 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
Class::Struct::FIELDS 1.1

Class::Struct::FIELDS 1.1


Class::Struct::FIELDS module combine Class::Struct, base and fields. more>>
Class::Struct::FIELDS module combine Class::Struct, base and fields.

SYNOPSIS

(This page documents Class::Struct::FIELDS v.1.1.)
use Class::Struct::FIELDS;
# declare struct, based on fields, explicit class name:
struct (CLASS_NAME => { ELEMENT_NAME => ELEMENT_TYPE, ... });

use Class::Struct::FIELDS;
# declare struct, based on fields, explicit class name
# with inheritance:
struct (CLASS_NAME => [qw(BASE_CLASSES ...)],
{ ELEMENT_NAME => ELEMENT_TYPE, ... });

package CLASS_NAME;
use Class::Struct::FIELDS;
# declare struct, based on fields, implicit class name:
struct (ELEMENT_NAME => ELEMENT_TYPE, ...);

package CLASS_NAME;
use Class::Struct::FIELDS;
# declare struct, based on fields, implicit class name
# with inheritance:
struct ([qw(BASE_CLASSES ...)], ELEMENT_NAME => ELEMENT_TYPE, ...);

package MyObj;
use Class::Struct::FIELDS;
# declare struct with four types of elements:
struct (s => $, a => @, h => %, x => &, c => My_Other_Class);

$obj = new MyObj; # constructor

# scalar type accessor:
$element_value = $obj->s; # element value
$obj->s (new value); # assign to element

# array type accessor:
$ary_ref = $obj->a; # reference to whole array
$ary_element_value = $obj->a->[2]; # array element value
$ary_element_value = $obj->a (2); # same thing
$obj->a->[2] = new value; # assign to array element
$obj->a (2, newer value); # same thing

# hash type accessor:
$hash_ref = $obj->h; # reference to whole hash
$hash_element_value = $obj->h->{x}; # hash element value
$hash_element_value = $obj->h (x); # same thing
$obj->h->{x} = new value; # assign to hash element
$obj->h (x, newer value); # same thing

# code type accessor:
$code_ref = $obj->x; # reference to code
$obj->x->(...); # call code
$obj->x (sub {...}); # assign to element

# regexp type accessor:
$regexp = $obj->r; # reference to code
$string =~ m/$obj->r/; # match regexp
$obj->r (qr/ ... /); # assign to element

# class type accessor:
$element_value = $obj->c; # object reference
$obj->c->method (...); # call method of object
$obj->c (My_Other_Class::->new); # assign a new object

Class::Struct::FIELDS exports a single function, struct. Given a list of element names and types, and optionally a class name and/or an array reference of base classes, struct creates a Perl 5 class that implements a "struct-like" data structure with inheritance.

The new class is given a constructor method, new, for creating struct objects.
Each element in the struct data has an accessor method, which is used to assign to the element and to fetch its value. The default accessor can be overridden by declaring a sub of the same name in the package. (See Example 2.)

Each elements type can be scalar, array, hash, code or class.

<<less
Download (0.018MB)
Added: 2007-07-11 License: Perl Artistic License Price:
835 downloads
Custom Geometry 1.2.0 for Firefox

Custom Geometry 1.2.0 for Firefox


Custom Geometry is an extension which resizes and positions the window according to your settings. more>>
Custom Geometry is an extension which resizes and positions the window according to your settings.
Custom Geometry adds a button to the Firefox status bar that will resize the Firefox window to your specifications. Many other extensions will resize the window, but only to preset dimensions, such as 1024x768 or 800x600. Custom Geometry will set the window to an arbitrary size.
I needed this functionality because I prefer my browser window to be in a particular location and size on my screen. Since Im using Microsoft Windows XP, the prospect of the browser window staying where I want it is dim. A video game, misclick, or even just a popup window (usatoday.com anyone?) will resize the window. Now, a single click gets it back into place.
Instructions:
1. Open the CustomGeometry-1.0.0.xpi file in Firefox 2.0.
2. Choose to install the extension.
3. Restart Firefox when instructed to do so.
4. Open the addons window by clicking "Tools," then "Add-ons."
5. Select "Custom Geometry" from the list.
6. Click the "Options" button.
7. Set the window geometry options that you prefer.
8. Hit "OK" to save your preferences.
9. Click the new icon on the lower right right side of the status bar to apply these settings at any time.
Enhancements:
- Added support for Thunderbird.
- Fixed a case issue causing the icon not to work under case-sensitive filesystems (Linux).
<<less
Download (0.004MB)
Added: 2007-04-27 License: MPL (Mozilla Public License) Price:
910 downloads
Stylish-Custom 0.4.5

Stylish-Custom 0.4.5


Restores the important button, Color/Site Rules menu items, enable/update checks more>>

Stylish-Custom 0.4.5 brings users a convenient Thunderbird extension, with full features and easy installation.
Major Features:

  1. Restores the important button, Color/Site Rules menu items, enable/update checks
  2. Style info listing with quick enable toggle (dbl-click to edit style, can also search within styles)
  3. Import/export styles
  4. Disable all styles then enable them afterwards
  5. Or take a snapshot and restore that
  6. Adds search/replace to edit dialog (ctrl+F, ctrl+R, and F3)
  7. Hides tags area by default (use checkbox to toggle it)
  8. Press ! to type !important (can be changed in edit dialog)
  9. Select and un/comment/merge text
  10. Page button (left click for style page, right for edit page, it also posts the code)
  11. Save & Close
  12. Discard preview

Requirements:

  • Mozilla Thunderbird
  • Stylish


<<less
Added: 2009-07-22 License: GPL v3 Price: FREE
12 downloads
Mail::Field 1.74

Mail::Field 1.74


Mail::Field is a base class for manipulation of mail header fields. more>>
Mail::Field is a base class for manipulation of mail header fields.

SYNOPSIS

use Mail::Field;

$field = Mail::Field->new(Subject, some subject text);
print $field->tag,": ",$field->stringify,"n";

$field = Mail::Field->subject(some subject text);

Mail::Field is a base class for packages that create and manipulate fields from Email (and MIME) headers. Each different field will have its own sub-class, defining its own interface.

This document describes the minimum interface that each sub-class should provide, and also guidlines on how the field specific interface should be defined.

<<less
Download (0.047MB)
Added: 2006-06-29 License: Perl Artistic License Price:
1218 downloads
UnHide fields 0.2 for Firefox

UnHide fields 0.2 for Firefox


UnHide fields provides this extension allow you to view and edit hidden fields content. more>>
UnHide fields provides this extension allow you to view and edit hidden fields content.

In computer science, data that has several parts can be divided into fields. For example, a computer may represent todays date as three distinct fields: the day, the month and the year.

Programming languages usually have a record data type to represent composite data types as a series of fields. An array of boolean values can be represented as a bit field.

<<less
Download (0.013MB)
Added: 2007-04-13 License: MPL (Mozilla Public License) Price:
926 downloads
CSE-Tool 1.0.0

CSE-Tool 1.0.0


CSE-Tool allows you to easily deploy a Google Custom Search Engine. more>>
CSE-Tool allows you to easily deploy a Google Custom Search Engine by copying and pasting a few lines of code provided to you by Google.

CSE-Tool doesnt require a database.
<<less
Download (0.003MB)
Added: 2006-11-23 License: GPL (GNU General Public License) Price:
1067 downloads
fields::aliased 1.05

fields::aliased 1.05


fields::aliased is a Perl module that can create aliases for object fields. more>>
fields::aliased is a Perl module that can create aliases for object fields.

SYNOPSIS

package MyPackage;
use strict;
use fields qw($scalar @array %hash);

sub new {
my $class = shift;
my $self = fields::new($class);

return $self;
}

sub mymethod {
my MyPackage $self = shift;
use fields::aliased qw($self $scalar @array %hash);

$scalar = 1;
@array = (2 .. 4);
%hash = (one => 1, two => 2);
}

This module is a companion to the fields module, which allows efficient handling of instance variables with checking at compile time. It goes one step further and actually creates lexical aliases to the instance values, which can make code not only easier to type, but easier to read as well.

Declarations

You declare the fields using the fields pragma, as always.

use fields qw($scalar @array %hash nosigil);

Each field name may be preceded by a type sigil to indicate which kind of variable it is. Names without the type sigil are treated as scalars.

For names beginning with an underscore, see "PRIVATE FIELDS" below.

Constructors

You call fields::new to create the object.

my $self = fields::new($class);

Usage

In each method that uses the individual fields, you add a line similar to the following:

use fields::aliased qw($self $scalar @array %hash nosigil);

That is, list the variable being used for the object reference, and then the names of the fields that you are going to use in this method. fields::aliased takes care of declaring the appropriate Perl lexical variables and linking them to the appropriate field. You only need to specify the fields you are actually going to use, including any inherited from superclasses.

<<less
Download (0.008MB)
Added: 2007-05-14 License: Perl Artistic License Price:
894 downloads
Field Designer 0.6.2

Field Designer 0.6.2


The Field Designer is a program for designing sub-air paintball fields. more>>
The Field Designer is a program for designing sub-air paintball fields. Field Designer helps you to prepare for a paintball tournament or fun game, or simply to get an overview of a field. Field owners can use it to provide online layouts of their fields.
Main features:
- Delete Figure
- Editable properties
- Default XML Encoding
- Tippie figure
- Tombstone figure
- Export a JPG picture of the field
- Povray Export
- Copy and Paste
- Context menu
- Tactics plugin
- Rotate figures
- 3D field walking
Enhancements:
- A tactics editor was added, allowing you to develop your tactics directly in the field designer.
- Real units of measure can be used, so 32px will represent whatever unit of measure you define.
- When you create a new field layout, you can set the size of the field, which will be shown while drawing the field.
- Fields can be exported to SVG, BMP, JPEG, or PDF.
- The last page of the field creation wizard does not work correctly under Win32.
<<less
Download (15MB)
Added: 2006-02-27 License: Eclipse Public License Price:
1338 downloads
Qute 3++ (custom mod) 1.4.7.20090313

Qute 3++ (custom mod) 1.4.7.20090313


Simple and unobtrusive theme with clear, colorful icons. more>>
Qute 3++ (custom mod) 1.4.7.20090313 offers you a plain and unobtrusive theme for Firefox with clear, colorful icons. This is recreated from the original Qute 3 one, to work on Firefox 3.0 and 3.1 nightlies.

Enhancements: Not many changes in this version, updated the base files to the latest 3.1 branch nightly build, and updated the compat. to include b4pre.

Requirements: Mozilla Firefox

<<less
Added: 2009-03-16 License: MPL Price: FREE
1087 downloads
phpGuestbook 0.0.2

phpGuestbook 0.0.2


phpGuestbook provides a PHP3 application that allows you to easily include a guestbook into your Web site. more>>
phpGuestbook provides a PHP3 application that allows you to easily include a guestbook into your Web site.
Main features:
- fields setup configuration
- field-required setup configuration
- guestbook administration tools for admin
- visible/invisible mode for message
<<less
Download (0.022MB)
Added: 2007-03-15 License: GPL (GNU General Public License) Price:
956 downloads
paFileDB 3.6

paFileDB 3.6


paFileDB is a script that allows webmasters to have a database of files for download on their site. more>>
paFileDB is a script that allows webmasters to have a database of files for download on their site.
paFileDB is designed to allow webmasters have a database of files for download on their site. To add a download, all you do is upload the file using FTP or whatever method you use, log into paFileDBs admin center, and fill out a form to add a file. paFileDB lets you edit and delete the files too.
No more messing with a bunch of HTML pages for a file database on your site! Using speedy MySQL for storing data, and powerful PHP for processing everything, paFileDB is one of the best and easiest ways to manage files!
Main features:
- MySQL Backend
- Categories and Subcategories
- Password-Protected Admin Center with Multiple Admin Accounts
- Counting of Downloads
- Search Database
- Post Icons
- License Agreements Before Downloading
- Template system
- Language Files
- Custom Fields
- View All Files Option
- Rate Files Option
- File Mirrors
- Broken Link Reporting
- File Commenting System
- User Registrations
- File Tagging
- Ability to add Top Downloaded Files and New Files lists on your site (Please download the toplist plugin here to add this functionality.)
<<less
Download (0.97MB)
Added: 2007-04-28 License: Free To Use But Restricted Price:
1055 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5