<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Openside Solutions</title>
	
	<link>http://www.opensidesolutions.com</link>
	<description>Computer Stuff for the Rest of Us</description>
	<pubDate>Thu, 11 Dec 2008 05:37:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/opensidesolutions" type="application/rss+xml" /><item>
		<title>WordPress 2.7 Quick Thoughts</title>
		<link>http://www.opensidesolutions.com/2008/12/11/wordpress-27-quick-thoughts/</link>
		<comments>http://www.opensidesolutions.com/2008/12/11/wordpress-27-quick-thoughts/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 05:37:06 +0000</pubDate>
		<dc:creator>sadcox</dc:creator>
		
		<category><![CDATA[Blogs]]></category>

		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[upgrades]]></category>

		<guid isPermaLink="false">http://www.opensidesolutions.com/?p=69</guid>
		<description><![CDATA[Wow, what a user interface change in version 2.7.  I love the ability to drag and drop menue items to the order I want!  I also really appreciate the fact that they broke the Post and Page management into to separate items.  It&#8217;s not that big of a deal, but when I&#8217;m setting up a [...]]]></description>
			<content:encoded><![CDATA[<p>Wow, what a user interface change in <a href="http://wordpress.org/development/2008/12/coltrane/">version 2.7</a>.  I love the ability to drag and drop menue items to the order I want!  I also really appreciate the fact that they broke the Post and Page management into to separate items.  It&#8217;s not that big of a deal, but when I&#8217;m setting up a new blog I always seem to accidentally write a Post when I meant to write a page.</p>
<p>Sticky posts, commenting from the dashboard, I love it!</p>
<p>Also, 2.7 and beyond have automatic upgrade built in.  I&#8217;ve been using the plugin, but now it&#8217;s not needed.</p>
<p>More details after I get a chance to play around!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.opensidesolutions.com/2008/12/11/wordpress-27-quick-thoughts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Parsing XML and Cleaning Up the Results</title>
		<link>http://www.opensidesolutions.com/2008/11/26/parsing-xml-and-cleaning-up-the-results/</link>
		<comments>http://www.opensidesolutions.com/2008/11/26/parsing-xml-and-cleaning-up-the-results/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 03:32:55 +0000</pubDate>
		<dc:creator>sadcox</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[plugins]]></category>

		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.opensidesolutions.com/?p=67</guid>
		<description><![CDATA[Slow going on my latest plugin&#8230;not much spare time for development, and we have to pay the bills, right?  There were a couple of issues I needed solved, and I went to the web to find the answers, just like always.  The first thing I needed to do was parse an XML result.  Actually, &#8220;parsing&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>Slow going on my latest plugin&#8230;not much spare time for development, and we have to pay the bills, right?  There were a couple of issues I needed solved, and I went to the web to find the answers, just like always.  The first thing I needed to do was parse an XML result.  Actually, &#8220;parsing&#8221; was just the beginning of what I needed to do.  I actually needed to store the XML in a structure so that I could do a lot of different things with the data.  I found this great <a href="http://www.devarticles.com/c/a/PHP/Converting-XML-Into-a-PHP-Data-Structure/">article (and class) over at DevArticles.com</a> that gave me exactly what I needed.  Sure, I could have written this myself, but why bother when someone else has already posted the solution, right?  First issue solved.</p>
<p>Once I&#8217;d broken the data down, I needed to use some of it.  Not a problem, except that you get some really weird characters if your results contain quotes, double quotes, etc.  Here are some of the ones I received: <span>â€œ, <span>â€, <span>â€˜, and <span>â€™.  <a href="http://codingforums.com/showthread.php?t=151706">This post</a> has a nice little array set up to take care of those issues.  I implemented it, and it works beautifully.<br />
</span></span></span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.opensidesolutions.com/2008/11/26/parsing-xml-and-cleaning-up-the-results/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Scheduling an Event From a Plugin</title>
		<link>http://www.opensidesolutions.com/2008/11/07/scheduling-an-event-from-a-plugin/</link>
		<comments>http://www.opensidesolutions.com/2008/11/07/scheduling-an-event-from-a-plugin/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 15:37:32 +0000</pubDate>
		<dc:creator>sadcox</dc:creator>
		
		<category><![CDATA[Blogs]]></category>

		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://www.opensidesolutions.com/?p=63</guid>
		<description><![CDATA[One of the plugins I&#8217;m working on is going to perform an action on configurable schedule.  I knew that WordPress included a cron feature into the core for release 2.1, but I haven&#8217;t used it yet.  A quick search found this great article by Glenn Slaven on doing just that.
This was shaping up to be [...]]]></description>
			<content:encoded><![CDATA[<p>One of the plugins I&#8217;m working on is going to perform an action on configurable schedule.  I knew that WordPress included a cron feature into the core for release 2.1, but I haven&#8217;t used it yet.  A quick search found this <a href="http://blog.slaven.net.au/archives/2007/02/01/timing-is-everything-scheduling-in-wordpress/">great article by Glenn Slaven</a> on doing just that.</p>
<p>This was shaping up to be the biggest hurdle in developing the plugin.  There&#8217;s still some work to do with configuration, but Glenn&#8217;s article makes the technical part pretty easy to handle.</p>
<p>If you&#8217;re a blogger who is interesting in auto-generating some good content periodically that is useful to your readers, stay tuned.  I&#8217;ve got something really nice in the works!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.opensidesolutions.com/2008/11/07/scheduling-an-event-from-a-plugin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Plugins in Development</title>
		<link>http://www.opensidesolutions.com/2008/10/31/new-plugins-in-development/</link>
		<comments>http://www.opensidesolutions.com/2008/10/31/new-plugins-in-development/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 12:24:36 +0000</pubDate>
		<dc:creator>sadcox</dc:creator>
		
		<category><![CDATA[Blogs]]></category>

		<category><![CDATA[Free Software]]></category>

		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://www.opensidesolutions.com/?p=61</guid>
		<description><![CDATA[I have a couple of ideas for new WordPress plugins that I hope to get moving on this weekend.  Just when I think there are no opportunities out there for new plugins, I come up with something I&#8217;d like to do that just doesn&#8217;t exist.  I think both of these ideas will be pretty popular, [...]]]></description>
			<content:encoded><![CDATA[<p>I have a couple of ideas for new WordPress plugins that I hope to get moving on this weekend.  Just when I think there are no opportunities out there for new plugins, I come up with something I&#8217;d like to do that just doesn&#8217;t exist.  I think both of these ideas will be pretty popular, so I&#8217;m excited to get going on these.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.opensidesolutions.com/2008/10/31/new-plugins-in-development/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Another WP 2.6 Issue (Hope You Have This One)</title>
		<link>http://www.opensidesolutions.com/2008/09/11/another-wp-26-issue-hope-you-have-this-one/</link>
		<comments>http://www.opensidesolutions.com/2008/09/11/another-wp-26-issue-hope-you-have-this-one/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 17:58:00 +0000</pubDate>
		<dc:creator>sadcox</dc:creator>
		
		<category><![CDATA[Blogs]]></category>

		<category><![CDATA[I Have a Website]]></category>

		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[blogging]]></category>

		<category><![CDATA[WordPress errors]]></category>

		<guid isPermaLink="false">http://www.opensidesolutions.com/?p=59</guid>
		<description><![CDATA[My buddy Newscoma is in the process of moving her blog from wordpress.com to her own domain.  She ran into a really weird issue today with her jquery.js file giving an error - jquery.js?ver=1.2.6:11
Digging around, it turns out that there&#8217;s an issue in the /wp-admin/edit-form-advanced.php that asks for meta data about all the posts.  I [...]]]></description>
			<content:encoded><![CDATA[<p>My buddy <a href="http://www.newscoma.com">Newscoma</a> is in the process of moving her blog from wordpress.com to her own domain.  She ran into a really weird issue today with her jquery.js file giving an error - jquery.js?ver=1.2.6:11</p>
<p>Digging around, it turns out that there&#8217;s an issue in the /wp-admin/edit-form-advanced.php that asks for meta data about all the posts.  I found this <a href="http://wordpress.org/support/topic/190244">great article with the fix</a>, and it points to these two lines in the edit-form-advanced.php file:</p>
<blockquote><p>$metadata = has_meta($post-&gt;ID);</p>
<p>list_meta($metadata);</p></blockquote>
<p>So if you have a lot of posts and a lot of metadata like &#8216;Coma does, this will take forever and time out.  All you have to do is comment out these lines and you are set.</p>
<p>Hopefully you have a hearty blog with lots of posts and lots of comments, and this problem will affect you.  And hopefully WordPress will fix this in their next release!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.opensidesolutions.com/2008/09/11/another-wp-26-issue-hope-you-have-this-one/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Gasp…A WordPress Permalinks Issue in v2.6</title>
		<link>http://www.opensidesolutions.com/2008/08/12/gaspa-wordpress-permalinks-issue-in-v26/</link>
		<comments>http://www.opensidesolutions.com/2008/08/12/gaspa-wordpress-permalinks-issue-in-v26/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 14:49:16 +0000</pubDate>
		<dc:creator>sadcox</dc:creator>
		
		<category><![CDATA[I Have a Website]]></category>

		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[bugs]]></category>

		<guid isPermaLink="false">http://www.opensidesolutions.com/?p=56</guid>
		<description><![CDATA[On one of my blogs I upgraded to WordPress version 2.6 with no problems, just like I did on about 4 other blogs.  I didn&#8217;t notice that my permalinks weren&#8217;t working until days later.  The problem is that my permalink structure on that WordPress blog uses &#8220;index.php&#8221;.
There&#8217;s a strange bug in version 2.6 [...]]]></description>
			<content:encoded><![CDATA[<p>On one of my blogs I upgraded to WordPress version 2.6 with no problems, just like I did on about 4 other blogs.  I didn&#8217;t notice that my permalinks weren&#8217;t working until days later.  The problem is that my permalink structure on that WordPress blog uses &#8220;index.php&#8221;.</p>
<p>There&#8217;s a strange bug in version 2.6 that disables permalinks that contain &#8220;index.php&#8221;.  Luckily, I found <a href="http://www.jaygeiger.com/index.php/2008/07/16/permalinks-fail-in-wordpress-25-and-26/">this fix at JayGeiger.com.</a></p>
<p>The weird part is that you have to change your settings for tags and categories to the very values they default to, but my category and tag pages were working fine.  I haven&#8217;t dug through the code yet.  Any volunteers?</p>
<p><div style="margin-top: 10px;">
<script type="text/javascript"><!--
google_ad_client = "pub-1855371841110601";
/* 468x60, ossmidpost */
google_ad_slot = "7455712625";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div></p>
]]></content:encoded>
			<wfw:commentRss>http://www.opensidesolutions.com/2008/08/12/gaspa-wordpress-permalinks-issue-in-v26/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CodeStock 2008</title>
		<link>http://www.opensidesolutions.com/2008/08/10/codestock-2008/</link>
		<comments>http://www.opensidesolutions.com/2008/08/10/codestock-2008/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 10:49:31 +0000</pubDate>
		<dc:creator>sadcox</dc:creator>
		
		<category><![CDATA[Techno Attitudes]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<category><![CDATA[codestock]]></category>

		<category><![CDATA[events]]></category>

		<guid isPermaLink="false">http://www.opensidesolutions.com/?p=54</guid>
		<description><![CDATA[I was able to get over to CodeStock yesterday for the morning sessions.  How cool that something like this event is going on in our own back yard!  This event had the potential to be very weak and unproductive, however I have to say that I was very impressed with the organization and relevancy of [...]]]></description>
			<content:encoded><![CDATA[<p>I was able to get over to <a href="http://www.codestock.org">CodeStock</a> yesterday for the morning sessions.  How cool that something like this event is going on in our own back yard!  This event had the potential to be very weak and unproductive, however I have to say that I was very impressed with the organization and relevancy of the sessions.  My only complaint is that the lack or wifi sent me scurrying home to get some work done at the lunch break.  It would probably have benefitted them to have people live blogging and twittering the event.  Still, an issue that can be corrected next time around.</p>
<p>We had people there from as far away as Michigan and Texas&#8230;plan on making this event next year if you have the opportunity.  At $25, you can&#8217;t beat the price.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.opensidesolutions.com/2008/08/10/codestock-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google’s Page Rank Update</title>
		<link>http://www.opensidesolutions.com/2008/04/30/googles-page-rank-update/</link>
		<comments>http://www.opensidesolutions.com/2008/04/30/googles-page-rank-update/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 14:52:21 +0000</pubDate>
		<dc:creator>sadcox</dc:creator>
		
		<category><![CDATA[Blogs]]></category>

		<category><![CDATA[google]]></category>

		<category><![CDATA[Page Rank]]></category>

		<guid isPermaLink="false">http://www.opensidesolutions.com/?p=53</guid>
		<description><![CDATA[Looks like Page Rank (PR) has been updated in the Google Toolbar, and I&#8217;m pretty happy with the results this time around.  Personally I didn&#8217;t see too much jump in any of my sites.  I had a couple of sites bounce from 3 to 4, and one from 4 to 5.  I&#8217;m most happy that [...]]]></description>
			<content:encoded><![CDATA[<p>Looks like Page Rank (PR) has been updated in the Google Toolbar, and I&#8217;m pretty happy with the results this time around.  Personally I didn&#8217;t see too much jump in any of my sites.  I had a couple of sites bounce from 3 to 4, and one from 4 to 5.  I&#8217;m most happy that a couple of friends who just started blogging have seen some real success.  Both started at PR 0s, and now are at 3 and 4 in less than a year.  Pretty cool!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.opensidesolutions.com/2008/04/30/googles-page-rank-update/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Removing Author Names from FeedBurner Feeds</title>
		<link>http://www.opensidesolutions.com/2008/04/26/removing-author-names-from-feedburner-feeds/</link>
		<comments>http://www.opensidesolutions.com/2008/04/26/removing-author-names-from-feedburner-feeds/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 16:42:35 +0000</pubDate>
		<dc:creator>sadcox</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[feed]]></category>

		<category><![CDATA[hack]]></category>

		<category><![CDATA[hacking]]></category>

		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://www.opensidesolutions.com/?p=52</guid>
		<description><![CDATA[Ever wanted to force the author name in your rss2 feed supplied to FeedBurner?  The group blog I&#8217;m building gives authors anonymity, and that&#8217;s pretty easy to do on the site itself.  But after a few test posts I noticed that the author name stilled showed up on the FeedBurner feed, which is [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wanted to force the author name in your rss2 feed supplied to FeedBurner?  The group blog I&#8217;m building gives authors anonymity, and that&#8217;s pretty easy to do on the site itself.  But after a few test posts I noticed that the author name stilled showed up on the FeedBurner feed, which is actually read from the rss2 feed I&#8217;m creating on the site.</p>
<p>How to change this?</p>
<p>Open up the feed-rss2.php file located in the wp-includes directory of your WordPress installation and look for the line</p>
<blockquote><p>&lt;dc:creator&gt;&lt;?php the_author() ?&gt;&lt;/dc:creator&gt;</p></blockquote>
<p>Remove the php code and insert whatever you&#8217;d like to use for the author tag.  WARNING:  When you upgrade WordPress this file will be overwritten, so you&#8217;ll have to go back in and change it again.  I got caught on that one upgrading from WordPress 2.5 to 2.51</p>
]]></content:encoded>
			<wfw:commentRss>http://www.opensidesolutions.com/2008/04/26/removing-author-names-from-feedburner-feeds/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google AdSense Revenue Sharing</title>
		<link>http://www.opensidesolutions.com/2008/04/26/google-adsense-revenue-sharing/</link>
		<comments>http://www.opensidesolutions.com/2008/04/26/google-adsense-revenue-sharing/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 01:43:31 +0000</pubDate>
		<dc:creator>sadcox</dc:creator>
		
		<category><![CDATA[Blogs]]></category>

		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[adsense]]></category>

		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.opensidesolutions.com/?p=51</guid>
		<description><![CDATA[I&#8217;m working on a group blog project and I wanted to share AdSense revenue with my contributers.  I quickly found Harley&#8217;s WordPress plugin for AdSense sharing and got it activated&#8211;it&#8217;s very easy to use and works nicely.  The only problem is that the new style of AdSense ads cannot be assigned to another [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m working on a group blog project and I wanted to share AdSense revenue with my contributers.  I quickly found <a href="http://www.harleyquine.com/php-scripts/author-advertising-plugin/">Harley&#8217;s WordPress plugin for AdSense sharing</a> and got it activated&#8211;it&#8217;s very easy to use and works nicely.  The only problem is that the new style of AdSense ads cannot be assigned to another publisher just by changing the publisher ID.  In order to make this work you have to assign a field with Harley&#8217;s plugin and the users have to go set up their own ads that are just like yours with their Publisher ID and the GoogleAdSlot value.<br />
<div style="margin-top: 10px;">
<script type="text/javascript"><!--
google_ad_client = "pub-1855371841110601";
/* 468x60, ossmidpost */
google_ad_slot = "7455712625";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div></p>
<p>This is a little dangerous because it lets users who don&#8217;t know what they are doing screw up or leaves you open to displaying horrendous ads on your site.  So I looked around the web and found some examples of the older ads.  Here are the ones I&#8217;m using if you&#8217;d like to copy and paste them if you&#8217;re using Harley&#8217;s plugin&#8211;may save you a little time.</p>
<p><strong>Old code for the 468&#215;15 text link units</strong></p>
<blockquote><p>&lt;script type=&#8221;text/javascript&#8221;&gt;&lt;!&#8211;<br />
google_ad_client = &#8220;xxxxxxxxxx&#8221;;<br />
google_alternate_ad_url = &#8220;&#8221;;<br />
google_alternate_color = &#8220;FFFFFF&#8221;;<br />
google_ad_width = 468;<br />
google_ad_height = 15;<br />
google_ad_format = &#8220;468&#215;15_0ads_al_s&#8221;;<br />
google_ad_type = &#8220;text_image&#8221;;<br />
google_ad_channel =&#8221;xxxxxxxxxx&#8221;;<br />
google_color_border = &#8220;FFFFFF&#8221;;<br />
google_color_bg = &#8220;FFFFFF&#8221;;<br />
google_color_link = &#8220;000000&#8243;;<br />
google_color_url = &#8220;000000&#8243;;<br />
google_color_text = &#8220;cccccc&#8221;;<br />
//&#8211;&gt;&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;<br />
src=&#8221;http://pagead2.googlesyndication.com/pagead/show_ads.js&#8221;&gt;<br />
&lt;/script&gt;</p></blockquote>
<p><strong>Old code for the 300&#215;250 text and image ads</strong></p>
<blockquote><p>script type=&#8221;text/javascript&#8221;&gt;&lt;!&#8211;<br />
google_ad_client = &#8220;xxxxxxxx&#8221;;<br />
google_alternate_ad_url = &#8220;&#8221;;<br />
google_alternate_color = &#8220;FFFFFF&#8221;;<br />
google_ad_width = 300;<br />
google_ad_height = 250;<br />
google_ad_format = &#8220;300&#215;250_as&#8221;;<br />
google_ad_type = &#8220;text_image&#8221;;<br />
google_ad_channel =&#8221;xxxxxxxxxx&#8221;;<br />
google_color_border = &#8220;FFFFFF&#8221;;<br />
google_color_bg = &#8220;FFFFFF&#8221;;<br />
google_color_link = &#8220;000000&#8243;;<br />
google_color_url = &#8220;000000&#8243;;<br />
google_color_text = &#8220;000000&#8243;;<br />
//&#8211;&gt;&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;<br />
src=&#8221;http://pagead2.googlesyndication.com/pagead/show_ads.js&#8221;&gt;<br />
&lt;/script&gt;</p></blockquote>
<p><strong>Old code for a 468&#215;60 text ad</strong></p>
<blockquote><p>&lt;script type=&#8221;text/javascript&#8221;&gt;&lt;!&#8211;<br />
google_ad_client = &#8220;xxxxxxxx&#8221;;<br />
google_ad_channel = &#8220;xxxxxxx&#8221;;<br />
google_alternate_ad_url = &#8220;&#8221;;<br />
google_ad_width = 468;<br />
google_ad_height = 60;<br />
google_ad_format = &#8220;468&#215;60_as&#8221;;<br />
google_color_border = &#8220;FFFFFF&#8221;;<br />
google_color_bg = &#8220;FFFFFF&#8221;;<br />
google_color_link = &#8220;000000&#8243;;<br />
google_color_url = &#8220;000000&#8243;;<br />
google_color_text = &#8220;000000&#8243;;<br />
//&#8211;&gt;&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;<br />
src=&#8221;http://pagead2.googlesyndication.com/pagead/show_ads.js&#8221;&gt;<br />
&lt;/script&gt;</p></blockquote>
<p>If these are the ad types you were looking for, I&#8217;ve tested them and they work.  Thanks again to Harley for writing such a great and useful plugin!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.opensidesolutions.com/2008/04/26/google-adsense-revenue-sharing/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
