<?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>Melbourne Web Developer, Website Design &#38; Development &#187; Open Source</title>
	<atom:link href="http://blog.koumei.net/category/open-source/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.koumei.net</link>
	<description>-(unichar) fn: (unichar)n{ return n ^ 0xFFFF004B == 0? n : [self fn:(n-0x1)]}</description>
	<lastBuildDate>Thu, 02 Jun 2011 02:46:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>jCarousel Lite Mouse Hover Event Improvement</title>
		<link>http://blog.koumei.net/2011/06/01/jcarousel-lite-mouse-hover-event-improvement/</link>
		<comments>http://blog.koumei.net/2011/06/01/jcarousel-lite-mouse-hover-event-improvement/#comments</comments>
		<pubDate>Tue, 31 May 2011 22:37:35 +0000</pubDate>
		<dc:creator>Koumei</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Lab]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://blog.koumei.net/?p=732</guid>
		<description><![CDATA[jCarousel Lite is a fantastic jQuery plug-in to display photo gallery. You can have a look at the demo at: http://www.gmarwaha.com/jquery/jcarousellite/#demo
On this demo, the photo gallery will only scroll left or right when you click on the left arrow and right arrow. On jCarousel&#8217;s document, we can initialize the carousel start scrolling when the page [...]]]></description>
			<content:encoded><![CDATA[<p>jCarousel Lite is a fantastic jQuery plug-in to display photo gallery. You can have a look at the demo at: <a href="http://www.gmarwaha.com/jquery/jcarousellite/#demo" target="_blank">http://www.gmarwaha.com/jquery/jcarousellite/#demo</a></p>
<p>On this demo, the photo gallery will only scroll left or right when you click on the left arrow and right arrow. On jCarousel&#8217;s document, we can initialize the carousel start scrolling when the page finishes loading by specify the option: auto</p>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;">$(&quot;.slider&quot;).jCarouselLite({
visible: 4,
&lt;strong&gt;auto: true&lt;/strong&gt;,
speed: 2000
});</pre></div></div>

<p>What if I want it to stop when my mouse hover on any of the images? Oh, jCarousel does not originally handle mouse hover event. Well, DIY time.</p>
<h2>Firstly, download the carousel <a href="http://www.gmarwaha.com/jquery/jcarousellite/#download" target="_blank">original source code</a> from the official website</h2>
<p>open that file (jcarousellite_1.0.1.js)</p>
<h2>Second, add a code block between line &#8220;function go(to){&#8221; (about line 292):</h2>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;">//&amp;lt;!--add by koumei
var isMouseOver = false;
$(this).mouseover(function(){
isMouseOver = true;
}).mouseout(function(){
isMouseOver = false;
});
//add by koumei--&amp;gt;
function go(to) {
...
...</pre></div></div>

<h2>Third, modify function go: (around line 293)</h2>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;">Change &quot;if(!running)&quot; to &quot;if(!running &amp;amp;&amp;amp; !isMouseOver)&quot;</pre></div></div>

<h2>Fourth, DONE.</h2>
<p>Quite simple, I hope the author will consider this function to the next release. <img src='http://blog.koumei.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>You can also download my modified version and the demo at:</p>
<p><a href="http://koumei.net/download/carousel-demo.zip" target="_blank">http://koumei.net/download/carousel-demo.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.koumei.net/2011/06/01/jcarousel-lite-mouse-hover-event-improvement/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>koumei.net Weather Channel</title>
		<link>http://blog.koumei.net/2011/04/21/koumei-net-weather-channel/</link>
		<comments>http://blog.koumei.net/2011/04/21/koumei-net-weather-channel/#comments</comments>
		<pubDate>Thu, 21 Apr 2011 02:58:34 +0000</pubDate>
		<dc:creator>Koumei</dc:creator>
				<category><![CDATA[Living in Victoria]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[iDEA]]></category>

		<guid isPermaLink="false">http://blog.koumei.net/?p=718</guid>
		<description><![CDATA[Koumei.net Weather Channel is released today using koumei.net RSS 2 Json service. For now only have Melbourne, Adelaide and 3 cities in between. Just for my convenience  
If you want to make yours, just download the source code yourself: Source Code
The weather service makes use of weather RSS from Yahoo! weather channel. And change [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://weather.koumei.net" target="_blank">Koumei.net Weather Channel</a> is released today using koumei.net RSS 2 Json service. For now only have Melbourne, Adelaide and 3 cities in between. Just for my convenience <img src='http://blog.koumei.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>If you want to make yours, just download the source code yourself: <a href="http://weather.koumei.net/weather.7z" target="_blank">Source Code</a></p>
<p>The weather service makes use of weather RSS from Yahoo! weather channel. And change to client side RSS to Json converter in koumei.net (<a href="http://blog.koumei.net/2009/03/20/a-simple-rss2json-service-released/" target="_blank">A Simple Rss2Json Service Released!: http://blog.koumei.net/2009/03/20/a-simple-rss2json-service-released/</a>).  So make sure you have javascript supported browser either on the phone or pc.</p>
<p>And here it is: <a href="http://weather.koumei.net" target="_blank">http://weather.koumei.net</a> <img src='http://blog.koumei.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.koumei.net/2011/04/21/koumei-net-weather-channel/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>koumei 7 theme!</title>
		<link>http://blog.koumei.net/2010/12/04/koumei-7-theme/</link>
		<comments>http://blog.koumei.net/2010/12/04/koumei-7-theme/#comments</comments>
		<pubDate>Fri, 03 Dec 2010 23:13:10 +0000</pubDate>
		<dc:creator>Koumei</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tech.]]></category>
		<category><![CDATA[iDEA]]></category>

		<guid isPermaLink="false">http://blog.koumei.net/?p=695</guid>
		<description><![CDATA[koumei finally change the theme!! but honestly, i like the previous one than this one.
with bing! site search plug-in which will be released on open source section next week!
]]></description>
			<content:encoded><![CDATA[<p>koumei finally change the theme!! but honestly, i like the previous one than this one.</p>
<p>with bing! site search plug-in which will be released on open source section next week!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.koumei.net/2010/12/04/koumei-7-theme/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Gallery CMS MOD: View As HTML or Partial HTML</title>
		<link>http://blog.koumei.net/2010/08/15/gallery-cms-mod-view-as-html-or-partial-html/</link>
		<comments>http://blog.koumei.net/2010/08/15/gallery-cms-mod-view-as-html-or-partial-html/#comments</comments>
		<pubDate>Sat, 14 Aug 2010 15:46:13 +0000</pubDate>
		<dc:creator>Koumei</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tech.]]></category>
		<category><![CDATA[iDEA]]></category>

		<guid isPermaLink="false">http://blog.koumei.net/?p=643</guid>
		<description><![CDATA[Gallery CMS  provides an easy-manage CMS (Content Management System) framework for gallery. I like the way they manage data, all the data are exposed as XML or JSON. It is not a complete solution of photo gallery online, but if you need to integrate photo gallery on your website that would be a very good [...]]]></description>
			<content:encoded><![CDATA[<p>Gallery CMS  provides an easy-manage CMS (Content Management System) framework for gallery. I like the way they manage data, all the data are exposed as XML or JSON. It is not a complete solution of photo gallery online, but if you need to integrate photo gallery on your website that would be a very good start: you can easily develop or integrate. And guess what is the exciting part? It&#8217;s free! For more information, please feel free to download @ http://www.gallerycms.com/</p>
<p>It&#8217;s easily integrate but sometime you might need more convenience when integrate it to your website. Of course using XML or JSON which is the basic data structure is not that difficult, but I think most of time, for the integration itself, the most easiest and convenient is managing HTML. On the view if you are rendering the content partially, later you can use AJAX to replace the partial HTML content dynamically other than managing JSON on client side: we need rich client application, but if it lose weight a little bit, why don&#8217;t we make it lighter?</p>
<p>So, let us apply the MOD to it. It&#8217;s MIT license, so, no harm to mod it. Just pay a little attention to it&#8217;s license file: Gallery CMS comes with 2 licenses, one license is MIT license which represent itself, and the other license is derived from CodeIgniter which the basic framework.</p>
<p>1.\application\controllers\view.php //Add the following codes to it:</p>
<p><em>function html() {<br />
$data['row'] = $this-&gt;gallery_xml-&gt;viewXML();<br />
$this-&gt;load-&gt;model(&#8217;settings_tbl&#8217;);<br />
$data['settings'] = $this-&gt;settings_tbl-&gt;viewSettings();<br />
$this-&gt;load-&gt;view(&#8216;view_html&#8217;, $data);<br />
} </em></p>
<p>2. On\application\views\ folder, create a file view_html.php</p>
<p>Please note that, you can make the view html a full html or you can partially render it like this:</p>
<p><em>&lt;?php if(isset($row)) {?&gt;<br />
&lt;div&gt;<br />
&lt;?php foreach($row as $r){?&gt;<br />
&lt;?php if(isset($r-&gt;images)) {<br />
foreach($r-&gt;images as $img) { ?&gt;<br />
&lt;div&gt;<br />
&lt;div&gt;&lt;a href=&#8221;&lt;?php echo base_url();?&gt;uploads/&lt;?php echo $img-&gt;filename;?&gt;&#8221; target=&#8221;_blank&#8221; title=&#8221;&lt;?php echo $img-&gt;caption;?&gt;&#8221;&gt;&lt;img src=&#8221;&lt;?php echo base_url();?&gt;uploads/&lt;?php echo $img-&gt;thumbnail;?&gt;&#8221; border=&#8221;0&#8243; align=&#8221;absmiddle&#8221; width=&#8221;&lt;?php echo $settings[0]-&gt;thumb_width; ?&gt;&#8221; height=&#8221;&lt;?php echo $settings[0]-&gt;thumb_height; ?&gt;&#8221;/&gt;&lt;/a&gt;&lt;/div&gt;<br />
&lt;div&gt;&lt;?php echo $r-&gt;title;?&gt;&lt;/div&gt;<br />
&lt;div&gt;&lt;?php echo $r-&gt;description;?&gt;&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;?php } ?&gt;<br />
&lt;?php } //if  ?&gt;<br />
&lt;?php } ?&gt;<br />
&lt;div style=&#8221;clear:both&#8221;&gt;&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;?php }?&gt;</em></p>
<p>After that, you can use: http://&lt;GALLERY_CMS_WEBSITE&gt;/index.php/html  to retrieve the HTML content. In our mod above, it is just partial HTML, so you can jQuery it:</p>
<p><em>$.get(&#8216;http://&lt;GALLERY_CMS_WEBSITE&gt;/index.php/html &#8216;, null, new function(resp){$(&#8216;#html-container&#8217;).html(resp);});</em></p>
<p>Nice and easy.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.koumei.net/2010/08/15/gallery-cms-mod-view-as-html-or-partial-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET MVC Whole Site 301 Permanent Redirect</title>
		<link>http://blog.koumei.net/2010/08/12/asp-net-mvc-whole-site-301-permanent-redirect/</link>
		<comments>http://blog.koumei.net/2010/08/12/asp-net-mvc-whole-site-301-permanent-redirect/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 12:50:30 +0000</pubDate>
		<dc:creator>Koumei</dc:creator>
				<category><![CDATA[ASP.NET MVC]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Principle]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tech.]]></category>

		<guid isPermaLink="false">http://blog.koumei.net/?p=639</guid>
		<description><![CDATA[For some reasons, we need to permanently redirect the whole website to another website. It would be much easier that you are the owner of the server. But most of time you just host your website on the server out there. It wouldn&#8217;t be a big problem that your hosting company will support you to [...]]]></description>
			<content:encoded><![CDATA[<p>For some reasons, we need to permanently redirect the whole website to another website. It would be much easier that you are the owner of the server. But most of time you just host your website on the server out there. It wouldn&#8217;t be a big problem that your hosting company will support you to do some simple 301 redirect or may you have enough privilege to do it yourself. Is it possible to redirect permanently the website to other website by programming a little bit?</p>
<p>Sure you can. With MVC routing facilities, you can define your customized redirect logic: CREATE AN EMPTY MVC PROJECT, MODIFY GLOBAL.ASPX.CS FILE ONLY ON THIS EXAMPLE:</p>
<p>First of all, define two objects which implemented IRouteHandler and IHttpHandler, you can feel free to define those two objects on Global.aspx.cs file:</p>
<p>//@Implements IRouteHandler<br />
<em>class RedirectRouteHandler : IRouteHandler<br />
{<br />
private string newUrl;<br />
public RedirectRouteHandler(string newUrl) { this.newUrl = newUrl; }<br />
public IHttpHandler GetHttpHandler(RequestContext requestContext)<br />
{<br />
return new RedirectHandler(newUrl);<br />
}<br />
}</em></p>
<p>//@object implements IHttpHandler<br />
<em>class RedirectHandler : IHttpHandler<br />
{<br />
private string newUrl;</p>
<p>public RedirectHandler(string newUrl) { this.newUrl = newUrl; }</p>
<p>public bool IsReusable { get { return true; } }</p>
<p>public void ProcessRequest(HttpContext httpContext)<br />
{<br />
httpContext.Response.Status = &#8220;301 Moved Permanently&#8221;;<br />
httpContext.Response.StatusCode = 301;<br />
httpContext.Response.AppendHeader(&#8220;Location&#8221;, newUrl);<br />
return;<br />
}<br />
}</em></p>
<p>Then add one line on RegisterRoutes(RouteCollection routes) method (in Global.aspx.cs):</p>
<p><em>routes.Add(new Route(&#8220;{*pathInfo}&#8221;, new RedirectRouteHandler(@&#8221;http://koumei.net&#8221;));</em></p>
<p>Now all request to the website will redirect to &#8220;koumei.net&#8221; permanently. <img src='http://blog.koumei.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.koumei.net/2010/08/12/asp-net-mvc-whole-site-301-permanent-redirect/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Partner of Joomla Development &#8211; Part 1 Firefox</title>
		<link>http://blog.koumei.net/2010/04/23/partner-of-joomla-development-part-1-firefox/</link>
		<comments>http://blog.koumei.net/2010/04/23/partner-of-joomla-development-part-1-firefox/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 13:45:36 +0000</pubDate>
		<dc:creator>Koumei</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://blog.koumei.net/?p=559</guid>
		<description><![CDATA[Joomla has gained brilliant prestige in open source CMS development. There are heaps of 3rd-party modules and components in Joomla. For Joomla, I would rather say it is an application framework than open source CMS system.
In here, I would like to introduce some useful utilities for Joomla development. Actually the tools are also good for [...]]]></description>
			<content:encoded><![CDATA[<p>Joomla has gained brilliant prestige in open source CMS development. There are heaps of 3rd-party modules and components in Joomla. For Joomla, I would rather say it is an application framework than open source CMS system.</p>
<p>In here, I would like to introduce some useful utilities for Joomla development. Actually the tools are also good for any website development.</p>
<h1>Firefox</h1>
<p>I don&#8217;t want to spend too much time introduce the open source website browser. There are at least 3 must-have plug-ins for Firefox:</p>
<p>1. Firebug</p>
<p>Good for Javascript debug, CSS preview and website structure analysis.</p>
<p><a href="http://blog.koumei.net/wp-content/uploads/2010/04/screenshot.1.jpg"><img class="alignnone size-full wp-image-560" title="screenshot.1" src="http://blog.koumei.net/wp-content/uploads/2010/04/screenshot.1.jpg" alt="" width="510" height="369" /></a></p>
<p>2. Fireshot</p>
<p>Sometimes we got a headache because you need to capture a screen shot of the website which is oversize in height. For a long time, I need to use window painter to join every single pieces of screenshot together to form a integrated website. With Fireshot, just fire it in one shot. Absolutely good tool.</p>
<p><a href="http://blog.koumei.net/wp-content/uploads/2010/04/screenshot.2.jpg"><img class="alignnone size-full wp-image-561" title="screenshot.2" src="http://blog.koumei.net/wp-content/uploads/2010/04/screenshot.2.jpg" alt="" width="509" height="373" /></a></p>
<p>3. Rainbow</p>
<p>This tool is quite useful if you need to get the color from the website (in hex decimal)</p>
<p><a href="http://blog.koumei.net/wp-content/uploads/2010/04/screenshot.3.jpg"><img class="alignnone size-full wp-image-562" title="screenshot.3" src="http://blog.koumei.net/wp-content/uploads/2010/04/screenshot.3.jpg" alt="" width="509" height="365" /></a></p>
<p>Just 3 tools? Hmm, for me, I think they are enough for the development. Of course you might need other tools to help you. In my opinion, not all tools are useful. But at least those 3 tools, especially Firebug could save you a lot of time if you need to deal with many HTML/CSS and javascript stuff.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.koumei.net/2010/04/23/partner-of-joomla-development-part-1-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Webklip Plugin For Wordpress: Goes Multiple-RSS!</title>
		<link>http://blog.koumei.net/2009/03/29/my-webklip-plugin-for-wordpress-goes-multiple-rss/</link>
		<comments>http://blog.koumei.net/2009/03/29/my-webklip-plugin-for-wordpress-goes-multiple-rss/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 16:58:15 +0000</pubDate>
		<dc:creator>Koumei</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tech.]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[web klip]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.koumei.net/?p=293</guid>
		<description><![CDATA[Today I refactory the source code and add new features to Webklip, it becomes 1.2 and, most encouraging, multiple rss supports!
The improvement includes:

Uses template engine to show widget. No more embedded HTML.
Moves all functions to a util class
Supports up to 5 RSS
Still reads RSS feed dynamically on client-side

The feature version will be released next day [...]]]></description>
			<content:encoded><![CDATA[<p>Today I refactory the source code and add new features to Webklip, it becomes 1.2 and, most encouraging, multiple rss supports!</p>
<p>The improvement includes:</p>
<ul>
<li>Uses template engine to show widget. No more embedded HTML.</li>
<li>Moves all functions to a util class</li>
<li>Supports up to 5 RSS</li>
<li>Still reads RSS feed dynamically on client-side</li>
</ul>
<p>The feature version will be released next day or two, will enhance javascript flexibility. E.g., not compulsorily needs jQuery framework.</p>
<p>You can download the widget on <a title="wp-webKlip.zip" href="/download/wp-webKlip.zip" target="_blank">http://www.koumei.net/download/wp-webKlip.zip</a></p>
<p>Relative article:</p>
<p><a title="Permanent Link to Wordpress Widget: Client-side RSS util, The Web Klip Released!" rel="bookmark" href="http://blog.koumei.net/2009/03/21/wordpress-widget-client-side-rss-util-the-web-klip-released/">Wordpress Widget: Client-side RSS util, The Web Klip Released!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.koumei.net/2009/03/29/my-webklip-plugin-for-wordpress-goes-multiple-rss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Virtuemart: Ajax Effect on IE 8 Fix List based on Virtuemart 1.1.3(stable release since 22, Jan)</title>
		<link>http://blog.koumei.net/2009/03/23/virtuemart-ajax-effect-in-ie-8-fix-list-based-on-virtuemart-113stable-release-since-22-jan/</link>
		<comments>http://blog.koumei.net/2009/03/23/virtuemart-ajax-effect-in-ie-8-fix-list-based-on-virtuemart-113stable-release-since-22-jan/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 13:27:54 +0000</pubDate>
		<dc:creator>Koumei</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tech.]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[IE8]]></category>
		<category><![CDATA[mooTools]]></category>
		<category><![CDATA[virtuemart]]></category>

		<guid isPermaLink="false">http://www.koumei.net/?p=286</guid>
		<description><![CDATA[Virtuemart utilizes Ajax mostly by mooTools. It works fine in many browsers except microsoft newly released browser IE 8. Especially when user try to add a product to shopping cart using Ajax, the mooPrompt (a pop-up window) fails, and nothing happen on that page&#8230; Maybe the first thing you are about to do is to [...]]]></description>
			<content:encoded><![CDATA[<p>Virtuemart utilizes Ajax mostly by mooTools. It works fine in many browsers except microsoft newly released browser IE 8. Especially when user try to add a product to shopping cart using Ajax, the mooPrompt (a pop-up window) fails, and nothing happen on that page&#8230; Maybe the first thing you are about to do is to upgrade mooTools. Yes, that&#8217;s seems a great idea, however mooTools&#8217;s updates from 1.11 to 1.21 is totally a nightmare for developer. Many things change, you have to revise the code manually for Virtuemart. </p>
<p>The following files should be updated (if you want to satisfy IE 8 users):</p>
<ul>
<li>\components\com_virtuemart\js\mootools\mootools-release-1.11.js  (update to 1.21)</li>
<li><strong>\components\com_virtuemart\js\mootools\mooPrompt.js</strong> (you have to revise it manually. Should change a lot of JS class definitions in accordance with mootools 1.21 syntax)</li>
<li>\components\com_virtuemart\js\slimbox (update to slimbox for mootools 1.21)</li>
<li><strong>\components\com_virtuemart\themes\default\theme.js</strong> (you have to revise it manually. Should fix a bug on line 59, change to <em>var timeoutID = setTimeout( &#8216;document.boxB.close()&#8217;, 3000 );</em>)</li>
</ul>
<p>Besides updating corresponding files, you can also disable Ajax function on the administration page. Or.. Wait until next stable release of VM). If you need the files above, just leave me a message, and I will pack them up for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.koumei.net/2009/03/23/virtuemart-ajax-effect-in-ie-8-fix-list-based-on-virtuemart-113stable-release-since-22-jan/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Web Klip Enhancement &#8211; Special Effect Applied</title>
		<link>http://blog.koumei.net/2009/03/22/web-klip-enhancement-special-effect-applied/</link>
		<comments>http://blog.koumei.net/2009/03/22/web-klip-enhancement-special-effect-applied/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 14:14:43 +0000</pubDate>
		<dc:creator>Koumei</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tech.]]></category>

		<guid isPermaLink="false">http://www.koumei.net/?p=283</guid>
		<description><![CDATA[Currect release: 1.1
Download: http://www.koumei.net/download/wp-webKlip.zip
Not too much special effects. In order to make the contents which read from the underneath javascript show themselves up naturally. Not in a harsh.
]]></description>
			<content:encoded><![CDATA[<p>Currect release: 1.1</p>
<p>Download: <a title="wp-webKlip.zip" href="http://www.koumei.net/download/wp-webKlip.zip" target="_blank">http://www.koumei.net/download/wp-webKlip.zip</a></p>
<p>Not too much special effects. In order to make the contents which read from the underneath javascript show themselves up naturally. Not in a harsh.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.koumei.net/2009/03/22/web-klip-enhancement-special-effect-applied/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress Widget: Client-side RSS util, The Web Klip Released!</title>
		<link>http://blog.koumei.net/2009/03/21/wordpress-widget-client-side-rss-util-the-web-klip-released/</link>
		<comments>http://blog.koumei.net/2009/03/21/wordpress-widget-client-side-rss-util-the-web-klip-released/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 16:33:14 +0000</pubDate>
		<dc:creator>Koumei</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tech.]]></category>
		<category><![CDATA[RSS util]]></category>
		<category><![CDATA[web klip]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.koumei.net/?p=272</guid>
		<description><![CDATA[The original Wordpress (2.7+) provides RSS clip widget from the other website. It looks good but it is server-side script that may occupy the server resource to interpret the RSS. I don&#8217;t like that approach. So I decide to create a client-side script that loads rss from other website or blog.
If you want to try, [...]]]></description>
			<content:encoded><![CDATA[<p>The original Wordpress (2.7+) provides RSS clip widget from the other website. It looks good but it is server-side script that may occupy the server resource to interpret the RSS. I don&#8217;t like that approach. So I decide to create a client-side script that loads rss from other website or blog.</p>
<p>If you want to try, just download the widget on <a title="wp-webKlip.zip" href="http://www.koumei.net/download/wp-webKlip.zip" target="_blank">http://www.koumei.net/download/wp-webKlip.zip</a> , then unzip to wp-content/plug-ins/ folder, and activate the plugin and add widget to you wordpress blog.</p>
<p>Before using this widget, there are some notes you should know:</p>
<ol>
<li><strong>Defects</strong>:<br />
Currently only support ONE RSS excerpt.<br />
Only shows the first RSS item.<br />
<span style="text-decoration: underline;">jQuery should be included on your blog. </span></li>
<li><strong>Usability</strong>:<br />
Site that provide at least 1 item RSS feed could be refered by this widget.</li>
<li><strong>Extension</strong>:<br />
Multiple-RSS and rollover will be available  on next release.</li>
</ol>
<p>The Demo:</p>
<address><img class="alignnone size-full wp-image-274" title="webklip_1" src="/wp-content/uploads/2009/03/webklip_1.jpg" alt="webklip_1" width="586" height="41" /><br />
<em> Picture 1. The plugin will be shown after you copy the unzipped file to your plugin folder</em></address>
<address><img class="alignnone size-full wp-image-275" title="webklip_2" src="/wp-content/uploads/2009/03/webklip_2.jpg" alt="webklip_2" width="298" height="228" /><br />
<em> Picture 2. Add the widget to the &#8220;Widgets&#8221; menu on your administration panel. You can add a RSS feed to this widget</em></address>
<p>You can  find the demo on the right side of my blog.</p>
<p> <img src='http://blog.koumei.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.koumei.net/2009/03/21/wordpress-widget-client-side-rss-util-the-web-klip-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

