<?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>Dammit Jim! &#187; 日本語</title>
	<atom:link href="http://scott.sherrillmix.com/blog/tag/%e6%97%a5%e6%9c%ac%e8%aa%9e/feed/" rel="self" type="application/rss+xml" />
	<link>http://scott.sherrillmix.com/blog</link>
	<description>I'm a biologist not a...</description>
	<lastBuildDate>Tue, 12 Jan 2010 05:09:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WP_Folksonomy</title>
		<link>http://scott.sherrillmix.com/blog/blogger/wp_folksonomy/</link>
		<comments>http://scott.sherrillmix.com/blog/blogger/wp_folksonomy/#comments</comments>
		<pubDate>Sun, 16 Dec 2007 07:46:27 +0000</pubDate>
		<dc:creator>ScottS-M</dc:creator>
				<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Programmer]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[2.5]]></category>
		<category><![CDATA[categorization]]></category>
		<category><![CDATA[collaborative]]></category>
		<category><![CDATA[community tags]]></category>
		<category><![CDATA[cool cllaborative]]></category>
		<category><![CDATA[etiket]]></category>
		<category><![CDATA[experimental]]></category>
		<category><![CDATA[folksonomy]]></category>
		<category><![CDATA[moderate]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugins wordpress]]></category>
		<category><![CDATA[potential mess]]></category>
		<category><![CDATA[semantic web]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[tag]]></category>
		<category><![CDATA[tagging]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[taxonomy]]></category>
		<category><![CDATA[user driven]]></category>
		<category><![CDATA[user generated]]></category>
		<category><![CDATA[wishlist]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[日本語]]></category>
		<category><![CDATA[תגים]]></category>

		<guid isPermaLink="false">http://scott.sherrillmix.com/blog/blogger/wp_folksonomy/</guid>
		<description><![CDATA[Aziz of metaBLOG suggests that the new tags in Wordpress 2.3 can be used to create a &#8220;folksonomy&#8221; on Wordpress blogs. For those not in the know (including me until a couple days ago), a folksonomy is is the practice and method of collaboratively creating and managing tags to annotate and categorize content according to [...]]]></description>
			<content:encoded><![CDATA[<img src="/res/images/folksonomy.png" alt="WP_Folksonomy Screenshot" class="right"/><p>Aziz of <a href="http://www.metablog.us/">metaBLOG</a> suggests that the new tags in Wordpress 2.3 can be used to <a href="http://www.metablog.us/content/taxonomy-versus-folksonomy/">create a &#8220;folksonomy&#8221;</a> on Wordpress blogs. For those not in the know (including me until a couple days ago), a folksonomy is <q>is the practice and method of collaboratively creating and managing tags to annotate and categorize content</q> according to <cite><a href="http://en.wikipedia.org/wiki/Folksonomy">Wikipedia</a></cite>. Basically it&#8217;s letting normal people (versus say artificial intelligence or an administrator) help describe things. For example, adding a tag on flickr or using del.icio.us.</p>
<p>So since Wordpress doesn&#8217;t currently have anything like a public &#8220;Add a Tag&#8221; and I haven&#8217;t coded a Wordpress plugin recently (although I did upgrade <a href="http://scott.sherrillmix.com/blog/blogger/wp_monsterid/">WP_MonsterID</a> if anyone is using it), I thought I would code up a quick plugin to see how it works. So here is <a href="/res/wp_folksonomy.zip">WP_Folksonomy</a>. It&#8217;s fairly basic at the moment but I&#8217;d like to get it out there to see if it&#8217;s useful and if anyone is interested in it.</p>
<p>Since it uses Wordpress&#8217;s tagging features WP it&#8217;s only going to be compatible with Wordpress 2.3 and up.</p>

<h3>Features</h3>
<ul>
<li>Allow readers (or registered users) to add tags to posts</li>
<li>Choose between immediately displaying tags and waiting for admin approval first</li>
<li>Delete user submitted tags</li>
<li>Delete or approve all tags by user/IP address</li>
<li>RSS feed for monitoring added tags</li>
<li>Javascript autocompletion for increased tag standardization</li>
<li>Limit tags per time limit to discourage bots</li>
</ul>

<h3>Current Version:</h3> <p><a href="http://downloads.wordpress.org/plugin/wp-folksonomy.zip">WP_Folksonomy v0.8</a></p>

<h3>Installation instructions:</h3> 
<p>Unzip <code>wp_folksonomy.zip</code>. Upload <code>wp_folksonomy.php</code> to <code>wp-content/plugins/</code> and activate in the Plugin Control Panel. Now the slightly difficult part. Unfortunately there is no automatic hook near the tags in Wordpress so you&#8217;ll have to make a minor change to one of your theme files. We&#8217;re aiming create a tiny form to allow your users to add tags. Many themes will be using the wordpress <code>&lt;?php the_tags(&#039;some&#039;,&#039;options&#039;);?&gt;<!--formatted--></code> to list the tags. Try to find this function or a similar tag listing function. It&#8217;s often either in <code>wp-content/themes/CurrenTheme/index.php</code> or <code>wp-content/themes/CurrenTheme/single.php</code>. Once you find it add the following code <code>&lt;?php if(function_exists('wp_folksonomy_add_form')) wp_folksonomy_add_form();?&gt;<!--formatted--></code> immediately after it. For example in the default Wordpress theme, it looks like:</p>
<pre>
<code>&lt;?php the_tags( &#039;&lt;p&gt;Tags: &#039;, &#039;, &#039;, &#039;&lt;/p&gt;&#039;); ?&gt;
&lt;?php if(function_exists('wp_folksonomy_add_form')) wp_folksonomy_add_form();?&gt;<!--formatted--></code>
</pre>
<p>Sorry it&#8217;s not more automatic but if you&#8217;re having any trouble figuring out where to put it feel free to ask in the comments (make sure to tell me which theme you&#8217;re using). You can view and delete tags from the Folksonomy control panel in Settings or <del datetime="2008-05-28T00:06:28+00:00">a little widget on the dashboard</del> an RSS feed.</p>

<h3>Change Log:</h3>
<ul>
<li><a href="/res/wp_folksonomy_v0.8.zip">v0.8</a> 9-22-2008:
<ul>
<li>Put in a time limit for max tags per time to discourage bots</li>
</ul>
</li>
<li><a href="/res/wp_folksonomy_v0.71.zip">v0.71</a> 7-5-2008:
<ul>
<li>Fixed deleting problem with term_id vs term_taxonomy_id</li>
</ul>
</li>
<li><a href="/res/wp_folksonomy_v0.62.zip">v0.62</a> 5-28-2008:
<ul>
<li>Added caching compatibility</li>
</ul>
</li>
<li><a href="/res/wp_folksonomy_v0.61.zip">v0.61</a> 5-28-2008:
<ul>
<li>Fixed invalid HTML</li>
</ul>
</li>
<li><a href="/res/wp_folksonomy_v0.6.zip">v0.6</a> 5-27-2008:
<ul>
<li>Fixed missing <code>$wpdb-&gt;prefix causing missing table</code></li>
<li>Fixed installation directions (extra &ldquo;function &rdquo;)</li>
<li>Added javascript tag completion</li>
<li>Fixed paging on tag display</li>
<li>Removed dashboard widget</li>
<li>Added an RSS feed for monitoring added tags</li>
</ul>
</li>
<li><a href="/res/wp_folksonomy_v0.5.zip">v0.5</a> 12-21-2007:
<ul>
<li>Fixed undeleteable tags when tag had been created, deleted, created</li>
<li>Fixed added tag not displaying on submitter&#8217;s page until after reload in themes with a late call to <code>wp_head()</code></li>
</ul>
</li>
<li><a href="/res/wp_folksonomy_v0.41.zip">v0.4</a> 12-19-2007:
<ul>
<li>Approve all tags by user/IP</li>
<li>Delete all tags by user/IP</li>
<li>Tags added within post page (no longer needs $_GET variables)</li>
</ul>
</li>
<li><a href="/res/wp_folksonomy_v0.3.zip">v0.3</a> 12-17-2007:
<ul>
<li>Limit tags to 25 characters</li>
<li>Only allows users who can edit posts to approve/delete tags</li>
<li>Fixed option update bug</li>
<li>When Registered Users options set, only displays tag add form for registered users</li>
</ul>
</li>
<li><a href="/res/wp_folksonomy_v0.21.zip">v0.21</a> 12-15-2007:
<ul>
<li>Fixed overlap between tag add and comment add $_POST variables</li>
</ul>
</li>
<li><a href="/res/wp_folksonomy_v0.2.zip">v0.2</a> 12-15-2007:
<ul>
<li>Added Control Panel</li>
<li>Added Subscribers Only and Authorize Tags options</li>
<li>Tracks submitted tags</li>
<li>Added Delete and Accept Tag actions</li>
</ul>
</li>
<li>v0.1 12-14-2007:
<ul>
<li>A rough public tag adder</li>
</ul>
</li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://scott.sherrillmix.com/blog/blogger/wp_folksonomy/feed/</wfw:commentRss>
		<slash:comments>45</slash:comments>
		</item>
	</channel>
</rss>
