<?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>drift.net.nz</title>
	<atom:link href="http://drift.net.nz/feed/" rel="self" type="application/rss+xml" />
	<link>http://drift.net.nz</link>
	<description>it'll all end in beers</description>
	<lastBuildDate>Tue, 31 Aug 2010 03:03:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Recursive Navigation Menu for Umbraco 4.5</title>
		<link>http://drift.net.nz/2010/08/31/recursive-navigation-menu-for-umbraco-4-5/</link>
		<comments>http://drift.net.nz/2010/08/31/recursive-navigation-menu-for-umbraco-4-5/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 02:50:34 +0000</pubDate>
		<dc:creator>justin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[umbraco]]></category>

		<guid isPermaLink="false">http://drift.net.nz/?p=206</guid>
		<description><![CDATA[I recently migrated a site from Umbraco 4.0.2 to Umbraco 4.5 and moved to the new XML schema. Lots of my XSLT automagically converted using the XsltUpdater for Umbraco package but not everything. So here&#8217;s my updated Recursive Navigation Menu XSLT for the new Umbraco 4.5 XML schema : 1 2 3 4 5 6 [...]]]></description>
			<content:encoded><![CDATA[<p>I recently migrated a site from Umbraco 4.0.2 to Umbraco 4.5 and moved to the new XML schema.</p>
<p>Lots of my XSLT automagically converted using the <a href="http://our.umbraco.org/projects/developer-tools/xsltupdater-for-umbraco">XsltUpdater for Umbraco</a> package but not everything. </p>
<p>So here&#8217;s my updated Recursive Navigation Menu XSLT  for the new Umbraco 4.5 XML schema :</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;UTF-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="color: #00bbdd;">&lt;!DOCTYPE xsl:stylesheet [ &lt;!ENTITY nbsp &quot;&amp;#x00A0;&quot;&gt;</span> ]&gt;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:stylesheet</span> </span>
<span style="color: #009900;">  <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> </span>
<span style="color: #009900;">  <span style="color: #000066;">xmlns:xsl</span>=<span style="color: #ff0000;">&quot;http://www.w3.org/1999/XSL/Transform&quot;</span> </span>
<span style="color: #009900;">  <span style="color: #000066;">xmlns:msxml</span>=<span style="color: #ff0000;">&quot;urn:schemas-microsoft-com:xslt&quot;</span></span>
<span style="color: #009900;">  <span style="color: #000066;">xmlns:umbraco.library</span>=<span style="color: #ff0000;">&quot;urn:umbraco.library&quot;</span></span>
<span style="color: #009900;">  <span style="color: #000066;">exclude-result-prefixes</span>=<span style="color: #ff0000;">&quot;msxml umbraco.library&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
&nbsp;
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:output</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;xml&quot;</span> <span style="color: #000066;">omit-xml-declaration</span>=<span style="color: #ff0000;">&quot;yes&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:param</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;currentPage&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
&nbsp;
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:template</span> <span style="color: #000066;">match</span>=<span style="color: #ff0000;">&quot;/&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
&nbsp;
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:call-template</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;menu&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
      <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:with-param</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;level&quot;</span> <span style="color: #000066;">select</span>=<span style="color: #ff0000;">&quot;1&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/xsl:call-template<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/xsl:template<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:template</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;menu&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:param</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;level&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
&nbsp;
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:if</span> <span style="color: #000066;">test</span>=<span style="color: #ff0000;">&quot;count($currentPage/ancestor-or-self::* [@level=$level]/* [@isDoc and string(umbracoNaviHide) != '1'] ) &amp;gt; '0'&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
          <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;ul</span> <span style="color: #000066;">id</span>=<span style="color: #ff0000;">&quot;level{$level}&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
              <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:if</span> <span style="color: #000066;">test</span>=<span style="color: #ff0000;">&quot;$level=1&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;li<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
              <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;a</span> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">&quot;/&quot;</span> <span style="color: #000066;">id</span>=<span style="color: #ff0000;">&quot;nav-home&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>Home<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/a<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/li<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
          <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/xsl:if<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
          <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:for-each</span> <span style="color: #000066;">select</span>=<span style="color: #ff0000;">&quot;$currentPage/ancestor-or-self::*  [@level=$level]/* [@isDoc and string(umbracoNaviHide) != '1'] &quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;li<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
              <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:if</span> <span style="color: #000066;">test</span>=<span style="color: #ff0000;">&quot;$currentPage/@id = current()/@id&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
                <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:attribute</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;class&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>selected<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/xsl:attribute<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
              <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/xsl:if<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
              <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;a</span> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">&quot;{umbraco.library:NiceUrl(@id)}&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
                <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:if</span> <span style="color: #000066;">test</span>=<span style="color: #ff0000;">&quot;$currentPage/ancestor-or-self::*[@isDoc]/@id = current()/@id&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
                  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:attribute</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;class&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>selected<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/xsl:attribute<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
                <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/xsl:if<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
                <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:if</span> <span style="color: #000066;">test</span>=<span style="color: #ff0000;">&quot;$level = 1&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
                  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:attribute</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;id&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>nav-<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:value-of</span> <span style="color: #000066;">select</span>=<span style="color: #ff0000;">&quot;./umbracoUrlName&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span><span style="color: #000000; font-weight: bold;">&lt;/xsl:attribute<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
                <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/xsl:if<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
                <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:value-of</span> <span style="color: #000066;">select</span>=<span style="color: #ff0000;">&quot;@nodeName&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
              <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/a<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
                <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:if</span> <span style="color: #000066;">test</span>=<span style="color: #ff0000;">&quot;$currentPage/ancestor-or-self::*[@isDoc]/@id = current()/@id&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
                    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:call-template</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;menu&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
                      <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:with-param</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;level&quot;</span> <span style="color: #000066;">select</span>=<span style="color: #ff0000;">&quot;$level+1&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
                    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/xsl:call-template<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
                <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/xsl:if<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/li<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
          <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/xsl:for-each<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/ul<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>    
     <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/xsl:if<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/xsl:template<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/xsl:stylesheet<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p>In my case I also exclude pages of a certain docType, in this case <em>Job</em>, using [name()!='Job'] which is the equivalent of [@nodeTypeAlias!='Job'] in the old schema. So, you can do things like :</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:if</span> <span style="color: #000066;">test</span>=<span style="color: #ff0000;">&quot;count($currentPage/ancestor-or-self::* [@level=$level]/* [@isDoc and string(umbracoNaviHide) != '1'] [name()!='Job']) &amp;gt; '0'&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span></pre></td></tr></table></div>

<p>instead of</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:if</span> <span style="color: #000066;">test</span>=<span style="color: #ff0000;">&quot;count($currentPage/ancestor-or-self::node [@level=$level]/node [@nodeTypeAlias!='Job'] [string(data [@alias='umbracoNaviHide']) != '1']) &amp;gt; '0'&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span></pre></td></tr></table></div>

<p>or</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:for-each</span> <span style="color: #000066;">select</span>=<span style="color: #ff0000;">&quot;$currentPage/*[not(self::NewsItem)]&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/xsl:for-each<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p>instead of</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;xsl:for-each</span> <span style="color: #000066;">select</span>=<span style="color: #ff0000;">&quot;$currentPage/node [@nodeTypeAlias!='NewsItem']&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/xsl:for-each<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p>Credit to <a href="http://lordtoro.wordpress.com/2010/07/10/recursive-navigation-in-umbraco-4-5-0/">Lordtoro </a>for an example that helped me convert my old XSLT Recursive Navigation.</p>
]]></content:encoded>
			<wfw:commentRss>http://drift.net.nz/2010/08/31/recursive-navigation-menu-for-umbraco-4-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tauranga Web Meetup</title>
		<link>http://drift.net.nz/2010/06/02/tauranga-web-meetup/</link>
		<comments>http://drift.net.nz/2010/06/02/tauranga-web-meetup/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 11:07:23 +0000</pubDate>
		<dc:creator>justin</dc:creator>
				<category><![CDATA[Tauranga]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://drift.net.nz/?p=197</guid>
		<description><![CDATA[Tauranga Web Meetups are go! I&#8217;ve been wanting a Tauranga Web Meetup since I moved here almost 4 years ago. There&#8217;s a lot of web professionals based in Tauranga, Mount Maunganui and Papamoa but I haven&#8217;t met many of them in person. Twitter&#8217;s great and I&#8217;ve been following what a few of the locals are [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.meetup.com/TaurangaWeb/">Tauranga Web Meetups are go!</a></p>
<p>I&#8217;ve been wanting a Tauranga Web Meetup since I moved here almost 4 years ago. </p>
<p>There&#8217;s a lot of <a href="http://www.marketingfirst.co.nz/2010/04/tauranga-website-design-list-of-all-the-tauranga-website-designers/">web professionals based in Tauranga, Mount Maunganui and Papamoa</a> but I haven&#8217;t met many of them in person. Twitter&#8217;s great and I&#8217;ve been following what a few of the locals are up to, but nothing beats getting together in the same room picking brains. </p>
<p>So finally we have  a Tauranga Web Meetup happening. The first meetup is at <a href="http://www.qjumpers.co.nz">QJumpers</a>, above Storage Solutions, Bay Central, Tauranga (by Briscoes, Rebel Sport etc).<br />
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.nz/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=qjumpers&amp;sll=-37.670784,176.138908&amp;sspn=0.064745,0.132093&amp;ie=UTF8&amp;hq=qjumpers&amp;hnear=&amp;ll=-37.67477,176.166025&amp;spn=0.032373,0.066047&amp;z=14&amp;iwloc=A&amp;cid=7751091738591672180&amp;output=embed"></iframe><br /><small><a href="http://maps.google.co.nz/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=qjumpers&amp;sll=-37.670784,176.138908&amp;sspn=0.064745,0.132093&amp;ie=UTF8&amp;hq=qjumpers&amp;hnear=&amp;ll=-37.67477,176.166025&amp;spn=0.032373,0.066047&amp;z=14&amp;iwloc=A&amp;cid=7751091738591672180" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>
<p>The <a href="http://www.meetup.com/aucklandweb/">Auckland Web Meetups</a> have been going strong for a few years now and are the inspiration for the Tauranga Web Meetup. Hopefully we can get it happening in Tauranga. I look forward to meeting local web professionals and finding out who is out there. There&#8217;s a lot of work I&#8217;d like to farm out to the appropriately skilled people and I&#8217;m sure there&#8217;s lots of other locals thinking the same. </p>
<p>Let&#8217;s get together. </p>
]]></content:encoded>
			<wfw:commentRss>http://drift.net.nz/2010/06/02/tauranga-web-meetup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cults &#8211; Go Outside</title>
		<link>http://drift.net.nz/2010/04/15/cults-go-outside/</link>
		<comments>http://drift.net.nz/2010/04/15/cults-go-outside/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 11:07:07 +0000</pubDate>
		<dc:creator>justin</dc:creator>
				<category><![CDATA[drift]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://drift.net.nz/2010/04/15/cults-go-outside/</guid>
		<description><![CDATA[Go Outside by Cults]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="400" height="100" ><param name="movie" value="http://bandcamp.com/EmbeddedPlayer.swf/album=1417923209/size=venti/bgcol=FFFFFF/linkcol=4285BB/" /><param name="quality" value="high" /><param name="allowScriptAccess" value="never" /><param name="allowNetworking" value="always" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#FFFFFF" /><embed src="http://bandcamp.com/EmbeddedPlayer.swf/album=1417923209/size=venti/bgcol=FFFFFF/linkcol=4285BB/" width="400" height="100" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" quality=high allowScriptAccess=never allowNetworking=always wmode=transparent bgcolor=#FFFFFF ></embed><noembed><a href="http://cults.bandcamp.com/album/cults-7">Go Outside by Cults</a></noembed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://drift.net.nz/2010/04/15/cults-go-outside/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Augmented-reality maps</title>
		<link>http://drift.net.nz/2010/02/16/augmented-reality-maps/</link>
		<comments>http://drift.net.nz/2010/02/16/augmented-reality-maps/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 00:30:56 +0000</pubDate>
		<dc:creator>justin</dc:creator>
				<category><![CDATA[drift]]></category>
		<category><![CDATA[augmented-reality]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[TED]]></category>

		<guid isPermaLink="false">http://drift.net.nz/?p=192</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="446" height="326"><param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"></param><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent"></param><param name="bgColor" value="#ffffff"></param><param name="flashvars" value="vu=http://video.ted.com/talks/dynamic/BlaiseAguerayArcas_2010-medium.mp4&#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/BlaiseAgueraYArcas-2010.embed_thumbnail.jpg&#038;vw=432&#038;vh=240&#038;ap=0&#038;ti=766&#038;introDuration=16500&#038;adDuration=4000&#038;postAdDuration=2000&#038;adKeys=talk=blaise_aguera;year=2010;theme=a_taste_of_ted2010;theme=new_on_ted_com;theme=the_creative_spark;event=TED2010;&#038;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" /><embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="446" height="326" allowFullScreen="true" flashvars="vu=http://video.ted.com/talks/dynamic/BlaiseAguerayArcas_2010-medium.mp4&#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/BlaiseAgueraYArcas-2010.embed_thumbnail.jpg&#038;vw=432&#038;vh=240&#038;ap=0&#038;ti=766&#038;introDuration=16500&#038;adDuration=4000&#038;postAdDuration=2000&#038;adKeys=talk=blaise_aguera;year=2010;theme=a_taste_of_ted2010;theme=new_on_ted_com;theme=the_creative_spark;event=TED2010;"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://drift.net.nz/2010/02/16/augmented-reality-maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brian Jonestown Massacre &#8211; Dekta</title>
		<link>http://drift.net.nz/2010/02/09/brian-jonestown-massacre-dekta/</link>
		<comments>http://drift.net.nz/2010/02/09/brian-jonestown-massacre-dekta/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 02:25:14 +0000</pubDate>
		<dc:creator>justin</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[brian-jonestown-massacre]]></category>

		<guid isPermaLink="false">http://drift.net.nz/?p=190</guid>
		<description><![CDATA[DETKA! DETKA! DETKA! From the new Brian Jonestown Massacre album Who Killed Sgt Pepper?]]></description>
			<content:encoded><![CDATA[<p>DETKA! DETKA! DETKA! From the new Brian Jonestown Massacre album Who Killed Sgt Pepper?</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/CtB6KS1sATQ&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/CtB6KS1sATQ&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://drift.net.nz/2010/02/09/brian-jonestown-massacre-dekta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Knife &#8211; Tomorrow in a Year</title>
		<link>http://drift.net.nz/2010/01/30/the-knife-tomorrow-in-a-year/</link>
		<comments>http://drift.net.nz/2010/01/30/the-knife-tomorrow-in-a-year/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 08:12:35 +0000</pubDate>
		<dc:creator>justin</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[the-knife charles-darwin]]></category>

		<guid isPermaLink="false">http://drift.net.nz/?p=188</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe name="fairplayer" scrolling="no" frameborder="0" width="220" height="380" src="http://fairtilizer.com/playlist/27042?fairplayer=large"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://drift.net.nz/2010/01/30/the-knife-tomorrow-in-a-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The High Road &#8211; Broken Bells</title>
		<link>http://drift.net.nz/2010/01/28/the-high-road-broken-bells/</link>
		<comments>http://drift.net.nz/2010/01/28/the-high-road-broken-bells/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 20:43:34 +0000</pubDate>
		<dc:creator>justin</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[the-shins dangermouse broken-bells]]></category>

		<guid isPermaLink="false">http://drift.net.nz/?p=186</guid>
		<description><![CDATA[The new vid for Broken Bells The High Road. Broken Bells = The Shins&#8217; James Mercer and Dangermouse. The High RoadBroken Bells ]]></description>
			<content:encoded><![CDATA[<p>The new vid for Broken Bells The High Road.<br />
Broken Bells = The Shins&#8217; James Mercer and Dangermouse.<br />
<font face="Verdana" size="1" color="#999999"><br/><a style="font: Verdana" href="http://vids.myspace.com/index.cfm?fuseaction=vids.individual&#038;videoid=102521439">The High Road</a><br/><object width="425px" height="360px" ><param name="allowFullScreen" value="true"/><param name="wmode" value="transparent"/><param name="movie" value="http://mediaservices.myspace.com/services/media/embed.aspx/m=102521439,t=1,mt=video"/><embed src="http://mediaservices.myspace.com/services/media/embed.aspx/m=102521439,t=1,mt=video" width="425" height="360" allowFullScreen="true" type="application/x-shockwave-flash" wmode="transparent"></embed></object><br/><a style="font: Verdana" href="http://www.myspace.com/brokenbells">Broken Bells</a> </font></p>
]]></content:encoded>
			<wfw:commentRss>http://drift.net.nz/2010/01/28/the-high-road-broken-bells/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Banksy &#8211; Exit Through The Gift Shop trailer</title>
		<link>http://drift.net.nz/2010/01/25/banksy-exit-through-the-gift-shop-trailer/</link>
		<comments>http://drift.net.nz/2010/01/25/banksy-exit-through-the-gift-shop-trailer/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 10:04:50 +0000</pubDate>
		<dc:creator>justin</dc:creator>
				<category><![CDATA[movies]]></category>
		<category><![CDATA[banksy]]></category>
		<category><![CDATA[film]]></category>
		<category><![CDATA[graffiti]]></category>

		<guid isPermaLink="false">http://drift.net.nz/?p=183</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/GTlm6dU2xHk&#038;hl=en_US&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/GTlm6dU2xHk&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://drift.net.nz/2010/01/25/banksy-exit-through-the-gift-shop-trailer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The XX &#8211; VCRs</title>
		<link>http://drift.net.nz/2010/01/21/the-xx-vcrs/</link>
		<comments>http://drift.net.nz/2010/01/21/the-xx-vcrs/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 01:21:05 +0000</pubDate>
		<dc:creator>justin</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[The-XX]]></category>

		<guid isPermaLink="false">http://drift.net.nz/?p=178</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="430" height="275" id="delve_playerf41db15d64b449eaa0064d5529d83f23334260o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param name="movie" value="http://assets.delvenetworks.com/player/loader.swf"/><param name="wmode" value="window"/><param name="allowScriptAccess" value="always"/><param name="allowFullScreen" value="true"/><param name="flashvars" value="mediaId=491d56232dd545278f51dc2394fcb879&amp;playerForm=88a26316a62d4655a806dda0da4e95ca&amp;autoplayNextClip=true"/><embed src="http://assets.delvenetworks.com/player/loader.swf" name="delve_playerf41db15d64b449eaa0064d5529d83f23334260e" wmode="window" width="430" height="275" allowScriptAccess="always" allowFullScreen="true" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" flashvars="mediaId=491d56232dd545278f51dc2394fcb879&amp;playerForm=88a26316a62d4655a806dda0da4e95ca&amp;autoplayNextClip=true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://drift.net.nz/2010/01/21/the-xx-vcrs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Atlas Sound &#8211; Attic Lights</title>
		<link>http://drift.net.nz/2009/11/24/atlas-sound-attic-lights/</link>
		<comments>http://drift.net.nz/2009/11/24/atlas-sound-attic-lights/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 22:16:07 +0000</pubDate>
		<dc:creator>justin</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[atlas-sound bradford-cox]]></category>

		<guid isPermaLink="false">http://drift.net.nz/?p=175</guid>
		<description><![CDATA[Atlas Sound &#8211; &#8220;Attic Lights&#8221; &#8211; A Take Away Show from La Blogotheque on Vimeo.]]></description>
			<content:encoded><![CDATA[<p><object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=7546925&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=7546925&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object>
<p><a href="http://vimeo.com/7546925">Atlas Sound &#8211; &#8220;Attic Lights&#8221; &#8211; A Take Away Show</a> from <a href="http://vimeo.com/blogotheque">La Blogotheque</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://drift.net.nz/2009/11/24/atlas-sound-attic-lights/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
