<?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/blog/6767/what-happened/feed" rel="self" type="application/rss+xml" />
	<link>http://technology.amis.nl/blog/6767/what-happened</link>
	<description>Weblog for the AMIS Technology corner</description>
	<lastBuildDate>Fri, 10 Feb 2012 16:47:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Marcus</title>
		<link>http://technology.amis.nl/blog/6767/what-happened/comment-page-1#comment-353775</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-353775</guid>
		<description>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/blog/6767/what-happened/comment-page-1#comment-353228</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-353228</guid>
		<description>&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..</p>
<pre class="brush: php; html-script: true;">
/* Function by AMIS to limit words */
 function AMIS_Wordlimit($text,$limit=&quot;10&quot;){
        $exp = explode(' ',$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].' ';
                }
                return $string.'...';
        }
 }
</pre>
<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/blog/6767/what-happened/comment-page-1#comment-353013</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-353013</guid>
		<description>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/blog/6767/what-happened/comment-page-1#comment-352598</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-352598</guid>
		<description>&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</p>
<pre class="brush: php; html-script: true;">
  &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('user_url');?&gt;&quot;&gt;&lt;?php the_author_meta('display_name') ?&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('description') ?&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;
</pre>
<p>And for the time being the following CSS.</p>
<pre class="brush: css;">
.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;
}
</pre>
<p>Hope you guys like it <img src='http://technology.amis.nl/blog/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/blog/6767/what-happened/comment-page-1#comment-352344</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-352344</guid>
		<description>&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/blog/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/blog/6767/what-happened/comment-page-1#comment-350199</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-350199</guid>
		<description>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/blog/6767/what-happened/comment-page-1#comment-350147</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-350147</guid>
		<description>&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>

