| js-app documentation | Contained in the js-app distribution. |
JavaScript::App - A framework for building dynamic widgets or full applications in Javascript
see the documentation for "js-app" ("man js-app" or "perldoc js-app")
"js-app" is a Javascript Application framework with which you can build rich web applications and widgets embeddable in web pages.
* Author: Stephen Adkins <stephen.adkins@officevision.com> * License: This is free software. The Javascript is licensed under the LGPL.
| js-app documentation | Contained in the js-app distribution. |
############################################################################# ## $Id: App.pm,v 1.1 2006/03/11 15:36:40 spadkins Exp $ ############################################################################# package JavaScript::App; $VERSION = (q$Revision: 0 $ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by cvs use strict;
sub new { my $this = {}; bless $this, "JavaScript::App"; return($this); } 1;