Main > Free Download Search >

Free position class software for linux

position class

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3054
Exception::Class 1.23

Exception::Class 1.23


Exception::Class is a Perl module that allows you to declare real exception classes in Perl. more>>
Exception::Class is a Perl module that allows you to declare real exception classes in Perl.

SYNOPSIS

use Exception::Class
( MyException,

AnotherException =>
{ isa => MyException },

YetAnotherException =>
{ isa => AnotherException,
description => These exceptions are related to IPC },

ExceptionWithFields =>
{ isa => YetAnotherException,
fields => [ grandiosity, quixotic ],
alias => throw_fields,
},
);

# try
eval { MyException->throw( error => I feel funny. ) };

my $e;
# catch
if ( $e = Exception::Class->caught(MyException) )
{
warn $e->error, "n", $e->trace->as_string, "n";
warn join , $e->euid, $e->egid, $e->uid, $e->gid, $e->pid, $e->time;

exit;
}
elsif ( $e = Exception::Class->caught(ExceptionWithFields) )
{
$e->quixotic ? do_something_wacky() : do_something_sane();
}
else
{
$e = Exception::Class->caught();
ref $e ? $e->rethrow : die $e;
}

# use an alias - without parens subroutine name is checked at
# compile time
throw_fields error => "No strawberry", grandiosity => "quite a bit";

Exception::Class allows you to declare exception hierarchies in your modules in a "Java-esque" manner.

It features a simple interface allowing programmers to declare exception classes at compile time. It also has a base exception class, Exception::Class::Base, that can be easily extended.

It is designed to make structured exception handling simpler and better by encouraging people to use hierarchies of exceptions in their applications, as opposed to a single catch-all exception class.

This module does not implement any try/catch syntax. Please see the "OTHER EXCEPTION MODULES (try/catch syntax)" section for more information on how to get this syntax.

<<less
Download (0.016MB)
Added: 2007-05-23 License: Perl Artistic License Price:
884 downloads
PHP Greeting card class 1.1

PHP Greeting card class 1.1


PHP Greeting card class can be used to compose and send greeting cards by email. more>>
PHP Greeting card class can be used to compose and send greeting cards by email.

PHP Greeting card class can compose and send an email message with a greeting either in text, in HTML with an image, or in HTML with Flash content.

The HTML version of the card may include a greeting picture.

<<less
Download (0.95MB)
Added: 2006-12-21 License: GPL (GNU General Public License) Price:
1043 downloads
Calendario Class 1.0

Calendario Class 1.0


Calendario Class provides a PHP class that is useful for creating calendars and organizers. more>>
Calendario Class provides a PHP class that is useful for creating calendars and organizers.
Calendario Class is a PHP class that helps you to create calendar and organizers.
Its highly configurable, letting you choose how many days are in a week, when a week starts, the details of the HTML output, and so on.
It also knows about holidays.
Enhancements:
- Added holidays functionality
<<less
Download (0.096MB)
Added: 2007-03-16 License: LGPL (GNU Lesser General Public License) Price:
956 downloads
PHP ImageMagick Class 1.0

PHP ImageMagick Class 1.0


PHP ImageMagick Class is a class for processing images with ImageMagick. more>>
PHP ImageMagick Class is a class for processing images with ImageMagick. This PHP Class makes it possible to process images in a very easy way.
To scale an image to 640x480 when its bigger youy can do this:
include(imagemagick.class.php);
$im = new Imagemagick($targetdir);
$im->Resize(640, 480, keep_aspect);
$im->Save();
$im->CleanUp();
?>
Enhancements:
- retrieve image data
- flip
- dither
- monochrome
- negate
- rotate
- blur
- draw frame
- resize
- square
- crop
- convert
- save
<<less
Download (0.005MB)
Added: 2006-07-14 License: GPL (GNU General Public License) Price:
712 downloads
Validate_fields Class 1.34

Validate_fields Class 1.34


Validate_fields Class is an easy-to-use form field validation PHP script. more>>
Validate_fields Class is an easy-to-use form field validation PHP script. This class can be used to validate database inputs or mail forms.
It can validate simple text, numbers, dates, urls, email addresses, and the presence of HTML tags. Invalid form fields will be reported inside a detailed error message.
Enhancements:
- A small improvement in the create_msg() method makes it possible to switch between the XHTML version and the simple HTML version.
- In the fields array one key was named "name", and it has been renamed to "value" to make it more clear.
- The variable declarations at the beginning of the validation method was removed.
- Because the value of a checkbox (radio) type field is only available if the element is checked, there are new functions to validate this elements.
<<less
Download (0.008MB)
Added: 2006-02-21 License: GPL (GNU General Public License) Price:
1340 downloads
DB_cart Class 1.13

DB_cart Class 1.13


DB_cart Class is a MySQL shopping cart script that can be used with third party product catalogues and membership systems. more>>
DB_cart Class is a MySQL shopping cart script that can be used with third party product catalogues and membership systems. The MySQL database structure is neutral to existing systems.
DB_cart Class can handle the shopping cart (add, update, and empty) and checkout process (set the shipment address and email the order).
For existing cart users, the shopping cart is still available upon the users next visit and is visible by checkout. The last option is configurable togther with a time period.
Enhancements:
- There are modifications and improvements inside the main class file, several examples, and the table structure has been extended.
- There two additional fields for the shipment values (name2 and address2).
- All messages are available in German, English, and Dutch.
- The standard text inside the email messages is in external files now; this content is parsed inside the improved email method.
<<less
Download (0.035MB)
Added: 2006-06-16 License: BSD License Price:
1227 downloads
PHP JavaScript Tooltip Generator Class 1.1

PHP JavaScript Tooltip Generator Class 1.1


PHP JavaScript Tooltip Generator Class is a PHP class that can generate JavaScript tooltips. more>>
PHP JavaScript Tooltip Generator Class is a PHP class that can generate JavaScript tooltips. The project works on all major browsers, but transparency is not supported on Opera.
In Internet Explorer, the tooltips show above HTML SELECT elements as they should. The appearance of the tooltips is template driven. Only onmouseover/onmousemove events need to be sepcified, not onmouseout.
Further suggestions, comments and requests are welcommed.
Id also really appreciate if you could send me links to the web pages where you are using the class so I can give them as refference and convince more people to use it. Thanks!
The code is heavily documented so you can easily understand every aspect of it
Enhancements:
- in Firefox, the tooltips were showing up in the right position only the first time; after that, the tooltips would show in the top left corner of the screen.
- "Sticky" tooltips can now be created (tooltips that follow the mouse cursor) by calling the "show" method on the onmousemove event rather than on the onmouseover event.
- In Internet Explorer, the vertical scrollbar no longer appears if a tooltip is shown.
- Automatic tooltip re-positioning has been improved in order to keep the tooltip in the visible part of the browser window if it would "flow" outside.
- There is some code cleanup.
<<less
Download (0.047MB)
Added: 2006-11-15 License: Free for non-commercial use Price:
1080 downloads
KinoSearch::Util::Class 0.13

KinoSearch::Util::Class 0.13


KinoSearch::Util::Class is a Perl class building utility. more>>
KinoSearch::Util::Class is a Perl class building utility.
PRIVATE CLASS
This is a private class and the interface may change radically and without warning. Do not use it on its own.
SYNOPSIS
package KinoSearch::SomePackage::SomeClass;
use base qw( KinoSearch::Util::Class );
BEGIN {
__PACKAGE__->init_instance_vars(
# constructor params / members
foo => undef,
bar => {},
# members
baz => {},
);
}
KinoSearch::Util::Class is a class-building utility a la Class::Accessor, Class::Meta, etc. It provides four main services:
- A mechanism for inheriting instance variable declarations.
- A constructor with basic argument checking.
- Manufacturing of get_xxxx and set_xxxx methods.
- Convenience methods which help in defining abstract classes.
<<less
Download (0.21MB)
Added: 2006-09-02 License: Perl Artistic License Price:
1147 downloads
PHP HTML Graph Class 1.0

PHP HTML Graph Class 1.0


PHP HTML Graph Class is a class for drawing vertical bar graphs using only HTML and CSS. more>>
PHP HTML Graph Class is a class for drawing vertical bar graphs using only HTML and CSS. Simple and grouped bars can be created. You can change everything regarding the looks as the output is template-driven.
On the fly, you can change the size of graph, the color of all or individual bars, add labels, a title, and footnotes, or customize the CSS style of all elements. The width and height of bars can be specified in pixels or percentages. The code is heavily documented.
Enhancements:
- In some PHP versions, there were some issues regarding passing variables by reference.
- The class would produce no output (nor errors) in PHP versions lower than 5 due to the different implementations of PHPs get_class() function in these versions.
<<less
Download (MB)
Added: 2006-11-14 License: Free for non-commercial use Price:
1077 downloads
WebServerInfo PHP class 1.0.0

WebServerInfo PHP class 1.0.0


WebServerInfo PHP class is intended for developer who create software that will run on different web servers. more>>
WebServerInfo PHP class is intended for developer who create software that will run
on different web servers. The project gives a developer a consistent interface
for accessing web servers variables.

Usage:

You have following options:

Option #1
require_once("WebServerInfo.class.php");
$obj = new WebServerInfo();
print $_SERVER[DOCUMENT_ROOT];

Option #2
require_once("WebServerInfo.class.php");
$obj = new WebServerInfo();
print $obj->get(DOCUMENT_ROOT);

Option #3
uncomment the 3rd line from WebServerInfo.class.php
and all you have to do is require the WebServerInfo.class.php class.

Note:
The constructor of WebServerInfo class overrides $_SERVER variable and
variables can be accessed as usual way.


Following base variables are exported if they do not exist.

REQUEST_URI
REDIRECT_URL
DOCUMENT_ROOT
SERVER_SIGNATURE
SERVER_ADDR
SCRIPT_FILENAME
<<less
Download (0.013MB)
Added: 2006-11-22 License: LGPL (GNU Lesser General Public License) Price:
1067 downloads
Games::AlphaBeta::Position 0.4.6

Games::AlphaBeta::Position 0.4.6


Games::AlphaBeta::Position is a base Position class for use with Games::AlphaBeta. more>>
Games::AlphaBeta::Position is a base Position class for use with Games::AlphaBeta.

SYNOPSIS

package My::GamePos;
use base qw(Games::AlphaBeta::Position);

sub apply { ... }
sub endpos { ... } # optional
sub evaluate { ... }
sub findmoves { ... }

package main;
my $pos = My::GamePos->new;
my $game = Games::AlphaBeta->new($pos);

Games::AlphaBeta::Position is a base class for position-classes that can be used with Games::AlphaBeta. It inherits most of its methods from Games::Sequential::Position; make sure you read its documentation.

This class is provided for convenience. You dont need this class in order to use Games::AlphaBeta. It is, however, also possible to make use of this class on its own.

<<less
Download (0.012MB)
Added: 2007-01-03 License: Perl Artistic License Price:
1026 downloads
Games::Sequential::Position 0.4.6

Games::Sequential::Position 0.4.6


Games::Sequential::Position is a base Position class for use with Games::Sequential. more>>
Games::Sequential::Position is a base Position class for use with Games::Sequential.

SYNOPSIS

package My::GamePos;
use base Games::Sequential::Position;

sub init { ... } # setup initial state
sub apply { ... }

package main;
my $pos = My::GamePos->new;
my $game = Games::Sequential->new($pos);

Games::Sequential::Position is a base class for position-classes that can be used with Games::Sequential. This class is provided for convenience; you dont need this class to use Games::Sequential. It is also possible to use this class on its own.

<<less
Download (0.012MB)
Added: 2007-01-03 License: Perl Artistic License Price:
1025 downloads
Access_user Class 1.92

Access_user Class 1.92


Access_user Class is an easy to use system for protecting pages and registering users. more>>
Access_user Class is an easy to use system for protecting pages and registering users. The main features are user login, user registration, page protection, forgotten password recovery, and email-based account activation.
The class is powered by MySQL and PHP sessions. Inside the package are examples for all primary methods.
Enhancements:
- Its now possible to store the session data in your database.
- This is much safer if you use sessions on a shared hosting server.
- The password is always encoded with MD5 now.
- session_destroy() was added to the logout method.
- The links used in the email messages are now double MD5-encoded.
<<less
Download (0.036MB)
Added: 2006-10-20 License: GPL (GNU General Public License) Price:
1100 downloads
Ionflux Tools Class Library 0.2.3

Ionflux Tools Class Library 0.2.3


The Ionflux Tools Class Library is a lightweight multi-platform C++ framework. more>>
The Ionflux Tools Class Library is a lightweight multi-platform C++ framework designed for rapid development of applications in a client/server architecture.
The Ionflux Tools Class Library is released under the GNU General Public License, meaning it is free software! (See LICENSE in the distribution for more information.)
Main features:
- Memory management (object pools, reference counting, parent objects).
- Logging/console output facility.
- Command line parsing.
- Configuration file I/O.
- Database interface.
- IO multiplexing.
- Generic, serializable tree data structure.
- Perl-compatible regular expression pattern matching.
- String Filters.
- Template Engine, including Class templates.
- Advanced date and time handling (not restricted to the POSIX epoch, supporting time zone conversions).
- Generic byte string tokenizer.
- TCP socket API.
- Generic TCP client and server, message based client and server, and authenticated client and server.
- Support for the Cairo vector graphics API (http://www.cairographics.org/).
- Miscellaneous helpful and easy to use utility functions.
<<less
Download (0.24MB)
Added: 2006-03-15 License: GPL (GNU General Public License) Price:
1318 downloads
PHP Advanced Graphing Class 1.4

PHP Advanced Graphing Class 1.4


PHP Advanced Graphing Class is a PHP class that can be used to generate line, bar, and 2D/3D pie graphs. more>>
PHP Advanced Graphing Class is a PHP class that can be used to generate line, bar, and 2D/3D pie graphs from multiple data sets. PHP Advanced Graphing Class offers many style and data formatting options.
The graphs can be built from data defined with PHP code or with data imported from XML or CSV files. It can use custom colors, custom data point shapes or images, custom end arrows, an optional inline format, a custom graph scale, etc.
The graphs can be generated in PNG format either to a file or served as the current script output.
Enhancements:
- Bar charts and 2D/3D pie charts were added.
<<less
Download (MB)
Added: 2006-04-10 License: Public Domain Price:
1298 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5