<?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>kelpdesign &#187; Tutorials</title>
	<atom:link href="http://www.kelpdesign.com/keys/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kelpdesign.com</link>
	<description>We build easy to manage websites.</description>
	<lastBuildDate>Wed, 30 Nov 2011 20:19:40 +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>What are the hard refresh shortcuts for a Mac using Safari and Firefox?</title>
		<link>http://www.kelpdesign.com/tech-talk/what-are-the-hard-refresh-shortcuts-for-a-mac-using-safari-and-firefox/</link>
		<comments>http://www.kelpdesign.com/tech-talk/what-are-the-hard-refresh-shortcuts-for-a-mac-using-safari-and-firefox/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 22:19:34 +0000</pubDate>
		<dc:creator>Lexi</dc:creator>
				<category><![CDATA[Tech Talk]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.kelpdesign.com/?p=448</guid>
		<description><![CDATA[Quick tip The shortcut keys for refresh / hard (force) refresh on a Mac for Safari and Firefox: Firefox Refresh: Command+R Hard refresh: Command+Shift+R Safari Refresh: Command+R Clear the cache: Command + Option + E *Command = Apple key]]></description>
			<content:encoded><![CDATA[<h2>Quick tip</h2>
<p>The shortcut keys for refresh / hard (force) refresh on a Mac for Safari and Firefox:</p>
<h2>Firefox</h2>
<p>Refresh: Command+R<br />
Hard refresh: Command+Shift+R</p>
<h2>Safari</h2>
<p>Refresh: Command+R<br />
Clear the cache: Command + Option + E</p>
<p><em>*Command = Apple key</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kelpdesign.com/tech-talk/what-are-the-hard-refresh-shortcuts-for-a-mac-using-safari-and-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto track outgoing links with Google Analytics using jQuery</title>
		<link>http://www.kelpdesign.com/tech-talk/howto-track-outgoing-links-with-google-analytics/</link>
		<comments>http://www.kelpdesign.com/tech-talk/howto-track-outgoing-links-with-google-analytics/#comments</comments>
		<pubDate>Fri, 29 May 2009 04:28:58 +0000</pubDate>
		<dc:creator>tim</dc:creator>
				<category><![CDATA[Tech Talk]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://kelpdesign.com/?p=319</guid>
		<description><![CDATA[Simply include these lines and the jQuery library in your document. $&#40;document&#41;.ready&#40;function&#40;&#41; &#123; $&#40;'a[href^=http]:not(&#34;[href*=://' + document.domain + ']&#34;)'&#41;.click&#40;function&#40;&#41; &#123; pageTracker._trackPageview&#40;'/out/'+$&#40;this&#41;.attr&#40;&#34;href&#34;&#41;&#41;; &#125;&#41;; &#125;&#41;; (please indent them!) Cheers]]></description>
			<content:encoded><![CDATA[<p>Simply include these lines and the <a href="http://jquery.com/">jQuery</a> library in your document.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'a[href^=http]:not(&quot;[href*=://'</span> <span style="color: #339933;">+</span> document.<span style="color: #660066;">domain</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">']&quot;)'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
pageTracker._trackPageview<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'/out/'</span><span style="color: #339933;">+</span>$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;href&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>(please indent them!)</p>
<p>Cheers</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kelpdesign.com/tech-talk/howto-track-outgoing-links-with-google-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVN update made easy</title>
		<link>http://www.kelpdesign.com/tech-talk/svn-update-made-easy/</link>
		<comments>http://www.kelpdesign.com/tech-talk/svn-update-made-easy/#comments</comments>
		<pubDate>Mon, 25 May 2009 04:44:35 +0000</pubDate>
		<dc:creator>tim</dc:creator>
				<category><![CDATA[Tech Talk]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://kelpdesign.com/?p=279</guid>
		<description><![CDATA[PHP Subversion Updater In our company we use Subversion for version control. Using a GUI for Mac gives our more graphical team members easy access to common tasks, such as committing changed files to the repository. However updating the working copy on a (test-) web server still requires knowlegde of a unix shell and having [...]]]></description>
			<content:encoded><![CDATA[<h3><img class="alignright size-full wp-image-283" title="subversion logo" src="http://kelpdesign.com/wp-content/uploads/2009/05/imageaxd.png" alt="subversion logo" width="230" height="199" />PHP Subversion Updater</h3>
<p>In our company we use <a href="http://subversion.tigris.org/">Subversion</a> for version control.</p>
<p>Using a GUI for Mac gives our more graphical team members easy access to common tasks, such as committing changed files to the repository.</p>
<p>However updating the working copy on a (test-) web server still requires knowlegde of a unix shell and having to log in and running it manually can be a full time position.</p>
<p>After doing some research I found the <a href="http://nz2.php.net/manual/en/book.svn.php">official PECL SVN bindings</a>. These are still very experimental and a hussle to install.</p>
<p>So I decided to use the simplest solution that just executes a &#8220;svn up&#8221; on the server and does not require any server-side modification:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">exec</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;svn up &quot;</span><span style="color: #339933;">.</span><span style="color: #990000;">dirname</span><span style="color: #009900;">&#40;</span><span style="color: #009900; font-weight: bold;">__FILE__</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$out</span><span style="color: #339933;">,</span> <span style="color: #000088;">$ret</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Which serves perfectly for this purpose.</p>
<p>Wrapping this line in a (30secs) self refreshing file makes sure the working copy stays updated.</p>
<p>And the best thing is:<br />
it does not require anything, except installed svn binaries that are executable for the apache user and write access to the webroot.<br />
<a href="http://kelpdesign.com/wp-content/uploads/2009/05/svn-upphps.zip">Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kelpdesign.com/tech-talk/svn-update-made-easy/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Howto downsize product images in Magento using Mage_Catalog_Helper_Image</title>
		<link>http://www.kelpdesign.com/tech-talk/howto-downsize-product-images-in-magento-using-mage_catalog_helper_image/</link>
		<comments>http://www.kelpdesign.com/tech-talk/howto-downsize-product-images-in-magento-using-mage_catalog_helper_image/#comments</comments>
		<pubDate>Thu, 14 May 2009 06:21:33 +0000</pubDate>
		<dc:creator>tim</dc:creator>
				<category><![CDATA[Tech Talk]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Image manipulation]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://kelpdesign.com/?p=111</guid>
		<description><![CDATA[or &#8220;How can I downsize large product images but not enlarge small images?&#8221; simple as: syntax: $this-&#62;helper&#40;'catalog/image'&#41; -&#62;init&#40;$_product, 'image'&#41; -&#62;keepFrame&#40;false&#41; -&#62;constrainOnly&#40;true&#41; -&#62;resize&#40;650&#41;; example: $this-&#62;helper&#40;'catalog/image'&#41; -&#62;init&#40;$_product, 'image'&#41; -&#62;keepFrame&#40;false&#41; -&#62;constrainOnly&#40;true&#41; -&#62;resize&#40;650&#41;; explanation: $this-&#62;helper(&#8216;catalog/image&#8217;) loads the &#8216;Mage_Catalog_Helper_Image&#8217; located at &#8216;app/code/core/Mage/Catalog/Helper/Image.php&#8217; (NOTE: it only handles instances of &#8216;Mage_Catalog_Model_Product&#8217;) [why not categories? - they can have images too!!] Mage_Catalog_Helper_Image::init($_product, &#8216;image&#8217;) [...]]]></description>
			<content:encoded><![CDATA[<p>or</p>
<h2>&#8220;How can I downsize large product images but not enlarge small images?&#8221;</h2>
<p>simple as:</p>
<p>syntax:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">helper</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'catalog/image'</span><span style="color: #009900;">&#41;</span>
<span style="color: #339933;">-&gt;</span><span style="color: #004000;">init</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_product</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'image'</span><span style="color: #009900;">&#41;</span>
<span style="color: #339933;">-&gt;</span><span style="color: #004000;">keepFrame</span><span style="color: #009900;">&#40;</span><span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span>
<span style="color: #339933;">-&gt;</span><span style="color: #004000;">constrainOnly</span><span style="color: #009900;">&#40;</span><span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span>
<span style="color: #339933;">-&gt;</span><span style="color: #004000;">resize</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">650</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>example:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">helper</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'catalog/image'</span><span style="color: #009900;">&#41;</span>
<span style="color: #339933;">-&gt;</span><span style="color: #004000;">init</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_product</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'image'</span><span style="color: #009900;">&#41;</span>
<span style="color: #339933;">-&gt;</span><span style="color: #004000;">keepFrame</span><span style="color: #009900;">&#40;</span><span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span>
<span style="color: #339933;">-&gt;</span><span style="color: #004000;">constrainOnly</span><span style="color: #009900;">&#40;</span><span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span>
<span style="color: #339933;">-&gt;</span><span style="color: #004000;">resize</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">650</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p><span id="more-111"></span></p>
<h3>explanation:</h3>
<p><strong><em>$this-&gt;helper(&#8216;catalog/image&#8217;)</em></strong></p>
<p>loads the &#8216;Mage_Catalog_Helper_Image&#8217; located at &#8216;app/code/core/Mage/Catalog/Helper/Image.php&#8217;</p>
<p>(<strong>NOTE</strong>: it only handles instances of &#8216;Mage_Catalog_Model_Product&#8217;)</p>
<p>[<em>why not categories? - they can have images too!!</em>]</p>
<p><strong><em>Mage_Catalog_Helper_Image::init($_product, &#8216;image&#8217;)</em></strong></p>
<p>loads the actual product in the helper</p>
<p><strong><em>Mage_Catalog_Helper_Image::keepFrame(false)</em></strong></p>
<p>avoids getting the small image in original size on a solid background color presented (can be handy not to break some layouts)</p>
<p><strong><em>Mage_Catalog_Helper_Image::constrainOnly(false)</em></strong></p>
<p>avoids getting small images bigger</p>
<p><strong><em>Mage_Catalog_Helper_Image::resize(600)</em></strong></p>
<p>sets the desired width to 600px and the height accordingly (proportional by default)</p>
<p>Check &#8216;app/code/core/Mage/Catalog/Helper/Image.php&#8217; for more handy methods!</p>
<p>Hope this helps someone.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kelpdesign.com/tech-talk/howto-downsize-product-images-in-magento-using-mage_catalog_helper_image/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to get from A to B using Google maps</title>
		<link>http://www.kelpdesign.com/tech-talk/how-to-get-from-a-to-b-using-google-maps/</link>
		<comments>http://www.kelpdesign.com/tech-talk/how-to-get-from-a-to-b-using-google-maps/#comments</comments>
		<pubDate>Wed, 13 May 2009 22:05:54 +0000</pubDate>
		<dc:creator>Lexi</dc:creator>
				<category><![CDATA[Tech Talk]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://kelpdesign.com/?p=25</guid>
		<description><![CDATA[Have you every been stuck for directions or unsure about what roads to take? It&#8217;s a common problem that people (in particular men) hate to stop to ask for directions. Google maps can be a great tool to alleviate this problem (and guys, you can even do this before you get on the road; a [...]]]></description>
			<content:encoded><![CDATA[<p>Have you every been stuck for directions or unsure about what roads to take? It&#8217;s a common problem that people (in particular men) hate to stop to ask for directions. <a href="http://maps.google.co.nz" target="_blank">Google maps</a> can be a great tool to alleviate this problem (and guys, you can even do this before you get on the road; a great way to impress the ladies).<br />
<span id="more-25"></span></p>
<p><strong>Long distance:</strong></p>
<p>My cousin recently had to drive from Queenstown to Christchurch on her own, but couldn&#8217;t quite remember how to get there. Before she left I suggested she have a quick look on <a href="http://maps.google.co.nz" target="_blank">Google Maps</a> (http://maps.google.com).</p>
<p style="text-align: center;"><img class="size-full wp-image-41 aligncenter" title="google-directions" src="http://kelpdesign.com/wp-content/uploads/2009/05/google-directions.jpg" alt="google-directions" width="372" height="223" /></p>
<ul>
<li>Step 1: Go to <a href="http://maps.google.co.nz" target="_blank">http://maps.google.com</a> and click on &#8220;Get Directions&#8221;</li>
<li>Step 2: Enter your location, and then enter your destination in the &#8220;A&#8221; &amp; &#8220;B&#8221; boxes</li>
<li>Step 3: Click &#8220;Get directions&#8221; to search the map</li>
</ul>
<p><strong><em>Tip:</em></strong> If you&#8217;re going to a specific address you can type this in too e.g. &#8220;Crowne Plaza, Christchurch, New Zealand&#8221; &#8211; give it a try!</p>
<p style="text-align: center;"><a href="http://kelpdesign.com/wp-content/uploads/2009/05/google-result.jpg" target="_blank"><br />
<img class="size-medium wp-image-48 aligncenter" title="google-result" src="http://kelpdesign.com/wp-content/uploads/2009/05/google-result-300x208.jpg" alt="google-result" width="300" height="208" /></a><br />
The result (click to enlarge) </p>
<p><strong>Short distance:</strong></p>
<p>&#8220;Ahh&#8221; she said, &#8220;I hate Christchurch&#8217;s one way road system&#8221;. No problem. <a href="http://maps.google.co.nz" target="_blank">Google Maps</a> will take this into account. If you zoom in on your destination using the &#8220;+ -&#8221; buttons you can see the road directions.</p>
<p style="text-align: center;"><a href="http://kelpdesign.com/wp-content/uploads/2009/05/google-detail.jpg" target="_blank"><br />
<img class="size-medium wp-image-47 aligncenter" title="google-detail" src="http://kelpdesign.com/wp-content/uploads/2009/05/google-detail-300x241.jpg" alt="google-detail" width="300" height="241" /></a><br />The result (click to enlarge)</p>
<p><strong>Other uses:</strong></p>
<ul>
<li>A great tool for getting from the airport to your hotel, when you&#8217;re in a different country</li>
<li>It&#8217;s great for judging distances &#8211; if you&#8217;re not sure whether you should walk or take a car</li>
<li>Avoiding toll roads &#8211; click on &#8220;show options&#8221;</li>
</ul>
<p>Where are you going? How has this helped? Any other tips or ideas? Please leave your comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kelpdesign.com/tech-talk/how-to-get-from-a-to-b-using-google-maps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Brown &amp; Pemberton</title>
		<link>http://www.kelpdesign.com/work/brown-pemberton/</link>
		<comments>http://www.kelpdesign.com/work/brown-pemberton/#comments</comments>
		<pubDate>Sun, 10 May 2009 22:48:23 +0000</pubDate>
		<dc:creator>Lexi</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://kelpdesign.com/?p=3</guid>
		<description><![CDATA[Brown &#38; Pemberton are a planning company who work nationwide on many different projects ranging from large-scale developments, infrastructure projects, commercial, urban and rural projects to single dwellings. Kelpdesign worked with Brandcom to develop Brown &#38; Pemberton&#8217;s new website. The site&#8217;s aim was to promote their latest projects as well as to introduce potential clients [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a title="Brown &amp; Pemberton" href="http://www.brownpemberton.com" target="_blank"><img class="size-full wp-image-7 alignright" title="bp_logo" src="http://kelpdesign.com/wp-content/uploads/2009/05/bp_logo.jpg" alt="bp_logo" width="280" height="100" /></a><a title="Brown &amp; Pemberton" href="http://www.brownpemberton.com" target="_blank"></a></p>
<p style="text-align: left;"><a title="Brown &amp; Pemberton" href="http://www.brownpemberton.com" target="_blank">Brown &amp; Pemberton</a> are a planning company who work nationwide on many different projects ranging from large-scale developments, infrastructure projects, commercial, urban and rural projects to single dwellings.</p>
<p style="text-align: left;"><a href="http://www.kelpdesign.com" target="_blank">Kelpdesign</a> worked with <a title="Brandcom" href="http://www.brandcom.co.nz">Brandcom</a> to develop Brown &amp; Pemberton&#8217;s new website. The site&#8217;s aim was to promote their latest projects as well as to introduce potential clients to the team and thier range of experience.</p>
<p><span id="more-3"></span><img class="alignnone size-full wp-image-92" title="brown-pemberton" src="http://kelpdesign.com/wp-content/uploads/2009/05/brown-pemberton.jpg" alt="brown-pemberton" width="569" height="399" /></p>
<p><strong>Developer&#8217;s note:</strong><br />
 The site features a fixed header and footer as an overlay which allows the body of the content to scroll behind. To create this using CSS you can use the following code (note: not supported in IE6).</p>
<div class="cssHead"><span class="cssSelector">#header #logo</span></div>
<div class="cssHead">{</div>
<div class="cssProp editGroup"><span class="cssPropName editable">background-image</span><span class="cssColon">:</span><span class="cssPropValue editable"> url(images/bp_logo.png)</span><span class="cssSemi">;</span></div>
<div class="cssProp editGroup"><span class="cssPropName editable">bottom</span><span class="cssColon">: </span><span class="cssPropValue editable">0</span><span class="cssSemi">;</span></div>
<div class="cssProp editGroup"><span class="cssPropName editable">height</span><span class="cssColon">:</span><span class="cssPropValue editable"> 145px</span><span class="cssSemi">;</span></div>
<div class="cssProp editGroup"><span class="cssPropName editable">margin-left</span><span class="cssColon">: </span><span class="cssPropValue editable">425px</span><span class="cssSemi">;</span></div>
<div class="cssProp editGroup"><span class="cssPropName editable">position</span><span class="cssColon">: </span><span class="cssPropValue editable">fixed</span><span class="cssSemi">;</span></div>
<div class="cssProp editGroup"><span class="cssPropName editable">width</span><span class="cssColon">: </span><span class="cssPropValue editable">420px</span><span class="cssSemi">;</span></div>
<div class="cssProp editGroup"><span class="cssPropName editable">z-index</span><span class="cssColon">:</span><span class="cssPropValue editable"> 100</span><span class="cssSemi">;</span></div>
<div class="cssProp editGroup"><span class="cssSemi">}</span></div>
<div class="cssProp editGroup"><span class="cssSemi"><br />
 </span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.kelpdesign.com/work/brown-pemberton/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

