<?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; phpeclipse</title>
	<atom:link href="http://cakebaker.42dh.com/tags/phpeclipse/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>
		<item>
		<title>(PHP)Eclipse and phpDocumentor</title>
		<link>http://cakebaker.42dh.com/2006/08/05/phpeclipse-and-phpdocumentor/</link>
		<comments>http://cakebaker.42dh.com/2006/08/05/phpeclipse-and-phpdocumentor/#comments</comments>
		<pubDate>Sat, 05 Aug 2006 14:10:08 +0000</pubDate>
		<dc:creator>cakebaker</dc:creator>
				<category><![CDATA[phpeclipse]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.cakebaker.42dh.com/?p=239</guid>
		<description><![CDATA[In a comment Carriantor has pointed me to a tutorial (which has disappeared in the meantime, please try the tutorial from José Pablo Barrantes) about integrating phpDocumentor, a tool to generate API docs, into Eclipse. Thanks Carriantor! Another short tutorial (there is also a German version available) about this topic has been written by Simon [...]]]></description>
			<content:encoded><![CDATA[<p>In a <a href="http://cakebaker.42dh.com/2006/01/30/syntaxhighlighting-in-thtml-files-with-phpeclipse/#1202">comment</a> Carriantor has pointed me to a tutorial (which has disappeared in the meantime, please try the <a href="http://jpablobr.com/integration-of-phpdocumentor-into-eclipse-or-aptana-ide/">tutorial</a> from José Pablo Barrantes) about integrating <a href="http://pear.php.net/package/PhpDocumentor/">phpDocumentor</a>, a tool to generate API docs, into Eclipse. Thanks Carriantor!</p>
<p>Another <a href="http://www.speich.net/articles/?p=185">short tutorial</a> (there is also a <a href="http://www.speich.net/articles/?p=8">German version</a> available) about this topic has been written by <a href="http://www.speich.net/">Simon Speich</a>.</p>
<p>Update 2008-06-21: Changed the link for the tutorial as the tutorial no longer exists at the original url.<br />
Update 2008-07-28: Adding link to Simon Speich&#8217;s tutorial.<br />
Update 2010-04-29: Fixing/removing broken links<br />
Update 2010-05-10: Adding link to the English version of Simon Speich&#8217;s tutorial</p>
]]></content:encoded>
			<wfw:commentRss>http://cakebaker.42dh.com/2006/08/05/phpeclipse-and-phpdocumentor/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Using bake with (PHP)Eclipse</title>
		<link>http://cakebaker.42dh.com/2006/07/10/using-bake-with-phpeclipse/</link>
		<comments>http://cakebaker.42dh.com/2006/07/10/using-bake-with-phpeclipse/#comments</comments>
		<pubDate>Mon, 10 Jul 2006 16:54:35 +0000</pubDate>
		<dc:creator>cakebaker</dc:creator>
				<category><![CDATA[cakephp]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[phpeclipse]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://www.cakebaker.42dh.com/?p=223</guid>
		<description><![CDATA[Lately, Matt posted in a thread with the title &#8220;cool editors for using with cakephp&#8221; a tip for using bake from within PHPEclipse: Choose &#8220;Run&#8221;, &#8220;External Tools&#8221;, &#8220;External Tools&#8230;&#8221; Select &#8220;Program&#8221; and create a new configuration with &#8220;New&#8221; There are two ways to configure such a configuration: Location: /usr/bin/php Working Directory: &#60;where_cake_is&#62;/cake/scripts Arguments: bake.php Or [...]]]></description>
			<content:encoded><![CDATA[<p>Lately, Matt posted in a thread with the title <a href="http://groups.google.com/group/cake-php/browse_thread/thread/efc0a080cceb37f5/700861ec9b4151b8">&#8220;cool editors for using with cakephp&#8221;</a> a tip for using bake from within PHPEclipse:</p>
<ul>
<li>Choose &#8220;Run&#8221;, &#8220;External Tools&#8221;, &#8220;External Tools&#8230;&#8221;</li>
<li>Select &#8220;Program&#8221; and create a new configuration with &#8220;New&#8221;</li>
</ul>
<p>There are two ways to configure such a configuration:</p>
<p>Location: /usr/bin/php<br />
Working Directory: &lt;where_cake_is&gt;/cake/scripts<br />
Arguments: bake.php</p>
<p>Or if your bake script is executable:</p>
<p>Location: &lt;where_cake_is&gt;/cake/scripts/bake.php<br />
Working Directory: &lt;where_cake_is&gt;/cake/scripts<br />
Arguments: none</p>
<p>After the configuration you can run bake with &#8220;Run&#8221;, &#8220;External Tools&#8221;, &#8220;&lt;the_name_you_have_chosen_for_the_configuration&gt;&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://cakebaker.42dh.com/2006/07/10/using-bake-with-phpeclipse/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>EasyEclipse</title>
		<link>http://cakebaker.42dh.com/2006/06/28/easyeclipse/</link>
		<comments>http://cakebaker.42dh.com/2006/06/28/easyeclipse/#comments</comments>
		<pubDate>Wed, 28 Jun 2006 15:28:32 +0000</pubDate>
		<dc:creator>cakebaker</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[phpeclipse]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.cakebaker.42dh.com/?p=216</guid>
		<description><![CDATA[A project I wish I had detected earlier: EasyEclipse. What is EasyEclipse? From their website: EasyEclipse packages together Eclipse, the open-source software development platform, and selected open source plugins. They provide packages for Java, PHP, Ruby on Rails, and Python. Just download the desired package, unpack it, and start programming ;-)]]></description>
			<content:encoded><![CDATA[<p>A project I wish I had detected earlier: <a href="http://www.easyeclipse.org">EasyEclipse</a>. What is EasyEclipse? From their website:</p>
<blockquote><p>
EasyEclipse packages together Eclipse, the open-source software development platform, and selected open source plugins.
</p></blockquote>
<p>They provide packages for Java, PHP, Ruby on Rails, and Python. Just download the desired package, unpack it, and start programming ;-)</p>
]]></content:encoded>
			<wfw:commentRss>http://cakebaker.42dh.com/2006/06/28/easyeclipse/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Syntaxhighlighting in .thtml files with PHPEclipse</title>
		<link>http://cakebaker.42dh.com/2006/01/30/syntaxhighlighting-in-thtml-files-with-phpeclipse/</link>
		<comments>http://cakebaker.42dh.com/2006/01/30/syntaxhighlighting-in-thtml-files-with-phpeclipse/#comments</comments>
		<pubDate>Mon, 30 Jan 2006 09:16:50 +0000</pubDate>
		<dc:creator>cakebaker</dc:creator>
				<category><![CDATA[cakephp]]></category>
		<category><![CDATA[phpeclipse]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://www.cakebaker.42dh.com/?p=86</guid>
		<description><![CDATA[I think I have already mentioned in an earlier post that I use PHPEclipse as my IDE. Up to now I had the problem that there was no syntaxhighlighting in .thtml files although I had associated the PHP editor with the .thtml filetype in the Eclipse preferences under &#8220;General/Editors/File Associations&#8221;. But I missed that I [...]]]></description>
			<content:encoded><![CDATA[<p>I think I have already mentioned in an earlier post that I use <a href="http://phpeclipse.de">PHPEclipse</a> as my IDE. Up to now I had the problem that there was no syntaxhighlighting in .thtml files although I had associated the PHP editor with the .thtml filetype in the <a href="http://www.eclipse.org">Eclipse</a> preferences under &#8220;General/Editors/File Associations&#8221;. But I missed that I have to associate the .thtml filetype with the &#8220;PHP Source file&#8221; content type under &#8220;General/Content Types&#8221;&#8230; Anyway, I am happy to have syntaxhighlighting :)</p>
]]></content:encoded>
			<wfw:commentRss>http://cakebaker.42dh.com/2006/01/30/syntaxhighlighting-in-thtml-files-with-phpeclipse/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
	</channel>
</rss>

