<?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>TipLite &#187; netbeans</title>
	<atom:link href="http://www.tiplite.com/category/netbeans/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tiplite.com</link>
	<description>Keep It Simple Smart</description>
	<lastBuildDate>Tue, 31 Jan 2012 06:39:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>CakePHP 1.3 helper auto-complete in netbeans</title>
		<link>http://www.tiplite.com/cakephp-1-3-helper-auto-complete-in-netbeans/</link>
		<comments>http://www.tiplite.com/cakephp-1-3-helper-auto-complete-in-netbeans/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 21:06:08 +0000</pubDate>
		<dc:creator>tiplite</dc:creator>
				<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[auto complete]]></category>
		<category><![CDATA[helpers]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.tiplite.com/?p=178</guid>
		<description><![CDATA[CakePHP 1.3 introduced a new way to use helpers. This was added to prevent confusion between helper variables and local variables added to the view file. You can access helper methods in a view by using $this-&#62;Helper-&#62;method(). This way make a problem if you want to use auto-complete for helpers introduced in a previous article [...]]]></description>
			<content:encoded><![CDATA[<p>CakePHP 1.3 introduced a new way to use helpers. This was added to prevent confusion between helper variables and local variables added to the view file. You can access helper methods in a view by using <code>$this-&gt;Helper-&gt;method()</code>. This way make a problem if you want to use auto-complete for helpers introduced in a <a href="http://www.tiplite.com/cakephp-support-in-netbeans/">previous article</a><br />
<span id="more-178"></span><br />
With a small trick you can make netbeans supports this method auto-complete. To do this add a file in your project folder, or preferable to be in CakePHP core folder, with a name <code>dummy_view.php</code> for example. Now add the following code to this file.</p>
<pre class="brush:php">&lt;?php

class DummyView extends View {

    /**
     * @var HtmlHelper
     */
    public $Html;

    /**
     * @var JsHelper
     */
    public $Js;

    /**
     * @var AjaxHelper
     */
    public $Ajax;

    /**
     * @var JavascriptHelper
     */
    public $Javascript;

    /**
     * @var FormHelper
     */
    public $Form;

    /**
     * @var SessionHelper
     */
    public $Session;

    /**
     * @var TextHelper
     */
    public $Text;

    /**
     * @var PaginationHelper
     */
    public $Paginator;

    /**
     * @var RssHelper
     */
    public $Rss;

    /**
     * @var XmlHelper
     */
    public $Xml;

    /**
     * @var CacheHelper
     */
    public $Cache;

    /**
     * @var TimeHelper
     */
    public $Time;

}</pre>
<p>Now put the following line of code in end of your view file:</p>
<pre class="brush:php">&lt;?php /* @var $this DummyView */ ?&gt;</pre>
<p>Now you'll see that netbeans displays auto-complete for those helper methods and view methods too like <code class="brush:php">$this-&gt;element()</code> for example.</p>
<div id="attachment_184" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.tiplite.com/wp-content/uploads/2012/01/netbeans-cake-1.3.jpg"><img class="size-medium wp-image-184" title="netbeans-cake-1.3" src="http://www.tiplite.com/wp-content/uploads/2012/01/netbeans-cake-1.3-300x172.jpg" alt="CakePHP 1.3 helper auto complete in netbeans" width="300" height="172" /></a><p class="wp-caption-text">Autocomplete for CakePHP 1.3 helpers in netbeans</p></div>
<h2>How does this work?</h2>
<p>The idea here is simple we tell netbeans that there is a new class that extends <code class="brush:php">View</code> class. Then when in view file we tell netbeans to consider that <code class="brush:php">$this</code> has the type <code class="brush:php">DummyView</code>. CakePHP run the code in view files inside <code class="brush:php">render()</code> method in <code class="brush:php">View</code> class so <code class="brush:php">$this</code> is really an instance of <code class="brush:php">View</code> class. Now as netbeans knows the type of <code>$this</code> variable and knows the types of its variables, which are CakePHP helpers, it shows their autocomplete options.</p>
<p>Finally, you should be aware of the following:</p>
<ul>
<li>Make sure to include your CakePHP core path in netbeans include path or it is inside your project source folder.</li>
<li>This will not load helpers in run time, so make sure you include required helpers in your controller.</li>
<li>You can add your own custom helper in <code>DummyView</code> class using the same method as core helpers.</li>
</ul>
<p>I know this has been late but it is still useful <img src='http://www.tiplite.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div style="width: 480px; margin: 10px auto">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-7208047014320497";
/* Tiplite-banner */
google_ad_slot = "5199664288";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.tiplite.com/cakephp-1-3-helper-auto-complete-in-netbeans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CakePHP debug in NetBeans</title>
		<link>http://www.tiplite.com/cakephp-debug-in-netbeans/</link>
		<comments>http://www.tiplite.com/cakephp-debug-in-netbeans/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 23:21:32 +0000</pubDate>
		<dc:creator>tiplite</dc:creator>
				<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[php debug]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[xdebug]]></category>

		<guid isPermaLink="false">http://www.tiplite.com/?p=100</guid>
		<description><![CDATA[Debugging code can be the most vital task a developer required to do. Debugging makes it easy to find logical errors in code. NetBeans supports PHP debug using xdebug, but in CakePHP it is hard to make this work straight. This is due to custom, pretty, URL rewriting. However you can enable debugging even with [...]]]></description>
			<content:encoded><![CDATA[<p>Debugging code can be the most vital task a developer required to do. Debugging makes it easy to find logical errors in code. NetBeans supports PHP debug using <a href="http://www.google.com/cse?q=xdebug+php&amp;cx=partner-pub-7208047014320497:k0f870-s2zq" target="_blank">xdebug</a>, but in CakePHP it is hard to make this work straight. This is due to custom, pretty,  URL rewriting. However you can enable debugging even with pretty URLs  and URL rewriting.<br />
<span id="more-100"></span><br />
To make this works in simple few steps first make sure that xdebug is  installed and working. To make sure it is installed open you php info  file or create a new php file and fill it with:</p>
<pre class="brush:php">&lt;?php echo phpinfo(); ?&gt;
</pre>
<p>and open it in your browser and make sure that xdebug appears like this:</p>
<div id="attachment_101" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.tiplite.com/wp-content/uploads/2010/08/xdebug-phpinfo.jpg"><img class="size-medium wp-image-101" title="xdebug in phpinfo" src="http://www.tiplite.com/wp-content/uploads/2010/08/xdebug-phpinfo-300x107.jpg" alt="XDebug Section in phpinfo()" width="300" height="107" /></a><p class="wp-caption-text">XDebug Section in phpinfo()</p></div>
<p>If you found xdebug is not installed then you can find many resources on <a href="http://www.google.com/cse?q=how%20to%20install%20xdebug&amp;cx=partner-pub-7208047014320497:k0f870-s2zq" target="_blank">how to install xdebug</a> on Google. If it is already installed then make sure that your xdebug is configured correctly in your php.ini. NetBeans requires xdebug to be configured as follows:</p>
<pre>xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_host=0.0.0.0 #or your preferred hostname
xdebug.remote_port=9000
</pre>
<div style="text-align: center; margin: 10px auto;">
<script type="text/javascript">// <![CDATA[
google_ad_client = "pub-7208047014320497"; google_ad_slot = "5199664288"; google_ad_width = 468; google_ad_height = 60;
// ]]&gt;</script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script></div>
<p>Now we will start enabling CakePHP debugging:</p>
<ul>
<li>First you’ll need to create a new CakePHP application using <a href="http://www.google.com/cse?q=CakePHP+console+tools&amp;cx=partner-pub-7208047014320497:k0f870-s2zq">CakePHP console</a> or use current CakePHP application folder.</li>
<li>In NetBeans create a new PHP application and select “PHP Application with Existing Sources” and click next.</li>
<li>Select your application folder and choose a name for you application and click next.</li>
<li>Write your project base URL and make sure to select index.php as your ‘Index File’ and click finish.</li>
<li>Go to Projects panel and right click your project and select  Properties from the menu on left select Sources then select your Web  Root folder, and it is ovious what to select <img src="../wp-includes/images/smilies/icon_smile.gif" alt=":)" /></li>
<li>Run Configuration and click Advanced. From the dialog select “Ask  Every time” and click OK to close the dialog and click OK again to close  Project properties dialog.</li>
</ul>
<p>Now the configurations are complete and you can set break points. To  create a break point you can click on the line number on the left of  source code or write <code>xdebug_break();</code> where you want to stop program execution.</p>
<div id="attachment_103" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.tiplite.com/wp-content/uploads/2010/08/php-breakpoint-sample.jpg"><img class="size-medium wp-image-103" title="php-breakpoint-sample" src="http://www.tiplite.com/wp-content/uploads/2010/08/php-breakpoint-sample-300x107.jpg" alt="Break point in NetBeans" width="300" height="107" /></a><p class="wp-caption-text">Break point in NetBeans</p></div>
<p>When you click debug icon in NetBeans toolbar, or select Debug project from Debug menu (ctrl + F5), NetBeans will show you a box where you enter the URL you want to debug and it will stop execution of the application, and your browser will not continue loading your page until you click Continue.</p>
<div id="attachment_104" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.tiplite.com/wp-content/uploads/2010/08/debug-pane.jpg"><img class="size-medium wp-image-104" title="debug-pane" src="http://www.tiplite.com/wp-content/uploads/2010/08/debug-pane-300x64.jpg" alt="NetBeans PHP debug pane" width="300" height="64" /></a><p class="wp-caption-text">NetBeans PHP debug pane</p></div>
<p>Now you can debug all your CakePHP source code as normal PHP  applications. You can learn how to debug normal PHP application in  NetBeans from <a href="http://netbeans.org/kb/docs/php/debugging.html" target="_blank">this article</a> <!-- AddThis Button BEGIN --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tiplite.com/cakephp-debug-in-netbeans/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>CakePHP support in NetBeans</title>
		<link>http://www.tiplite.com/cakephp-support-in-netbeans/</link>
		<comments>http://www.tiplite.com/cakephp-support-in-netbeans/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 15:22:34 +0000</pubDate>
		<dc:creator>tiplite</dc:creator>
				<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[auto complete]]></category>
		<category><![CDATA[behavior]]></category>
		<category><![CDATA[cake]]></category>
		<category><![CDATA[controller]]></category>
		<category><![CDATA[helpers]]></category>
		<category><![CDATA[introduce variable]]></category>
		<category><![CDATA[model]]></category>
		<category><![CDATA[snippets]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.tiplite.com/?p=84</guid>
		<description><![CDATA[NetBeans is a very powerful development environment for many languages including PHP. With the release of its latest version, NetBeans announced full support for symfony PHP framework. NetBeans can also support many other PHP frameworks and libraries although it is not officially supported by NetBeans. This support needs some effort to enable some tools specially auto-complete, [...]]]></description>
			<content:encoded><![CDATA[<p>NetBeans is a very powerful development environment for many languages including PHP. With the release of its latest version, NetBeans announced full support for <a title="Symfony PHP framework official site" href="http://www.symfony-project.org/" target="_blank">symfony PHP framework</a>. NetBeans can also support many other PHP frameworks and libraries although it is not officially supported by NetBeans. This support needs some effort to enable some tools specially auto-complete, or intellisense, which saves a lot of time for developers.</p>
<p>We will start to make NetBeans support CakePHP. Firstly we need to create a cake project using cake command line tools.<span id="more-84"></span></p>
<pre class="brush: bash">cd DOCUMENT_ROOT
cake bake PROJECT_NAME</pre>
<p>Then we need to create a NetBeans project using the create files. Click file &gt; New Project, then choose New Project. From the window choose PHP from categories and from projects choose PHP Application with Existing Sources. Click Next then choose the project path. and click finish.</p>
<div id="attachment_87" class="wp-caption aligncenter" style="width: 457px"><a href="http://www.tiplite.com/wp-content/uploads/2010/02/netbeans_new_project.jpg"><img class="size-full wp-image-87 " title="NetBeans New Project Dialog" src="http://www.tiplite.com/wp-content/uploads/2010/02/netbeans_new_project.jpg" alt="NetBeans new project dialog" width="447" height="321" /></a><p class="wp-caption-text">NetBeans New Project Dialog</p></div>
<p>After the project is created select the project in the Projects pane and right click Include Path. Click add folder and choose cake library path and add it. NetBeans will scan and add the library to its internal library.</p>
<div id="attachment_88" class="wp-caption aligncenter" style="width: 417px"><a href="http://www.tiplite.com/wp-content/uploads/2010/02/netbeans_php_include_path.jpg"><img class="size-full wp-image-88 " title="netbeans_php_include_path" src="http://www.tiplite.com/wp-content/uploads/2010/02/netbeans_php_include_path.jpg" alt="NetBeans PHP include path dialog" width="407" height="276" /></a><p class="wp-caption-text">NetBeans PHP include path dialog</p></div>
<div style="margin: 10px auto; text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-7208047014320497";
/* New Banner */
google_ad_slot = "1323901737";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<p>Now you will have auto-complete working in your controllers, models, controllers, behaviors and helpers files. This will happen because NetBeans is smart enough to know that your inheriting AppController, AppModel,...etc which in turn inherits Controller and Model classes which is found in CakePHP library directory which NetBeans just scanned. But till now we don't have support for models and components included magically by CakePHP in controllers and models. To make NetBeans identifies those variables we will use PHPDoc trick. In your model or controller add a variable with the same name of your model or any other model you want, but make sure it is loaded as this will not include your model.</p>
<pre class="brush:php">class ProductsController extends AppController{
    var $name = 'Products';

    /**
     * @var Product
     */
    var $Product;

    /**
     * @var EmailComponent
     */
    var $Email;
}</pre>
<p>You will notice that NetBeans enables auto-complete even in comments. Just hit Ctrl + Space when writing the name of any class. This will work with associated models in a model class.</p>
<p>Now you will notice that your CakePHP work is much more easier, but we still have auto-complete is not working in views. This problem can be solved using NetBeans feature which enables us to define a variable's type using comments. I call this feature var-doc or variable type notice. Just write a comment like this before any variable. You even can make this with <code class="brush:php">$this</code> variable to define the class you are working with as <code class="brush:php">View</code> class.</p>
<pre class="brush: php">/* @var $this View */
/* @var $html HtmlHelper */
/* @var $javascript JavascriptHelper */
.....</pre>
<p>This way you can have auto-complete support for your views and helpers included in views and you will notice that NetBeans also has support for your classes in comments.</p>
<p>At last the only thing that I couldn't have support for is behaviors methods which can be called from a model's instances if you now a way to do this please tell me. But we are waiting for more from NetBeans which has introduced too much for us, PHP Developers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tiplite.com/cakephp-support-in-netbeans/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>Useful NetBeans 6.8 &#8211; PHP tips</title>
		<link>http://www.tiplite.com/useful-netbeans-6-8-php-tips/</link>
		<comments>http://www.tiplite.com/useful-netbeans-6-8-php-tips/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 22:01:09 +0000</pubDate>
		<dc:creator>tiplite</dc:creator>
				<category><![CDATA[netbeans]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[auto complete]]></category>
		<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[code templates]]></category>
		<category><![CDATA[editor folds]]></category>
		<category><![CDATA[helpers]]></category>
		<category><![CDATA[introduce variable]]></category>
		<category><![CDATA[snippets]]></category>
		<category><![CDATA[views]]></category>
		<category><![CDATA[zen coding]]></category>

		<guid isPermaLink="false">http://www.tiplite.com/?p=67</guid>
		<description><![CDATA[NetBeans has introduced a very powerful development environment for PHP since version 6.5. It has some features that make development even easier. Until NetBeans has launched its 6.8 version, it introduced many features for PHP developers. Here is some features: Code templates Code templates is a very powerful feature that can save a lot of [...]]]></description>
			<content:encoded><![CDATA[<p>NetBeans has introduced a very powerful development environment for PHP since version 6.5. It has some features that make development even easier. Until NetBeans has launched its 6.8 version, it introduced many features for PHP developers. Here is some features:<span id="more-68"></span></p>
<h3>Code templates</h3>
<p>Code templates is a very powerful feature that can save a lot of time. This templates enables the developer to write few characters which can be expanded to language expressions. Netbeans comes with an excellent group of expressions, but you can add your own templates. Go to tools &gt; options then in the editor section choose Code templates.</p>
<div id="attachment_70" class="wp-caption aligncenter" style="width: 567px"><a href="http://www.tiplite.com/wp-content/uploads/2010/02/code_templates_in_netbeans_1.jpg"><img class="size-full wp-image-70" title="code_templates_in_netbeans_1" src="http://www.tiplite.com/wp-content/uploads/2010/02/code_templates_in_netbeans_1.jpg" alt="Code templates editor in netbeans php" width="557" height="467" /></a><p class="wp-caption-text">Code templates editor in NetBeans PHP editor</p></div>
<p>Some useful templates can be:</p>
<ul>
<li>cls: initialize a class with a contructor.</li>
<li>fnc: expands to a function.</li>
<li>fore: foreach statement (<code>foreach($array as $variable)</code>)</li>
<li>forek: foreach statement with a key (<code>foreach($array as $key =&gt; $var</code>))</li>
</ul>
<p>to expand an abbreviation press tab, you can set expand trigger also in the code templates editor.</p>
<h3>Extend code templates with <a title="Zen coding" href="http://code.google.com/p/zen-coding/">Zen Coding</a></h3>
<p>PHP is usually combined with HTML, although it should only be simple statements in view files if you are using MVC pattern. <a href="http://code.google.com/p/zen-coding/">Zen coding project</a> offers a set of code templates for rapid HTML coding.Unfortunately NetBeans didn't get the full power of <a title="Zen coding" href="http://code.google.com/p/zen-coding/">Zen coding</a> yet, it only provides code templates <img src='http://www.tiplite.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> .</p>
<p>Download <a title="Zen coding for NetBeans" href="http://zen-coding.googlecode.com/files/NetBeans.Zen.HTML.1.2.zip">Zen coding for NetBeans</a> you will get a ZIP file. Use the code template editor and click 'Import' and select this file, then restart NetBeans. Now you get a powerful HTML snippets for NetBeans. You can get a list of all snippets <a title="Zen coding HTML abbreviation" href="http://code.google.com/p/zen-coding/wiki/ZenHTMLElementsEn">here</a>.</p>
<h3>Useful code templates trick, 'surround with'</h3>
<p>Some code templates in NetBeans, and in the template provided with Zen Coding, can be used to surround some text with a code template. This can be useful if you forget, or needed later, to surround some code with certain code template. An example for this is if conditions, loops, ....etc. Those code templates can be used if you select the required code. You will find a small yellow light bulb on the left side of the code, click this bulb to show a list of those templates.</p>
<div id="attachment_74" class="wp-caption aligncenter" style="width: 541px"><a href="http://www.tiplite.com/wp-content/uploads/2010/02/netbeans_code_templates_surround_with.jpg"><img class="size-full wp-image-74" title="netbeans_code_templates_surround_with" src="http://www.tiplite.com/wp-content/uploads/2010/02/netbeans_code_templates_surround_with.jpg" alt="NetBeans code templates surround with" width="531" height="344" /></a><p class="wp-caption-text">NetBeans code templates surround with dialog</p></div>
<h3>Introduce a variable</h3>
<p>NetBeans is very smart when it scans for variable types. It utilizes comments, specially <a title="PHP Documentor" href="http://www.phpdoc.org/" target="_blank">PHPDoc</a>. Variable types is very useful when the IDE displays code completion. But sometimes when you are working on many files many IDEs and code editors doesn't identify this variable types so the user will miss the code completion feature of the IDE, which saves a lot of time while coding. To retrieve code completion feature again. You can tell NetBeans about the variable type yourself using the following method.</p>
<pre class="brush:php">/* @var $variable VariableType */</pre>
<p>This will tell NetBeans about the variable you are using and if it is an instance of some class NetBeans will show code completion when required. This can be great if you are using a PHP framework that uses MVC pattern. Personally I use this technique to acquire code completion for CakePHP helpers,</p>
<pre class="brush:php">/* @var $html HtmlHelper */
/* @var $javascript JavascriptHelper */
/* @var $form FormHelper */</pre>
<p>Even I could use it to get completion for <code>$this</code> in views like this:</p>
<pre class="brush:php">/* @var $this View */</pre>
<h3>Editor folds</h3>
<p>Editor folds is a way to group some code in a fold and give them a label. Editor folds looks like this:</p>
<div id="attachment_79" class="wp-caption aligncenter" style="width: 455px"><a href="http://www.tiplite.com/wp-content/uploads/2010/02/netbeans_editor_fold.jpg"><img class="size-full wp-image-79" title="netbeans_editor_fold" src="http://www.tiplite.com/wp-content/uploads/2010/02/netbeans_editor_fold.jpg" alt="Editor folds in netbeans" width="445" height="145" /></a><p class="wp-caption-text">Editor folds in NetBeans</p></div>
<p>to create an editor fold with following code:</p>
<pre class="brush:php">//&lt;editor-fold defaultstate="collapsed" desc="your description here ..."&gt;
// your code here ....
//&lt;/editor-fold&gt;</pre>
<p>You can ignore <code>defaultstate="collapsed"</code> to make the code visible just after you open the file. Please take care of order and case of syntax.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tiplite.com/useful-netbeans-6-8-php-tips/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>

