Gráfico de Commits

33 Commits

Autor SHA1 Mensagem Data
Joshua Gross bf45db98a5 Fix listener response issues; add debug function to client-side. 2010-08-05 23:58:53 -04:00
Joshua Gross 1d66d44a5d Stop storing tab object using data; fix textbox autosizing. 2010-08-05 15:35:33 -04:00
Joshua Gross 8338810e21 Replace jQuery.md5.js with md5.js (GPL vs BSD); add jQuery-inspired Makefile 2010-08-05 11:34:39 -04:00
Joshua Gross 5f8c4d02c6 Workaround authentication for /dev URLs; get IM working across pages 2010-08-03 02:25:37 -04:00
Joshua Gross 1806a93762 Breakout client/js/im.js into multiple files for clarity. 2010-07-28 01:40:53 -07:00
Joshua Gross 728711939f Add daemonizing module, settings, and compile instructions. 2010-07-27 20:04:08 -07:00
Joshua Gross 78ac74f202 Add contribution and style guide to README.md 2010-07-26 17:22:35 -07:00
Joshua Gross b7b5a874c4 Updated server for Express 1.0.0; reorganized modules; updated README
* 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
2010-07-25 17:35:24 -07:00
Joshua Gross 27255ac23d Get listening, friends list, and basic messaging working. 2010-07-06 09:51:56 -07:00
Joshua Gross 67927622fb Replace references to jStore with store; cleanup stray whitespace. 2010-07-04 14:00:14 -07:00
Joshua Gross a73d883a76 bugs 23, 24
* Remove "Comet" and Short Polling methods (bug 23)
* Remove cookieName, storeSession, and checkResume options from im.js (bug 24)
2010-07-04 11:27:45 -07:00
Joshua Gross 0b921b5afa Goodbye PHP! (bug 14) 2010-07-03 01:22:28 -07:00
Joshua Gross 065d5f84a7 Server-side objects; Error messages; reaping and sign off (bugs 12, 13, 18, 21)
* 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
2010-06-30 00:43:01 -07:00
Joshua Gross 833883928a Give Ajax IM a proper web framework with Express.js (bug 17)
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)
2010-06-20 19:01:14 -07:00
Joshua Gross 7fd52d5454 Move in-process work to development branch. 2010-06-20 15:31:19 -07:00
Joshua Gross 1308dca732 Fixed minor bugs. Modifying connection and authentication methods.
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.
2010-03-21 11:21:21 -05:00
Joshua Gross 3da4903542 Fixed a mis-checked "typeof" statement.
Fixed: Server 'get' function was looking for typeof 'array' rather than typeof 'object'
2010-03-09 19:00:20 -05:00
Joshua Gross 2fe92d49be Merge branch 'master' of git://github.com/loe/AjaxIM 2010-03-09 18:56:31 -05:00
Joshua Gross 1d34639a7c Updated URL handling on Node.js server.
* Improved: Adding multiple URL handlers can be done in one go now, rather than using multiple function calls.
2010-03-09 18:55:34 -05:00
W. Andrew Loe III 7b44b2aede Updating to use Node.js v0.1.31-14-g74614c1 2010-03-09 15:26:23 -08:00
Joshua Gross 7a33c1a039 Updated link to jQuery in install.php 2010-02-19 09:06:34 -06:00
Joshua Gross 02d51c63ae Upgraded jQuery and jQuery-JSONP.
Upgraded: jQuery from 1.3.2 to 1.4.1
Upgraded: jQuery-JSONP plugin from 1.1.0 to 1.1.3
Removed: non-minified copy of jStore
2010-02-18 10:54:35 -06:00
Joshua Gross 18b44b6312 Fixed some game-stopping issues; corrected guest login.
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).
2010-02-15 11:15:20 -06:00
Joshua Gross 6db27c17af Fixed installer option selection.
Fixed: Selecting a database or server option on the list executed no
actions in WebKit.
4.0a
2010-02-14 23:45:54 -06:00
Joshua Gross 131d0357f7 Small problem make installer go boom. 2010-02-14 23:31:21 -06:00
Joshua Gross 40651214ca Added separate license file. 2010-02-14 22:47:06 -06:00
Joshua Gross 130ea4f87b Updated documentation.
Added: Documentation for PHP server libraries.
Updated: Documentation for the Node.js server.
2010-02-14 13:03:27 -06:00
Joshua Gross 0287b9ba52 Improved/fixed installer.
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.
2010-02-13 14:07:58 -06:00
Joshua Gross dd32ca0045 Fixed server.js crash & response problems.
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.
2010-02-13 12:16:58 -06:00
Joshua Gross acbfda4051 Fixed theme CSS inconsistency; fixed form inconsistency.
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.
2010-02-12 15:25:38 -06:00
Joshua Gross 09a6c95acf Updated dates in server libs and README file.
README renamed to README.md for markdown. Server library dates have been updated to today's release.
2010-02-12 12:33:59 -06:00
Joshua Gross e38aacff51 4.0 alpha; initial commit 2010-02-12 12:20:19 -06:00
Joshua Gross 5809bf0f04 First commit. 2010-02-04 21:23:51 -06:00