public
Description: Fleegix.js provides an extremely lightweight, cross-browser set of JavaScript tools for building dynamic Web-app UIs.
Homepage: http://js.fleegix.org
Clone URL: git://github.com/mde/fleegix-js-javascript-toolkit.git
name age message
file ChangeLog Sun Sep 07 22:22:16 -0700 2008 Committing the updates to the ChangeLog in prep... [mde]
file LICENSE Sat Jan 27 22:48:17 -0800 2007 Adding license and readme text. git-svn-id: h... [mde]
file NOTICE Sun Jan 04 18:29:16 -0800 2009 Updated built fleegix.js.* files with new copyr... [mde]
file README Fri Jan 04 19:38:41 -0800 2008 Updated doc for 0.4.1 release. git-svn-id: h... [mde]
file Rakefile Sun Aug 17 20:33:17 -0700 2008 Added task for a plugins-only build. [mde]
directory doc/ Sun Jan 04 13:22:58 -0800 2009 Updated copyright year to 2009 in license messa... [mde]
file fleegix.js Loading commit data...
file fleegix.js.gz Mon Apr 06 18:33:01 -0700 2009 Fixed escaping of control chars, etc., with pro... [mde]
file fleegix.js.uncompressed.js
directory plugins/
directory site/ Sun Mar 22 21:25:27 -0700 2009 Added revamped Web site to RCS. [mde]
directory src/
directory tests/
README
Fleegix.js JavaScript Toolkit
------------------------------------------------------------
http://js.fleeix.org/

Intro
------------------------

Fleegix.js is a JavaScript toolkit that provides a lightweight,
cross-browser set of tools for building dynamic JavaScript
UIs for Web applications.

Getting started
------------------------

Using Fleegix.js in your applications is easy. Download a
release and include the code in your Web page with a JavaScript
<script> tag.

In development, you may want to use the uncompressed version
to make debugging easy. In that case, you'd use a script block
like this:

<script type="text/javascript"
    src="/fleegix.js.uncompressed.js">

In a production environment, you'll likely want to use the
compressed version of the file to make downloads faster. The
script block for that would look like this:

<script type="text/javascript" src="/fleegix.js">

The file is compressed with the YUI Compressor
(http://www.julienlecomte.net/yuicompressor/).

You can also use the pieces of the library separately. The
individual pieces are in the /src directory of the release. To
use just the XHR (XMLHttpRequest) library, you'd do a script
tag like this:

<script type="text/javascript" src="/xhr.js">

All of the paths in these script tags assume you are placing
the file at the root of your Web server.

Plugins
------------------------
There are also plugins for Fleegix.js which extend its
functionality, and can also be used standalone with other
JavaScript toolkits.

These plugins can be found in the /plugins directory of the
Fleegix.js Subversion repository. There is also some plugin
documentation available at http://js.fleegix.org/plugins.

Compatibility
------------------------

Fleegix.js works on all modern, mainstream browsers. It is
known to work on the following:

  * Mozilla 1.5+, Firefox 1.0+
  * Internet Explorer 6+
  * Safari 2+

It is likely to work on other standards-conformant browsers
(e.g., Opera, OmniWeb), but has not been tested with these.

Documentation
------------------------

Extensive API documentation can be found in docs/index.html,
or in plaintext format in docs/index.txt.

The author
------------------------

Please feel free to send comments or bug reports to
mde@fleegix.org.

------------------------------------------------------------
Code and docs, copyright 2002-2007, Matthew Eernisse.