<?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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Will's Similiblog &#187; featuritis</title>
	<atom:link href="http://wt.similibus.org/tag/featuritis/feed/" rel="self" type="application/rss+xml" />
	<link>http://wt.similibus.org</link>
	<description>Just another voice in the EduBlogging universe</description>
	<pubDate>Mon, 29 Sep 2008 01:14:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
		<!-- podcast_generator="podPress/8.8" -->
		<copyright>&#xA9; </copyright>
		<managingEditor>willtaylor.md@mac.com ()</managingEditor>
		<webMaster>willtaylor.md@mac.com()</webMaster>
		<category></category>
		<itunes:keywords></itunes:keywords>
		<itunes:subtitle></itunes:subtitle>
		<itunes:summary>Just another WordPress weblog</itunes:summary>
		<itunes:author></itunes:author>
		<itunes:category text="Society &amp; Culture"/>
		<itunes:owner>
			<itunes:name></itunes:name>
			<itunes:email>willtaylor.md@mac.com</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>no</itunes:explicit>
		<itunes:image href="http://similibus.org/wt/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<image>
			<url>http://wt.similibus.org/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
			<title>Will's Similiblog</title>
			<link>http://wt.similibus.org</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>recipe for a social learning platform - navigation</title>
		<link>http://wt.similibus.org/2008/04/09/recipe-for-a-social-learning-platform-navigation/</link>
		<comments>http://wt.similibus.org/2008/04/09/recipe-for-a-social-learning-platform-navigation/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 20:55:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[site_development]]></category>

		<category><![CDATA[blogging]]></category>

		<category><![CDATA[drupal]]></category>

		<category><![CDATA[eduglu]]></category>

		<category><![CDATA[featuritis]]></category>

		<category><![CDATA[feed aggregation]]></category>

		<guid isPermaLink="false">http://wt.similibus.org/2008/04/09/recipe-for-a-social-learning-platform-navigation/</guid>
		<description><![CDATA[<p>I&#8217;m trying out a navigation solution to my featuritis dilemma.  As I&#8217;ve got 3 major features on my site - [1] a community blog, [2] aggregated news feeds, and [3] an aggregation of forums postings from  selected forums in an associated Moodle course support platform (I&#8217;ll describe this, and the reasons for it, in a subsequent post) - each with multiple views - the comprehensive navigation for all 3 features together was growing cumbersome, with a rather lengthy side column of menu blocks.</p>
<p>So - I&#8217;ve created a front welcome page using a &#8220;Page&#8221; node, with a menu block linking to each of these 3 sections of the site; and added links as well to my 3 sections in the &#8220;primary&#8221; menu, which displays below the header on all page views.</p>
<p>The side-column menu blocks relating to the Community Blog should show up on the various views of the Community Blog &#8220;section&#8221; of the site, but should not show up on the views relating to Aggregated News or the Aggregated Forums, &amp; v/v.  To accomplish this, I&#8217;ve set up custom block visibility for these views.</p>
<p>On the Blocks Administration page, to manage block visibility, click on the selected block&#8217;s <em>configure</em> link.  At <em>Show block on specific pages:</em>, select <em>Show if the following PHP code returns <code>TRUE</code> (PHP-mode, experts only)</em>.  Paste in the equivalent of:</p>
<blockquote><p>&lt;?php<br />
$match = FALSE;<br />
$types = array(&#8217;<font color="#800000">blog</font>&#8216; =&gt; 1);<br />
if (arg(0) == &#8216;node&#8217; &amp;&amp; is_numeric(arg(1))) {<br />
$nid = arg(1);<br />
$node = node_load(array(&#8217;nid&#8217; =&gt; $nid));<br />
$type = $node-&gt;type;<br />
if (isset($types[$type])) {<br />
$match = TRUE;<br />
}<br />
}<br />
$url = request_uri();<br />
if (strpos($url, &#8220;<font color="#339966">blog/</font>&#8220;)) {<br />
$match = TRUE;<br />
}<br />
if (strpos($url, &#8220;<font color="#3366ff">tagadelic/list/1</font>&#8220;)) {<br />
$match = TRUE;<br />
}<br />
return $match;<br />
?&gt;</p></blockquote>
<p>The first criterion - <em>$types = array(&#8217;<font color="#800000">blog</font>&#8216; =&gt; 1);</em> - will include this block on all single-node pages where the node is a blog entry.</p>
<p>The second criterion -  <em>if (strpos($url, &#8220;<font color="#339966">blog/</font>&#8220;)) {</em> - will include this block on all pages where the URL <em>contains</em> the string <font color="#339966"><em>blog/</em></font>.  I&#8217;ve set up the various Views of the community blog, in their Views settings, to have the url <font color="#339966">blog/&#8230;</font> (e.g., <font color="#339966">blog/communityblog_listview</font>, &amp;c.).</p>
<p>The third criterion -  <em>if (strpos($url, &#8220;<font color="#3366ff">tagadelic/list/1</font>&#8220;)) { </em>- will include this block on the tagadelic tag-cloud page that lists my blog-specific taxonomy (but will not include it on the tagadelic pages displaying taxonomy specific to news aggregation &amp;c.)</p>
<p>This was repeated for each of the side blocks that I want to see displayed on the Community Blog related pages of my site; these will now show up when the user is navigating through pages related to the Community Blog, but will not show up if the user is in other &#8220;sections&#8221; of the site.</p>
<p>Side-column menu blocks for the other sections of the site are similarly configured, to display menu items specific to the News section only on the pages dealing with aggregated news, &amp;c.</p>
<p>I like it - it works ;^)</p>
<hr /><small>Will Taylor / Will's Similiblog 2008<br />
Creative Commons attribution 3.0 license </small>]]></description>
		<wfw:commentRss>http://wt.similibus.org/2008/04/09/recipe-for-a-social-learning-platform-navigation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>featuritis</title>
		<link>http://wt.similibus.org/2008/04/03/featuritis/</link>
		<comments>http://wt.similibus.org/2008/04/03/featuritis/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 02:49:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[site_development]]></category>

		<category><![CDATA[drupal]]></category>

		<category><![CDATA[eduglu]]></category>

		<category><![CDATA[featuritis]]></category>

		<guid isPermaLink="false">http://wt.similibus.org/2008/04/03/featuritis/</guid>
		<description><![CDATA[<p>In the continued development &amp; refinement of my <a href="http://sandbox.similibus.org" target="_blank">social learning platform</a>, I find myself facing a <em>featuritis dilemma,</em> as elegantly described by Kathy Sierra (illustration from <a href="http://headrush.typepad.com/creating_passionate_users/2007/04/my_favorite_gra.html" target="_blank">her most wonderful blog</a>):</p>
<p><img src="http://headrush.typepad.com/photos/uncategorized/2007/04/06/featuritis.jpg" alt="featuritis - Kathy Sierra" height="343" width="440" /></p>
<p>How to resolve?  Navigation?  Simplification?  A collection of simple sites each of focal purpose, linked with one another, v/s one &#8220;swiss army&#8221; site?  Do I/we need all this?</p>
<p>Aggregators were apparently developed to help shift the web-phenomenon east of &#8220;happy user peak&#8221; to the left; yet my aggregation site seems to be beginning to slip down the slope past &#8220;guess I better look at the manual &#8230;&#8221;.</p>
<p>I&#8217;m wondering about using Drupal&#8217;s multisite function, with the multisite_login module, to create parallel sites for separable functions of my currently swiss-army-ish tool - with shared user db&#8217;s and single login.  Community blog with aggregation of users&#8217; distributed content on one site, community rated aggregated news on another, aggregation of selected Moodle course forum discussions on a 3rd.</p>
<p>Or perhaps I&#8217;m just getting too excited about the tools, &amp; need to simplify overall.  The tools are just too cool.</p>
<hr /><small>Will Taylor / Will's Similiblog 2008<br />
Creative Commons attribution 3.0 license </small>]]></description>
		<wfw:commentRss>http://wt.similibus.org/2008/04/03/featuritis/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
