<?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/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>Anthology of Ideas &#187; INAP</title>
	<atom:link href="http://anthologyoi.com/tag/inap/feed" rel="self" type="application/rss+xml" />
	<link>http://anthologyoi.com</link>
	<description>Anthology of Ideas is an archive of thoughts and form.</description>
	<lastBuildDate>Sat, 03 Mar 2012 11:16:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>INAP 3.0 Progress</title>
		<link>http://anthologyoi.com/wordpress/plugins/inap-30-progress.html</link>
		<comments>http://anthologyoi.com/wordpress/plugins/inap-30-progress.html#comments</comments>
		<pubDate>Tue, 14 Aug 2007 04:57:25 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Web Developing]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[INAP]]></category>
		<category><![CDATA[private beta]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/blogish/asides/inap-30-progress.html</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>Aside from a brief flirtation with a couple payed projects, I&#8217;ve been heavily focusing on rewriting the code for INAP 3.0, and it has almost reached the point of a private beta (which means I start running it on this site.) I have selected the new name for INAP 3.0, but I&#8217;m not going to reveal it just yet. Here is a small preview of what you can expect from INAP 3.0:</p>
<p>INAP 3.0 is now truly modular with a main Javascript/PHP core that other features hook into to function. This core is easily extensible and the new structure of a main project with many smaller projects will make bugfixes and upgrades less painful, and will allow the user to upgrade the plugin section by section as most changes in the modules won&#8217;t effect the core. </p>
<p>For the users:</p>
<ol>
<li>INAP 3.0 will make upgrades far less painful. With each section managing its own options there won&#8217;t be the constant changes to the way little things work.</li>
<li>Features will flow more freely, and individual sections will reach maturity faster.<br />
Individual modules can be deleted without effecting the rest of the plugin. his will help speed up your WP.</li>
<li>Most bugs and irritants in the current version of INAP have been removed including the entire reload of the comments section when a comment is posted, the extra text added to links has been minimized, the built in effects have been improved, and the entire plugin is faster and easy to use.</li>
</ol>
<p>For the developers:</p>
<ol>
<li>INAP 3.0 core now works off of advanced PHP/Javascript/XML and can easily be extended with custom modules. </li>
<li>The new license is less restrictive that the previous versions.</li>
<li>INAP 3.0 provides a framework that other plugins can hook into to harness its maturity and the hundreds of hours that have gone in to its development. </li>
<li>Global variables have been almost entirely eliminated from both the Javascript and PHP&#8212;INAP 3.0 will play nice.</li>
<li>The Javascript core is entirely independent of the AJAX library used which means that any AJAX library (jQuery, Prototype, Mootools, etc) can be used and and INAP 3.0 will function just as well. Adding new libraries is no harder than adding a couple lines of code.</li>
<li>A few well placed actions and template files can make any theme compatible.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/wordpress/plugins/inap-30-progress.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP classes = &#8216;Happy&#8217;; Javascript &#8220;classes&#8221; = &#8216;Pull your hair out&#8217;;</title>
		<link>http://anthologyoi.com/blogish/asides/php-classes-happy-javascript-classes-pull-your-hair-out.html</link>
		<comments>http://anthologyoi.com/blogish/asides/php-classes-happy-javascript-classes-pull-your-hair-out.html#comments</comments>
		<pubDate>Sun, 29 Jul 2007 06:35:55 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[classes]]></category>
		<category><![CDATA[INAP]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[rant]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/asides/php-classes-happy-javascript-classes-pull-your-hair-out.html</guid>
		<description><![CDATA[As mentioned previously I have been trying to move INAP away from a simply function based system to a class based system. The PHP was unbelievably easy to convert. It literally took a couple hours to convert the entire program &#8230; <a href="http://anthologyoi.com/blogish/asides/php-classes-happy-javascript-classes-pull-your-hair-out.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As mentioned previously I have been trying to move INAP away from a simply function based system to a class based system. The PHP was unbelievably easy to convert. It literally took a couple hours to convert the entire program from prefixed functions to nice, neat and easy-to-read classes. It was rolled out with a few bugfixes and very little stress.</p>
<p>Then I started to do the same to Javascript, so the plugin could clarify its variables and functions and still &#8220;play nice,&#8221; and I swear the all the Javascript was specifically coded to make it difficult. Getting all the variables alone to be readable where and when they needed to be was bad by itself, throw on top of it some of the bad coding style that has just perpetuated itself over the past year in the scripts and the fact that Javascript doesn&#8217;t have <em>real</em> classes.</p>
<p>Oh well, I think switching over to Javascript design patterns will be worth it in the long run. I just wish that Javascript had real classes like PHP, so you didn&#8217;t have to fake it so much.</p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/blogish/asides/php-classes-happy-javascript-classes-pull-your-hair-out.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>INAP and feed problems</title>
		<link>http://anthologyoi.com/news-briefs/inap-and-feed-problems.html</link>
		<comments>http://anthologyoi.com/news-briefs/inap-and-feed-problems.html#comments</comments>
		<pubDate>Sun, 29 Jul 2007 02:34:18 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[bugfix]]></category>
		<category><![CDATA[excerpt]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[INAP]]></category>
		<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/news-briefs/inap-and-feed-problems.html</guid>
		<description><![CDATA[If you use INAP and have noticed oddness with your full-text feeds lately, it may have been caused by INAP. Users that had the &#8220;custom options&#8221; selected would have their feeds trimmed as if it were a post. INAP 2.4.3 &#8230; <a href="http://anthologyoi.com/news-briefs/inap-and-feed-problems.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you use <a href="http://anthologyoi.com/inap/">INAP</a> and have noticed oddness with your full-text feeds lately, it may have been caused by INAP. Users that had the &#8220;custom options&#8221; selected would have their feeds trimmed as if it were a post. INAP <a href="http://downloads.wordpress.org/plugin/inline-ajax-page.2.4.3.zip">2.4.3</a> fixes this.</p>
<p>In other news, INAP is in the process of a major overhaul including a complete rewrite of most of its antiquated structure. When this process is complete it will be rebranded to demonstrate the totality of its features (it won&#8217;t be called INAP anymore because the name is too restrictive), but will be released as version 3.0</p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/news-briefs/inap-and-feed-problems.html/feed</wfw:commentRss>
		<slash:comments>57</slash:comments>
		</item>
		<item>
		<title>INAP listed on Mashable</title>
		<link>http://anthologyoi.com/news-briefs/inap-listed-on-mashable.html</link>
		<comments>http://anthologyoi.com/news-briefs/inap-listed-on-mashable.html#comments</comments>
		<pubDate>Sun, 22 Jul 2007 18:58:32 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[excerpt]]></category>
		<category><![CDATA[INAP]]></category>
		<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/news-briefs/inap-listed-on-mashable.html</guid>
		<description><![CDATA[Inline Ajax Page was listed on Mashable as one of &#8220;30 good [AJAX wordpress plugins].&#8221; While I&#8217;m thankful for the publicity (it seems half the internet is scraping Mashable&#8217;s feed which resulted in a huge Technorati boost), as always, it &#8230; <a href="http://anthologyoi.com/news-briefs/inap-listed-on-mashable.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Inline Ajax Page was listed on Mashable as one of &#8220;<a href="http://mashable.com/2007/07/20/ajax-wordpress/">30 good [AJAX wordpress plugins]</a>.&#8221; While I&#8217;m thankful for the publicity (it seems half the internet is scraping Mashable&#8217;s feed which resulted in a huge Technorati boost), as always, it was described as &#8220;Allow[ing] readers to see a snippet of a post, click a button and the remainder will appear without going to another page.&#8221;</p>
<p>I almost cried. That description fits only the 1.0 version of INAP that was released over a year ago&#8211;now it does so much more than that that it is almost like saying Google is just a search engine. Oh well,  the traffic generated was good quality.</p>
<p>In other news, version 2.4.25 was released a couple days ago to fix a bug that occurs when submitting a comment using the jQuery library under IE6. I think bugfixes this specific really showcase how mature the plugin has become, so if you have used it in the past, but stopped because of bugs, why not try it again?</p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/news-briefs/inap-listed-on-mashable.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>INAP 2.4 is Live</title>
		<link>http://anthologyoi.com/news-briefs/inap-24-is-live.html</link>
		<comments>http://anthologyoi.com/news-briefs/inap-24-is-live.html#comments</comments>
		<pubDate>Fri, 13 Jul 2007 16:05:16 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[excerpt]]></category>
		<category><![CDATA[INAP]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/news-briefs/inap-24-is-live.html</guid>
		<description><![CDATA[On this lovely Friday the 13th, Inline Ajax Page version 2.4 has finally been released. If you are upgrading or have ever installed INAP before follow the upgrade instructions here. Please report bugs as soon as you find them, as &#8230; <a href="http://anthologyoi.com/news-briefs/inap-24-is-live.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>On this lovely Friday the 13th, Inline Ajax Page version 2.4 has finally been released. </p>
<p><strong>If you are upgrading or have ever installed INAP before follow the <a href="http://anthologyoi.com/inap/inline-ajax-page-readme/#upgrading"> upgrade instructions here.</a></strong></p>
<p>Please report bugs as soon as you find them, as I will be making bug-fixing releases as they are fixed.</p>
<p>I am also specifically asking for feature ideas for the next version, so drop a note on the main page if you have any.</p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/news-briefs/inap-24-is-live.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Inline Ajax Page Update plans.</title>
		<link>http://anthologyoi.com/news-briefs/inline-ajax-page-update-plans.html</link>
		<comments>http://anthologyoi.com/news-briefs/inline-ajax-page-update-plans.html#comments</comments>
		<pubDate>Wed, 11 Jul 2007 01:28:11 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[INAP]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/news-briefs/inline-ajax-page-update-plans.html</guid>
		<description><![CDATA[INAP will be officially updated by the end of the week. I am currently running final tests on this version. Most known bugs have been fixed, the Admin panel has been re-written to be easier and less confusing, and many &#8230; <a href="http://anthologyoi.com/news-briefs/inline-ajax-page-update-plans.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>INAP will be officially updated by the end of the week. I am currently running final tests on this version. Most known bugs have been fixed, the Admin panel has been re-written to be easier and less confusing, and many features critical to the success of this plugin have been added. (A omplete list can be found on the INAP page.) </p>
<p>If you would like to help me test or would like a sneak peak, the current developmental release is available <a href="http://downloads.wordpress.org/plugin/inline-ajax-page.zip">here</a> please read the <a href="http://anthologyoi.com/inap/inline-ajax-page-readme/">INAP readme </a> for installation instructions. </p>
<p>Please report any bugs found to this post or the main INAP thread, and ensure you mention that you are using the developmental release.</p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/news-briefs/inline-ajax-page-update-plans.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The INAP &#8220;wow&#8221; factor just went up.</title>
		<link>http://anthologyoi.com/news-briefs/the-inap-wow-factor-just-went-up.html</link>
		<comments>http://anthologyoi.com/news-briefs/the-inap-wow-factor-just-went-up.html#comments</comments>
		<pubDate>Sun, 01 Jul 2007 05:18:04 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[INAP]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/news-briefs/the-inap-wow-factor-just-went-up.html</guid>
		<description><![CDATA[I recently made a post that included an introduction, a YouTube video and some thoughts on it. By itself it is nothing impressive, but by using it as a test for the developmental version of INAP the WOW factor just &#8230; <a href="http://anthologyoi.com/news-briefs/the-inap-wow-factor-just-went-up.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I recently made a post that included an introduction, a YouTube video and some thoughts on it. By itself it is nothing impressive, but by using it as a test for the developmental version of INAP the WOW factor just went through the roof. You can take a look at the <a href="http://anthologyoi.com/history/the-female-face-in-modern-western-art.html"> post/video/demo here</a></p>
<p>I think you agree that it is quite impressive even with the special effect bug. <a href="http://anthologyoi.com/inap">INAP</a> is finally maturing and all of its features that were slowly created over time are finally coming together.</p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/news-briefs/the-inap-wow-factor-just-went-up.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>INAP updated to version 2.2.3</title>
		<link>http://anthologyoi.com/news-briefs/inap-updated-to-version-223.html</link>
		<comments>http://anthologyoi.com/news-briefs/inap-updated-to-version-223.html#comments</comments>
		<pubDate>Thu, 29 Mar 2007 23:58:38 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[INAP]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/news-briefs/inap-updated-to-version-223.html</guid>
		<description><![CDATA[Inline Ajax Page has been updated. This release is primarily a bug-fixing release, but adds a live comment preview and the ability to trim feeds. You may go to the main INAP page for more information. Special thanks goes out &#8230; <a href="http://anthologyoi.com/news-briefs/inap-updated-to-version-223.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Inline Ajax Page has been updated. This release is primarily a bug-fixing release, but adds a live comment preview and the ability to trim feeds.</p>
<p>You may go to the <a href="http://anthologyoi.com/inap/">main INAP page</a> for more information. </p>
<p>Special thanks goes out to <a href="http://mnogo.truden.com/">Truden</a> for all of his help hunting down them <a href="http://en.wikipedia.org/wiki/Elmer_Fudd">wascily wabbits</a>&#8230;er&#8230;bugs.</p>
<p> Pun intended.</p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/news-briefs/inap-updated-to-version-223.html/feed</wfw:commentRss>
		<slash:comments>87</slash:comments>
		</item>
		<item>
		<title>Emergency Update of INAP</title>
		<link>http://anthologyoi.com/news-briefs/emergency-update-of-inap.html</link>
		<comments>http://anthologyoi.com/news-briefs/emergency-update-of-inap.html#comments</comments>
		<pubDate>Sat, 17 Mar 2007 17:20:51 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[INAP]]></category>
		<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/news-briefs/emergency-update-of-inap.html</guid>
		<description><![CDATA[A bug appeared that broke the add comment box if users did not have javascript turned on. INAP version 2.2.1 fixes this. You may download Inline Ajax Page version 2.2.1 here]]></description>
			<content:encoded><![CDATA[<p>A bug appeared that broke the add comment box if users did not have javascript turned on. INAP version 2.2.1 fixes this. You may download <a href="http://anthologyoi.com/wp-content/uploads/2007/03/inap-v-2-2-1.zip">Inline Ajax Page version 2.2.1 here</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/news-briefs/emergency-update-of-inap.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing INAP 2.1</title>
		<link>http://anthologyoi.com/news-briefs/testing-inap-21.html</link>
		<comments>http://anthologyoi.com/news-briefs/testing-inap-21.html#comments</comments>
		<pubDate>Mon, 12 Feb 2007 05:13:27 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[INAP]]></category>
		<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/news-briefs/testing-inap-21.html</guid>
		<description><![CDATA[I just uploaded the new version of INAP (In-line Ajax Page) to this site for testing. If you find any bugs please let me know. Assuming there are no bugs I will be releasing the new version on the 18th.]]></description>
			<content:encoded><![CDATA[<p>I just uploaded the new version of INAP (In-line Ajax Page) to this site for testing. If you find any bugs please let me know. Assuming there are no bugs I will be releasing the new version on the 18th.</p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/news-briefs/testing-inap-21.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

