PHPNB70
(→Editor) |
(→Editor) |
||
Line 21: | Line 21: | ||
| The current bracket matcher is based on the indentation of the source code. This doesn't work when the code is not indented according our rules. There are bugs that it will be solved by this. | | The current bracket matcher is based on the indentation of the source code. This doesn't work when the code is not indented according our rules. There are bugs that it will be solved by this. | ||
| | | | ||
- | '''1.2 [P3] | + | |- |
- | + | |'''1.2 [P3] Formating/Indentation improvements, stabilization''' | |
+ | |In NB 6.9 there is a new formatter. There are some bugs mainly in formatting PHP inside HTML files. The same applies for indentation. | ||
| | | | ||
+ | |- | ||
+ | |'''1.3 [P3] Model stabilization, improvements''' | ||
+ | | Model is heavily used inside PHP editor and should prepared to be useful for framework support developers | ||
* document it | * document it | ||
* stabilize implementation | * stabilize implementation | ||
* provide needed changes to support Cake PHP and other similar frameworks. | * provide needed changes to support Cake PHP and other similar frameworks. | ||
+ | | | ||
+ | |- | ||
+ | | '''1.4.[P3] Type Inference improvements (Framework support)''' | ||
+ | | Type inference based on model needs improvements for properties in interfaces| Model API/impl. needs to be improved to be able to resolve types for supporting frameworks like Zend that adds properties to interfaces. Will improve quality of code completion, goto declaration, mark occurences, find usages ... | ||
+ | | | ||
+ | |- | ||
+ | | '''1.5 [P3] Declarative Extension of Editor Features''' | ||
+ | Obviously editor cannot support all extensions for the PHP language, all frameworks | ||
+ | |User should be able at least to extend: | ||
+ | * code completion for individual contexts | ||
+ | * add signatures for extensions | ||
+ | | | ||
+ | |- | ||
+ | | '''9.0 [P3] Refactorings''' | ||
+ | Implements some refactoring that are missing | ||
+ | | Deliver Rename Refactoring and other Refactorings like Extract to method ... | ||
+ | | | ||
+ | |- | ||
+ | | '''10.0 [P3] PHP 5.3 support improvements''' | ||
+ | PHP 5.3 brought many features that were not fully supported in 6.8. Phar,namespace view (analogy of package view in java) should appear in PHP project plan, but also additional editor improvemnts | ||
+ | | | ||
+ | * Improve mark occurences, goto declaration, find usages for cases when the same class/function/constant names from different namespaces are used inside one file | ||
+ | * additional contexts for Code completion like the one for anonymous/closures functions | ||
| | | | ||
|} | |} |
Revision as of 12:54, 17 June 2010
PHP in NB 6.9.Next
Version: draft 0.0.1
Contents |
The NetBeans PHP support is popular and obtains many users. It's the support that attracts many new people that are switching from other IDEs. The features in the release NetBeans 6.9.Next will be mainly targeted to improve productivity of the IDE.
Editor
ID [Priority] Task Description | Details | Link |
---|---|---|
1.0 [P3] Configuration for coding standards
Support for configurable coding standards. If we want to spread NetBeans into corporate sphere,then the codding style has to be configurable not to block Continuous Integration | Each configuration should be defined in separate configuration file. There should be possible to add its own coding standard whereas a few predefined standards(how to write PHP code) should be delivered with Netbeans PHP. These predefined configurations could be taken from PHP Code Sniffer(called: MySource, PEAR, PHPCS, Squiz and Zend), which seems to be de facto standards. | |
1.1 [P2] Bracket matcher refactoring | The current bracket matcher is based on the indentation of the source code. This doesn't work when the code is not indented according our rules. There are bugs that it will be solved by this. | |
1.2 [P3] Formating/Indentation improvements, stabilization | In NB 6.9 there is a new formatter. There are some bugs mainly in formatting PHP inside HTML files. The same applies for indentation. | |
1.3 [P3] Model stabilization, improvements | Model is heavily used inside PHP editor and should prepared to be useful for framework support developers
| |
1.4.[P3] Type Inference improvements (Framework support) | Model API/impl. needs to be improved to be able to resolve types for supporting frameworks like Zend that adds properties to interfaces. Will improve quality of code completion, goto declaration, mark occurences, find usages ... | |
1.5 [P3] Declarative Extension of Editor Features
Obviously editor cannot support all extensions for the PHP language, all frameworks | User should be able at least to extend:
| |
9.0 [P3] Refactorings
Implements some refactoring that are missing | Deliver Rename Refactoring and other Refactorings like Extract to method ... | |
10.0 [P3] PHP 5.3 support improvements
PHP 5.3 brought many features that were not fully supported in 6.8. Phar,namespace view (analogy of package view in java) should appear in PHP project plan, but also additional editor improvemnts |
|
Project
ID [Priority] Task Description | Details | Link |
---|---|---|
1.0 [P2] Generating PHP Doc This is one of the missing features that could be coverd in the release. | Generate PHP documentation from PHP comments in the source files. It's similar to the generating JavaDoc for java source files. The PHP support will use the PHP documentation generater available in the PHP runtime. |