Django
November 17th, 2007 Arsen
Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.
- Open source, BSD license.
Posted in Patterns - Python | No Comments »
November 17th, 2007 Arsen
Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.
Posted in Patterns - Python | No Comments »
November 17th, 2007 Arsen
Zephyr is an MVC (model-view-controller) framework and supports complete separation of business logic layer from presentation layer. It is built using popular and tested libraries in backend.
Posted in Patterns - PHP | 1 Comment »
November 17th, 2007 Arsen
XOAD is a PHP based Ajax/XAP object oriented framework. From the website:
And more:
Awards:
Posted in Patterns - PHP | No Comments »
November 17th, 2007 Arsen
xajax passes Javascript calls directly to PHP functions.
Posted in Patterns - PHP | No Comments »
November 17th, 2007 Arsen
tppAJAX is a lightweight, yet feature-rich PHP and Ajax toolkit that is compatible with PHP versions 4 and 5.
Posted in Patterns - PHP | No Comments »
November 17th, 2007 Arsen
TinyAjax is php5 Ajax library modified and improved from SAJAX (see Multi-Language_Ajax_Frameworks).
Posted in Patterns - PHP | No Comments »
November 17th, 2007 Arsen
Tigermouse is object oriented, LGPL licensed PHP/AJAX framework for development of highly interactive web applications in MVC architecture. Its main principle is to be as much client side processing independent as it is possible to provide high reliability and stability. It requires no to little Javascript coding, no manual callbacks handling and no configuration. Noteworthy features are:
Tigermouse is much more than just a library for binding PHP classes or functions to Javascript ones. It is an abstraction layer that can help you forget about all this mess: XMLHttpRequest, callbacks and URL parameters. See example calculator application in tigermouse:
class MainCtrl extends Ctrl {
public function show() {
$f = new Form();
$f->add(new Input('a'));
$f->add(new Input('b'));
$compute = new Button('compute');
$compute->addListener(
new ClickListener(
new Action('MainCtr/compute', $f->valueReader())
)
);
$f->add($compute);
$f->add(new Label('result'));
return $f;
}
public function compute(FormContext $cx) {
$label = new Label('result');
$label->text = $cx->a + $cx->b;
return $label;
}
}
That’s it. No Javascript as promised.
Posted in Patterns - PHP | No Comments »
November 17th, 2007 Arsen
phpAjaxTags is a port to PHP of famous java tag library “AjaxTags” (SF Page)
Posted in Patterns - PHP | No Comments »
November 17th, 2007 Arsen
PAJAJ is a object oriented Ajax framework written in PHP5 for development of event driven PHP web applications.
Posted in Patterns - PHP | No Comments »
November 17th, 2007 Arsen
Posted in Patterns - PHP | No Comments »