othermedia / ojay

Wrapper for YUI 2.4 upwards with a concise API and asynchronous method chaining

This URL has Read+Write access

ojay / README
100644 64 lines (43 sloc) 2.288 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
Ojay -- a developer-friendly wrapper for the Yahoo! User Interface library
Copyright (c) 2007-09 the OTHER media Limited, written by James Coglan.
 
http://ojay.othermedia.org
 
This software is Open Source Initiative approved Open Source Software.
Open Source Initiative Approved is a trademark of the Open Source Initiative.
 
 
INTRODUCTION
============
 
Ojay is a JavaScript programming interface that wraps the Yahoo! User Interface library. It
aims to make code easier to read and write, by allowing more sentence-like OO syntax and
minimizing repetition.
 
The download contains two copies of all files; one containing the full source code and
one minified for production use. For best performance, it is recommended that you serve
the minified files on live sites, and use gzip/deflate compression. You can do this by
enabling mod_deflate in Apache and adding this line to your site's config:
 
  AddOutputFilterByType DEFLATE text/javascript application/x-javascript
 
Ojay's build files are generated using Jake, a Ruby program that uses Dean Edwards' Packer
to compress code. The download also contains a file named yui.js, which contains all the
YUI build files used by Ojay in one concatenated file. It includes the following:
 
  * yahoo-dom-event
  * selector
  * json
  * animation
  * connection
  * get
  * cookie
  * history
 
Further information and docs are available on the Ojay site: http://ojay.othermedia.org
 
 
DEVELOPMENT
===========
 
If you're checking this code out from the repository, you'll need to build the library from
the source files (contained in the /source directory). To do this, you'll need Ruby installed.
You can get Ruby for any platform from their web site:
 
http://www.ruby-lang.org/en/downloads/
 
You'll also need the Jake gem to generate build files, and the staticmatic gem to view the
doc site and run tests.
 
gem install jake
gem install staticmatic
 
Once you've got Ruby installed, open a command prompt in the root directory (one level up
from /source) and type 'jake'. That command will combine and compress the source files and
place them in the /build directory.
 
To start a server for the docs/test site, type
 
staticmatic preview site
 
The site is then available at http://localhost:3030, and the test suite at http://localhost:3030/test/