<?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>Damon Gudaitis &#187; Wordpress</title>
	<atom:link href="http://www.damongudaitis.com/cat/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.damongudaitis.com</link>
	<description>Web Content Writing and Optimization: Where Words and Numbers Meet</description>
	<lastBuildDate>Mon, 05 Jul 2010 02:44:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Thesis Custom Taxonomy Pages that Visitors and Search Engines Will Love</title>
		<link>http://www.damongudaitis.com/wordpress/thesis-custom-taxonomy-pages.html</link>
		<comments>http://www.damongudaitis.com/wordpress/thesis-custom-taxonomy-pages.html#comments</comments>
		<pubDate>Sat, 13 Jun 2009 01:44:29 +0000</pubDate>
		<dc:creator>Damon</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Thesis]]></category>
		<category><![CDATA[Wordpress taxonomy]]></category>

		<guid isPermaLink="false">http://www.damongudaitis.com/?p=327</guid>
		<description><![CDATA[Taxonomies in WordPress are categorized tags. They are useful if you find yourself adding a class of tags over and over, like ingredients on a recipe blog. WordPress 2.8 includes updates that make the hidden taxonomy features easier to use. I&#8217;ve set taxonomies up on my home-brewing blog, Life With Beer, where I have taxonomies [...]<p><a href="http://www.damongudaitis.com/wordpress/thesis-custom-taxonomy-pages.html">Thesis Custom Taxonomy Pages that Visitors and Search Engines Will Love</a> is a post from: <a href="http://www.damongudaitis.com">Damon Gudaitis</a></p>
]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.damongudaitis.com/wordpress/thesis-custom-taxonomy-pages.html" title="Permanent link to Thesis Custom Taxonomy Pages that Visitors and Search Engines Will Love"><img class="post_image alignnone" src="http://www.damongudaitis.com/wp-content/uploads/2009/06/brewing-ingredients-taxonomies.png" width="426" height="120" alt="Brewing Ingredients Taxonomy" /></a>
</p><div id="attachment_328" class="wp-caption alignright" style="width: 280px">
	<img src="http://www.damongudaitis.com/wp-content/uploads/2009/06/wordpress-sidebar-taxonomies.png" alt="Taxonomies in WordPress Edit-Post Sidebar" width="280" height="600" class="size-full wp-image-328" />
	<p class="wp-caption-text">Taxonomies in WordPress Edit-Post Sidebar</p>
</div>
<p>Taxonomies in WordPress are categorized tags. They are useful if you find yourself adding a class of tags over and over, like ingredients on a recipe blog. WordPress 2.8 includes updates that make the hidden taxonomy features easier to use.</p>
<p>I&#8217;ve set taxonomies up on my home-brewing blog, Life With Beer, where I have taxonomies for malts, hops, yeast strains, and adjuncts (weird stuff in beer like fruit, spices, and mushrooms). I also sometimes write about local craft-brewed beer, so I also have a craft-brew taxonomy that I use for micro-breweries and brew-pubs.</p>
<p>As an example of how you can use taxonomies to expand your blog to include information that visitors and search engines will love, I&#8217;ll be using a post from Life With Beer about <a title="Kelp Beer Recipe" href="http://www.lifewithbeer.com/home-brewing/seaweed-seafood/umami-stout.html#yoast-taxonomy">kelp beer</a>. (The link takes you to the end of the post where the taxonomies are listed. At the time of writing, it&#8217;s the only post where I&#8217;m using taxonomies, but it&#8217;s enough to illustrate the idea.)</p>
<p>To start using taxonomies, you need to dig through the WordPress Codex to find the relevant functions and add them to your theme. Or you can use Joost de Valk&#8217;s <a href="http://yoast.com/wordpress/simple-taxonomies/">taxonomy plugin</a>.</p>
<p>By default, the taxonomy pages look just like your regular tag pages, which is kind of boring, and at best will help a small percentage of visitors navigate your site. But, with just a little extra information on the taxonomy page you can create pages of keyword-rich useful information that visitors and search engines will love.<br />
<div id="attachment_330" class="wp-caption aligncenter" style="width: 426px">
	<img src="http://www.damongudaitis.com/wp-content/uploads/2009/06/brewing-ingredients-taxonomies.png" alt="Taxonomies Linking Brewing Recipes with Ingredients" width="426" height="120" class="size-full wp-image-330" />
	<p class="wp-caption-text">Taxonomies Linking Brewing Recipes with Ingredients</p>
</div></p>
<h3>Coding Your Thesis Taxonomy Pages</h3>
<p>Thesis doesn&#8217;t do well creating a page title for taxonomy pages, so the first thing we need to do is fix that.</p>
<p>Right under the title, we want to add some extra introductory content. To do that we&#8217;re going to roll our own WordPress query that only gets a post with the same page name as the taxonomy slug and print it out.</p>
<p>Since I want all of this to be grouped together, I&#8217;m putting it in the same function and using the bottom-border of #archive_info to separate it from the list of posts that are associated with the tag.</p>
<p>The second function creates text that introduces the list of posts that are associated with the taxonomy.</p>
<p>Read through the code comments, because there&#8217;s are a couple of areas that need special attention.</p>
<pre><code>function custom_taxonomy_intro(){
	global $wp_query, $thesis;
	if ( is_tax() ) {	
	
/*
 * get taxonomy variables that we'll	use
 * to create a page title
 * and query the database
 * for information stored in a private post
*/	
		$taxonomy 	= get_taxonomy ( get_query_var('taxonomy') );
		$term = $wp_query-&amp;gt;get_queried_object();
		$title = $term-&amp;gt;name;
		$query_term = get_query_var('term');
/*
 * create headline
 * 
*/
		
		?&amp;gt;
		&lt;div class="post_box top"&gt;
		&lt;div class="headline_area"&gt;
		&lt;h1 class="entry-title"&gt;label ;?&amp;gt; Archive&lt;/h1&gt;
		&amp;lt;?php
		thesis_hook_after_headline($post_count);		
		echo "&lt;/div&gt;";		//end headline_area

/*
 * custom WP_Query that only
 * gets pages with the same name
 * as the taxonomy term
*/

		$query='pagename='.$query_term;
		$tax_post = new WP_Query();
		$tax_post-&amp;gt;query($query);

//Wordpress loop

		while ($tax_post-&amp;gt;have_posts()) : $tax_post-&amp;gt;the_post(); 
			$post_image = thesis_post_image_info('image');
						
			if ($post_image['show'] &amp;amp;&amp;amp; $post_image['y'] == 'before-post'){
				echo $post_image['output'];
			}

			echo "&lt;div class='format_text entry-content'&gt;";
			the_content();
			echo "&lt;/div&gt;";
		endwhile;
		echo "&lt;/div&gt;";		//end  post_box top

		
	}
}
add_action('thesis_hook_before_content','custom_taxonomy_intro');

function custom_taxonomy_post_list(){
	global $wp_query;
	if (is_tax()){
		$term = $wp_query-&amp;gt;get_queried_object();
		$title = $term-&amp;gt;name;

/*
 * create intro text
 * by concatenating text with term
 * adjust to your needs
*/

		if ( is_tax('craft-brew')){
			$pre="Posts about ";
		} else {
			$pre="Recipes that use ";
		}
	
		echo "&lt;div&gt;&lt;p&gt;".$pre." ".$title.":&lt;/p&gt;&lt;/div&gt;";	//add #taxonomy-intro to custom-css file
	}	
}

add_action('thesis_hook_archive_info','custom_taxonomy_post_list');</code></pre>
<h3>Notes on Taxonomy Pages</h3>
<p><strong>You need to create a page to hold the introductory content with the same title as the taxonomy term.</strong> This page isn&#8217;t intended to be accessed by visitors or search engines, it&#8217;s just there to hold the unique content that you&#8217;re going to use at the start of your taxonomy page.</p>
<p>If you&#8217;re having problems and are using post titles in your URLs, check that the last segment of the permalink for the holder page, matches the last segment of the taxonomy page URL. On Life With Beer, my matching URLs for roast barley in my malts taxonomy look like this:</p>
<p style="padding-left: 30px;">Holder Page: http://www.yoursite.com/roast-barley<br />
Taxonomy Page: http://www.yoursite.com/malts/roast-barley</p>
<h3>SEO Issues for Taxonomy Pages</h3>
<p>You want search engines to crawl these taxonomy pages.</p>
<p>To avoid duplicate content penalties, you don&#8217;t want to allow search engines to access the holder pages. The easiest way to do this is to keep these pages private. This keeps the holder pages out of search engines, stops it from popping up in standard WordPress functions, and gives a 404 error to anyone who guesses the URL (after reading this article?).</p>
<div id="attachment_329" class="wp-caption aligncenter" style="width: 355px">
	<img src="http://www.damongudaitis.com/wp-content/uploads/2009/06/private-wordpress-page.png" alt="WordPress Page Privacy Settings" width="355" height="262" class="size-full wp-image-329" />
	<p class="wp-caption-text">WordPress Page Privacy Settings</p>
</div>
<p>The All-In-One SEO plugin treats these pages like tag pages and prevents search engines from crawling the taxonomy pages.</p>
<p>Thesis doesn&#8217;t recognize taxonomy pages (actually, both Thesis and All-In-One SEO both don&#8217;t recognize taxonomies, but Thesis uses a more strict function when excluding tag pages). So, even if you&#8217;re excluding search engines from your tag pages, search engines are still able to crawl your taxonomy pages which is exactly what we want.</p>
<p>All other things being equal, it&#8217;s better to dump the All-In-One SEO plugin and just use Thesis&#8217;s SEO functions. Alternately, bug the All-In-One SEO plugin people to add the option to decide whether to block search engines from taxonomy pages.</p>
<p><a href="http://www.damongudaitis.com/wordpress/thesis-custom-taxonomy-pages.html">Thesis Custom Taxonomy Pages that Visitors and Search Engines Will Love</a> is a post from: <a href="http://www.damongudaitis.com">Damon Gudaitis</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.damongudaitis.com/wordpress/thesis-custom-taxonomy-pages.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Thesis Hive: Multiple Thesis Sites, One Set of Files</title>
		<link>http://www.damongudaitis.com/wordpress/thesis-hive.html</link>
		<comments>http://www.damongudaitis.com/wordpress/thesis-hive.html#comments</comments>
		<pubDate>Thu, 02 Apr 2009 00:10:09 +0000</pubDate>
		<dc:creator>Damon</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Thesis]]></category>
		<category><![CDATA[WP Hive]]></category>

		<guid isPermaLink="false">http://www.damongudaitis.com/?p=226</guid>
		<description><![CDATA[I have two regular blogs running Thesis and one development blog also running Thesis. Each blog has about a dozen plugins in common. Updating WordPress, the plugins, and Thesis is a pain as it is, so you can imagine how I feel about updating everything three times. For WordPress and the plugins the solution is [...]<p><a href="http://www.damongudaitis.com/wordpress/thesis-hive.html">Thesis Hive: Multiple Thesis Sites, One Set of Files</a> is a post from: <a href="http://www.damongudaitis.com">Damon Gudaitis</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p>I have two regular blogs running Thesis and one development blog also running Thesis. Each blog has about a dozen plugins in common.</p>
<p>Updating WordPress, the plugins, and Thesis is a pain as it is, so you can imagine how I feel about updating everything three times.</p>
<p>For WordPress and the plugins the solution is <a href="http://wp-hive.com/">WP Hive</a> which lets you use one set of source files for multiple sites. Each site gets its own settings and themes. Each site gets its own set of .htaccess and robots.txt files.</p>
<p>WP-Hive doesn&#8217;t  let you create your own set of Thesis customizations for each set. The problem is that Thesis isn&#8217;t a theme so much as a framework and, if you like using the Thesis framework, then you&#8217;re probably going to want to use it for all of your sites each with its own set of customizations.</p>
<p>You can get around this by uploading Thesis multiple times renaming the Thesis theme folder each time. But if you&#8217;re lazy like me you&#8217;re not going to like updating each Thesis installation every time a new release comes out. Luckily there is a much more simple and elegant solution that makes updating and maintaining your blogs easily.</p>
<p>Add this code to your custom_functions.php file in your WP Hive enabled WordPress installation.</p>
<pre><code>function thesis_hive() {
	// Get the correct host name
	$hostname = $_SERVER['X_FORWARDED_HOST'] == false ? $_SERVER['HTTP_HOST'] : $_SERVER['X_FORWARDED_HOST'];

	// Strip any leading or training dots
	$hostname = strtolower(trim($hostname, "."));

	// Strip the www prefix
	if (substr($hostname, 0, 4) == "www.") {
		$hostname = substr($hostname,4);
	}
	
	//custom css
	if ( ! file_exists(THESIS_CUSTOM . '/' . $hostname . '_custom.css') ) {
		fopen(THESIS_CUSTOM . '/' . $hostname. '_custom.css','w+');
	}
	
	echo '&lt;link rel="stylesheet" href="http://www.'.$hostname.'/wp-content/themes/thesis/custom/' . $hostname. '_custom.css" type="text/css"/&gt;';
	
	//custom_functions.php
	if ( ! file_exists(THESIS_CUSTOM . '/' . $hostname . '_custom_functions.php') ) {
		fopen(THESIS_CUSTOM . '/' . $hostname . '_custom_functions.php','w+');
	}
	
	if (file_exists(THESIS_CUSTOM . '/'.$hostname.'_custom_functions.php')){
		include(THESIS_CUSTOM . '/'.$hostname.'_custom_functions.php');
	}
}

add_action('wp_head','thesis_hive');</code></pre>
<p>This will code will automatically create a new set of custom.css and custom_functions.php file for each site the first time someone visits the site after adding the code and link or include the files.</p>
<p>Your custom folder will look like this:</p>
<p>cache/<br />
custom_functions.php<br />
custom.css<br />
hostname1.com_custom_functions.php<br />
hostname1.com_custom.css<br />
subdomain.hostname1.com_custom_functions.php<br />
subdomain.hostname1.com_custom.css<br />
hostname2_custom_functions.php<br />
hostname2_custom.css<br />
etc&#8230;</p>
<p>Use the main custom_functions.php file for functions you want to use in all of your sites and the hostname_custom_functions.php file for functions that are specific to that one site.</p>
<p>The various custom.css files can be used the same way.</p>
<h3>Final Notes</h3>
<p>One drawback of this approach is that calling the functions within Thesis limits the scope. I don&#8217;t think you&#8217;ll be able to use WordPress functions and WordPress hooks in the hostname_custom_functions.php files. This hasn&#8217;t been a problem for me, but you should be aware of it when implementing a Thesis hive.</p>
<p>Thanks to <a title="Alex Tran" href="http://alextran.org/">Alex Tran</a> in the comments who mentions a thread in the Thesis forums about creating <a title="Multiple Rotators with WP Hive" href="http://diythemes.com/forums/vbseo.php?vbseourl=feature-requests/4615-site-specific-rotator-images-folder.html">multiple Thesis image rotators</a> with WP Hive. My Thesis hive script doesn&#8217;t allow for multiple image rotators so, if that&#8217;s important to you, then go check it out.</p>
<p>Finally, if you have multiple Thesis sites, then you really should have a <a rel="nofollow" href="https://diythemes.com/aff/scripts/click.php?a_aid=damon&amp;a_bid=d1c60af6&amp;desturl=http%3A%2F%2Fdiythemes.com%2Fthesis%2Fget-thesis%2F">Thesis Developers License</a><img style="border:0" src="https://diythemes.com/aff/scripts/imp.php?a_aid=damon&amp;a_bid=d1c60af6" width="1" height="1" alt="" />.</p>
<p><a href="http://www.damongudaitis.com/wordpress/thesis-hive.html">Thesis Hive: Multiple Thesis Sites, One Set of Files</a> is a post from: <a href="http://www.damongudaitis.com">Damon Gudaitis</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.damongudaitis.com/wordpress/thesis-hive.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Shortcode with WordPress Google Website Optimizer Plugin</title>
		<link>http://www.damongudaitis.com/wordpress/shortcode-google-website-optimizer-plugin.html</link>
		<comments>http://www.damongudaitis.com/wordpress/shortcode-google-website-optimizer-plugin.html#comments</comments>
		<pubDate>Sun, 01 Feb 2009 21:19:27 +0000</pubDate>
		<dc:creator>Damon</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Google Website Optimizer]]></category>
		<category><![CDATA[shortcode]]></category>

		<guid isPermaLink="false">http://www.damongudaitis.com/?p=82</guid>
		<description><![CDATA[First of all, props to Chris who first suggested the fix to the WordPress Google Website Optimizer Plugin in the comments on my WordPress Displaying Code in Square Brackets post. Chris shares his ideas on how to make money online at The Net Hustle. If you&#8217;re having trouble getting the Google Website Optimizer plugin to [...]<p><a href="http://www.damongudaitis.com/wordpress/shortcode-google-website-optimizer-plugin.html">Shortcode with WordPress Google Website Optimizer Plugin</a> is a post from: <a href="http://www.damongudaitis.com">Damon Gudaitis</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p>First of all, props to Chris who first suggested the fix to the WordPress Google Website Optimizer Plugin in the comments on my <a href="http://www.damongudaitis.com/wordpress/square-brackets-wordpress.html">WordPress Displaying Code in Square Brackets</a> post. Chris shares his ideas on <a href="http://thenethustle.com/">how to make money online</a> at The Net Hustle.</p>
<p>If you&#8217;re having trouble getting the <a href="http://websiteoptimizer.contentrobot.com/">Google Website Optimizer plugin</a> to work with shortcode (code in square brackets that you insert into your posts add plugin functionality), then you need to change the echo statements to return statements in the google-website-optimizer-for-wordpress.php file.</p>
<p>I added some other modifications to the script to make it easier to read. I only just started testing it, but I&#8217;m pretty confident the code below will work without modification. </p>
<p>Copy the code and replace the function of the same name in google-website-optimizer-for-wordpress.php (everything between the two lines that start with add_action, but not including the add_action lines).</p>
<p><code>function go4wp_tracking_script($content) {
  global $wp_query;
  if (is_single() or is_page()) {
    if ($wp_query-&gt;post) {
      $post = $wp_query-&gt;post;
      $tracking = get_post_meta($post-&gt;ID, 'go_tracking_script_test', true);
      $conversion = get_post_meta($post-&gt;ID, 'go_tracking_script_conversion', true);  //this line got edited after original post
      //if the page/post has both test and conversion code, display both
      if (get_post_meta($post-&gt;ID, 'go_tracking_script_test', true) &amp;&amp; get_post_meta($post-&gt;ID, 'go_tracking_script_conversion', true)) {       
        return $content.$tracking.$conversion;
      //if the page/post has test code display it
      } else if (get_post_meta($post-&gt;ID, 'go_tracking_script_test', true)) {
        return $content.$tracking;
      //if the page/post has conversion code, display it
      } else if (get_post_meta($post-&gt;ID, 'go_tracking_script_conversion', true)) {
        return $content.$conversion;
      //if the page/post does not have test and/or conversion code, display the normal content
      } else {
        return $content;
      }
    }
  } else {
      return $content;
      } 
}</code></p>
<p><a href="http://www.damongudaitis.com/wordpress/shortcode-google-website-optimizer-plugin.html">Shortcode with WordPress Google Website Optimizer Plugin</a> is a post from: <a href="http://www.damongudaitis.com">Damon Gudaitis</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.damongudaitis.com/wordpress/shortcode-google-website-optimizer-plugin.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress Displaying Code in Square Brackets?</title>
		<link>http://www.damongudaitis.com/wordpress/square-brackets-wordpress.html</link>
		<comments>http://www.damongudaitis.com/wordpress/square-brackets-wordpress.html#comments</comments>
		<pubDate>Tue, 09 Dec 2008 23:05:16 +0000</pubDate>
		<dc:creator>Damon</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[shortcode]]></category>

		<guid isPermaLink="false">http://www.damongudaitis.com/?p=39</guid>
		<description><![CDATA[You probably want to search for shortcode. Shortcode is the term used for code that bloggers and plugin developers can use to embed code within a WordPress Post or Page. The purpose of the remainder of this post is to SEO for words that non-coders search for so that people who don&#8217;t know what shortcode [...]<p><a href="http://www.damongudaitis.com/wordpress/square-brackets-wordpress.html">WordPress Displaying Code in Square Brackets?</a> is a post from: <a href="http://www.damongudaitis.com">Damon Gudaitis</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p>You probably want to search for <strong>shortcode</strong>.</p>
<p>Shortcode is the term used for code that bloggers and plugin developers can use to embed code within a WordPress Post or Page.</p>
<p>The purpose of the remainder of this post is to SEO for words that non-coders search for so that people who don&#8217;t know what shortcode is can find this post and learn what search terms to use in order to find a solution. I&#8217;ll also share the solution to my specific problem.</p>
<h3>WordPress Caption and Form Code Not Working</h3>
<p>I recently had a problem with another WordPress blog of mine where code nested in square brackets started displaying. In my case, the problem was with the image caption code and with my contact forms (I tried changing contact form plugins to see if that solved the problem.</p>
<p>I stupidly performed a bunch of updates at the same time with only a cursory check in between so I wasn&#8217;t really sure what caused the problem. So off I went to Google to figure out if it knew.</p>
<p>The problem was that there weren&#8217;t any relevant results in the language that I used for my searches and I didn&#8217;t know the correct technical term. My searches included terms like:</p>
<ul>
<li>square brackets display code WordPress</li>
<li>WordPress not parsing code square brackets</li>
</ul>
<p>and similar combinations.</p>
<p>Luckily, I know enough PHP and WordPress to figure out that the technical term for the code that gets inserted in to Posts and Pages in WordPress is <strong>shortcode. </strong>If you&#8217;re having any problems with stuff displaying within square brackets that shouldn&#8217;t be displayed, try searching with the term shortcode.</p>
<p>I can&#8217;t find the post that helped me but the problem was with the Google Website Optimizer for WordPress plugin.</p>
<p>I hope this helps you figure out your problem.</p>
<p>[edit]I posted a fix for this problem in my <a href="http://www.damongudaitis.com/wordpress/shortcode-google-website-optimizer-plugin.html">Shortcode with Google Website Optimizer for WordPress</a> post.[/edit]</p>
<p><a href="http://www.damongudaitis.com/wordpress/square-brackets-wordpress.html">WordPress Displaying Code in Square Brackets?</a> is a post from: <a href="http://www.damongudaitis.com">Damon Gudaitis</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.damongudaitis.com/wordpress/square-brackets-wordpress.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)

Served from: www.damongudaitis.com @ 2010-09-10 17:21:16 -->