<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ajax IM</title>
	<atom:link href="http://ajaxim.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ajaxim.com</link>
	<description>Instant Messaging Framework</description>
	<lastBuildDate>Mon, 15 Feb 2010 23:37:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Four-point-oh Alpha in Detail</title>
		<link>http://ajaxim.com/blog/releases/four-point-oh-alpha-in-detail/</link>
		<comments>http://ajaxim.com/blog/releases/four-point-oh-alpha-in-detail/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 18:39:42 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Releases]]></category>

		<guid isPermaLink="false">http://ajaxim.com/?p=193</guid>
		<description><![CDATA[Now that everything is setup and (mostly) working, I thought it might be worthwhile to take a better look at the new Ajax IM and talk about some of the major changes and benefits of this brand new release. All the good stuff below the cut. So why the rebuild? Put simply, the old Ajax [...]]]></description>
			<content:encoded><![CDATA[<p>Now that everything is setup and (mostly) working, I thought it might be worthwhile to take a better look at the new Ajax IM and talk about some of the major changes and benefits of this brand new release.</p>
<p>All the good stuff below the cut.<br />
<span id="more-193"></span><br />
<img src="http://ajaxim.com/files/2010/02/fourpointohalpha.jpg" alt="" title="4.0 Alpha" width="469" height="137" class="alignnone size-full wp-image-227" /></p>
<p>So why the rebuild? Put simply, the old Ajax IM just wasn’t enough for most people anymore. It lacked certain features, the most glaring of which was its inability to easily integrate with existing websites, which was the primary focus during the architecting of the project. As well, the older versions of Ajax IM were not up to speed with the latest AJAX techniques, such as long-polling and Comet (streaming); these issues are also addressed in the new version.</p>
<p>While the code is still buggy and the current version is an alpha, it is a massive improvement over the past versions. Just take a look at some of the major new features:</p>
<h2>Easy integration with existing websites</h2>
<p>Ajax IM has, historically, been more of a standalone script than something easily integrated to an existing website. Of course, since that first version, I’ve had a countless number of requests and inquiries regarding “integrating with my website” or “using my current user database.”</p>
<p>Well, today that problem is no more — <strong>Ajax IM 4.0 has been built with integration in mind.</strong> This means that, with a little work, you can use any existing user database with Ajax IM by creating a database library specific to your circumstances. In the future, there are plans to have “stock” database libraries for many major scripts: WordPress, phpBB, Pligg, etc.</p>
<p>The Javascript, now using jQuery, also includes a series of “bindable” hooks (using <code>$(AjaxIM.client).bind('hookName', function)</code>), allowing you to execute actions when Ajax IM does something (such as login, receive a message, etc.). The documentation for how to use these hooks is a work in progress.</p>
<p>If you just want to start using Ajax IM right away, without worrying about integration, you can get the script up and running in just 10 minutes with one of the <a href="/documentation/basics/quick-start/">Quick Start</a> (<a href="/documentation/basics/quick-start-nodejs/">with Node.js</a>) guides.</p>
<h2>Automatic cross-page reloading</h2>
<p>If you’ve ever used Facebook’s IM or GMail’s Chat feature, you’ve probably noticed how your conversations follow you around the website, no matter what page you are on.</p>
<p>The new Ajax IM does this too, and it does it automatically. Using the latest HTML5 local storage (or Flash storage as a fallback), conversations and friend lists are retained between page reloads, no matter how your website loads individual pages. <strong>As long as you load Ajax IM on each page of your website, your users can continue chatting uninterrupted.</strong></p>
<h2>Theming</h2>
<p>Built on a base of HTML and CSS, Ajax IM’s themes can be easily modified as long as you know a little CSS. The default theme is completely functional and includes all current Ajax IM features; just make a copy of the folder and start editing the theme.css file!</p>
<p>To change the theme, you simply set the <code>theme</code> folder in the <code>AjaxIM.init</code> call.</p>
<h2>Standalone high-volume messaging using <a href="http://nodejs.org">Node.js</a></h2>
<p>PHP isn’t great for IM applications, which require users to both stay connected to the server for long periods of time and make many short requests.</p>
<p>As an alternative, a “high-volume” server is included that will handle large numbers of simultaneously connected users with relative ease. It uses <a href="http://nodejs.org" class="external">Node.js</a>, a new “server-side Javascript” application that is <em>very</em> fast and <em>very</em> easy to use. As long as you have your own <a href="http://www.linode.com/?r=fa5754d5d0f187486d0a13e28f63de4994d568f2" class="external">VPS</a> or dedicated server, you can run the standalone server in conjunction with Ajax IM.</p>
<h2>Built-in login and registration forms</h2>
<p>Ease-of-use is one of the primary goals of this project, and part of making a messenger easy to use is including some way for users to login and register. A Registration/Login widget has been included and can be easily added to any page of your website (see the <a href="/documentation/basics/quick-start/">Quick Start</a> guide for implementation). The forms can also be easily styled to match your website, as both the HTML and CSS are pulled from your current theme.</p>
<h2>Better documentation</h2>
<p>An open source project could be built well and work nicely, but what good is it if there’s no documentation? That was a problem with past versions of Ajax IM — very limited documentation and unclear code created a lot of unnecessary confusion.</p>
<p>With the new version comes a new aim: to keep updated, thorough documentation on all parts of the framework. Right now, a number of important parts of the architecture and code have been documented, and the rest is on the way. You can take a look at all the available information in the <a href="http://ajaxim.com/documentation/">documentation</a> section of the website.</p>
<h2>Git with the program</h2>
<p>Ajax IM’s latest work-in-progress source is now kept on <a href="http://github.com/endtwist/AjaxIM">github</a>, allowing you to download the latest version at any time. This also means that it will be easy to allow contributions, should anyone like to contribute.</p>
<h2>Work in progress</h2>
<p>It is still very much a work in progress, so please bear with me as I work out any bugs both in the script and the website. However, I hope you will give the new Ajax IM a try and even, perhaps, become a contributor. </p>
]]></content:encoded>
			<wfw:commentRss>http://ajaxim.com/blog/releases/four-point-oh-alpha-in-detail/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>It has arrived!</title>
		<link>http://ajaxim.com/blog/releases/it-has-arrived/</link>
		<comments>http://ajaxim.com/blog/releases/it-has-arrived/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 05:01:41 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Releases]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[After a (very) long wait, and many hours of development, I’m proud to announce the new Ajax IM 4.0! Ajax IM has been truly rebuilt from the bottom up, implementing the latest libraries, techniques, and shininess including jQuery, local session storage (using HTML5 or Flash), Node.js, and much more. The new 4.0 has been specifically [...]]]></description>
			<content:encoded><![CDATA[<p>After a (very) long wait, and many hours of development, I’m proud to announce the new <strong>Ajax IM 4.0</strong>!</p>
<p>Ajax IM has been truly rebuilt from the bottom up, implementing the latest libraries, techniques, and shininess including <a href="http://jquery.com">jQuery</a>, local session storage (using HTML5 or Flash), <a href="http://nodejs.org">Node.js</a>, and much more.</p>
<p>The new 4.0 has been specifically developed for integration into existing websites (unlike &lt;=3.42), and works across pages — no matter how those pages are setup! Lots of documentation is available (and even more is in the works), allowing you to get started with Ajax IM right away.<br />
<span id="more-1"></span><br />
While the new site is being set up, please excuse any broken links or unusual issues. If you do happen to find a major problem, <a href="/contact/">let me know</a> and I’ll fix it right away. </p>
]]></content:encoded>
			<wfw:commentRss>http://ajaxim.com/blog/releases/it-has-arrived/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>
