<?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"
	>

<channel>
	<title>Michael Toppa - Web Architect</title>
	<atom:link href="http://www.toppa.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.toppa.com</link>
	<description>Project Advisor - Business Analyst - Technology Advisor - Methodologist - Solutions Advisor</description>
	<pubDate>Fri, 09 May 2008 13:47:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Customizing WordPress: Limiting Categories on Your Home Page and Sidebar</title>
		<link>http://www.toppa.com/web-architect/wordpress-and-blogging/customizing-wordpress-limiting-categories-on-your-home-page-and-sidebar</link>
		<comments>http://www.toppa.com/web-architect/wordpress-and-blogging/customizing-wordpress-limiting-categories-on-your-home-page-and-sidebar#comments</comments>
		<pubDate>Mon, 05 May 2008 18:24:22 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
		
		<category><![CDATA[WordPress &amp; Blogging]]></category>

		<guid isPermaLink="false">http://www.toppa.com/?p=576</guid>
		<description><![CDATA[If you click around into different parts of my site, you&#8217;ll notice that only certain categories of posts appear on the home page, and there are two variations to my sidebar. What I&#8217;ve done is make a single blog look like two different blogs: one for my professional work, and one for my personal posts. [...]]]></description>
			<content:encoded><![CDATA[<p>If you click around into different parts of my site, you&#8217;ll notice that only certain categories of posts appear on the home page, and there are two variations to my sidebar. What I&#8217;ve done is make a single blog look like two different blogs: one for my professional work, and one for my personal posts. I&#8217;ve achieved these effects without using plugins, and without registering multiple sidebars. The only downside to my approach is that it&#8217;s not a technique you can use to control which widgets appear on which pages (but it&#8217;s fine if you want your widgets on all your pages). I don&#8217;t use widgets so it&#8217;s not a downside for me <img src='http://www.toppa.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> .</p>
<p>To follow along, you&#8217;ll need to be comfortable with editing a couple of your theme&#8217;s files, and be comfortable with the basics of PHP.</p>
<p>Limiting the categories on your home page can be done by adding a few lines of code to the top of your theme&#8217;s index.php file.</p>
<pre><code>&lt;?php if (is_home()) {
    $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    query_posts("cat=12,23,6&#038;paged=$paged");
} ?&gt;</code></pre>
<p>For &#8220;cat=&#8221; on the 3rd line, list the numbers for the categories you want to appear on your home page (or you can put a minus sign in front of the category numbers to exclude specific categories). <a href="http://codex.wordpress.org/Template_Tags/query_posts#Exclude_Categories_From_Your_Home_Page">The WordPress documentation for query_posts says you can do this with simpler syntax</a>, but you can&#8217;t. The documentation is wrong. If you follow the suggestion there, your &#8220;Newer Entries&#8221; and &#8220;Older Entries&#8221; links on your home page won&#8217;t work. They will just continually re-load the most recent posts. The code I&#8217;ve given here is explained nicely in <a href="http://wordpress.org/support/topic/57912#post-315895">this WordPress support forum post</a>.</p>
<p>So with this code, my home page includes only the categories related to my professional work. For my personal blog, I needed a way to get posts from all the right categories to appear together on a page. The answer is simple: I created a single parent category that encompasses all the categories I use for my personal posts. So the page for that parent category serves as <a href="http://www.toppa.com/blog/nothing-but-words">the &#8220;home page&#8221; for my personal blog</a>.</p>
<p>I also wanted my sidebar to change depending on whether you are viewing the &#8220;professional&#8221; pages or the &#8220;personal&#8221; pages. Achieving this involves two steps. First, add the following code to the top of your sidebar.php file. The category and page numbers you see listed are the ones where I want the &#8220;professional&#8221; sidebar to appear, which I call $home_sidebar (so you should substitute category and page numbers appropriate for your site). Note the ability to pass an array to is_category is new with WordPress 2.5.</p>
<pre><code>&lt;?php
$home_sidebar = false;
if (is_category(array(12,23,6))
  || in_category('12') || in_category('23') || in_category('6')
  || is_page(array(345,440,496,501)) || is_home()) {
      $home_sidebar = true;
}
?&gt;</code></pre>
<p>The second step is to check the value of $home_sidebar whenever you want to vary what appears in the sidebar. For example, to vary the category links in your sidebar, use code similar to this (again, substituting your category numbers). You&#8217;ll want to explore the options for <a href="http://codex.wordpress.org/Template_Tags/wp_list_categories">the wp_list_categories function</a> to get the exact appearance you want:</p>
<pre><code>&lt;ul&gt;
&lt;?php if ($home_sidebar) {
    wp_list_categories('include=12,23,6&#038;feed=RSS&#038;order=desc&#038;title_li=');
}

else {
    wp_list_categories('child_of=26&#038;feed=RSS&#038;title_li=');
} ?&gt;
&lt;/ul&gt;</code></pre>
<p>Note my use of child_of. This is the number for the parent category I created for all of my personal posts. This is a very convenient way to get all of the child categories without having to list them individually.</p>
<p>I&#8217;ve used this approach to make my blog look like two blogs. But you could easily extend this approach to subdivide your blog into as many mini-blogs as you like.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toppa.com/web-architect/wordpress-and-blogging/customizing-wordpress-limiting-categories-on-your-home-page-and-sidebar/feed</wfw:commentRss>
		</item>
		<item>
		<title>Shashin 2.1 - Easier Steps for Displaying All Album Photos</title>
		<link>http://www.toppa.com/web-architect/wordpress-and-blogging/shashin-21-easier-steps-for-displaying-all-album-photos</link>
		<comments>http://www.toppa.com/web-architect/wordpress-and-blogging/shashin-21-easier-steps-for-displaying-all-album-photos#comments</comments>
		<pubDate>Mon, 28 Apr 2008 01:57:58 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
		
		<category><![CDATA[WordPress &amp; Blogging]]></category>

		<guid isPermaLink="false">http://www.toppa.com/?p=570</guid>
		<description><![CDATA[Shashin 2.1 is now available. It does not include any new dazzling features, but it has a new, easier to use option for displaying all your album thumbnails, and then have them link to a page on your site that displays all the photos in each album. The Shashin page has instructions on how to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/extend/plugins/shashin/">Shashin 2.1 is now available</a>. It does not include any new dazzling features, but it has a new, easier to use option for displaying all your album thumbnails, and then have them link to a page on your site that displays all the photos in each album. <a href="http://www.toppa.com/shashin-wordpress-plugin#shashin6">The Shashin page has instructions on how to do this</a>.</p>
<p>There were 3 problems with how I implemented this feature in the previous (2.0) version of Shashin, but they only became clear to me after hearing feedback from people using Shashin 2.0 in a wide variety of WordPress themes. One problem was that the steps involved were just too complicated for most people&#8217;s needs (but the more complex options are still there, if you need greater control of the configuration than the new &#8220;easy&#8221; way).</p>
<p>The second problem was my attempt to manipulate the title of the page containing the [salbumphotos] tag. Shashin 2.0 tries to dynamically append the title of the selected photo album to the page title. In a rational world this would be easy, but <a href="http://comox.textdrive.com/pipermail/wp-hackers/2008-January/017112.html">WordPress makes it extraordinarily difficult to isolate and manipulate the title of a page, as reported here</a>. I thought I had come up with a work around. But, as it turns out, my solution was not reliable across all the different WordPress themes that are out there. So, with Shashin 2.1, I have removed all the code that tries to manipulate the page title. It now simply displays the album title as a caption on the table that contains the photo thumbnails. This is much cleaner and shouldn&#8217;t cause conflicts with any themes.</p>
<p>The third problem was the [salbumphotos] tag, which is used to display thumbnails for all the photos in an album. In Shashin 2.0, a page with the [salbumphotos] tag won&#8217;t play nicely with sidebars that use the wp_list_pages function (for listing links to all the pages on a site). The [salbumphotos] tag only worked correctly if you used it in conjunction with Shashin album thumbnails. You couldn&#8217;t just go to the page directly from a sidebar link. This is fixed in Shashin 2.1.</p>
<p>Shashin 2.1 also has a few minor bug fixes, the most important of which is that you can now once again see the photo thumbnails in the Shashin admin panel.</p>
<p>I should point out that, if all you want to do with your Picasa photos in WordPress is display your album thumbnails on a page, and then link them to a page that displays the photos in each album, then I recommend <a href="http://www.boloxe.com/techblog/2008/04/status-update-and-feature-requests/">kPicasa Gallery</a>. It has similar features to Shashin in this area, but without Shashin&#8217;s management overhead. But if you want to do more than just that, then I recommend Shashin <img src='http://www.toppa.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toppa.com/web-architect/wordpress-and-blogging/shashin-21-easier-steps-for-displaying-all-album-photos/feed</wfw:commentRss>
		</item>
		<item>
		<title>The Obama Rally on Independence Mall</title>
		<link>http://www.toppa.com/nothing-but-words/politics/the-obama-rally-on-independence-mall</link>
		<comments>http://www.toppa.com/nothing-but-words/politics/the-obama-rally-on-independence-mall#comments</comments>
		<pubDate>Wed, 23 Apr 2008 00:15:45 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
		
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.toppa.com/?p=569</guid>
		<description><![CDATA[
The past few weeks have been the height of silly season in the Democratic race, culminating with the amazingly uninformative debate last week. I think I knew less after watching it than before it started.
I went to the Obama rally last Friday, and I think it&#8217;s safe to say it was the largest crowd I&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<div class="shashin_image" style="width: 650px; float: none; clear: both;"><a href="http://lh6.ggpht.com/michaeltoppa/SA52YSm--uI/AAAAAAAACNw/cq60Zmfkhf8/DSC01296.JPG?imgmax=800" class="highslide" id="thumb2" onclick="return hs.expand(this)"><img src="http://lh6.ggpht.com/michaeltoppa/SA52YSm--uI/AAAAAAAACNw/cq60Zmfkhf8/DSC01296.JPG?imgmax=640" alt="" title="" width="640" height="480" /></a></div>
<p>The past few weeks have been the height of silly season in the Democratic race, culminating with <a href="http://www.anonymousliberal.com/2008/04/wow.html">the amazingly uninformative debate last week</a>. I think I knew less after watching it than before it started.</p>
<p>I went to the Obama rally last Friday, and I think it&#8217;s safe to say it was the largest crowd I&#8217;ve ever been a part of (<a href="http://www.philly.com/philly/hp/news_update/17937594.html">it was estimated at 35,000</a>). It felt just like a big rock concert, especially since <a href="http://will-i-am.blackeyedpeas.com/">will.i.am</a> was there to provide an opening act. I was lucky to get a ticket that put me within about 100 ft of the stage (the tickets were free, but getting my hands on a &#8220;blue&#8221; ticket, which put me near the stage, called upon ticket hustling skills I haven&#8217;t exercised in probably 15 years). I expected people would be excited to see him, but there was a level of excitement during his first few minutes on stage that I&#8217;ve only seen before in clips of early Beatles concerts. There were a couple of big guys next to me who were picking up shorter people for a few seconds each, so they could catch a glimpse of him. A little old lady even shuffled her way up to them for a turn. The speech was good, but since I&#8217;m such a politics junkie, it was familiar.</p>
<p>The results for the Pennsylvania primary will start coming through in a few minutes. I&#8217;m actually glad it&#8217;s over. We&#8217;ve probably gotten about two dozen campaign calls from the Clinton and Obama folks over the past few days. The polls show Clinton ahead by about 7-10%. I&#8217;m probably unduly influenced by my experience at the rally, but I think Obama will hold her to a tighter margin. My prediction: Hillary by 4%.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toppa.com/nothing-but-words/politics/the-obama-rally-on-independence-mall/feed</wfw:commentRss>
		</item>
		<item>
		<title>Welcome to the New Toppa.com</title>
		<link>http://www.toppa.com/web-architect/wordpress-and-blogging/welcome-to-the-new-toppacom</link>
		<comments>http://www.toppa.com/web-architect/wordpress-and-blogging/welcome-to-the-new-toppacom#comments</comments>
		<pubDate>Mon, 21 Apr 2008 14:18:57 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
		
		<category><![CDATA[WordPress &amp; Blogging]]></category>

		<guid isPermaLink="false">http://www.toppa.com/?p=567</guid>
		<description><![CDATA[I&#8217;ve redesigned toppa.com to support my web consulting work. How do you like the logo?
Other than the new look, the big change is that I&#8217;ve split my blog in two. Posts that show up on the home page concern web technology and my projects. Everything else is still on the site, but is in my [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve redesigned toppa.com to support my web consulting work. How do you like the logo?</p>
<p>Other than the new look, the big change is that I&#8217;ve split my blog in two. Posts that show up on the home page concern web technology and my projects. Everything else is still on the site, but is in <a href="http://www.toppa.com/blog/nothing-but-words">my personal blog</a>. There&#8217;s also a link for it at the bottom of the sidebar.</p>
<p>For my RSS fanbase (yes, I&#8217;m trying to be funny&#8230;), you can get <a href="http://www.toppa.com/feed">all my posts from this feed</a>, or <a href="http://www.toppa.com/blog/nothing-but-words/feed">just the personal blog posts from this one</a>.</p>
<p>Under the hood it&#8217;s still one blog. Figuring out how to get WordPress to display everything as if it were two blogs was an interesting challenge (one that has frustrated a number of people, judging by the threads in the WordPress support forums). It&#8217;s not just a question of limiting the topic categories that show up on the home page. It&#8217;s also a question of how to group the other categories together, and how to get the sidebar to show the appropriate navigation controls for the current context (i.e. listing the correct subset of categories on the home page, as well as on each different category archive page). I&#8217;ll write up a how-to post soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toppa.com/web-architect/wordpress-and-blogging/welcome-to-the-new-toppacom/feed</wfw:commentRss>
		</item>
		<item>
		<title>Stuart Adamson&#8217;s 50th Birthday Today</title>
		<link>http://www.toppa.com/nothing-but-words/music/stuart-adamsons-50th-birthday-today</link>
		<comments>http://www.toppa.com/nothing-but-words/music/stuart-adamsons-50th-birthday-today#comments</comments>
		<pubDate>Fri, 11 Apr 2008 16:06:31 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
		
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.toppa.com/?p=598</guid>
		<description><![CDATA[&#8220;How can someone find me if no one knows I&#8217;m lost?&#8221; - You Dreamer, Big Country
If Stuart Adamson - the former frontman of my favorite band Big Country - were still alive, today would be his 50th birthday. But he died alone in a hotel room 7 years ago, in an apparent suicide while on [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;How can someone find me if no one knows I&#8217;m lost?&#8221; - You Dreamer, <em>Big Country</em></p>
<p>If Stuart Adamson - the former frontman of my favorite band <em>Big Country</em> - were still alive, today would be his 50th birthday. But he died alone in a hotel room 7 years ago, in an apparent suicide while on an alcoholic binge, in the wake of his 2nd divorce. It&#8217;s an unfortunate aspect of human nature that the most creative and talented among us are more often than not tortured souls. <a href="http://en.wikipedia.org/wiki/Stuart_Adamson">As Wikipedia puts it</a>, &#8220;In many ways, Adamson was <em>the</em> sound of Big Country, supplying much of its distinctive guitar work, as well as being lead singer and main songwriter (both music and lyrics). In terms of being an instrumentalist, a vocalist, and a prolific songwriter, he is matched by very few contemporaries&#8230;&#8221;</p>
<p>I wrote <a href="http://www.toppa.com/nothing-but-words/music/stuart-adamson-underrated" title="Big Country&#8217;s Stuart Adamson: Underrated">a post about his guitar skills and songwriting</a> a couple years ago, so I won&#8217;t repeat myself here. Instead I&#8217;ll link you to two remarkably different live versions of <em>The Storm</em>, one of my favorite Big Country songs. I love the epic sweep of <a href="http://www.jfng.com/pages/originals/storm.htm">the lyrics</a>. They capture a compelling sense of grim determination in dark times. The scene of communal loss conjured up by the song is timeless - it&#8217;s a story that could have taken place a thousand years ago or yesterday. And the guitar work is pretty cool too (I remember my college roommate being flummoxed by all the chord changes as he tried to figure out how to play it).</p>
<p>The first is an acoustic version, and the second is an electric guitar version (note the second one doesn&#8217;t really get going until about two minutes in).</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/xWZigCOQFrI&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/xWZigCOQFrI&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/tFNLoP5RBrA&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/tFNLoP5RBrA&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.toppa.com/nothing-but-words/music/stuart-adamsons-50th-birthday-today/feed</wfw:commentRss>
		</item>
		<item>
		<title>U Penn Higher Education Web Symposium</title>
		<link>http://www.toppa.com/web-architect/web-design-and-programming/u-penn-higher-education-web-symposium</link>
		<comments>http://www.toppa.com/web-architect/web-design-and-programming/u-penn-higher-education-web-symposium#comments</comments>
		<pubDate>Fri, 11 Apr 2008 02:43:19 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
		
		<category><![CDATA[Web Design &amp; Programming]]></category>

		<guid isPermaLink="false">http://www.toppa.com/?p=597</guid>
		<description><![CDATA[
The University of Pennsylvania is hosting a Higher Education Web Symposium July 15-16

My former officemates at the U Penn School of Medicine Information Services Department have put together a Web Symposium, scheduled for July 15-16. They have an impressive list of speakers lined up.
I recognized many of the names of the list, as it includes [...]]]></description>
			<content:encoded><![CDATA[<div class="shashin_image" style="width: 318px; float: left;"><a href="http://lh6.ggpht.com/michaeltoppa/R_7LFtdFCjI/AAAAAAAACNI/Hsk1-a28ilA/web_symposium.JPG?imgmax=800" class="highslide" id="thumb4" onclick="return hs.expand(this)"><img src="http://lh6.ggpht.com/michaeltoppa/R_7LFtdFCjI/AAAAAAAACNI/Hsk1-a28ilA/web_symposium.JPG?imgmax=400" alt="The University of Pennsylvania is hosting a Higher Education Web Symposium July 15-16" title="The University of Pennsylvania is hosting a Higher Education Web Symposium July 15-16" width="308" height="400" /></a>
<div class="highslide-caption">The University of Pennsylvania is hosting a Higher Education Web Symposium July 15-16</div>
</div>
<p>My former officemates at the U Penn School of Medicine Information Services Department have put together <a href="http://www.med.upenn.edu/uiconf/">a Web Symposium, scheduled for July 15-16</a>. They have <a href="http://www.med.upenn.edu/uiconf/bios.shtml">an impressive list of speakers</a> lined up.</p>
<p>I recognized many of the names of the list, as it includes some of the most well known people in the world of web user interface design. But I was surprised to see the names of a couple people I personally knew. I worked with Dana Chisnell for a short time in 2000, when she was brought in to consult at a small start-up where I was working (Finexa - a company that did not last long). And I met Alex Urevick-Ackelsberg at a coffee shop when Glenn Greenwald came through Philadelphia to promote his first book a couple years ago. <a href="http://blueforceblog.com/?q=letter_on_presidential_power">I contributed a post to his Blue Force site</a>, but it wasn&#8217;t long after that when I started to come up short on time for regular political blogging.</p>
<p>The price for attending the symposium is a bargain. Several of the speakers typically make the rounds at conferences that cost 2 or 3 times as much. So if this is a topic of interest for you, definitely check it out!<br clear="all" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.toppa.com/web-architect/web-design-and-programming/u-penn-higher-education-web-symposium/feed</wfw:commentRss>
		</item>
		<item>
		<title>&#8230;And &#8230;And &#8230;Shashin 2.0.4</title>
		<link>http://www.toppa.com/web-architect/wordpress-and-blogging/and-and-shashin-204</link>
		<comments>http://www.toppa.com/web-architect/wordpress-and-blogging/and-and-shashin-204#comments</comments>
		<pubDate>Wed, 02 Apr 2008 15:54:51 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
		
		<category><![CDATA[WordPress &amp; Blogging]]></category>

		<guid isPermaLink="false">http://www.toppa.com/?p=595</guid>
		<description><![CDATA[This is a very minor release in terms of code changes. It&#8217;s not critical if you have a previous version of Shashin installed, but it is critical if you&#8217;ve upgraded to Wordpress 2.5 and you&#8217;re installing Shashin for the first time. It has to do with WordPress 2.5&#8217;s new handling of variable scope when activating [...]]]></description>
			<content:encoded><![CDATA[<p>This is a very minor release in terms of code changes. It&#8217;s not critical if you have a previous version of Shashin installed, but it is critical if you&#8217;ve upgraded to <a href="http://wordpress.org/development/2008/03/wordpress-25-brecker/">Wordpress 2.5</a> and you&#8217;re installing Shashin for the first time. It has to do with <a href="http://codex.wordpress.org/Migrating_Plugins_and_Themes#Activation_Global_Scope">WordPress 2.5&#8217;s new handling of variable scope when activating plugins</a> (if you were curious).</p>
<p>The only other change I made was to add mp4 as a video type that Shashin will recognize (it&#8217;s not documented as a supported video type for Picasa, but it does in fact accept them).</p>
<p><a href="http://wordpress.org/extend/plugins/shashin/">Download Shashin 2.0.4</a>.</p>
<p><strong>Update:</strong> I&#8217;ve received a few reports from first-time Shashin users who are having trouble activating Shashin properly, despite this fix. This seems to be happening to only a small number of people, and I haven&#8217;t been able to track down the cause yet. If you are having trouble with Shashin under WordPress 2.5, please leave a comment on this post and let me know exactly what&#8217;s going wrong.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toppa.com/web-architect/wordpress-and-blogging/and-and-shashin-204/feed</wfw:commentRss>
		</item>
		<item>
		<title>&#8230;And Now Shashin 2.0.3</title>
		<link>http://www.toppa.com/web-architect/wordpress-and-blogging/and-now-shashin-203</link>
		<comments>http://www.toppa.com/web-architect/wordpress-and-blogging/and-now-shashin-203#comments</comments>
		<pubDate>Tue, 25 Mar 2008 19:41:10 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
		
		<category><![CDATA[WordPress &amp; Blogging]]></category>

		<guid isPermaLink="false">http://www.toppa.com/technobabble/wordpress/and-now-shashin-203</guid>
		<description><![CDATA[In version 2.0.2 I updated Shashin to accommodate changes in the Picasa RSS feed. The feed changes had caused images to stop displaying after you synced your albums in Shashin. I fixed that, but what I didn&#8217;t notice was that they also changed how videos are represented in the feed, so version  2.0.2 still [...]]]></description>
			<content:encoded><![CDATA[<p>In version 2.0.2 I updated Shashin to accommodate changes in the Picasa RSS feed. The feed changes had caused images to stop displaying after you synced your albums in Shashin. I fixed that, but what I didn&#8217;t notice was that they also changed how videos are represented in the feed, so version  2.0.2 still doesn&#8217;t display videos after you sync your albums. Someone kindly pointed out the problem, so I&#8217;ve fixed it - <a href="http://wordpress.org/extend/plugins/shashin/">Shashin 2.0.3 is now available at wordpress.org</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toppa.com/web-architect/wordpress-and-blogging/and-now-shashin-203/feed</wfw:commentRss>
		</item>
		<item>
		<title>Shashin 2.0.2 - Critical Upgrade</title>
		<link>http://www.toppa.com/web-architect/wordpress-and-blogging/shashin-202-critical-upgrade</link>
		<comments>http://www.toppa.com/web-architect/wordpress-and-blogging/shashin-202-critical-upgrade#comments</comments>
		<pubDate>Fri, 21 Mar 2008 15:10:36 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
		
		<category><![CDATA[WordPress &amp; Blogging]]></category>

		<guid isPermaLink="false">http://www.toppa.com/technobabble/wordpress/shashin-201-available</guid>
		<description><![CDATA[Murphy&#8217;s Law is being strictly enforced today: within 24 hours of my 2.0 release, Google coincidentally changed the Picasa RSS feed. The URL for the photos isn&#8217;t where it used to be in the feeder, with the result that, if you sync your albums in Shashin, your photos won&#8217;t show up anymore. I&#8217;ve found the [...]]]></description>
			<content:encoded><![CDATA[<p>Murphy&#8217;s Law is being strictly enforced today: within 24 hours of my 2.0 release, Google coincidentally changed the Picasa RSS feed. The URL for the photos isn&#8217;t where it used to be in the feeder, with the result that, if you sync your albums in Shashin, your photos won&#8217;t show up anymore. I&#8217;ve found the new tag for the photo URLs in the Picasa feed and updated Shashin accordingly. So <a href="http://wordpress.org/extend/plugins/shashin/">download Shashin 2.0.2 now</a>. Note that your photo data is still safe in Shashin even if your photos stopped appearing after the Picasa RSS feed change. Syncing the albums with 2.0.2 should straighten everything out.</p>
<p>This is the one real problem with building an application that relies on Google&#8217;s RSS feeds - I have no control over when they might change the feeds, or what kind of changes they make.</p>
<p>There are also some other minor fixes. Here&#8217;s a list of the changes in 2.0.2:</p>
<ul>
<li>Adjusted for new location of the content_url in the Picasa feed</li>
<li>If you select the option to display your photos at Picasa in a new browser window, it actually works now <img src='http://www.toppa.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> (the formatting of the anchor tag was incorrect).</li>
<li>Shashin now performs a preg_escape when detecting the URL for the page containing your salbumphotos tag. This fixes a warning that was being displayed for some URLs in PHP 5.</li>
<li>Shashin now correctly detects your WordPress installation directory if you&#8217;ve installed it in a subdirectory (except for paths in shashin/display/highslide.css which are hardcoded - you&#8217;ll need to edit those by hand).</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.toppa.com/web-architect/wordpress-and-blogging/shashin-202-critical-upgrade/feed</wfw:commentRss>
		</item>
		<item>
		<title>Shashin 2.0 - Highslide and Album Displays</title>
		<link>http://www.toppa.com/web-architect/wordpress-and-blogging/shashin-20-highslide-and-album-displays</link>
		<comments>http://www.toppa.com/web-architect/wordpress-and-blogging/shashin-20-highslide-and-album-displays#comments</comments>
		<pubDate>Thu, 20 Mar 2008 02:49:57 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
		
		<category><![CDATA[WordPress &amp; Blogging]]></category>

		<guid isPermaLink="false">http://www.toppa.com/technobabble/wordpress/shashin-20-highslide-and-album-displays</guid>
		<description><![CDATA[Shashin 2.0 is now available. I jumped the version number to 2.0 because this release includes a couple major new features. One is that Shashin is now bundled with Highslide. It was a fun challenge getting WordPress to play nicely with Highslide for displaying any combination of photos in a post, and then any combination [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/extend/plugins/shashin/">Shashin 2.0 is now available</a>. I jumped the version number to 2.0 because this release includes a couple major new features. One is that Shashin is now bundled with <a href="http://vikjavev.no/highslide/">Highslide</a>. It was a fun challenge getting WordPress to play nicely with Highslide for displaying any combination of photos in a post, and then any combination of posts on a page. The other major new feature is linking album thumbnails to a local display of the album&#8217;s photos, so you can show them on your site instead of having to go to Picasa.</p>
<p>There are minor new features too: a new tag that lets you display sets of album thumbnails alongside their titles and descriptions, an option to prefix album titles to photo captions, and if you choose not to use Highslide, you can open the links to Picasa in a new window if you want.</p>
<p>All the details, including instructions for using the new features, are on my <a href="http://www.toppa.com/shashin-wordpress-plugin" title="Shashin - A Wordpress Plugin for Displaying Picasa Photos">Shashin page</a>.</p>
<p>If you have any questions or run into any problems, please use the comments on this post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toppa.com/web-architect/wordpress-and-blogging/shashin-20-highslide-and-album-displays/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
