<?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>cakebaker &#187; phpide</title>
	<atom:link href="http://cakebaker.42dh.com/tags/phpide/feed/" rel="self" type="application/rss+xml" />
	<link>http://cakebaker.42dh.com</link>
	<description>baking cakes with CakePHP</description>
	<lastBuildDate>Tue, 20 Dec 2011 15:29:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Migration from PHPEclipse to PHP IDE</title>
		<link>http://cakebaker.42dh.com/2006/12/27/migration-from-phpeclipse-to-php-ide/</link>
		<comments>http://cakebaker.42dh.com/2006/12/27/migration-from-phpeclipse-to-php-ide/#comments</comments>
		<pubDate>Wed, 27 Dec 2006 07:13:59 +0000</pubDate>
		<dc:creator>cakebaker</dc:creator>
				<category><![CDATA[configuration]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[phpeclipse]]></category>
		<category><![CDATA[phpide]]></category>

		<guid isPermaLink="false">http://cakebaker.42dh.com/2006/12/27/migration-from-phpeclipse-to-php-ide/</guid>
		<description><![CDATA[Yesterday, I migrated from PHPEclipse (and Eclipse 3.1) to the PHP IDE (and Eclipse 3.2). After importing the projects to the PHP IDE I noticed that the Outline view (which lists class variables, methods, etc.) and the auto-completion didn&#8217;t work. Hm. The problem was that the .project file still contained references to PHPEclipse. So I [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, I migrated from <a href="http://phpeclipse.de">PHPEclipse</a> (and Eclipse 3.1) to the <a href="http://www.eclipse.org/php/">PHP IDE</a> (and Eclipse 3.2). After importing the projects to the PHP IDE I noticed that the Outline view (which lists class variables, methods, etc.) and the auto-completion didn&#8217;t work. Hm. The problem was that the .project file still contained references to PHPEclipse. So I had to replace:</p>
<pre>
&lt;buildSpec&gt;
    &lt;buildCommand&gt;
        &lt;name&gt;net.sourceforge.phpeclipse.parserbuilder&lt;/name&gt;
        &lt;arguments&gt;
        &lt;/arguments&gt;
    &lt;/buildCommand&gt;
&lt;/buildSpec&gt;
&lt;natures&gt;
    &lt;nature&gt;net.sourceforge.phpeclipse.phpnature&lt;/nature&gt;
&lt;/natures&gt;
</pre>
<p>with:</p>
<pre>
&lt;buildSpec&gt;
    &lt;buildCommand&gt;
        &lt;name&gt;org.eclipse.wst.validation.validationbuilder&lt;/name&gt;
        &lt;arguments&gt;
        &lt;/arguments&gt;
    &lt;/buildCommand&gt;
    &lt;buildCommand&gt;
        &lt;name&gt;org.eclipse.php.core.PhpIncrementalProjectBuilder&lt;/name&gt;
        &lt;arguments&gt;
        &lt;/arguments&gt;
    &lt;/buildCommand&gt;
&lt;/buildSpec&gt;
&lt;natures&gt;
    &lt;nature&gt;org.eclipse.php.core.PHPNature&lt;/nature&gt;
&lt;/natures&gt;
</pre>
<p>And voilà, the project was now recognized as a PHP project, and both Outline view and auto-completion worked. </p>
<p>Thanks to Seva Lapsha for this tip!</p>
]]></content:encoded>
			<wfw:commentRss>http://cakebaker.42dh.com/2006/12/27/migration-from-phpeclipse-to-php-ide/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
	</channel>
</rss>

