<?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>Garkbit Blog &#187; Web development</title>
	<atom:link href="http://wp.garkbit.com/category/web-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://wp.garkbit.com</link>
	<description>... on the other side of the universe</description>
	<lastBuildDate>Mon, 14 Dec 2009 13:29:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Transforming XML/XSLT using .NET 3.5</title>
		<link>http://wp.garkbit.com/2009-12-14/transforming-xmlxslt-using-net-3-5/</link>
		<comments>http://wp.garkbit.com/2009-12-14/transforming-xmlxslt-using-net-3-5/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 13:27:35 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[ASP.NET/C#]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[XML/XSLT]]></category>
		<category><![CDATA[.NET 3.5]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://wp.garkbit.com/?p=200</guid>
		<description><![CDATA[Here is a simple example of how you can apply a XSLT stylesheet to a XML file and deliver the result to the browser using ASP.NET 3.5.
default.aspx.cs

using System;
using System.IO;
using System.Xml;
using System.Xml.XPath;
using System.Xml.Xsl;

public partial class _default : System.Web.UI.Page {

    protected void Page_Load(object sender, EventArgs e) {

        [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a simple example of how you can apply a XSLT stylesheet to a XML file and deliver the result to the browser using ASP.NET 3.5.</p>
<p><strong>default.aspx.cs</strong></p>
<pre class="brush: csharp;">
using System;
using System.IO;
using System.Xml;
using System.Xml.XPath;
using System.Xml.Xsl;

public partial class _default : System.Web.UI.Page {

    protected void Page_Load(object sender, EventArgs e) {

        // Source paths
        string xmlFilePath = Server.MapPath(&quot;hello-world.xml&quot;);
        string xsltFilePath = Server.MapPath(&quot;hello-world.xslt&quot;);

        // Load XML
        XPathNavigator nav = new XPathDocument(new XmlTextReader(xmlFilePath)).CreateNavigator();

        // Stream for the transformed XML
        MemoryStream stream = new MemoryStream();

        // Load XSLT &amp; transform
        XslCompiledTransform transformer = new XslCompiledTransform();
        transformer.Load(xsltFilePath);
        transformer.Transform(nav, null, stream);

        // Write output
        using (StreamReader reader = new StreamReader(stream)) {
            stream.Position = 0;
            Response.Write(reader.ReadToEnd());
            reader.Close();
        }

    }

}
</pre>
<p>Yes, that&#8217;s it! Here below are the rest of the code used to complete a fully working demo.</p>
<p><strong>default.aspx</strong></p>
<pre class="brush: xml;">

&lt;%@ Page Language=&quot;C#&quot; AutoEventWireup=&quot;true&quot; CodeFile=&quot;default.aspx.cs&quot; Inherits=&quot;_default&quot; %&gt;
</pre>
<p><strong>hello-world.xml</strong></p>
<pre class="brush: xml;">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;iso-8859-1&quot;?&gt;
&lt;?xml-stylesheet type=&quot;text/xsl&quot; href=&quot;hello-world.xslt&quot;?&gt;
&lt;text&gt;Hello World!&lt;/text&gt;
</pre>
<p><strong>hello-world.xslt</strong></p>
<pre class="brush: xml;">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;iso-8859-1&quot;?&gt;
&lt;xsl:stylesheet version=&quot;1.0&quot; xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot;&gt;
  &lt;xsl:output indent=&quot;yes&quot; /&gt;
  &lt;xsl:output method=&quot;html&quot;/&gt;

  &lt;xsl:template match=&quot;/&quot;&gt;
&lt;xsl:text disable-output-escaping=&quot;yes&quot;&gt;
&amp;lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&amp;gt;
&lt;/xsl:text&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
  &lt;head&gt;
    &lt;title&gt;&lt;xsl:value-of select=&quot;text&quot;/&gt;&lt;/title&gt;
  &lt;/head&gt;
  &lt;body&gt;
    &lt;h1&gt;&lt;xsl:value-of select=&quot;text&quot;/&gt;&lt;/h1&gt;
  &lt;/body&gt;
&lt;/html&gt;
  &lt;/xsl:template&gt;

&lt;/xsl:stylesheet&gt;
</pre>
<p><strong>Tip!</strong> To have the HTML doctype declared in your XSLT document you need to wrap it in a <em>&lt;xsl:text&gt;</em> tag with the <em>disable-output-escaping</em> attribute set to <em>yes</em>. And don&#8217;t forget to swap the leading and tailing <em>&lt;</em> and <em>&gt;</em> for <em>&amp;lt;</em> and <em>&amp;gt;</em>.</p>
<p><strong>Output</strong></p>
<pre class="brush: xml;">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
  &lt;head&gt;
    &lt;title&gt;Hello World!&lt;/title&gt;
  &lt;/head&gt;
  &lt;body&gt;
    &lt;h1&gt;Hello World!&lt;/h1&gt;
  &lt;/body&gt;
&lt;/html&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://wp.garkbit.com/2009-12-14/transforming-xmlxslt-using-net-3-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone Scroll To bookmarklet</title>
		<link>http://wp.garkbit.com/2009-10-12/iphone-scroll-to-bookmarklet/</link>
		<comments>http://wp.garkbit.com/2009-10-12/iphone-scroll-to-bookmarklet/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 20:08:44 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[bookmarklet]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Mobile Safari]]></category>

		<guid isPermaLink="false">http://wp.garkbit.com/?p=143</guid>
		<description><![CDATA[Do you also get tiered of flickering your finger to scroll up and down loooong web pages? I was, so I wrote this JavaScript bookmarklet to do it for me. It enables you to enter a %-value where to (vertically) scroll on the page.
How to use it:
Just add and save a bookmark on any page. [...]]]></description>
			<content:encoded><![CDATA[<p>Do you also get tiered of flickering your finger to scroll up and down loooong web pages? I was, so I wrote this JavaScript bookmarklet to do it for me. It enables you to enter a %-value where to (vertically) scroll on the page.</p>
<p><strong>How to use it:</strong></p>
<p>Just add and save a bookmark on any page. Open it for edit. Name it &#8220;Scroll to &#8230;&#8221; (or what ever) and paiste the JavaScript code below into the URL field.</p>
<pre class="brush: jscript;">
javascript:window.scroll(window.pageXOffset,(prompt(%22Scroll%20to%20...%20(0-100)%22)/100)*document.body.clientHeight);
</pre>
<p>To use it, just select the bookmark from the bookmarks menu, enter a value between 0-100 (where 0 is the page top and 100 is the page bottom) into the prompt and hit OK.</p>
<p>Happy scrolling!</p>
]]></content:encoded>
			<wfw:commentRss>http://wp.garkbit.com/2009-10-12/iphone-scroll-to-bookmarklet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Output the source XML with XSLT</title>
		<link>http://wp.garkbit.com/2009-10-09/output-the-source-xml-with-xslt/</link>
		<comments>http://wp.garkbit.com/2009-10-09/output-the-source-xml-with-xslt/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 13:21:08 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Tip]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[XSLT]]></category>

		<guid isPermaLink="false">http://wp.garkbit.com/?p=136</guid>
		<description><![CDATA[Today I just learned something I&#8217;ve been looking for for a while. It&#8217;s super simple, but it can be very helpful. For those of us that needs to write and edit XSLT for XML you don&#8217;t own and can&#8217;t view &#8211; in my case from SharePoint. Here is a single line of XSLT that will [...]]]></description>
			<content:encoded><![CDATA[<p>Today I just learned something I&#8217;ve been looking for for a while. It&#8217;s super simple, but it can be <strong>very</strong> helpful. For those of us that needs to write and edit XSLT for XML you don&#8217;t own and can&#8217;t view &#8211; in my case from SharePoint. Here is a single line of XSLT that will output the source XML to your page.</p>
<pre class="brush: xml;">&lt;xsl:copy-of select=&quot;.&quot;/&gt;</pre>
<p>That&#8217;s it! I told you, super simple.</p>
<p>Remember that you will probably not see the code on the page since the nodes probably won&#8217;t be recognized by the browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://wp.garkbit.com/2009-10-09/output-the-source-xml-with-xslt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone view source</title>
		<link>http://wp.garkbit.com/2009-09-28/iphone-view-source/</link>
		<comments>http://wp.garkbit.com/2009-09-28/iphone-view-source/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 06:52:09 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Tip]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[bookmarklet]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://wp.garkbit.com/2009-09-28/iphone-view-source/</guid>
		<description><![CDATA[For you who are a web developer and would like to be able to &#8220;view source&#8221; on a web page with your iPhone Safari.
Create a bookmark. Edit it and paise the code below in the location field. Then when you want to use it, just click the bookmark, and you&#8217;ll get the source. Super easy!! [...]]]></description>
			<content:encoded><![CDATA[<p>For you who are a web developer and would like to be able to &#8220;view source&#8221; on a web page with your iPhone Safari.<br />
Create a bookmark. Edit it and paise the code below in the location field. Then when you want to use it, just click the bookmark, and you&#8217;ll get the source. Super easy!! </p>
<pre class="brush: plain;">javascript:var%20sourceWindow%20%3D%20window.open%28%27about%3Ablank%27%29%3B%20%0Avar%20newDoc%20%3D%20sourceWindow.document%3B%20%0AnewDoc.open%28%29%3B%20%0AnewDoc.write%28%27%3Chtml%3E%3Chead%3E%3Ctitle%3ESource%20of%20%27%20%2B%20document.location.href%20%2B%20%27%3C/title%3E%3C/head%3E%3Cbody%3E%3C/body%3E%3C/html%3E%27%29%3B%20%0AnewDoc.close%28%29%3B%20%0Avar%20pre%20%3D%20newDoc.body.appendChild%28newDoc.createElement%28%22pre%22%29%29%3B%20%0Apre.appendChild%28newDoc.createTextNode%28document.documentElement.innerHTML%29%29%3B</pre>
]]></content:encoded>
			<wfw:commentRss>http://wp.garkbit.com/2009-09-28/iphone-view-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript for&#8230;in</title>
		<link>http://wp.garkbit.com/2009-09-13/javascript-for-in/</link>
		<comments>http://wp.garkbit.com/2009-09-13/javascript-for-in/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 13:30:00 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[ASP.NET/C#]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Mootools]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://wp.garkbit.com/?p=106</guid>
		<description><![CDATA[A couple of weeks ago a college of mine got a JavaScript error at one of our SharePoint sites. It turn out, someone at Microsoft has used a for&#8230;in loop to iterate over an Array. This works fine as long as you don&#8217;t modify the Array object. So when used with Mootools, that adds properties [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of weeks ago a college of mine got a JavaScript error at one of our SharePoint sites. It turn out, someone at Microsoft has used a for&#8230;in loop to iterate over an Array. This works fine as long as you don&#8217;t modify the Array object. So when used with Mootools, that adds properties and methods to the Array object, the SharePoint script gets the hick-ups and dies.</p>
<p>The JavaScript documentation states:</p>
<blockquote><p>Iterates a specified variable over all the properties of an object, in arbitrary order. For each distinct property, the specified statement is executed.</p></blockquote>
<p>&#8230; and</p>
<blockquote><p>Although it may be tempting to use this as a way to iterate over Array elements, because the for&#8230;in statement iterates over user-defined properties in addition to the array elements, if you modify the Array object, such as adding custom properties or methods, the for&#8230;in statement will return the name of your user-defined properties in addition to the numeric indexes. Thus it is better to use a traditional for loop with a numeric index when iterating over arrays.</p></blockquote>
<p>I made a simple example to show the difference between iterating over Arrays and Objects. This is with Mootols included on the page.</p>
<p><strong>JavaScript</strong></p>
<pre class="brush: jscript;">
console.log('===== Array Example ===== ');

// Array
var a = ['alpha', 'bravo', 'charlie'];
console.log('Creating a new Array:', a);
console.log('The array length is:', a.length);

// For
console.log('--- Start For --- ');
for (var i = 0, j = a.length; i &lt; j; i++) {
    console.log(i, ':', a[i]);
}
console.log('--- End For --- ');

// For-in
console.log('--- Start For-in --- ');
for (var ii in a) {
    console.log(ii, ':', a[ii]);
}
console.log('--- End For-in --- ');
</pre>
<p><strong>Output</strong></p>
<pre class="brush: plain;">
===== Array Example =====
Creating a new Array: [&quot;alpha&quot;, &quot;bravo&quot;, &quot;charlie&quot;]
The array length is: 3
--- Start For ---
0 : alpha
1 : bravo
2 : charlie
--- End For ---
--- Start For-in ---
0 : alpha
1 : bravo
2 : charlie
$family : Object name=array
each : forEach()
clean : function()
associate : function()
link : function()
contains : function()
extend : function()
getLast : function()
getRandom : function()
include : function()
combine : function()
erase : function()
empty : function()
flatten : function()
hexToRgb : function()
rgbToHex : function()
toJSON : function()
--- End For-in ---
</pre>
<p>And here using an object.<br />
<strong></strong></p>
<p><strong>JavaScript</strong></p>
<pre class="brush: jscript;">
console.log('===== Object Example =====');

// Object
var o = { 'one': 'alpha', 'Bravo': 'bravo', 'three': 'charlie' };
console.log('Creating a new Array:', o);

// For-in
console.log('--- Start For-in --- ');
for (var item in o) {
    console.log(item, ':', o[item]);
}
console.log('--- End For-in --- ');
</pre>
<p><strong>Output</strong></p>
<pre class="brush: plain;">
===== Object Example =====
Creating a new Array: Object one=alpha Bravo=bravo three=charlie
--- Start For-in ---
one : alpha
Bravo : bravo
three : charlie
--- End For-in ---
</pre>
<p>Read more about the for&#8230;in operation at MDC Core JavaScript 1.5 Guide: <a title="MDC Core JavaScript 1.5 Guide: Object Manipulation" href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Guide/Object_Manipulation_Statements">Object Manipulation</a>.</p>
<p>Unfortunately this stupid mistake prevents us from using Mootools on this site. And we might have to reconsider the use of Mootols on more sites in the future — AND THAT SUCKS!</p>
]]></content:encoded>
			<wfw:commentRss>http://wp.garkbit.com/2009-09-13/javascript-for-in/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>On page search for Mobile Safari on the iPhone</title>
		<link>http://wp.garkbit.com/2009-07-30/on-page-search-for-mobile-safari-on-the-iphone/</link>
		<comments>http://wp.garkbit.com/2009-07-30/on-page-search-for-mobile-safari-on-the-iphone/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 08:52:26 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Tip]]></category>
		<category><![CDATA[bookmarklet]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mobile Safari]]></category>
		<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://wp.garkbit.com/?p=100</guid>
		<description><![CDATA[My older brother Joel just got home from Italy &#8211; and with him he brought an new shiny iPhone 3GS for me! So why bother getting it all the way from Italy you may ask? First of all it&#8217;s not released yet in Sweden (or maybe that&#8217;s today actually). Secondly and more important, what makes [...]]]></description>
			<content:encoded><![CDATA[<p>My older brother <a title="Joel Lundgren" href="http://jlundgren.com/">Joel</a> just got home from Italy &#8211; and with him he brought an new shiny iPhone 3GS for me! So why bother getting it all the way from Italy you may ask? First of all it&#8217;s not released yet in Sweden (or maybe that&#8217;s today actually). Secondly and more important, what makes Italy (and Belgium) different from other European countries is that you can buy iPhones without any carrier restriction. You can use any carrier you want!</p>
<p>Anyways. I&#8217;ve been using it for two days now and I LOVE IT! Everything I got annoyed with and irritated over using my HTC Touch Diamond is gone. I must say, Windows Mobile sucks! Compared to the iPhone&#8217;s OS, WM is nothing! It&#8217;s like they come from different planets.</p>
<p>There is one thing that has been bothering me though. You can&#8217;t search the text on a page with Mobile Safari. When you view large pages on a relatively small screen, it&#8217;s necessary to be able to search it. Luckily there is a solution to the problem. At <a title="The iPhone Blog" href="http://www.theiphoneblog.com/2009/07/22/iphone-pro-tips-find-text-safari-javascript-bookmarklet/">The iPhone Blog</a> Rene Ritchie describes how you can to it with a simple bookmark! It sounds a bit weird, but all you need to do is to create a bookmark and replace the bookmark URL with some JavaScript (see code below). Then whenever you need to search a page, just click on the bookmark, enter your search text into the JavaScript prompt and click OK. The script will then highlight all the matches on the page. Super neat!!</p>
<pre class="brush: jscript;">javascript:void%28s%3Dprompt%28%27Find%20text%3A%27%2C%27%27%29%29%3Bs%3D%27%28%27+s+%27%29%27%3Bx%3Dnew%20RegExp%28s%2C%27gi%27%29%3Brn%3DMath.floor%28Math.random%28%29*100%29%3Brid%3D%27z%27%20+%20rn%3Bb%20%3D%20document.body.innerHTML%3Bb%3Db.replace%28x%2C%27%3Cspan%20name%3D%27%20+%20rid%20+%20%27%20id%3D%27%20+%20rid%20+%20%27%20style%3D%5C%27color%3A%23000%3Bbackground-color%3Ayellow%3B%20font-weight%3Abold%3B%5C%27%3E%241%3C/span%3E%27%29%3Bvoid%28document.body.innerHTML%3Db%29%3Balert%28%27Found%20%27%20+%20document.getElementsByName%28rid%29.length%20+%20%27%20matches.%27%29%3Bwindow.scrollTo%280%2Cdocument.getElementsByName%28rid%29%5B0%5D.offsetTop%29%3B</pre>
]]></content:encoded>
			<wfw:commentRss>http://wp.garkbit.com/2009-07-30/on-page-search-for-mobile-safari-on-the-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keetology&#8217;s Mootools articles</title>
		<link>http://wp.garkbit.com/2009-07-21/keetologys-mootools-articles/</link>
		<comments>http://wp.garkbit.com/2009-07-21/keetologys-mootools-articles/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 10:21:57 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Mootools]]></category>
		<category><![CDATA[Keetology]]></category>

		<guid isPermaLink="false">http://wp.garkbit.com/?p=91</guid>
		<description><![CDATA[Mark Obcena has started writing a series of Mootools articles for the intermediate Mootooler  at he&#8217;s blog Keetology. So far he has posted two really, really good articles. Check them out!
The DOM Fetcher Functions
Natives, Generics and Extending the Language
]]></description>
			<content:encoded><![CDATA[<p>Mark Obcena has started writing a series of Mootools articles for the intermediate Mootooler  at he&#8217;s blog <a title="Keetology" href="http://keetology.com/blog/">Keetology</a>. So far he has posted two really, really good articles. Check them out!<br />
<a title="Up The Herd: Playing Fetch" href="http://keetology.com/blog/2009/07/01-up-the-moo-herd-i-playing-fetch">The DOM Fetcher Functions</a><br />
<a title="Up The Herd 2: Native Flora and Fauna" href="http://keetology.com/blog/2009/07/20/up-the-herd-ii-native-flora-and-fauna">Natives, Generics and Extending the Language</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wp.garkbit.com/2009-07-21/keetologys-mootools-articles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>QuickBox &#8211; a quick Lightbox plugin for Mootools</title>
		<link>http://wp.garkbit.com/2009-06-22/quickbox-a-quick-lightbox-plugin-for-mootools/</link>
		<comments>http://wp.garkbit.com/2009-06-22/quickbox-a-quick-lightbox-plugin-for-mootools/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 07:38:52 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[Lightbox]]></category>
		<category><![CDATA[Mootools plugin]]></category>

		<guid isPermaLink="false">http://wp.garkbit.com/?p=89</guid>
		<description><![CDATA[Andrew Plummer has made a new Lightbox plug-in for Mootools version 1.2 called QuickBox. It aims to be lightweight and fast and has support for scrolling thru the images using the mouse wheel.
]]></description>
			<content:encoded><![CDATA[<p><a title="Andrew Plummer" href="http://www.andrewplummer.com/">Andrew Plummer</a> has made a new <a title="Lightbox 2" href="http://www.lokeshdhakar.com/projects/lightbox2/">Lightbox</a> plug-in for <a title="Mootools" href="http://mootools.net">Mootools</a> version 1.2 called <a title="Andrew Plummer's QuickBox" href="http://www.andrewplummer.com/code/quickbox/">QuickBox</a>. It aims to be lightweight and fast and has support for scrolling thru the images using the mouse wheel.</p>
]]></content:encoded>
			<wfw:commentRss>http://wp.garkbit.com/2009-06-22/quickbox-a-quick-lightbox-plugin-for-mootools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Private Variables in Mootools</title>
		<link>http://wp.garkbit.com/2009-06-18/private-variables-in-mootools/</link>
		<comments>http://wp.garkbit.com/2009-06-18/private-variables-in-mootools/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 11:46:58 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Mootools]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[McArthur GFX]]></category>
		<category><![CDATA[Mootools Class]]></category>

		<guid isPermaLink="false">http://wp.garkbit.com/?p=85</guid>
		<description><![CDATA[Sean at mcarthurgfx.com has figured out a neat way to get support for private variables in a Mootools Class. Check out his post Getting Private Variables in a Mootools Class for download and to get all the details.
]]></description>
			<content:encoded><![CDATA[<p>Sean at <a title="McArthur GFX" href="http://mcarthurgfx.com">mcarthurgfx.com</a> has figured out a neat way to get support for private variables in a Mootools Class. Check out his post <a href="http://mcarthurgfx.com/blog/article/getting-private-variables-in-a-mootools-class">Getting Private Variables in a Mootools Class</a> for download and to get all the details.</p>
]]></content:encoded>
			<wfw:commentRss>http://wp.garkbit.com/2009-06-18/private-variables-in-mootools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Google wave the future of e-mailing?</title>
		<link>http://wp.garkbit.com/2009-06-02/is-google-wave-the-future-of-e-mailing/</link>
		<comments>http://wp.garkbit.com/2009-06-02/is-google-wave-the-future-of-e-mailing/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 09:36:29 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Wave]]></category>

		<guid isPermaLink="false">http://wp.garkbit.com/?p=77</guid>
		<description><![CDATA[Well, I don&#8217;t know. But it serenely looks promising!
Check out the Google Wave presentation from Google I/O 2009.
]]></description>
			<content:encoded><![CDATA[<p>Well, I don&#8217;t know. But it serenely looks promising!</p>
<p>Check out the <a title="Google Wave" href="http://wave.google.com/">Google Wave presentation</a> from Google I/O 2009.</p>
]]></content:encoded>
			<wfw:commentRss>http://wp.garkbit.com/2009-06-02/is-google-wave-the-future-of-e-mailing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
