<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Hone Watson Bookmarks &#187; drupal</title>
	<atom:link href="http://bookmarks.honewatson.com/tag/drupal/feed/" rel="self" type="application/rss+xml" />
	<link>http://bookmarks.honewatson.com</link>
	<description>I bring you the best from the web - random bookmarks.</description>
	<lastBuildDate>Tue, 31 Jan 2012 03:45:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='bookmarks.honewatson.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Hone Watson Bookmarks &#187; drupal</title>
		<link>http://bookmarks.honewatson.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://bookmarks.honewatson.com/osd.xml" title="Hone Watson Bookmarks" />
	<atom:link rel='hub' href='http://bookmarks.honewatson.com/?pushpress=hub'/>
		<item>
		<title>Drupal 6 Redirect Form hook_form_alter</title>
		<link>http://bookmarks.honewatson.com/2010/03/03/drupal-6-redirect-form-hook_form_alter/</link>
		<comments>http://bookmarks.honewatson.com/2010/03/03/drupal-6-redirect-form-hook_form_alter/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 10:52:32 +0000</pubDate>
		<dc:creator>honewatson</dc:creator>
				<category><![CDATA[Drupal Development]]></category>
		<category><![CDATA[Web Apps]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[hook_form_alter]]></category>

		<guid isPermaLink="false">http://bookmarks.honewatson.com/2010/03/03/drupal-6-redirect-form-hook_form_alter/</guid>
		<description><![CDATA[How to redirect a form in drupal 6. Inside your module call hook_form_alter. function yourModuleName_form_alter(&#38;$form, $form_state, $form_id) { if ($form_id == 'user_register') { $form['#redirect'][] = 'node/341'; } } Of course you need to find the appropriate $form_id.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bookmarks.honewatson.com&amp;blog=1388057&amp;post=415&amp;subd=honewatson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>How to redirect a form in drupal 6.</p>
<p><span id="more-415"></span></p>
<p>Inside your module call hook_form_alter.</p>
<pre>
function yourModuleName_form_alter(&amp;$form, $form_state, $form_id) {
 	if ($form_id == 'user_register') {
		$form['#redirect'][] = 'node/341';
	}
}
</pre>
<p>Of course you need to find the appropriate $form_id.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/honewatson.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/honewatson.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/honewatson.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/honewatson.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/honewatson.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/honewatson.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/honewatson.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/honewatson.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/honewatson.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/honewatson.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/honewatson.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/honewatson.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/honewatson.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/honewatson.wordpress.com/415/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bookmarks.honewatson.com&amp;blog=1388057&amp;post=415&amp;subd=honewatson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bookmarks.honewatson.com/2010/03/03/drupal-6-redirect-form-hook_form_alter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f4e9f5ca1121158385c9408cb2dafd03?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">honewatson</media:title>
		</media:content>
	</item>
		<item>
		<title>Best Drupal Blog Tips</title>
		<link>http://bookmarks.honewatson.com/2010/02/18/best-drupal-blog-tips/</link>
		<comments>http://bookmarks.honewatson.com/2010/02/18/best-drupal-blog-tips/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 03:14:20 +0000</pubDate>
		<dc:creator>honewatson</dc:creator>
				<category><![CDATA[Drupal Development]]></category>
		<category><![CDATA[Web Apps]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[drupal]]></category>

		<guid isPermaLink="false">http://bookmarks.honewatson.com/2010/02/18/best-drupal-blog-tips/</guid>
		<description><![CDATA[This is the best Drupal blog tips I&#8217;ve ever seen. It&#8217;s got simple to understand Drupal Developer tips which are presented in an easy to read manner. Eric&#8217;s Drupal Blog. A great section which has a number of form alter snippets for drupal.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bookmarks.honewatson.com&amp;blog=1388057&amp;post=414&amp;subd=honewatson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is the best Drupal blog tips I&#8217;ve ever seen.  It&#8217;s got simple to understand Drupal Developer tips which are presented in an easy to read manner.</p>
<p><span id="more-414"></span></p>
<p><a href="http://thedrupalblog.com/">Eric&#8217;s Drupal Blog</a>.</p>
<p>A great section which has a number of <a href="http://thedrupalblog.com/category/tags/form-alter">form alter snippets</a> for drupal.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/honewatson.wordpress.com/414/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/honewatson.wordpress.com/414/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/honewatson.wordpress.com/414/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/honewatson.wordpress.com/414/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/honewatson.wordpress.com/414/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/honewatson.wordpress.com/414/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/honewatson.wordpress.com/414/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/honewatson.wordpress.com/414/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/honewatson.wordpress.com/414/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/honewatson.wordpress.com/414/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/honewatson.wordpress.com/414/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/honewatson.wordpress.com/414/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/honewatson.wordpress.com/414/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/honewatson.wordpress.com/414/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bookmarks.honewatson.com&amp;blog=1388057&amp;post=414&amp;subd=honewatson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bookmarks.honewatson.com/2010/02/18/best-drupal-blog-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f4e9f5ca1121158385c9408cb2dafd03?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">honewatson</media:title>
		</media:content>
	</item>
		<item>
		<title>Drupal 6 node.save services taxonomy xmlrpc php and python</title>
		<link>http://bookmarks.honewatson.com/2009/11/20/drupal-6-node-save-services-taxonomy-xmlrpc-php-and-python/</link>
		<comments>http://bookmarks.honewatson.com/2009/11/20/drupal-6-node-save-services-taxonomy-xmlrpc-php-and-python/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 00:54:43 +0000</pubDate>
		<dc:creator>honewatson</dc:creator>
				<category><![CDATA[Drupal Development]]></category>
		<category><![CDATA[Web Apps]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[xmlrpc]]></category>

		<guid isPermaLink="false">http://bookmarks.honewatson.com/2009/11/20/drupal-6-node-save-services-taxonomy-xmlrpc-php-and-python/</guid>
		<description><![CDATA[Drupal 6 node.save uses different methods for saving taxonomy for different taxonomy types. For multiple select based taxonomy: (php) $nodeObj-&#62;taxonomy = array(2=&#62;array(15,19)); (python) nodeOb['taxonomy']['2'] = [15,19] For tags based taxonomy: (php) $nodeObj-&#62;taxonomy = array( 'tags' =&#62; array( 2=&#62;'military,navy' ) );<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bookmarks.honewatson.com&amp;blog=1388057&amp;post=405&amp;subd=honewatson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Drupal 6 node.save uses different methods for saving taxonomy for different taxonomy types.</p>
<p>For multiple select based taxonomy:</p>
<p>(php)</p>
<pre>
$nodeObj-&gt;taxonomy = array(2=&gt;array(15,19));
</pre>
<p>(python)</p>
<pre>
nodeOb['taxonomy']['2'] = [15,19]
</pre>
<p>For tags based taxonomy:</p>
<p>(php)</p>
<pre>
$nodeObj-&gt;taxonomy = array(
  'tags' =&gt; array(
         2=&gt;'military,navy'
   )
);
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/honewatson.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/honewatson.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/honewatson.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/honewatson.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/honewatson.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/honewatson.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/honewatson.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/honewatson.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/honewatson.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/honewatson.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/honewatson.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/honewatson.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/honewatson.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/honewatson.wordpress.com/405/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bookmarks.honewatson.com&amp;blog=1388057&amp;post=405&amp;subd=honewatson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bookmarks.honewatson.com/2009/11/20/drupal-6-node-save-services-taxonomy-xmlrpc-php-and-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f4e9f5ca1121158385c9408cb2dafd03?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">honewatson</media:title>
		</media:content>
	</item>
		<item>
		<title>menu.inc on line 2423 Duplicate entry menu router fix Drupal 6</title>
		<link>http://bookmarks.honewatson.com/2009/08/06/menu-inc-on-line-2423-duplicate-entry-menu-router-fix-drupal-6/</link>
		<comments>http://bookmarks.honewatson.com/2009/08/06/menu-inc-on-line-2423-duplicate-entry-menu-router-fix-drupal-6/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 00:01:31 +0000</pubDate>
		<dc:creator>honewatson</dc:creator>
				<category><![CDATA[Drupal Development]]></category>
		<category><![CDATA[Web Apps]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://bookmarks.honewatson.com/2009/08/06/menu-inc-on-line-2423-duplicate-entry-menu-router-fix-drupal-6/</guid>
		<description><![CDATA[There is an issue with Drupal 6 menu router rebuild which causes Drupal to time out with 404 pages or internal 500. The following fix worked for me: Install Drupal Tweaks, increase php memory, and mysql recommendations etc http://drupal.org/project/drupal_tweaks Download the following patches: http://drupal.org/node/251792#comment-1831346 http://drupal.org/node/317775#comment-1491208 From command line copy patches to your root drupal directory. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bookmarks.honewatson.com&amp;blog=1388057&amp;post=376&amp;subd=honewatson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There is an issue with Drupal 6 menu router rebuild which causes Drupal to time out with 404 pages or internal 500.</p>
<p>The following fix worked for me:</p>
<p>Install Drupal Tweaks, increase php memory, and mysql recommendations etc</p>
<p><a href="http://drupal.org/project/drupal_tweaks">http://drupal.org/project/drupal_tweaks</a></p>
<p>Download the following patches:</p>
<p><a href="http://drupal.org/node/251792#comment-1831346">http://drupal.org/node/251792#comment-1831346</a></p>
<p><a href="http://drupal.org/node/317775#comment-1491208"><br />
http://drupal.org/node/317775#comment-1491208  	</a></p>
<p>From command line copy patches to your root drupal directory.</p>
<p>cd to your root drupal directory and then apply the patches.  Each time you will be asked where the file is for the patch and the actual path to the files to be patched will be provided in the command line.  Just copy and paste each file path as presented into the prompt.</p>
<p class="code">
<code><br />
cp *.patch /home/drupal_directory/<br />
cd /home/drupal_directory/<br />
patch &lt; no-router-blob-317775-56-D6.patch<br />
patch &lt; lock-251792-163-D6.patch</p>
<p>|--- includes/bootstrap.inc	(revision 7577)<br />
|+++ includes/bootstrap.inc	(working copy)<br />
--------------------------<br />
File to patch: includes/bootstrap.inc</p>
<p></code>
</p>
<p>So in the above text you can see it gives you the path &#8216;includes/bootstrap.inc&#8217;.  Just copy and paste that to where it says &#8216;File to patch:&#8217;.  For each file it will provide you the correct path to the file assuming you are in the drupal root directory.</p>
<p>The final thing to do is to cp the lock.inc file which is created to includes/</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/honewatson.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/honewatson.wordpress.com/376/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/honewatson.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/honewatson.wordpress.com/376/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/honewatson.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/honewatson.wordpress.com/376/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/honewatson.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/honewatson.wordpress.com/376/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/honewatson.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/honewatson.wordpress.com/376/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/honewatson.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/honewatson.wordpress.com/376/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/honewatson.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/honewatson.wordpress.com/376/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bookmarks.honewatson.com&amp;blog=1388057&amp;post=376&amp;subd=honewatson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bookmarks.honewatson.com/2009/08/06/menu-inc-on-line-2423-duplicate-entry-menu-router-fix-drupal-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f4e9f5ca1121158385c9408cb2dafd03?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">honewatson</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubercart &#8211; Blend Apparel Store</title>
		<link>http://bookmarks.honewatson.com/2007/11/06/ubercart-blend-apparel-store/</link>
		<comments>http://bookmarks.honewatson.com/2007/11/06/ubercart-blend-apparel-store/#comments</comments>
		<pubDate>Tue, 06 Nov 2007 21:44:37 +0000</pubDate>
		<dc:creator>honewatson</dc:creator>
				<category><![CDATA[Drupal Development]]></category>
		<category><![CDATA[Ubercart]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[drupal]]></category>

		<guid isPermaLink="false">http://bookmarks.honewatson.com/2007/11/06/ubercart-blend-apparel-store/</guid>
		<description><![CDATA[Nice Ubercart store from Blend Apparel Blend Apparel:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bookmarks.honewatson.com&amp;blog=1388057&amp;post=64&amp;subd=honewatson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Nice Ubercart store from Blend Apparel</p>
<p><a href="http://www.blendapparel.com/">Blend Apparel</a>:</p>
<blockquote></blockquote>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/honewatson.wordpress.com/64/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/honewatson.wordpress.com/64/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/honewatson.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/honewatson.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/honewatson.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/honewatson.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/honewatson.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/honewatson.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/honewatson.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/honewatson.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/honewatson.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/honewatson.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/honewatson.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/honewatson.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/honewatson.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/honewatson.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bookmarks.honewatson.com&amp;blog=1388057&amp;post=64&amp;subd=honewatson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bookmarks.honewatson.com/2007/11/06/ubercart-blend-apparel-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f4e9f5ca1121158385c9408cb2dafd03?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">honewatson</media:title>
		</media:content>
	</item>
	</channel>
</rss>
