<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: What Happened?</title>
	<atom:link href="http://technology.amis.nl/2009/12/30/what-happened/feed/" rel="self" type="application/rss+xml" />
	<link>http://technology.amis.nl/2009/12/30/what-happened/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=what-happened</link>
	<description></description>
	<lastBuildDate>Fri, 12 Apr 2013 10:04:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Marcus</title>
		<link>http://technology.amis.nl/2009/12/30/what-happened/#comment-6082</link>
		<dc:creator>Marcus</dc:creator>
		<pubDate>Mon, 25 Jan 2010 11:00:06 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=6767#comment-6082</guid>
		<description><![CDATA[It works now, Thanks]]></description>
		<content:encoded><![CDATA[<p>It works now, Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Gralike</title>
		<link>http://technology.amis.nl/2009/12/30/what-happened/#comment-6081</link>
		<dc:creator>Chris Gralike</dc:creator>
		<pubDate>Wed, 20 Jan 2010 11:35:49 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=6767#comment-6081</guid>
		<description><![CDATA[&lt;p&gt;Hi Marcus,

First thanks for your comment and detailed description!

To solve this problem I wrote a word counter..
[code language=&quot;php&quot; htmlscript=&quot;true&quot;]
/* Function by AMIS to limit words */
Â function AMIS_Wordlimit($text,$limit=&quot;10&quot;){
Â Â Â Â Â Â Â  $exp = explode(&#039; &#039;,$text);
Â Â Â Â Â Â Â  if(count($exp) &lt;= $limit){
Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  if(count($exp) == &quot;1&quot; &amp;&amp; empty($exp[0])){
Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  return &quot;No bio was found for this author yet...&quot;;
Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  }else{
Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  return $text;
Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  }
Â Â Â Â Â Â Â  }else{
Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  for($i=0;$i&lt;$limit;$i++){
Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  $string .= $exp[$i].&#039; &#039;;
Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  }
Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  return $string.&#039;...&#039;;
Â Â Â Â Â Â Â  }
Â }
[/code]

This should limit the words displayed in the bio, and should stop it from being messed up in low res.

Regards,
Chris.&lt;/p&gt;]]></description>
		<content:encoded><![CDATA[<p>Hi Marcus,</p>
<p>First thanks for your comment and detailed description!</p>
<p>To solve this problem I wrote a word counter..<br />
[code language="php" htmlscript="true"]<br />
/* Function by AMIS to limit words */<br />
Â function AMIS_Wordlimit($text,$limit=&quot;10&quot;){<br />
Â Â Â Â Â Â Â  $exp = explode(' ',$text);<br />
Â Â Â Â Â Â Â  if(count($exp) &lt;= $limit){<br />
Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  if(count($exp) == &quot;1&quot; &amp;&amp; empty($exp[0])){<br />
Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  return &quot;No bio was found for this author yet...&quot;;<br />
Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  }else{<br />
Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  return $text;<br />
Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  }<br />
Â Â Â Â Â Â Â  }else{<br />
Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  for($i=0;$i&lt;$limit;$i++){<br />
Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  $string .= $exp[$i].' ';<br />
Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  }<br />
Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  return $string.'...';<br />
Â Â Â Â Â Â Â  }<br />
Â }<br />
[/code]</p>
<p>This should limit the words displayed in the bio, and should stop it from being messed up in low res.</p>
<p>Regards,<br />
Chris.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcus</title>
		<link>http://technology.amis.nl/2009/12/30/what-happened/#comment-6080</link>
		<dc:creator>Marcus</dc:creator>
		<pubDate>Mon, 18 Jan 2010 06:02:37 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=6767#comment-6080</guid>
		<description><![CDATA[The new layout is broken when viewed with Firefox 3.5.Â  The area &quot;About the author&quot; is hidden partially on the right side when not viewed with full screen width, e.g. with a bookmark sidebar opened or not maximized window. It overflows into the area beyond when it contains to much text and it flows over the text &quot;more by &lt;author&gt;&quot;
Â 
Regards
Marcus]]></description>
		<content:encoded><![CDATA[<p>The new layout is broken when viewed with Firefox 3.5.Â  The area &#8220;About the author&#8221; is hidden partially on the right side when not viewed with full screen width, e.g. with a bookmark sidebar opened or not maximized window. It overflows into the area beyond when it contains to much text and it flows over the text &#8220;more by &lt;author&gt;&#8221;<br />
Â <br />
Regards<br />
Marcus</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Gralike</title>
		<link>http://technology.amis.nl/2009/12/30/what-happened/#comment-6079</link>
		<dc:creator>Chris Gralike</dc:creator>
		<pubDate>Wed, 13 Jan 2010 12:11:31 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=6767#comment-6079</guid>
		<description><![CDATA[&lt;p&gt;Updated the single.php with a custom author spotlight. The Wordpress plugins dont seem to work correctly before the article loop.

Added this code for our Author spotlight
[code language=&quot;php&quot; htmlscript=&quot;true&quot;]
Â  &lt;div class=&quot;AMIS_Authors&quot;&gt;
                &lt;div class=&quot;AMIS_title&quot;&gt;About the author : &lt;a class=&quot;websnapr&quot; href=&quot;&lt;?php the_author_meta(&#039;user_url&#039;);?&gt;&quot;&gt;&lt;?php the_author_meta(&#039;display_name&#039;) ?&gt;&lt;/a&gt;&lt;/div&gt;
                &lt;div class=&quot;AMIS_main&quot;&gt;
                        &lt;div class=&quot;left&quot;&gt;
                                &lt;div class=&quot;image&quot;&gt;&lt;?php userphoto_the_author_photo() ?&gt;&lt;/div&gt;
                        &lt;/div&gt;
                        &lt;div class=&quot;right block title&quot; valign=&quot;top&quot;&gt;
                                &lt;div class=&quot;bio&quot;&gt;&lt;?php the_author_meta(&#039;description&#039;) ?&gt;&lt;/div&gt;
                                &lt;div class=&quot;links&quot;&gt;More by &lt;?php the_author_posts_link(); ?&gt;&lt;/div&gt;
                        &lt;/div&gt;
                &lt;/div&gt;
        &lt;/div&gt;
[/code]

And for the time being the following CSS.
[code language=&quot;CSS&quot;]
.AMIS_Authors {
  position : relative;
  border : 1px solid #AAA;
  background-color : #EEE;
}

.AMIS_main {
  width : 100%;
  height : 134px;
  position : relative;
}

.AMIS_main .left{
  padding : 2px 2px 2px 2px;
  border-right : 1px solid #AAA;
  left:0px;
  top:0px;
  width : 130px;
  height : 130px;
  position : absolute;
  z-index : 1;
}

.AMIS_main .right{
  left : 135px;
  top : 0px;
  width : 85%;
  position : absolute;
  z-index : 2;
}

.AMIS_main .right .bio{
  height : 70px;
  max-height:80px;
  font-size : 14px;
  padding : 10px 0px 10px 10px;
}

.AMIS_main .right .links{
  padding : 10px 0px 10px 10px;
}

.AMIS_title{
  padding : 2px 0px 2px 5px;
  font-weight : bold;
  color : #FFF;
  font-size : 17px;
  background-color : #D11;
  width : 100%;
}

.AMIS_title a:link{
  color : #FFF;
  text-decoration:none;
}
.AMIS_title a:visited{
  color : #FFF;
  text-decoration:none;
}
.AMIS_title a:hover{
  color : #FFF;
  text-decoration:none;
}
[/code]
Hope you guys like it :)

&lt;/p&gt;]]></description>
		<content:encoded><![CDATA[<p>Updated the single.php with a custom author spotlight. The WordPress plugins dont seem to work correctly before the article loop.</p>
<p>Added this code for our Author spotlight<br />
[code language="php" htmlscript="true"]<br />
Â  &lt;div class=&quot;AMIS_Authors&quot;&gt;<br />
                &lt;div class=&quot;AMIS_title&quot;&gt;About the author : &lt;a class=&quot;websnapr&quot; href=&quot;&lt;?php the_author_meta('user_url');?&gt;&quot;&gt;&lt;?php the_author_meta('display_name') ?&gt;&lt;/a&gt;&lt;/div&gt;<br />
                &lt;div class=&quot;AMIS_main&quot;&gt;<br />
                        &lt;div class=&quot;left&quot;&gt;<br />
                                &lt;div class=&quot;image&quot;&gt;&lt;?php userphoto_the_author_photo() ?&gt;&lt;/div&gt;<br />
                        &lt;/div&gt;<br />
                        &lt;div class=&quot;right block title&quot; valign=&quot;top&quot;&gt;<br />
                                &lt;div class=&quot;bio&quot;&gt;&lt;?php the_author_meta('description') ?&gt;&lt;/div&gt;<br />
                                &lt;div class=&quot;links&quot;&gt;More by &lt;?php the_author_posts_link(); ?&gt;&lt;/div&gt;<br />
                        &lt;/div&gt;<br />
                &lt;/div&gt;<br />
        &lt;/div&gt;<br />
[/code]</p>
<p>And for the time being the following CSS.<br />
[code language="CSS"]<br />
.AMIS_Authors {<br />
  position : relative;<br />
  border : 1px solid #AAA;<br />
  background-color : #EEE;<br />
}</p>
<p>.AMIS_main {<br />
  width : 100%;<br />
  height : 134px;<br />
  position : relative;<br />
}</p>
<p>.AMIS_main .left{<br />
  padding : 2px 2px 2px 2px;<br />
  border-right : 1px solid #AAA;<br />
  left:0px;<br />
  top:0px;<br />
  width : 130px;<br />
  height : 130px;<br />
  position : absolute;<br />
  z-index : 1;<br />
}</p>
<p>.AMIS_main .right{<br />
  left : 135px;<br />
  top : 0px;<br />
  width : 85%;<br />
  position : absolute;<br />
  z-index : 2;<br />
}</p>
<p>.AMIS_main .right .bio{<br />
  height : 70px;<br />
  max-height:80px;<br />
  font-size : 14px;<br />
  padding : 10px 0px 10px 10px;<br />
}</p>
<p>.AMIS_main .right .links{<br />
  padding : 10px 0px 10px 10px;<br />
}</p>
<p>.AMIS_title{<br />
  padding : 2px 0px 2px 5px;<br />
  font-weight : bold;<br />
  color : #FFF;<br />
  font-size : 17px;<br />
  background-color : #D11;<br />
  width : 100%;<br />
}</p>
<p>.AMIS_title a:link{<br />
  color : #FFF;<br />
  text-decoration:none;<br />
}<br />
.AMIS_title a:visited{<br />
  color : #FFF;<br />
  text-decoration:none;<br />
}<br />
.AMIS_title a:hover{<br />
  color : #FFF;<br />
  text-decoration:none;<br />
}<br />
[/code]<br />
Hope you guys like it <img src='http://technology.amis.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: site admin</title>
		<link>http://technology.amis.nl/2009/12/30/what-happened/#comment-6078</link>
		<dc:creator>site admin</dc:creator>
		<pubDate>Mon, 11 Jan 2010 09:52:36 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=6767#comment-6078</guid>
		<description><![CDATA[&lt;p&gt;A recovery was performed to restore all the related tags. Somewhere in the update process we have lost them.

Everything should be working now :)&lt;/p&gt;]]></description>
		<content:encoded><![CDATA[<p>A recovery was performed to restore all the related tags. Somewhere in the update process we have lost them.</p>
<p>Everything should be working now <img src='http://technology.amis.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Niall Litchfield</title>
		<link>http://technology.amis.nl/2009/12/30/what-happened/#comment-6077</link>
		<dc:creator>Niall Litchfield</dc:creator>
		<pubDate>Wed, 30 Dec 2009 15:35:56 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=6767#comment-6077</guid>
		<description><![CDATA[deja vue all over again?]]></description>
		<content:encoded><![CDATA[<p>deja vue all over again?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas Jellema</title>
		<link>http://technology.amis.nl/2009/12/30/what-happened/#comment-6076</link>
		<dc:creator>Lucas Jellema</dc:creator>
		<pubDate>Wed, 30 Dec 2009 11:49:33 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=6767#comment-6076</guid>
		<description><![CDATA[&lt;p&gt;Would it be nice to allow the community of blog visitors to help tag (apply tags to) articles? That way we will all be able to find articles more quickly!&lt;/p&gt;]]></description>
		<content:encoded><![CDATA[<p>Would it be nice to allow the community of blog visitors to help tag (apply tags to) articles? That way we will all be able to find articles more quickly!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
