<?xml version="1.0"?>
<rss version="2.0">
  <channel>
    <title>PHPDeveloper.org</title>
    <link>http://www.phpdeveloper.org</link>
    <description>Up-to-the Minute PHP News, views and community</description>
    <language>en-us</language>
    <pubDate>Thu, 08 Jan 2009 03:40:36 -0600</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Johannes Schluter's Blog: NetBeans plugin for running phpt tests]]></title>
      <guid>http://www.phpdeveloper.org/news/11593</guid>
      <link>http://www.phpdeveloper.org/news/11593</link>
      <description><![CDATA[<p>
In a <a href="http://schlueters.de/blog/archives/95-NetBeans-plugin-for-running-phpt-tests.html">new post to his blog</a> today <i>Johannes Schluter</i> talks about a plugin for the NetBeans IDE that allows you to run tests for PHP's regression test suite right in the editor.
</p>
<blockquote>
<p>
The test system therefore produces a bunch of files, a file containing the expected output, one containing the actual output and a diff between these as relevant files. The problem there is that the diff, for being portable, is using a quite simple mechanism which only shows the lines which differ without any context. 
</p>
<p>[...] Lately I've changed my way of working and use vim less, I still use it, but I use NetBeans as an IDE more and more. So I thought a bit about that test issue and searched my brain for my Java skills and started playing around to see whether I manage to write a NetBeans plugin which can run the tests and report the results in a usable way.
</p>
</blockquote>
<p>
Hes <a href="https://launchpad.net/phpttestrunner">created a project</a> for the plugin (where you can download the latest version - <a href="https://launchpad.net/phpttestrunner/trunk/0.6.0">0.6.0</a>) and install it to your local IDE copy. It adds a toolbar icon, asks for the location of the binaries to test and runs the diff quickly and easily. You can see a screenshot of the tool <a href="http://schlueters.de/~johannes/nb-phpttest.png">in action here</a>.
</p>]]></description>
      <pubDate>Thu, 18 Dec 2008 09:35:16 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[SitePoint PHP Blog: PHP Support in NetBeans 6.5]]></title>
      <guid>http://www.phpdeveloper.org/news/11577</guid>
      <link>http://www.phpdeveloper.org/news/11577</link>
      <description><![CDATA[<p>
On the SitePoint PHP blog today <i>Kevin Yank</i> <A href="http://www.sitepoint.com/blogs/2008/12/16/php-support-in-netbeans-65/">takes a look at</a> a recent version of the NetBeans IDE (version 6.5) that comes bundled with improved PHP support.
</p>
<blockquote>
Long dismissed as a "toy Java IDE", <a href="http://www.netbeans.org/">NetBeans</a> - Sun's open source Integrated Development Evironment (IDE)-has really grown up in recent years. No longer is it just for Java, either: for web developers, NetBeans 6.5 now supports Ruby and PHP out of the box. Surprisingly, that support is so good that it now compares favourably to more established competitors like <a href="http://www.eclipse.org/pdt/">Eclipse</a>, <a href="http://www.activestate.com/Products/komodo_ide/">Komodo IDE</a>, and <a href="http://www.zend.com/en/products/studio/">Zend Studio</a>.
</blockquote>
<p>
He mentions the built-in/user-defined auto-complete the has built in as well as code templates, support for phpdoc documentation blocks, and other functionality for helping with Javascript, HTML and CSS.
</p>]]></description>
      <pubDate>Tue, 16 Dec 2008 07:57:21 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Jani Hartikainen's Blog: NetBeans 6.5 review (with PHP support)]]></title>
      <guid>http://www.phpdeveloper.org/news/11478</guid>
      <link>http://www.phpdeveloper.org/news/11478</link>
      <description><![CDATA[<p>
<i>Jani Hartikainen</i> has <a href="http://codeutopia.net/blog/2008/12/01/netbeans-65-review/">posted a review</a> of the latest release of the NetBeans IDE with an updated version of their PHP support:
</p>
<blockquote>
During the weekend, I tried out NetBeans 6.5 and its new PHP related functionality. I had earlier seen some quick shots of how the support was, and it seemed like a good contender for big names like Zend Studio. What features does NetBeans 6.5 have for PHP developers? How does it compare against Zend Studio for Eclipse?
</blockquote>
<p>
He looks at some of the basics it includes (PHPDocumentor support, autocomplete, etc) and gets a bit more in depth by comparing it directly to Zend Studio, a look at the project view and the integration of debugging support and version control. He also points out the HTML, CSS and Javascript support that comes bundled in too.
</p>]]></description>
      <pubDate>Mon, 01 Dec 2008 10:26:14 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[DZone: Creating a NetBeans PHP Project from a Subversion Repository]]></title>
      <guid>http://www.phpdeveloper.org/news/11441</guid>
      <link>http://www.phpdeveloper.org/news/11441</link>
      <description><![CDATA[<p>
On the DZone site there's a <a href="http://php.dzone.com/articles/creating-a-netbeans-php-projec">new tutorial</a> showing how to set up a new PHP project inside of one of the latest versions of the NetBeans IDE using a subversion repository as the base.
</p>
<blockquote>
This article describes my experience in creating a PHP project in NetBeans IDE 6.5 from the repository version of Mediawiki. The project included 3 kinds of data that a developer would probably want to handle differently. Fortunately, the PHP Project from Existing Sources wizard made it easy to keep these 3 kinds of data separate from each other, as you will see in the following procedure.
</blockquote>
<p>
The tutorial works through a seven-step process showing you how to point the software at your repository and have it pull in the information and automatically set up all the things you'll need (screenshots are included).
</p>]]></description>
      <pubDate>Fri, 21 Nov 2008 17:29:50 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Johannes Schluter's Blog: SQL completion in PHP strings]]></title>
      <guid>http://www.phpdeveloper.org/news/11422</guid>
      <link>http://www.phpdeveloper.org/news/11422</link>
      <description><![CDATA[<p>
<i>Johannes Schluter</i> has <a href="http://schlueters.de/blog/archives/87-SQL-completion-in-PHP-strings.html">posted showing</a> how the new version of Netbeans (with PHP support) offers SQL completion support.
</p>
<blockquote>
<A href="http://www.netbeans.org/">NetBeans</a> 6.5 is soon to be released. After <a href="http://www.netbeans.org/birthday/">10 years of NetBeans</a> that's the first version of Sun's OpenSource IDE featuring <a href="http://php.netbeans.org/">PHP support</a>. While 6.5 is waiting to be packaged the development didn't stop and the first features for the successor, NetBeans.next, are already being developed. <a href="http://davidvancouvering.blogspot.com/2008/11/sql-completion-in-php.html">David Van Couvering</a> just showed a preview of a cool new feature: SQL completion in PHP strings, if it does what the screenshot promises that's a damn great addition in my opinion.
</blockquote>
<p>
<i>Johannes</i> includes <a href="http://schlueters.de/blog/archives/87-SQL-completion-in-PHP-strings.html">the screenshot</a> of it in action.
</p>]]></description>
      <pubDate>Tue, 18 Nov 2008 11:55:16 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Blogs.sun.com: NetBeans for PHP]]></title>
      <guid>http://www.phpdeveloper.org/news/11098</guid>
      <link>http://www.phpdeveloper.org/news/11098</link>
      <description><![CDATA[<p>
<i>Jeff Rubinoff</i> from Sun has passed along <a href="http://blogs.sun.com/netbeansphp/">a link to a developer blog</a> they're hosting covering the development of their NetBeans for PHP project's latest advancements.
</p>
<blockquote>
We at Sun have been working on a PHP editor in NetBeans IDE. The first full-featured version will go out in our 6.5 release, scheduled for November, but it's available for use already in our daily builds. [...] We're not PHP developers, strictly speaking, we're developing a tool for PHP developers. However, we are trying to get as much feedback from PHP developers as possible.
</blockquote>
<p>
<a href="http://blogs.sun.com/netbeansphp/">The blog</a> already has tons of content - tutorials, software updates, screencasts, personal experiences - all covering the development of the <a href="http://download.netbeans.org/netbeans/6.5/beta/">next version</a> (beta download) of the PHP tools in NetBeans.
</p>]]></description>
      <pubDate>Fri, 26 Sep 2008 12:06:58 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Symfony Blog: Support symfony inclusion in NetBeans]]></title>
      <guid>http://www.phpdeveloper.org/news/11019</guid>
      <link>http://www.phpdeveloper.org/news/11019</link>
      <description><![CDATA[<p>
Sun is trying to decide which of the PHP frameworks is wants to support in its next version of NetBeans. The symfony group wants you to <a href="http://www.symfony-project.org/blog/2008/09/11/support-symfony-inclusion-in-netbeans">vote for them</a> if you're a fan of the framework and want to see the support included.
</p>
<blockquote>
NetBeans, the open-source development environment sponsored by Sun, is planning to include support for PHP frameworks in its upcoming versions. As there are so many PHP frameworks, NetBeans developers have organized a public election to choose the two PHP frameworks that will be initially supported.
</blockquote>
<p>
Instructions on <A href="http://www.symfony-project.org/blog/2008/09/11/support-symfony-inclusion-in-netbeans">how to vote</a> are included (you will need to register to get to the voting form).
</p>]]></description>
      <pubDate>Mon, 15 Sep 2008 12:04:53 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[David Van Couvering's Blog: Real-world experience with the new NetBeans PHP and JavaScript editors]]></title>
      <guid>http://www.phpdeveloper.org/news/10830</guid>
      <link>http://www.phpdeveloper.org/news/10830</link>
      <description><![CDATA[<p>
<i>David Van Couvering</i> has <a href="http://davidvancouvering.blogspot.com/2008/08/real-world-experience-with-new-netbeans.html">posted about</a> some of his experience with the latest version of the NetBeans editor for some of his PHP and Javascript development work.
</p>
<blockquote>Yesterday I spent the whole day trying to help a friend in need who had waded in too deep with a contract he has. He has no database experience, and was trying to customize a Wordpress plugin that uses PHP, JavaScript and MySQL. So I downloaded the <a href="http://bits.netbeans.org/dev/nightly/latest/">daily build</a> of the PHP bundle of NetBeans for 6.5 and started working.
</blockquote>
<p>
He happily notes that things like syntax highlighting, inline documentation and completion were still there in the PHP bundle as well. He also mentions a few other things that could come in handy for the IDE - ssh tunnel support (<a href="http://davidvancouvering.blogspot.com/2008/01/setting-up-ssh-tunnel-to-talk-to-remote.html">see here</a>), an "Add Column Wizard" and a "Insert DLL Wizard".
</p>]]></description>
      <pubDate>Thu, 14 Aug 2008 09:32:56 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[TheServerSide.com: NetBeans branches out: NetBeans 6.1, plus a PHP platform]]></title>
      <guid>http://www.phpdeveloper.org/news/10280</guid>
      <link>http://www.phpdeveloper.org/news/10280</link>
      <description><![CDATA[<p>
On TheServerSide.com (a Java community) there's <a href="http://www.theserverside.com/news/thread.tss?thread_id=49273">a post</a> about the latest release of the <a href="http://www.netbeans.org/index.html">Netbeans</a> software (version 6.1) and how they've integrated more PHP-ness into it.
</p>
<blockquote>
The NetBeans 6.1 release is mostly a release of the candidate announced a few weeks ago - definitely a lot of changes in the overall release, with a heavy focus on web services and re-integration of some of the JSF/JPA tooling. However, the <a href="http://www.netbeans.org/kb/61/php/installing-and-configuring-required-software.html">PHP platform</a> - a 16MB or so download that provides a PHP-targeted IDE based on Java - is .. interesting.
</blockquote>
<p>
Comments on <a href="http://www.theserverside.com/news/thread.tss?thread_id=49273">the post</a> talk a lot about the other language support for the IDE with only a few mentioning the PHP support (though the ones that do show promising results).
</p>]]></description>
      <pubDate>Tue, 27 May 2008 12:58:31 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[PHPImpact Blog: PHP NetBeans IDE 6.1 is in the house!]]></title>
      <guid>http://www.phpdeveloper.org/news/10233</guid>
      <link>http://www.phpdeveloper.org/news/10233</link>
      <description><![CDATA[<p>
The PHP::Impact blog has a <a href="http://phpimpact.wordpress.com/2008/05/20/php-netbeans-is-in-the-house/">new post</a> about the release of the latest version of the <a href="http://www.netbeans.org/features/web/web-app.html">NetBeans IDE</a>, 6.1.
</p>
<blockquote>
Feature-for-feature, Eclipse and NetBeans are well matched. In fact, because they are both extensible, any feature gaps between the two can be filled in with third-party plug-ins. Eclipse and Netbeans are rapidly approaching the capabilities of commercial offerings. Most developers won't need more than what these two excellent development platforms provide.
</blockquote>
<p>
A (very) brief list of the features of the two is also included, their similarities including SVN support and syntax checking.
</p>]]></description>
      <pubDate>Wed, 21 May 2008 11:17:38 -0500</pubDate>
    </item>
  </channel>
</rss>
