Tigermouse

Tigermouse

Tigermouse is an Ajax framework for web applications development in PHP scripting language.

Goal

Tigermouse aims to be high quality development tool that speeds up and makes more easy the process of software prototyping, modelling, creation, reuse and refactoring. It is best suited for developing Rich Internet Applications in Model-View-Controller architecture. Its main design principle is to keep business logic processing at server side to stay as much in control as possible. Other notable feature is that Tigermouse abstracts out JavaScript used for XMLHttpRequest, Ajax callback functions, DOM events handling and user interface manipulation.

Features

Unlike many other frameworks Tigermouse is not inspired by Rails, however it shares the concepts of MVC architecture and the active record design pattern. The most important features are:

* MVC architecture
* full native Ajax support with requests queuing and expiring
* Active Record implementation for CRUD operations
* DataSource layer for large data sets reading from different sources (e.g. database, XML files, PHP arrays)
* SWT/GTK#/Qt inspired user interface implementation based on Smarty template system
* JavaScript encapsulation
* extensible support for internationalization
* pluggable input/output filters (e.g. Role Based Access Control System)
* built-in debugging, logging and profiling tools

Example

See simple addition-only calculator written in Tigermouse showing its Ajax capabilities. public function show() {

$a = new Input('a'); $b = new Input('b'); $result = new Label('result');

$button = new Button(); $button->addListener( new ClickListener( new Action('MainCtrl/compute', array($a->valueReader(), $b->valueReader())) ) );

$v = new View(); $v->add($a); $v->add($b); $v->add($button); $v->add($result);

return $v;

}

public function compute($a, $b) {

$result = new Label('result'); $result->text = ($a + $b); return $result;

}

}?>

Project status

Tigermouse is a project in development stage. The latest version is Developer Release 1.7 and is considered to be Alpha quality code. Please consult with development team before using in real life project.

License

Tigermouse is a free software and open source project developed via SourceForge.net development platform. It is distributed under terms of GNU Lesser General Public License version 2 or newer.

ee also

* Comparison of web application frameworks
* [http://tigermouse.epsi.pl Tigermouse project home page]
* [http://sourceforge.net/projects/tigermouse Tigermouse project SourceForge.net page]


Wikimedia Foundation. 2010.

Игры ⚽ Поможем написать реферат

Look at other dictionaries:

  • List of web application frameworks — This is a list of notable web application frameworks, used for creating web applications. Client side ActionScript * Cairngorm * PureMVCJavaScript* Backbase * CJAX * Clean AJAX * Dojo Toolkit * Echo * Ext * [http://www.gapjumper.com/ Gapjumper] * …   Wikipedia

  • List of Ajax frameworks — This is a list of notable Ajax frameworks, used for creating web applications with a dynamic link between the client and the server. JavaScriptJavaScript Frameworks are browser side frameworks very commonly used in Ajax development. There are… …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”