* Server now works with Express 1.0.0 (beta or beta2) and Connect
* `AjaxIM` is now `Hub` and functions as both manager and session middleware
* Authentication directory structure neatened
* Development controllers and views separated into `dev/` folder
* Client-side content moved to `client/` folder
* Updated installation instructions in README
* Server-side has been mostly broken down into smaller modular components
* IM now works on Node.js (as a consequence of refactor/redesign)
* `Error` and `Success` `Package` types added (essentially, generic types)
* Users notified of sign off when user is reaped by `Session.IM` reaper
Start bugs 17, 12, 13
* Begin integration of Express.js grammar into Ajax IM server (bug 17)
* Add basic framework for various chat object (User, Message, Room,
Notification) (bug 12)
* Begin bringing Ajax IM up to speed with Node.js (assisted by bug 17) (bug 13)
Fixed: When numeric message was sent, client would only see {message}
Partially Added: REST API, which will replace the Memcache API
Changed: Session creation and user creation separated.
Fixed: ajaxim.php would return an error if no DB_ENGINE was set. Now checks if DB_ENGINE has length before trying to import and create the Database class.
Fixed: server.js would crash on a Memcache "get username/someone" request if "someone" didn't exist.
Fixed: im.js tried to set document.domain with a period at the beginning for requests to subdomains.
Fixed: Actions that involve requesting to a subdomain now use JSONP instead of POST requests, since same-domain policies are a pain in my ass.
Fixed: Guest login in im.load.js fixed to use im.js "noSession" and "sessionNotResumed" hooks (ensures reconnect regardless of circumstance).
Fixed: Installer made references to now-renamed paths (node/ to server/)
Improved: Installer writes Node.js host to im.load.js, rather than editing im.js
Improved: Installer directs user to appropriate Quick Start guide after completion.
Improved: Installer asks user to delete server/ folder if they aren't using Node.js.
Fixed: Node.js move request.uri object to url.parse(request.url, true); compatability to request.uri added for now.
Fixed: Web server crashed on "/send" request with no query variables.
Fixed: Web server returned incorrect content-length from response.reply, causing responses to be cropped.
Fixed: Login and registration form fields reacted differently to :focus in WebKit and Firefox.
Fixed: Login field cleared error class onBlur while registration fields did not.