<?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>Feelinc.Me</title>
	<atom:link href="http://www.feelinc.me/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.feelinc.me</link>
	<description>It&#039;s All About Me</description>
	<lastBuildDate>Tue, 24 Aug 2010 21:46:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Preloading Images using jQuery for Slideshow</title>
		<link>http://www.feelinc.me/experience/preloading-images-using-jquery-for-slideshow/</link>
		<comments>http://www.feelinc.me/experience/preloading-images-using-jquery-for-slideshow/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 18:00:57 +0000</pubDate>
		<dc:creator>Feelinc</dc:creator>
				<category><![CDATA[Experience]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[preload]]></category>
		<category><![CDATA[slideshow]]></category>

		<guid isPermaLink="false">http://www.feelinc.me/?p=362</guid>
		<description><![CDATA[jQuery Cycle Plugin is a good jQuery Plugin for creating image slideshow, but does not having a preloading image feature. So here i&#8217;ll explain how to implement the preloading image using jQuery integrated with jQuery Cycle Plugin. Requirements jQuery jQuery Cycle Plugin loading.gif (for loading indicator, you can create from http://ajaxload.info/) your images Step 1 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jquery.malsup.com/cycle/" target="_blank">jQuery Cycle Plugin</a> is a good jQuery Plugin for creating image slideshow, but does not having a preloading image feature. So here i&#8217;ll explain how to implement the preloading image using jQuery integrated with <a href="http://jquery.malsup.com/cycle/" target="_blank">jQuery Cycle Plugin</a>.<span id="more-362"></span></p>
<h3>Requirements</h3>
<ul>
<li> <a href="http://jquery.com/" target="_blank">jQuery</a></li>
<li><a href="http://jquery.malsup.com/cycle/" target="_blank">jQuery Cycle Plugin</a></li>
<li>loading.gif (for loading indicator, you can create from <a href="http://ajaxload.info/" target="_blank">http://ajaxload.info/</a>)</li>
<li>your images</li>
</ul>
<h3>Step 1</h3>
<p>Load all needed libraries inside your HTML head tag:</p>
<pre class="brush: plain;">
&lt;script type=&quot;text/javascript&quot; src=&quot;jquery.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;jquery.cycle.all.js&quot;&gt;&lt;/script&gt;
</pre>
<h3>Step 2</h3>
<p>Create HTML tags for your slideshow:</p>
<pre class="brush: plain;">
&lt;!-- For loading indicator --&gt;
&lt;img id=&quot;loading-indicator&quot; src=&quot;loading.gif&quot; alt=&quot;loading&quot; style=&quot;display:none;&quot; /&gt;

&lt;!-- Your slideshow --&gt;
&lt;div id=&quot;myslides&quot;&gt;
 &lt;img src=&quot;banner1.jpg&quot; alt=&quot;banner1&quot; /&gt;
 &lt;img src=&quot;banner2.jpg&quot; alt=&quot;banner2&quot; /&gt;
 &lt;img src=&quot;banner3.jpg&quot; alt=&quot;banner3&quot; /&gt;
 &lt;img src=&quot;banner4.jpg&quot; alt=&quot;banner4&quot; /&gt;
&lt;/div&gt;
</pre>
<h3>Step 3</h3>
<p>Put below JavaSript codes at HTML head and don&#8217;t forget to read the code comment:</p>
<pre class="brush: plain;">
&lt;script type=&quot;text/javascript&quot;&gt;
 jQuery(document).ready(function(){
  // Get the slide show container first
  var objSlideshow = jQuery('#myslides');

  // Get slide show container position
  var objPosistion = objSlideshow.position();

  // Create loading interface, to wait the preload
  var objLoading = jQuery('&lt;div&gt;&lt;/div&gt;').css({
    position: 'absolute',
    top: objPosistion.top,
    left: objPosistion.left,
    width: objSlideshow.width(),
    height: objSlideshow.height(),
    background: 'url(&quot;' + jQuery('#loading-indicator').attr('src') + '&quot;) center no-repeat'
  }).appendTo(objSlideshow.parent());

  // Hide the slide show container first, to wait the preload finish
  objSlideshow.css('visibility', 'hidden');

  // Do preload, after all images loaded, start the cycle
  var imagesSlideshow = jQuery('img', objSlideshow);
  var totalImages = imagesSlideshow.length;
  var iTotalImage = 0;

  imagesSlideshow.each(function(){
    jQuery('&lt;img /&gt;').attr('src', jQuery(this).attr('src')).load(function(){
      iTotalImage++;

      if (totalImages == iTotalImage) {
        // Destroy the loading object
        objLoading.remove();

       // Start the cycle
       objSlideshow.css('visibility', 'visible').cycle({
         fx: 'fade',
         speed: 1000,
         timeout: 4000
      });
    }
  });
});
&lt;/script&gt;
</pre>
<p>Thanks for reading! ^_^</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feelinc.me/experience/preloading-images-using-jquery-for-slideshow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a WordPress Options Panel Using CodeIgniter</title>
		<link>http://www.feelinc.me/experience/create-a-wordpress-options-panel-using-codeigniter/</link>
		<comments>http://www.feelinc.me/experience/create-a-wordpress-options-panel-using-codeigniter/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 11:53:05 +0000</pubDate>
		<dc:creator>Feelinc</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Experience]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[options]]></category>
		<category><![CDATA[panel]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.feelinc.me/?p=232</guid>
		<description><![CDATA[The first thing that we all think about when we want to start to create a WordPress Options Panel is the code structure. How the code structure is quite clean and easy to enhance. WordPress is one of the most popular Content Management Software (CMS) systems out there.So how we would like integrate CodeIgniter into [...]]]></description>
			<content:encoded><![CDATA[<p>The first thing that we all think about when we want to start to create a WordPress Options Panel is the code structure. How the code structure is quite clean and easy to enhance.<br />
WordPress is one of the most popular Content Management Software (CMS) systems out there.So how we would like integrate CodeIgniter into our WordPress Options Panel.<br />
As you already know that CodeIgniter is the popular PHP Framework, which is easy to use and quite light.<br />
So today, let me guide you through the integration process of CodeIgniter into WordPress.<span id="more-232"></span></p>
<h3>Step 1</h3>
<p>Download the CodeIgniter source code from <a href="http://codeigniter.com/" target="_blank">CodeIgniter Official Site</a> and extract it. Now we go  into your WordPress default theme folder and create some folder structures :</p>
<p>default/<br />
&#8211; ctrl/<br />
&#8212;&#8211; config/<br />
&#8212;&#8211; controllers/<br />
&#8212;&#8211; errors/<br />
&#8212;&#8211; libraries/<br />
&#8212;&#8211; models/<br />
&#8212;&#8211; system/<br />
&#8212;&#8212;&#8211; helpers/<br />
&#8212;&#8212;&#8211; codeigniter/<br />
&#8212;&#8212;&#8211; helpers/<br />
&#8212;&#8212;&#8211; libraries/<br />
&#8212;&#8211; views</p>
<h3>Step 2</h3>
<p>Copy all needed files from CodeIgniter source code into your previously created folders with this following steps :</p>
<ul>
<li>Copy autoload.php, config.php, constants.php, database.php, and routes.php files from system/application/config into default/ctrl/config.</li>
<li>Copy all files in system/application/errors into default/ctrl/errors.</li>
<li>Copy all files in system/codeigniter inti default/ctrl/system/codeigniter.</li>
<li>Copy url_helper.php file from system/helpers into default/ctrl/system/helpers.</li>
<li>Copy Benchmark.php, Config.php, Controller.php, Exceptions.php, Hooks.php, Input.php, Loader.php, Language.php, Model.php, Output.php, Router.php and URI.php files from system/libraries into default/ctrl/system/libraries.</li>
</ul>
<h3>Step 3</h3>
<p>Now we are going to edit and customize the needed files:</p>
<h4>default/ctrl/config/autoload.php</h4>
<p>Put the url helper into something like this</p>
<pre class="brush: plain;">
$autoload['helper'] = array('url');
</pre>
<h4>default/ctrl/config/config.php</h4>
<p>Edit your base url into something like this</p>
<pre class="brush: plain;">
$config['base_url'] = get_option('siteurl') . '/wp-admin/';
</pre>
<p>Edit the uri protocol into something like this</p>
<pre class="brush: plain;">
$config['uri_protocol']	= &quot;QUERY_STRING&quot;;
</pre>
<p>Enable the query strings into something like this</p>
<pre class="brush: plain;">
$config['enable_query_strings'] = TRUE;
</pre>
<h4>default/ctrl/config/database.php</h4>
<p>Empty this file and you can use this file later for table installer purpose for your theme.</p>
<h4>default/ctrl/config/routes.php</h4>
<p>Edit the default controller into something like this</p>
<pre class="brush: plain;">
$route['default_controller'] = &quot;noop&quot;;
</pre>
<h4>default/ctrl/system/codeigniter/CodeIgniter.php</h4>
<p>Put below code on line 29 to make the Output library working</p>
<pre class="brush: plain;">
global $BM, $CFG;
</pre>
<p>Remove the &#8220;&amp;&#8221; symbol when loading the Benchmark class into something like this</p>
<pre class="brush: plain;">
$BM = load_class('Benchmark');
</pre>
<p>Remove the &#8220;&amp;&#8221; symbol when loading the Config class into something like this</p>
<pre class="brush: plain;">
$CFG = load_class('Config');
</pre>
<p>Disable CodeIgniter code to check the DB connection into something like this</p>
<pre class="brush: plain;">
/*if (class_exists('CI_DB') AND isset($CI-&gt;db))
{

	$CI-&gt;db-&gt;close();
}*/
</pre>
<h4>default/ctrl/system/libraries/Router.php</h4>
<p>Change uri string fetched by CodeIgniter by putting below code on line 94</p>
<pre class="brush: plain;">
$n_query_string = strpos($this-&gt;uri-&gt;uri_string, '&amp;amp;');
if ($n_query_string &gt; 0)
{
	$this-&gt;uri-&gt;uri_string = substr($this-&gt;uri-&gt;uri_string, 0, $n_query_string);
}
$this-&gt;uri-&gt;uri_string = '/'.str_replace('page=', '', $this-&gt;uri-&gt;uri_string);
</pre>
<h4>default/functions.php</h4>
<p>Put below code at the end of functions.php file</p>
<pre class="brush: plain;">
&lt;?php
/*
|---------------------------------------------------------------
| SYSTEM FOLDER NAME
|---------------------------------------------------------------
|
| NO TRAILING SLASH!
|
*/
	$system_folder = str_replace('\\', '/', dirname(__FILE__)) . &quot;/ctrl/system&quot;;

/*
|---------------------------------------------------------------
| APPLICATION FOLDER NAME
|---------------------------------------------------------------
|
| NO TRAILING SLASH!
|
*/
	$application_folder = str_replace('\\', '/', dirname(__FILE__)) . &quot;/ctrl&quot;;

/*
|===============================================================
| END OF USER CONFIGURABLE SETTINGS
|===============================================================
*/

/*
|---------------------------------------------------------------
| SET THE SERVER PATH
|---------------------------------------------------------------
|
*/
if (strpos($system_folder, '/') === FALSE)
{
	if (function_exists('realpath') AND @realpath(dirname(__FILE__)) !== FALSE)
	{
		$system_folder = realpath(dirname(__FILE__)).'/'.$system_folder;
	}
}
else
{
	// Swap directory separators to Unix style for consistency
	$system_folder = str_replace(&quot;\\&quot;, &quot;/&quot;, $system_folder);
}

/*
|---------------------------------------------------------------
| DEFINE APPLICATION CONSTANTS
|---------------------------------------------------------------
|
| EXT		- The file extension.  Typically &quot;.php&quot;
| SELF		- The name of THIS file (typically &quot;index.php&quot;)
| FCPATH	- The full server path to THIS file
| BASEPATH	- The full server path to the &quot;system&quot; folder
| APPPATH	- The full server path to the &quot;application&quot; folder
|
*/
define('EXT', '.php');
define('SELF', pathinfo(__FILE__, PATHINFO_BASENAME));
define('FCPATH', str_replace(SELF, '', __FILE__));
define('BASEPATH', $system_folder.'/');

if (is_dir($application_folder))
{
	define('APPPATH', $application_folder.'/');
}
else
{
	if ($application_folder == '')
	{
		$application_folder = 'ctrl';
	}

	define('APPPATH', BASEPATH.$application_folder.'/');
}

/*
|---------------------------------------------------------------
| LOAD THE FRONT CONTROLLER
|---------------------------------------------------------------
|
| And away we go...
|
*/

/*
 * ------------------------------------------------------
 *  Load the framework constants
 * ------------------------------------------------------
 */
require_once(APPPATH . 'config/constants' . EXT);

function my_theme_admin()
{
	require_once(ABSPATH . '/wp-admin/includes/plugin' . EXT);

	require_once(APPPATH . 'config/config' . EXT);
	require_once(APPPATH . 'config/database' . EXT);
}

function my_theme_noop()
{
	require_once BASEPATH.'codeigniter/CodeIgniter'.EXT;
}

add_action('admin_menu', 'my_theme_admin');
?&gt;
</pre>
<p>Now all the CodeIgniter customization are done and you are ready to go to the next step.</p>
<h3>Step 4</h3>
<p>Now create the theme options menu by editing your ctrl/config/config.php file and put below code on line 2.</p>
<pre class="brush: plain;">
/*
|--------------------------------------------------------------------------
| MENU
|--------------------------------------------------------------------------
*/
if (function_exists('add_object_page'))
{
	add_object_page('My Theme Options', 'My Theme Options', 'edit_themes', 'my_theme_controller', 'my_theme_noop');
	add_submenu_page('my_theme_controller', 'Other Options', 'Other Options', 'edit_themes', 'another_theme_controller', 'my_theme_noop');
}
</pre>
<p>If you refresh your administration panel&#8217;s plugin page, you will now see that you have two additional menus on the sidebar.</p>
<p style="text-align: center;clear;both;"><a href="http://www.feelinc.me/wp-content/uploads/2010/03/menu-panel.jpg"><img class="aligncenter size-medium wp-image-259" title="menu-panel" src="http://www.feelinc.me/wp-content/uploads/2010/03/menu-panel-300x141.jpg" alt="" width="300" height="141" /></a></p>
<h3>Step 5</h3>
<p>Now you need to create three controller files</p>
<h4>noop.php</h4>
<pre class="brush: plain;">
&lt;?php

class Noop
{

function Noop()
{}

function index()
{}
}
</pre>
<h4>my_theme_controller.php</h4>
<pre class="brush: plain;">
&lt;?php

class My_theme_controller extends Controller
{

	function My_theme_controller()
	{
		parent::Controller();
	}

	function index()
	{
		echo $this-&gt;load-&gt;view('my_view', array(
			'the_first_example_variable' =&gt; get_option('siteurl'),
			'the_second_example_variable' =&gt; 'Oh no, my admin theme panel is working!!! COOL!!!',
			'the_get_querystring' =&gt; $this-&gt;input-&gt;get('page')
		), TRUE);
	}
}
</pre>
<h4>other_theme_controller.php</h4>
<pre class="brush: plain;">
&lt;?php

class Another_theme_controller extends Controller
{

	function Another_theme_controller()
	{
		parent::Controller();
	}

	function index()
	{
		echo $this-&gt;load-&gt;view('my_another_view', array(), TRUE);
	}
}
</pre>
<h3>Step 6</h3>
<p>Now you need to create two view files</p>
<h4>my_view.php</h4>
<pre class="brush: plain;">
&lt;h3&gt;&lt;?php echo $the_second_example_variable; ?&gt;&lt;/h3&gt;
This is my site url : &lt;?php echo $the_first_example_variable; ?&gt;
&lt;br/&gt;
This is the get querystring : &lt;?php echo $the_get_querystring; ?&gt;
</pre>
<h4>my_another_view.php</h4>
<pre class="brush: plain;">
&lt;h3&gt;This is my another view&lt;/h3&gt;
</pre>
<p>If you click on your new menu panel, you will see that your controller and view are loaded.</p>
<p><a href="http://www.feelinc.me/wp-content/uploads/2010/03/theme-panel.jpg"><img class="aligncenter size-medium wp-image-260" title="theme-panel" src="http://www.feelinc.me/wp-content/uploads/2010/03/theme-panel-300x142.jpg" alt="" width="300" height="142" /></a></p>
<h3>Conclusion</h3>
<p>We have now integrate CodeIgniter into your WordPress Options Panel.</p>
<p>Click below link to download the source.</p>
<a class="downloadlink" href="http://www.feelinc.me/wp-content/plugins/download-monitor/download.php?id=2" title="Version1.0 downloaded 150 times" >WordPress - CodeIgniter Options Panel (150)</a>
<p>I hope this tutorial gave you all the information you need to integrate CodeIgniter into your WordPress Options Panel. Please feel free to post your comments below.</p>
<p>Thanks for reading! ^_^</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feelinc.me/experience/create-a-wordpress-options-panel-using-codeigniter/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Lotus Domino – Dojo Pie Chart Legend Color Hack Tips On Zero Value</title>
		<link>http://www.feelinc.me/lotus-domino/dojo-pie-chart-legend-color-hack-tips-on-zero-value/</link>
		<comments>http://www.feelinc.me/lotus-domino/dojo-pie-chart-legend-color-hack-tips-on-zero-value/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 15:55:35 +0000</pubDate>
		<dc:creator>Feelinc</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Lotus Domino]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[chart]]></category>
		<category><![CDATA[dojo]]></category>
		<category><![CDATA[domino]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[lotus]]></category>
		<category><![CDATA[pie]]></category>

		<guid isPermaLink="false">http://www.feelinc.me/?p=176</guid>
		<description><![CDATA[Dojo Toolkit is a best free JavaScript library currently exist, which had a lot of ready to use widget for web application UI. One of the widget that we can use is the Dojo Chart Widget. This is quite a common issue when we are using the Dojo Pie Chart Widget with Legend and if [...]]]></description>
			<content:encoded><![CDATA[<p>Dojo Toolkit is a best free JavaScript library currently exist, which had a lot of ready to use widget for web application UI. One of the widget that we can use is the Dojo Chart Widget.</p>
<p>This is quite a common issue when we are using the Dojo Pie Chart Widget with Legend and if some of our data are had zero values then the color at the pie slice is different with the needed legend. In here i came up with a simple solution using XHTML JavaScript manipulation to show the right legends color.</p>
<p>Now we start from the beginning of implementing the Dojo Pie Chart.<span id="more-176"></span></p>
<p>Before we go through to the code implementation, we should think about the JSON data format. What do i know is we have to create this below JSON format for Dojo Pie Chart:</p>
<pre class="brush: plain;">
[
{text:&quot;Lhokga Plant (BU)&quot;,stroke:&quot;black&quot;,color:&quot;#5D8AA8&quot;,y:7},
{text:&quot;Lhoknga Project&quot;,stroke:&quot;black&quot;,color:&quot;#F0F8FF&quot;,y:3},
{text:&quot;Lhoknga Terminal&quot;,stroke:&quot;black&quot;,color:&quot;#E32636&quot;,y:0},
{text:&quot;Belawan Terminal&quot;,stroke:&quot;black&quot;,color:&quot;#E52B50&quot;,y:2},
{text:&quot;Dumai Terminal&quot;,stroke:&quot;black&quot;,color:&quot;#CD2682&quot;,y:0},
{text:&quot;Lhokseumawe Terminal&quot;,stroke:&quot;black&quot;,color:&quot;#9F2B68&quot;,y:0},
{text:&quot;Batam Terminal&quot;,stroke:&quot;black&quot;,color:&quot;#ED3CCA&quot;,y:0}
]
</pre>
<p>Let me explain a little bit about the above format.</p>
<p>&#8220;text&#8221; =&gt; is the label for pie slice<br />
&#8220;stroke&#8221; =&gt; is the pie slice stroke color<br />
&#8220;color&#8221; =&gt; is the pie slice color<br />
&#8220;y&#8221; =&gt; is the pie slice data number</p>
<p>Then we have to prepare an LotusScript Agent to create an JSON data output, let&#8217;s create a simple one.</p>
<pre class="brush: plain;">
Sub Initialize
  Print |Content-Type: text/plain|
  Print |[|
  Print |{text:&quot;Lhokga Plant  (BU)&quot;,stroke:&quot;black&quot;,color:&quot;#5D8AA8&quot;,y:7},|
  Print |{text:&quot;Lhoknga  Project&quot;,stroke:&quot;black&quot;,color:&quot;#F0F8FF&quot;,y:3},|
  Print |{text:&quot;Lhoknga  Terminal&quot;,stroke:&quot;black&quot;,color:&quot;#E32636&quot;,y:0},|
  Print |{text:&quot;Belawan  Terminal&quot;,stroke:&quot;black&quot;,color:&quot;#E52B50&quot;,y:2},|
  Print |{text:&quot;Dumai  Terminal&quot;,stroke:&quot;black&quot;,color:&quot;#CD2682&quot;,y:0},|
  Print |{text:&quot;Lhokseumawe  Terminal&quot;,stroke:&quot;black&quot;,color:&quot;#9F2B68&quot;,y:0},|
  Print |{text:&quot;Batam  Terminal&quot;,stroke:&quot;black&quot;,color:&quot;#ED3CCA&quot;,y:0}|
  Print |]|
End Sub
</pre>
<p>Then you have to place needed HTML code container on your HTML page</p>
<pre class="brush: plain;">
&lt;div id=&quot;chart_data&quot; style=&quot;width: 800px; height: 200px;&quot;&gt;&lt;/div&gt;
  &lt;div class=&quot;legend_list right&quot;&gt;
    &lt;div class=&quot;legend_example&quot;&gt;
      &lt;div class=&quot;left&quot;&gt;&amp;nbsp;&lt;/div&gt;
      &lt;label class=&quot;legend_text left&quot;&gt;&lt;/label&gt;
      &lt;div style=&quot;clear:both;&quot;&gt;&lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;
</pre>
<p>Then we put the JavaScript code</p>
<pre class="brush: plain;">
dojo.addOnLoad(function() {
  dojo.addClass(dojo.body(), &quot;soria&quot;);

  dojo.xhrPost({
    url:  &quot;http://domain.com/database.nsf/dataAgent?OpenAgent&amp;ur=&quot; + new Date().getMilliseconds(),
    handleAs: &quot;json&quot;,
    error: function(response, ioArgs){
      if (ioArgs.xhr.status != 200) {
        console.error(&quot;HTTP status code: &quot;, ioArgs.xhr.status);
      }
    },
    load: function(response, ioArgs){
      if (response.length &gt; 0) {
        dojo.require(&quot;dojox.charting.plot2d.Pie&quot;);
        dojo.require(&quot;dojox.charting.themes.MiamiNice&quot;);

        var chart = new dojox.charting.Chart2D(&quot;chart_data&quot;);
        chart.setTheme(dojox.charting.themes.MiamiNice).addPlot(&quot;default&quot;, {
          type: &quot;Pie&quot;,
          radius: 150,
          precision: 0
        }).addSeries(&quot;Series A&quot;, response);
        chart.render();

        var i_item = 0;
        var item = {};
        for(i_item in response) {
          item = dojo.clone(dojo.query(&quot;.legend_example&quot;));
          item.removeClass(&quot;legend_example&quot;);
          item.addClass(&quot;legend&quot;);
          item.removeClass(&quot;hidden&quot;);
          item.query(&quot;div.left&quot;).style({backgroundColor: response[i_item].color});
          item.query(&quot;.legend_text&quot;).addContent(response[i_item].text + &quot; &lt;strong&gt;(&quot; + response[i_item].y + &quot;)&lt;/strong&gt;&quot;);
          dojo.place(item[0], dojo.byId(&quot;legend_list&quot;), &quot;last&quot;);
        }

        delete i_item;
        delete item;
        delete chart;
      }
    }
  });
});
</pre>
<p>Hope this tips will be very helpfull for Lotus Domino Developer who want to integrate the Dojo Toolkit especially for the Pie Chart.</p>
<p><span style="color: #ff0000;">*Before running any of those above code, please replace all the double quote with your own.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.feelinc.me/lotus-domino/dojo-pie-chart-legend-color-hack-tips-on-zero-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cat’s Ass Creative</title>
		<link>http://www.feelinc.me/projects/cats-ass-creative/</link>
		<comments>http://www.feelinc.me/projects/cats-ass-creative/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 17:05:09 +0000</pubDate>
		<dc:creator>Feelinc</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.feelinc.me/?p=350</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.feelinc.me/wp-content/uploads/2010/08/Cat_s-Ass-Creative-2.jpg"><img class="aligncenter size-full wp-image-351" title="Cat_s-Ass-Creative-2" src="http://www.feelinc.me/wp-content/uploads/2010/08/Cat_s-Ass-Creative-2.jpg" alt="" width="670" height="447" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.feelinc.me/projects/cats-ass-creative/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>White Rabbit Express – Auto Fill Form</title>
		<link>http://www.feelinc.me/projects/white-rabbit-express/</link>
		<comments>http://www.feelinc.me/projects/white-rabbit-express/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 17:03:33 +0000</pubDate>
		<dc:creator>Feelinc</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.feelinc.me/?p=346</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.feelinc.me/wp-content/uploads/2010/08/White-Rabbit-Express-2.jpg"><img class="aligncenter size-full wp-image-347" title="White-Rabbit-Express-2" src="http://www.feelinc.me/wp-content/uploads/2010/08/White-Rabbit-Express-2.jpg" alt="" width="670" height="443" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.feelinc.me/projects/white-rabbit-express/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rackets &amp; Balls</title>
		<link>http://www.feelinc.me/projects/rackets-balls/</link>
		<comments>http://www.feelinc.me/projects/rackets-balls/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 16:58:29 +0000</pubDate>
		<dc:creator>Feelinc</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.feelinc.me/?p=341</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.feelinc.me/wp-content/uploads/2010/08/Rackets-Balls-1.jpg"><img class="aligncenter size-full wp-image-342" title="Rackets-&amp;-Balls-1" src="http://www.feelinc.me/wp-content/uploads/2010/08/Rackets-Balls-1.jpg" alt="" width="670" height="485" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.feelinc.me/projects/rackets-balls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Steve Giles – AJAX Contact Form</title>
		<link>http://www.feelinc.me/projects/steve-giles-ajax-contact-form/</link>
		<comments>http://www.feelinc.me/projects/steve-giles-ajax-contact-form/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 16:54:10 +0000</pubDate>
		<dc:creator>Feelinc</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.feelinc.me/?p=337</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.feelinc.me/wp-content/uploads/2010/08/Steve-Giles-2.jpg"><img class="aligncenter size-full wp-image-339" title="Steve-Giles-2" src="http://www.feelinc.me/wp-content/uploads/2010/08/Steve-Giles-2.jpg" alt="" width="670" height="432" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.feelinc.me/projects/steve-giles-ajax-contact-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Menu Manager WordPress Plugin</title>
		<link>http://www.feelinc.me/plugin/menu-manager-wordpress-plugin/</link>
		<comments>http://www.feelinc.me/plugin/menu-manager-wordpress-plugin/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 19:22:57 +0000</pubDate>
		<dc:creator>Feelinc</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[manager]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.feelinc.me/?p=138</guid>
		<description><![CDATA[Finally i create another plugin for wordpress, i call it Menu Manager. Menu managers enables you to manage blog menu very easy. You can add Pages, Categories, and Custom Link into your blog menu. You can manage the menu structure into a dropdown tree menu with whatever structure you like. Features : * Select Pages [...]]]></description>
			<content:encoded><![CDATA[<p>Finally i create another plugin for wordpress, i call it Menu Manager. Menu managers enables you to manage blog menu very easy. You can add Pages, Categories, and Custom Link into your blog menu. You can manage the menu structure into a dropdown tree menu with whatever structure you like.</p>
<p><span id="more-138"></span></p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-186" title="screenshot-1" src="http://www.feelinc.me/wp-content/uploads/2009/11/screenshot-14.jpg" alt="" width="550" height="132" /></p>
<h2>Features :</h2>
<p>* Select Pages and Categories as your menu</p>
<p>* Create new custom menu</p>
<p>* Manage menu structure</p>
<p>* Dropdown tree menu</p>
<p>* If you want to customize the styles/menu-manager.css stylesheet, you can place it in your active theme folder, and Menu Manager will find it there (that way you won&#8217;t lose your stylesheet customizations when upgrading Menu Manager).</p>
<h2>Installation :</h2>
<p>Download the zip file, unzip it, and copy the &#8220;menu-manager&#8221; folder to your plugins directory. Then activate it from your plugin panel. After successful activation, Menu Manager will appear under your &#8220;Settings&#8221; tab.</p>
<p>Before you can use Menu Manager, you need to fill out its Settings form.</p>
<p>After you manage the menu, then you can put below code into your blog :</p>
<pre class="brush: plain;">
&lt;ul id=&quot;mm_nav&quot; class=&quot;sf-menu&quot;&gt;
&lt;?php if (function_exists(&quot;mm_menu&quot;)) { mm_menu(); } ?&gt;
&lt;/ul&gt;
</pre>
<h2>Changelog :</h2>
<p>= 1.0.3 =<br />
* change the dropdown using superfish, please read again the documentation for placing the menu manager plugin html tag<br />
* show the parent page title on the admin panel<br />
* re-positioning the admin panel layout<br />
* fix some bugs &#8220;oh i forgot which bugs&#8221;</p>
<p>= 1.0.2 =<br />
* change plugin url</p>
<p>= 1.0.1 =<br />
* fix deactive</p>
<p>= 1.0.0 =<br />
* initial release</p>
<p>Please kindly give me a feedback about the plugin for next release ^_^.</p>
<p>As you are using my plugin and if does not hurting anybody, please kindly support my plugin using this donation button as you can afford.</p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input name="cmd" type="hidden" value="_donations" />
<input name="business" type="hidden" value="FZCF63KUUKUN2" />
<input name="lc" type="hidden" value="ID" />
<input name="item_name" type="hidden" value="Feelinc.Me" />
<input name="item_number" type="hidden" value="menu_manager_plugin" />
<input name="currency_code" type="hidden" value="USD" />
<input name="bn" type="hidden" value="PP-DonationsBF:btn_donateCC_LG.gif:NonHosted" />
<input alt="PayPal - The safer, easier way to pay online!" name="submit" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" type="image" />
<img src="https://www.paypal.com/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" /><br />
</form>
<p>and you can <a href="http://wordpress.org/extend/plugins/menu-manager/"><strong>Download</strong></a> it <a href="http://wordpress.org/extend/plugins/menu-manager/"><strong>here</strong></a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feelinc.me/plugin/menu-manager-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>80</slash:comments>
		</item>
		<item>
		<title>User Link Feed Plugin for WordPress</title>
		<link>http://www.feelinc.me/plugin/user-link-feed-plugin-for-wordpress/</link>
		<comments>http://www.feelinc.me/plugin/user-link-feed-plugin-for-wordpress/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 10:57:53 +0000</pubDate>
		<dc:creator>Feelinc</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[contribute]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[user]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.feelinc.me/?p=101</guid>
		<description><![CDATA[Finally i create a plugin for wordpress, i call it User Link Feed, you can see it in action here. User Link Feed enables user blog to contribute link feeds include an image fetched for the link. Title, Description, and Images are fetched directly from the link source in realtime. The user interaction when contribute [...]]]></description>
			<content:encoded><![CDATA[<p><strong> </strong>Finally i create a plugin for wordpress, i call it User Link Feed, you can see it in action <a href="http://www.feelinc.me/user-link-feed-page/" target="_blank">here</a>.</p>
<p>User Link Feed enables user blog to contribute link feeds include an image fetched for the link.</p>
<p>Title, Description, and Images are fetched directly from the link source in realtime.</p>
<p>The user interaction when contribute the link is like facebook link share, user can choose which images to be use that fetched.</p>
<div id="attachment_151" class="wp-caption aligncenter" style="width: 489px"><img class="size-full wp-image-151" title="User Link Feed List" src="http://www.feelinc.me/wp-content/uploads/2009/11/screenshot-13.jpg" alt="User Link Feed List" width="479" height="369" /><p class="wp-caption-text">User Link Feed List</p></div>
<div id="attachment_152" class="wp-caption aligncenter" style="width: 492px"><img class="size-full wp-image-152" title="User Link Feed Form" src="http://www.feelinc.me/wp-content/uploads/2009/11/screenshot-22.jpg" alt="User Link Feed Form" width="482" height="542" /><p class="wp-caption-text">User Link Feed Form</p></div>
<p><span id="more-101"></span></p>
<div id="attachment_129" class="wp-caption aligncenter" style="width: 490px"><img class="size-full wp-image-129" title="User Link Feed" src="http://www.feelinc.me/wp-content/uploads/2009/11/screenshot-1.jpg" alt="User Link Feed Options Panel" width="480" height="236" /><p class="wp-caption-text">User Link Feed Options Panel</p></div>
<div id="attachment_149" class="wp-caption aligncenter" style="width: 488px"><img class="size-full wp-image-149" title="User Link Feed Plugin Admin Panel" src="http://www.feelinc.me/wp-content/uploads/2009/11/screenshot-4.jpg" alt="User Link Feed Plugin Admin Panel" width="478" height="329" /><p class="wp-caption-text">User Link Feed Plugin Admin Panel</p></div>
<div id="attachment_131" class="wp-caption aligncenter" style="width: 311px"><img class="size-full wp-image-131" title="User Link Feed" src="http://www.feelinc.me/wp-content/uploads/2009/11/screenshot-3.jpg" alt="User Link Feed Sidebar Widget" width="301" height="357" /><p class="wp-caption-text">User Link Feed Sidebar Widget</p></div>
<h3>Features :</h3>
<p>* Fetch Title, Description, and Images directly from the link source in realtime.</p>
<p>* User choose image to be use.</p>
<p>* reCaptcha for blocking spam.</p>
<p>* Feed List Sidebar Widget</p>
<p>* Pagination Feed List.</p>
<p>* Specify number of feed to display per page.</p>
<p>* Enable / Disable unregistered user to submit a link feed.</p>
<p>* Feed List on Admin panel using Wordpres Default Grid View.</p>
<p>* Sort Feed List by All/New/Approved on Admin panel.</p>
<p>* Pagination Feed List on Admin Panel.</p>
<p>* Admin Approval.</p>
<p>* Delete Feed on Admin Panel.</p>
<p>* If you want to customize the user-link-feed.css stylesheet, you can place it in your active theme folder, and User Link Feed will find it there (that way you won’t lose your stylesheet customizations when upgrading User Link Feed).</p>
<h3>Installation :</h3>
<p>Download the zip file, unzip it, and copy the “user-link-feed” folder to your plugins directory. Then activate it from your plugin panel. After successful activation, User Link Feed will appear under your “Settings” tab. Note that User Link Feed requires WordPress 2.5 or higher.</p>
<h3>Usage Guide :</h3>
<p>Before you can use User Link Feed, you need to fill out its Settings form. First, you will need a reCAPTCHA API key. If you are already using <a href="http://wordpress.org/extend/plugins/wp-recaptcha/">the WP-reCAPTCHA comments plugin</a>, then you don’t need another key (you’ll see the form is pre-filled with your existing key). If you’re not using WP-reCAPTCHA, then follow the link on the Settings form to get a key. Then the only other requirement is that you provide the email address where you’d like the form submissions to go. All the other settings include comments explaining what they do.</p>
<p>Putting User Link Feed on a page ?</p>
<p>Just put the shortcode tag:</p>
<p><strong>userlinkfeed</strong></p>
<p>Putting User Link Feed Form on a page ?</p>
<p>Just put the shortcode tag:</p>
<p><strong>userlinkfeedform</strong></p>
<p>on a page, and that’s where the User Link Feed will appear.</p>
<p>That’s all ^_^</p>
<p><strong><a href="http://www.feelinc.me/wp-content/plugins/user-link-feed/readme.txt" target="_blank">README</a></strong></p>
<h3>Changelog :</h3>
<p>= 1.2.1 =</p>
<p>* Fetch from meta description if not found in body</p>
<p>= 1.2.0 =</p>
<p>* Fetch Title, Description, and Images directly from the link source in realtime.</p>
<p>* User choose image to be use.</p>
<p>= 1.1.2 =</p>
<p>* add new 5 feed list dashboard widget</p>
<p>* fix url existance checking</p>
<p>= 1.1.1 =</p>
<p>* fix getting 404 when user is not logged in</p>
<p>* add feed icon on feed list</p>
<p>* add xml feed format</p>
<p>= 1.1.0 =</p>
<p>* separate shortcode tag for userlinkfeed (feed list) and userlinkfeedform (feed form)</p>
<p>* add sidebar widget for feed list</p>
<p>* add url existance checking</p>
<p><a title="User Link Feed Plugin on WordPress.org" href="http://wordpress.org/extend/plugins/user-link-feed/" target="_blank">Download here</a>.</p>
<p>Please kindly give me a feedback about the plugin for next release ^_^.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feelinc.me/plugin/user-link-feed-plugin-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Majalahku Premium WordPress Theme</title>
		<link>http://www.feelinc.me/theme/majalahku-premium-wordpress-theme/</link>
		<comments>http://www.feelinc.me/theme/majalahku-premium-wordpress-theme/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 06:18:06 +0000</pubDate>
		<dc:creator>Feelinc</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[majalah]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://www.feelinc.me/?p=94</guid>
		<description><![CDATA[Sekarang kita akan membahas fasilitas dari admin panel yang disediakan oleh Theme Majalahku buatan iCreativelabs General Settings Bagian opsi keseluruhan adalah opsi – opsi yang tidak masuk kedalam kategori lain. Disini Anda akan menemukan opsi standar yang sudah biasa dipakai, seperti fasilitas untuk mengganti corak, mengaktifkan gravatar, mengganti logo dengan memasukan url dari logo yang [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_95" class="wp-caption aligncenter" style="width: 536px"><img class="size-full wp-image-95" title="Majalahku" src="http://www.feelinc.me/wp-content/uploads/2009/10/mjk.png" alt="Majalahku" width="526" height="237" /><p class="wp-caption-text">Majalahku</p></div>
<p>Sekarang kita akan membahas fasilitas dari admin panel yang disediakan oleh <a href="http://portfolio.icreativelabs.com/premium-wordpress-magazine-theme-majalahku/" target="_blank">Theme Majalahku</a> buatan iCreativelabs</p>
<p><span id="more-94"></span></p>
<p><strong>General Settings</strong></p>
<p>Bagian opsi keseluruhan adalah opsi – opsi yang tidak masuk kedalam kategori lain. Disini Anda akan menemukan opsi standar yang sudah biasa dipakai, seperti fasilitas untuk mengganti corak, mengaktifkan gravatar, mengganti logo dengan memasukan url dari logo yang akan dipakai dan text alternative, memasang kode google analytics yang otomatis akan diaktifkan pada setiap halaman blog jika kode sudah terisi, bahkan Anda dapat mendefinisikan nama custom field yang akan dipakai untuk menyimpan url dari gambar kecil blog post, juga mendefinisikan maksimal komentar yang akan muncul per-halaman pada blog post.</p>
<p><strong>Main Menu<span style="color: #ff0000;"> (next release v.1.1.x)</span><br />
</strong></p>
<p>Pada bagian ini Anda dapat mengolah menu utama yang bersumber pada 3 (tiga) hal, yaitu: Page, Category, dan Custom. Halaman – halaman dan Kategori yang sudah Anda buat pada wordpress dapat dipilih pada bagian ini untuk mendefinisikan bahwa pilihan tersebut akan muncul sebagai menu utama di blog.  Custom di tujukan jika ingin mempunyai menu yang mengarah kepada halaman atau website lain.</p>
<p><strong>Menu Structure</strong><strong><span style="color: #ff0000;"> (next release</span></strong><strong><span style="color: #ff0000;"> v.1.1.x</span></strong><strong><span style="color: #ff0000;">)</span></strong></p>
<p>Saya menyediakan bagian ini supaya memudahkan dalam menyusun daftar menu yang sudah dipilih pada Bagian <strong>Menu Utama (Main Menu)</strong>. Tujuan sebenarnya adalah Anda dapat membuat struktur menu seperti cabang pohon yang tidak terbatas. Pembuatan menu seperti cabang pohon dapat dilakukan dengan sangat mudah, yaitu tinggal melakukan <em>drag and drop</em>, drag nama menu dalam kotak merah dan jatuhkan pada kotak yang bertuliskan “drop to this box”. Untuk urutan dari menu tinggal mengisi nomor posisi pada tiap menu sesuai dengan posisi menu tersebut di luar atau didalam menu yang lain.</p>
<p><strong>Share Post</strong></p>
<p>Anda dapat mengaktifkan fasilitas berbagi untuk halaman blog post. Website social networking yang dapat digunakan untuk berbagi yaitu: Feedburner, Delicious, Twitter, dan Facebook.</p>
<p><strong>Featured Posts</strong></p>
<p>Pada bagian ini Anda dapat memilih post – post yang akan ditampilkan sebagai post utama pada halaman utama dari blog, bahkan Anda dapat mendefinisikan nama custom field yang akan dipakai untuk menyimpan url dari gambar kecil post – post tersebut untuk bagian Featured Posts.</p>
<p><strong>Resource</strong></p>
<p>Sebenarnya resource berfungsi untuk menampilkan post – post pada sebuah kategori atau tag yang dianggap perlu ditampilkan pada halaman depan dari blog. Disini Anda dapat mendefinisikan judulnya dan kemudian sumbernya berasal dari kategori atau tag, kemudian memilih kategori atau tag yang akan dipakai, pengurutan, maksimal jumlah post yang akan tampil, juga nama custom field yang akan dipakai untuk menyimpan url dari gambar kecil post – post yang akan tampil.</p>
<p><strong>Sidebar</strong></p>
<p>Fungsi dari bagian Sidebar tidak berbeda jauh dengan General Settings, hanya disini Anda akan mengisi url – url dan alamat halaman &#8211; halaman yang dibutuhkan pada sidebar.</p>
<p><strong>Footer</strong></p>
<p>Fungsi dari bagian Footer juga tidak berbeda jauh dengan Sidebar, hanya disini Anda akan mengisi beberapa teks keperluan dari footer dan copyright dari blog.</p>
<p><strong>Advertisement</strong></p>
<p>Bagian advertisement berfungsi sebagai tempat untuk mengisi script atau url yang akan muncul sebagai iklan pada blog. Iklan – iklan tersebut akan muncul pada 3 tempat, yaitu: header sebelah kanan logo, sidebar, dan dibawah blog post sebelum dan sesudah daftar komentar.</p>
<p>untuk demo Anda dapat mengunjungi <a href="http://demo.icreativelabs.com" target="_blank">disini</a>.</p>
<p>Review saya mungkin belum jelas, silahkan Anda mencoba langsung theme tersebut supaya lebih terbukti fungsionalitas nya ^_^ *go indonesia wordpress theme*</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feelinc.me/theme/majalahku-premium-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
