[jira] [Updated] (NETBEANS-4652) Php namespace confusion

2020-07-29 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4652?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4652:
---
Description: 
*Issue*

When two namespaces 'look-alike' and have the same classname, netbeans get 
confused ;)

 

To reproduce make two classes like this. 

 
{code:php}
namespace rhAdmin\sales\order\record;
use rh\data\record\ListFactory as rhBase;

class ListFactory extends rhBase {
}
{code}
 
{code:php}
namespace sales\order\record; 
use rhAdmin\sales\order\record\ListFactory as rhBase; 

class ListFactory extends rhBase {

}{code}
 

In the second class try to navigate with ctrl-click to rhAdmin\\ListFactory

Netbeans will go to the current class definition. Because as you can see in the 
screenshot below, netbeans does see the parent-class, but its first guess is 
the current class. I think this is because the namespaces are almost the same.

!image-2020-07-28-21-17-50-896.png|width=477,height=296!

 

It even happens that when typing fast and trusting the codecompletion, netbeans 
convert the use statement to: "use ListFactory as rhBase;" 
 Even when the rhAdmin-namespace-path is fully typed!!

!image-2020-07-28-21-21-31-086.png|width=478,height=347!

 

 

Maybe this issue is related to my other report: 
https://issues.apache.org/jira/browse/NETBEANS-4647

  was:
*Issue*

When two namespaces 'look-alike' and have the same classname, netbeans get 
confused ;)

 

To reproduce make two classes like this. 

 
{code:php}
namespace rhAdmin\sales\order\record;
use rh\data\record\ListFactory as rhBase;

class ListFactory extends rhBase {
}
{code}
 
{code:php}
namespace sales\order\record; 
use rhAdmin\sales\order\record\ListFactory as rhBase; 

class ListFactory extends rhBase {

}{code}
 

In the second class try to navigate with ctrl-click to rhAdmin\\ListFactory

Netbeans will go to the current class definition. Because as you can see in the 
screenshot below, netbeans does see the parent-class, but its first guess is 
the current class. I think this is because the namespaces are almost the samen.

!image-2020-07-28-21-17-50-896.png|width=477,height=296!

 

It even happens that when typing fast and trusting the codecompletion, netbeans 
convert the use statement to: "use ListFactory as rhBase;" 
Even when the rhAdmin-namespace-path is fully typed!!

!image-2020-07-28-21-21-31-086.png|width=478,height=347!

 

 

Maybe this issue is related to my other report: 
https://issues.apache.org/jira/browse/NETBEANS-4647


> Php namespace confusion
> ---
>
> Key: NETBEANS-4652
> URL: https://issues.apache.org/jira/browse/NETBEANS-4652
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 12.0
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-21-17-50-896.png, 
> image-2020-07-28-21-21-31-086.png
>
>
> *Issue*
> When two namespaces 'look-alike' and have the same classname, netbeans get 
> confused ;)
>  
> To reproduce make two classes like this. 
>  
> {code:php}
> namespace rhAdmin\sales\order\record;
> use rh\data\record\ListFactory as rhBase;
> class ListFactory extends rhBase {
> }
> {code}
>  
> {code:php}
> namespace sales\order\record; 
> use rhAdmin\sales\order\record\ListFactory as rhBase; 
> class ListFactory extends rhBase {
> }{code}
>  
> In the second class try to navigate with ctrl-click to 
> rhAdmin\\ListFactory
> Netbeans will go to the current class definition. Because as you can see in 
> the screenshot below, netbeans does see the parent-class, but its first guess 
> is the current class. I think this is because the namespaces are almost the 
> same.
> !image-2020-07-28-21-17-50-896.png|width=477,height=296!
>  
> It even happens that when typing fast and trusting the codecompletion, 
> netbeans convert the use statement to: "use ListFactory as rhBase;" 
>  Even when the rhAdmin-namespace-path is fully typed!!
> !image-2020-07-28-21-21-31-086.png|width=478,height=347!
>  
>  
> Maybe this issue is related to my other report: 
> https://issues.apache.org/jira/browse/NETBEANS-4647



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-4652) Php namespace confusion

2020-07-28 Thread flexJoly (Jira)
flexJoly created NETBEANS-4652:
--

 Summary: Php namespace confusion
 Key: NETBEANS-4652
 URL: https://issues.apache.org/jira/browse/NETBEANS-4652
 Project: NetBeans
  Issue Type: Bug
  Components: cnd - Code Completion, php - Editor
Affects Versions: 12.0
Reporter: flexJoly
 Attachments: image-2020-07-28-21-17-50-896.png, 
image-2020-07-28-21-21-31-086.png

*Issue*

When two namespaces 'look-alike' and have the same classname, netbeans get 
confused ;)

 

To reproduce make two classes like this. 

 
{code:php}
namespace rhAdmin\sales\order\record;
use rh\data\record\ListFactory as rhBase;

class ListFactory extends rhBase {
}
{code}
 
{code:php}
namespace sales\order\record; 
use rhAdmin\sales\order\record\ListFactory as rhBase; 

class ListFactory extends rhBase {

}{code}
 

In the second class try to navigate with ctrl-click to rhAdmin\\ListFactory

Netbeans will go to the current class definition. Because as you can see in the 
screenshot below, netbeans does see the parent-class, but its first guess is 
the current class. I think this is because the namespaces are almost the samen.

!image-2020-07-28-21-17-50-896.png|width=477,height=296!

 

It even happens that when typing fast and trusting the codecompletion, netbeans 
convert the use statement to: "use ListFactory as rhBase;" 
Even when the rhAdmin-namespace-path is fully typed!!

!image-2020-07-28-21-21-31-086.png|width=478,height=347!

 

 

Maybe this issue is related to my other report: 
https://issues.apache.org/jira/browse/NETBEANS-4647



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-4647) Autocompletion in php broken? (alias and namespaces)

2020-07-28 Thread flexJoly (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17166621#comment-17166621
 ] 

flexJoly commented on NETBEANS-4647:


Hi,
Jep you are right, I know. 


I wish I knew Java :( then I would have certainly helped. I even looked a 
little into the github of netbeans, but it is to different to even try to do 
some intelligent copy and paste :D(!)
Money I would if I could... and I will keep it in mind and talk about it 
with my partner/boss ;)

I do not know why netbeans became an apache project... I expect you have good 
reasons... but from an users viewpoint: it took a lot of precious time to port 
netbeans to apache at the cost of further development...

Complicated it sure does 

I will try to be patient ;)

Greetz, Flexjoly

 

> Autocompletion in php broken? (alias and namespaces)
> 
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png, 
> image-2020-07-28-13-11-45-910.png, image-2020-07-28-13-15-11-891.png, 
> image-2020-07-28-13-17-15-567.png, image-2020-07-28-14-41-38-480.png, 
> image-2020-07-28-14-43-06-810.png
>
>
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> -I know one jira-issue should only have ONE topic and purpose. But I have the 
> feeling that php does not have much priority. And some of my previous 
> reports/requests did not get any attention. So first I want to know if what I 
> say below wil get any priority before taking much time to make a detailed 
> report.- 
>  -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 
> edit: i split my post in separate issues
>  * https://issues.apache.org/jira/browse/NETBEANS-4650
>  * https://issues.apache.org/jira/browse/NETBEANS-4649
>  * https://issues.apache.org/jira/browse/NETBEANS-4648
>  My previous request for autocompletion on properties:
> https://issues.apache.org/jira/browse/NETBEANS-3675 
>  
> h3. Codecompletion with namespace, aliases and extends
>  
> Overwritten function seen in _*parent-class:*_
> !image-2020-07-28-13-02-07-177.png|width=582,height=318!
> Extend class seen in parent-class:
>  !image-2020-07-28-14-43-06-810.png|width=650,height=345!
>  Overwritten function in _*parent-class*_ NOT seen when using an alias for 
> the namespace
>    !image-2020-07-28-13-04-10-932.png|width=536,height=275!
> Extend class not seen in parent-class when using an alias as namespace
>  !image-2020-07-28-14-41-38-480.png|width=650,height=346!
> Codecompletion working when parentclass has override-function with 
> alias-namespace
> !image-2020-07-28-13-10-46-227.png|width=582,height=290!
>  
> No codecompletion after removing the function in the parent-class
> !image-2020-07-28-13-11-45-910.png|width=571,height=236!
> Correct Code completion with Alias and function:
> !image-2020-07-28-13-15-11-891.png|width=566,height=229!
>  
>  No Codecompletion with alias in childclass, alias in first-parent removed 
> and function removed:
> !image-2020-07-28-13-17-15-567.png|width=705,height=308!
>  
> While writing this issue I found the difference when having an overridden 
> function or not
> some code:
>   
> {code:php}
> namespace rh\data\listdata;
> use rh\data\data\Data;
> use rh\data\listdata\ListInterface;
> class ListData extends Data implements ListInterface{
>   public function getListIds(){
> // netbeans does not see that it is extended by 
> \sales\product\record\ListRecord
>   }
> }
> {code}
> {code:php}
> namespace rhAdmin\sales\product\record\ListRecord;
> use rh\data\listdata\ListData;
> class ListRecord extends ListData{
> }
> {code}
> {code:php}
> namespace sales\product\record;
> use rhAdmin\sales\product\record\ListRecord as rhBase;
> class ListRecord extends rhBase{
>   public function otherTest(){
> // when start typing '$this->' the items from the parent-classes are not 
> seen/shown by netbeans
>   }
> }
> {code}
>  
>  
>  
>  
> I hope someone can reproduce this or tell me what I am doing wrong.
>  Sorry for my female complaints :P
> Still hoping someone can help. 
> flexjoly
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: 

[jira] [Commented] (NETBEANS-4647) Autocompletion in php broken? (alias and namespaces)

2020-07-28 Thread flexJoly (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17166487#comment-17166487
 ] 

flexJoly commented on NETBEANS-4647:


ah, ok :(
I understand, but I do hope these issues with php get more priority then it 
seem to have last few years. 

> Autocompletion in php broken? (alias and namespaces)
> 
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png, 
> image-2020-07-28-13-11-45-910.png, image-2020-07-28-13-15-11-891.png, 
> image-2020-07-28-13-17-15-567.png, image-2020-07-28-14-41-38-480.png, 
> image-2020-07-28-14-43-06-810.png
>
>
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> -I know one jira-issue should only have ONE topic and purpose. But I have the 
> feeling that php does not have much priority. And some of my previous 
> reports/requests did not get any attention. So first I want to know if what I 
> say below wil get any priority before taking much time to make a detailed 
> report.- 
>  -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 
> edit: i split my post in separate issues
>  * https://issues.apache.org/jira/browse/NETBEANS-4650
>  * https://issues.apache.org/jira/browse/NETBEANS-4649
>  * https://issues.apache.org/jira/browse/NETBEANS-4648
>  My previous request for autocompletion on properties:
> https://issues.apache.org/jira/browse/NETBEANS-3675 
>  
> h3. Codecompletion with namespace, aliases and extends
>  
> Overwritten function seen in _*parent-class:*_
> !image-2020-07-28-13-02-07-177.png|width=582,height=318!
> Extend class seen in parent-class:
>  !image-2020-07-28-14-43-06-810.png|width=650,height=345!
>  Overwritten function in _*parent-class*_ NOT seen when using an alias for 
> the namespace
>    !image-2020-07-28-13-04-10-932.png|width=536,height=275!
> Extend class not seen in parent-class when using an alias as namespace
>  !image-2020-07-28-14-41-38-480.png|width=650,height=346!
> Codecompletion working when parentclass has override-function with 
> alias-namespace
> !image-2020-07-28-13-10-46-227.png|width=582,height=290!
>  
> No codecompletion after removing the function in the parent-class
> !image-2020-07-28-13-11-45-910.png|width=571,height=236!
> Correct Code completion with Alias and function:
> !image-2020-07-28-13-15-11-891.png|width=566,height=229!
>  
>  No Codecompletion with alias in childclass, alias in first-parent removed 
> and function removed:
> !image-2020-07-28-13-17-15-567.png|width=705,height=308!
>  
> While writing this issue I found the difference when having an overridden 
> function or not
> some code:
>   
> {code:php}
> namespace rh\data\listdata;
> use rh\data\data\Data;
> use rh\data\listdata\ListInterface;
> class ListData extends Data implements ListInterface{
>   public function getListIds(){
> // netbeans does not see that it is extended by 
> \sales\product\record\ListRecord
>   }
> }
> {code}
> {code:php}
> namespace rhAdmin\sales\product\record\ListRecord;
> use rh\data\listdata\ListData;
> class ListRecord extends ListData{
> }
> {code}
> {code:php}
> namespace sales\product\record;
> use rhAdmin\sales\product\record\ListRecord as rhBase;
> class ListRecord extends rhBase{
>   public function otherTest(){
> // when start typing '$this->' the items from the parent-classes are not 
> seen/shown by netbeans
>   }
> }
> {code}
>  
>  
>  
>  
> I hope someone can reproduce this or tell me what I am doing wrong.
>  Sorry for my female complaints :P
> Still hoping someone can help. 
> flexjoly
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-4650) PHP: Codecompletion on traits

2020-07-28 Thread flexJoly (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4650?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17166482#comment-17166482
 ] 

flexJoly commented on NETBEANS-4650:


done ;)

> PHP: Codecompletion on traits
> -
>
> Key: NETBEANS-4650
> URL: https://issues.apache.org/jira/browse/NETBEANS-4650
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: screenshot-1.png, screenshot-2.png, screenshot-3.png
>
>
> When you want to set a trait in the use-list (directly under the namespace) 
> netbeans will not show the trait in the suggestion.
> h3. Steps to reproduce:
>  * Make a simple trait in php 
> {code:php}
> namespace test;
> trait MyTrait{}{code}
>  * Make a class in php{color:#808080} {color}
> {code:php}
> namespace somewhere;
> class MyClass{}{code}
>  * try to add a use to the trait like: (see first screenshot below)
> {code:php}
> namespace somewhere;
> // add trait here, netbeans does not show your trait in the suggestion list, 
> // you need to type it yourself
> // after you fully typed it, netbeans does recognize it
> use test\MyTrait;
> class MyClass{}{code}
> h3. Expected result
> Show trait in code-completion when adding it as use under the namespace.
> h3. Some screenshots
> Trait not shown codecompletion when adding as use:
> !screenshot-2.png!
> h3. When adding the trait directly in the class, netbeans does help you.
> !screenshot-1.png!  
>  
>  
>  trait recognized in uselist and inside class
>   !screenshot-3.png!
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4650) PHP: Codecompletion on traits

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4650?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4650:
---
Description: 
When you want to set a trait in the use-list (directly under the namespace) 
netbeans will not show the trait in the suggestion.
h3. Steps to reproduce:
 * Make a simple trait in php 
{code:php}
namespace test;
trait MyTrait{}{code}

 * Make a class in php{color:#808080} {color}
{code:php}
namespace somewhere;
class MyClass{}{code}

 * try to add a use to the trait like: (see first screenshot below)
{code:php}
namespace somewhere;
// add trait here, netbeans does not show your trait in the suggestion list, 
// you need to type it yourself
// after you fully typed it, netbeans does recognize it
use test\MyTrait;

class MyClass{}{code}

h3. Expected result

Show trait in code-completion when adding it as use under the namespace.
h3. Some screenshots

Trait not shown codecompletion when adding as use:

!screenshot-2.png!
h3. When adding the trait directly in the class, netbeans does help you.

!screenshot-1.png!  

 

 

 trait recognized in uselist and inside class

  !screenshot-3.png!

 

  was:
When you want to set a trait in the use-list (directly under the namespace) 
netbeans will not show the trait in the suggestion.

Steps to reproduce:
 * Make a simple trait in php 
{code:php}
namespace test;
trait MyTrait{}{code}

 * Make a class in php{color:#808080} {color}
{code:php}
namespace somewhere;
class MyClass{}{code}

 * try to add a use to the trait like: (see first screenshot below)
{code:php}
namespace somewhere;
// add trait here, netbeans does not show your trait in the suggestion list, 
// you need to type it yourself
// after you fully typed it, netbeans does recognize it
use test\MyTrait;

class MyClass{}{code}

Trait not found in use list:

!screenshot-2.png!
h3. When adding the trait directly in the class, netbeans does help you.

!screenshot-1.png!  

 

 

 trait recognized in uselist and inside class

  !screenshot-3.png!

 


> PHP: Codecompletion on traits
> -
>
> Key: NETBEANS-4650
> URL: https://issues.apache.org/jira/browse/NETBEANS-4650
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: screenshot-1.png, screenshot-2.png, screenshot-3.png
>
>
> When you want to set a trait in the use-list (directly under the namespace) 
> netbeans will not show the trait in the suggestion.
> h3. Steps to reproduce:
>  * Make a simple trait in php 
> {code:php}
> namespace test;
> trait MyTrait{}{code}
>  * Make a class in php{color:#808080} {color}
> {code:php}
> namespace somewhere;
> class MyClass{}{code}
>  * try to add a use to the trait like: (see first screenshot below)
> {code:php}
> namespace somewhere;
> // add trait here, netbeans does not show your trait in the suggestion list, 
> // you need to type it yourself
> // after you fully typed it, netbeans does recognize it
> use test\MyTrait;
> class MyClass{}{code}
> h3. Expected result
> Show trait in code-completion when adding it as use under the namespace.
> h3. Some screenshots
> Trait not shown codecompletion when adding as use:
> !screenshot-2.png!
> h3. When adding the trait directly in the class, netbeans does help you.
> !screenshot-1.png!  
>  
>  
>  trait recognized in uselist and inside class
>   !screenshot-3.png!
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4650) PHP: Codecompletion on traits

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4650?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4650:
---
Description: 
When you want to set a trait in the use-list (directly under the namespace) 
netbeans will not show the trait in the suggestion.

Steps to reproduce:
 * Make a simple trait in php 
{code:php}
namespace test;
trait MyTrait{}{code}

 * Make a class in php{color:#808080} {color}
{code:php}
namespace somewhere;
class MyClass{}{code}

 * try to add a use to the trait like: (see first screenshot below)
{code:php}
namespace somewhere;
// add trait here, netbeans does not show your trait in the suggestion list, 
// you need to type it yourself
// after you fully typed it, netbeans does recognize it
use test\MyTrait;

class MyClass{}{code}

Trait not found in use list:

!screenshot-2.png!
h3. When adding the trait directly in the class, netbeans does help you.

!screenshot-1.png!  

 

 

 trait recognized in uselist and inside class

  !screenshot-3.png!

 

  was:
When you want to set a trait in the use-list (directly under the namespace) 
netbeans will not show the trait in the suggestion.

Steps to reproduce:
 * Make a simple trait in php 
{code:php}
namespace test;
trait MyTrait{}{code}

 * {color:#808080}{color:#808080}Make a class in php {color}{color}
{code:java}
namespace somewhere;
class MyClass{}{code}

 * {color:#808080}{color:#808080}try to add a use to the trait 
like:{color}{color}
{code:java}
namespace somewhere;
// add trait here, netbeans does not show your trait, you need to type it 
yourself
use test\MyTrait;

class MyClass{}{code}

h3.  
h3.  
h3. trait found inside class
h3. !screenshot-1.png!  

 

  

Trait not found in use list: (this part needs a fix I think)

  !screenshot-2.png!

 trait recognized in uselist and inside class

  !screenshot-3.png!

 


> PHP: Codecompletion on traits
> -
>
> Key: NETBEANS-4650
> URL: https://issues.apache.org/jira/browse/NETBEANS-4650
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: screenshot-1.png, screenshot-2.png, screenshot-3.png
>
>
> When you want to set a trait in the use-list (directly under the namespace) 
> netbeans will not show the trait in the suggestion.
> Steps to reproduce:
>  * Make a simple trait in php 
> {code:php}
> namespace test;
> trait MyTrait{}{code}
>  * Make a class in php{color:#808080} {color}
> {code:php}
> namespace somewhere;
> class MyClass{}{code}
>  * try to add a use to the trait like: (see first screenshot below)
> {code:php}
> namespace somewhere;
> // add trait here, netbeans does not show your trait in the suggestion list, 
> // you need to type it yourself
> // after you fully typed it, netbeans does recognize it
> use test\MyTrait;
> class MyClass{}{code}
> Trait not found in use list:
> !screenshot-2.png!
> h3. When adding the trait directly in the class, netbeans does help you.
> !screenshot-1.png!  
>  
>  
>  trait recognized in uselist and inside class
>   !screenshot-3.png!
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4650) PHP: Codecompletion on traits

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4650?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4650:
---
Description: 
When you want to set a trait in the use-list (directly under the namespace) 
netbeans will not show the trait in the suggestion.

Steps to reproduce:
 * Make a simple trait in php 
{code:php}
namespace test;
trait MyTrait{}{code}

 * {color:#808080}{color:#808080}Make a class in php {color}{color}
{code:java}
namespace somewhere;
class MyClass{}{code}

 * {color:#808080}{color:#808080}try to add a use to the trait 
like:{color}{color}
{code:java}
namespace somewhere;
// add trait here, netbeans does not show your trait, you need to type it 
yourself
use test\MyTrait;

class MyClass{}{code}

h3.  
h3.  
h3. trait found inside class
h3. !screenshot-1.png!  

 

  

Trait not found in use list: (this part needs a fix I think)

  !screenshot-2.png!

 trait recognized in uselist and inside class

  !screenshot-3.png!

 

  was:
h3. trait found inside class
h3. !screenshot-1.png!  

 

  

Trait not found in use list: (this part needs a fix I think)

  !screenshot-2.png!

 trait recognized in uselist and inside class

  !screenshot-3.png!

 


> PHP: Codecompletion on traits
> -
>
> Key: NETBEANS-4650
> URL: https://issues.apache.org/jira/browse/NETBEANS-4650
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: screenshot-1.png, screenshot-2.png, screenshot-3.png
>
>
> When you want to set a trait in the use-list (directly under the namespace) 
> netbeans will not show the trait in the suggestion.
> Steps to reproduce:
>  * Make a simple trait in php 
> {code:php}
> namespace test;
> trait MyTrait{}{code}
>  * {color:#808080}{color:#808080}Make a class in php {color}{color}
> {code:java}
> namespace somewhere;
> class MyClass{}{code}
>  * {color:#808080}{color:#808080}try to add a use to the trait 
> like:{color}{color}
> {code:java}
> namespace somewhere;
> // add trait here, netbeans does not show your trait, you need to type it 
> yourself
> use test\MyTrait;
> class MyClass{}{code}
> h3.  
> h3.  
> h3. trait found inside class
> h3. !screenshot-1.png!  
>  
>   
> Trait not found in use list: (this part needs a fix I think)
>   !screenshot-2.png!
>  trait recognized in uselist and inside class
>   !screenshot-3.png!
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-4649) Codetemplate in Plain php-html

2020-07-28 Thread flexJoly (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4649?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17166431#comment-17166431
 ] 

flexJoly commented on NETBEANS-4649:


thanks for responding
I updated my post
I find it very hard to explain, so I hope this helps. Otherwise I will try 
again or make a little video.

> Codetemplate  in Plain php-html 
> 
>
> Key: NETBEANS-4649
> URL: https://issues.apache.org/jira/browse/NETBEANS-4649
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Completion  Templates, php - Code, web - 
> HTML Editor
>Reporter: flexJoly
>Priority: Major
> Fix For: 12.0, 11.3
>
> Attachments: OrderList_demo.tpl.php, 
> image-2020-07-28-15-33-13-351.png, image-2020-07-28-15-36-26-205.png, 
> image-2020-07-28-15-39-01-238.png
>
>
> We normally use Smarty. But we are exploring of having our own template 
> engine (togeter with smarty for now)
> So I made a file: *orderlist.tpl.php* (see in attachments)
> I tried to make a code-template: for '' .
> As suggested in: 
> [https://netbeans.apache.org/kb/docs/php/code-templates.html#_use_case_inserting_php_into_html]
> !image-2020-07-28-15-33-13-351.png|width=449,height=383!
> I tried to put it in: php, html, plain text etc., with/without context etc
>  Should be easy and it is. But really it WON'T show up in the code.
> Typing 'pe' and ctrl-space >>> no suggestions
> !image-2020-07-28-15-36-26-205.png|width=464,height=417!
>  
> I tried .phtml and other extensions for the file (like: orderlist.phtml). 
> Tried to change the file-type in the options to: text/x-php, html, template 
> etc
>  I cannot get this to work
> In utter desperation I made my first macro in netbeans (never needed it 
> before) and that works very nice (should have done this before :D) but every 
> macro needs an shorcut to work. pppfff
>  
>  
> How to get the codetemplate '' show up in a php/html file ??
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4649) Codetemplate in Plain php-html

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4649?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4649:
---
 Attachment: image-2020-07-28-15-33-13-351.png
 OrderList_demo.tpl.php
 image-2020-07-28-15-36-26-205.png
 image-2020-07-28-15-39-01-238.png
Description: 
We normally use Smarty. But we are exploring of having our own template engine 
(togeter with smarty for now)

So I made a file: *orderlist.tpl.php* (see in attachments)

I tried to make a code-template: for '' .

As suggested in: 
[https://netbeans.apache.org/kb/docs/php/code-templates.html#_use_case_inserting_php_into_html]

!image-2020-07-28-15-33-13-351.png|width=449,height=383!

I tried to put it in: php, html, plain text etc., with/without context etc
 Should be easy and it is. But really it WON'T show up in the code.

Typing 'pe' and ctrl-space >>> no suggestions

!image-2020-07-28-15-36-26-205.png|width=464,height=417!

 

I tried .phtml and other extensions for the file (like: orderlist.phtml). Tried 
to change the file-type in the options to: text/x-php, html, template etc


 I cannot get this to work

In utter desperation I made my first macro in netbeans (never needed it before) 
and that works very nice (should have done this before :D) but every macro 
needs an shorcut to work. pppfff

 

 

How to get the codetemplate '' show up in a php/html file ??

 

  was:
We normally use Smarty. But we are exploring of having our own template engine 
(togeter with smarty for now)

So I made a file: *orderlist.tpl.php*

That works ok. But I tried to make a code-template: for '' . I 
tried to put it in: php, html, plain text etc.
 Should be easy and it is. But really it WON'T show up in the code.

I tried .phtml and other extensions. Tried to change the file-type in the 
options to: text/x-php, html, template etc

See: 
[https://netbeans.apache.org/kb/docs/php/code-templates.html#_use_case_inserting_php_into_html]
 I cannot get this to work

In utter desperation I made my first macro in netbeans (never needed it before) 
and that works very nice (should have done this before :D) but every macro 
needs an shorcut to work. pppfff

Summary: Codetemplate  in Plain php-html   (was: Codecompletion in 
Plain php-html template)

> Codetemplate  in Plain php-html 
> 
>
> Key: NETBEANS-4649
> URL: https://issues.apache.org/jira/browse/NETBEANS-4649
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Completion  Templates, php - Code, web - 
> HTML Editor
>Reporter: flexJoly
>Priority: Major
> Fix For: 12.0, 11.3
>
> Attachments: OrderList_demo.tpl.php, 
> image-2020-07-28-15-33-13-351.png, image-2020-07-28-15-36-26-205.png, 
> image-2020-07-28-15-39-01-238.png
>
>
> We normally use Smarty. But we are exploring of having our own template 
> engine (togeter with smarty for now)
> So I made a file: *orderlist.tpl.php* (see in attachments)
> I tried to make a code-template: for '' .
> As suggested in: 
> [https://netbeans.apache.org/kb/docs/php/code-templates.html#_use_case_inserting_php_into_html]
> !image-2020-07-28-15-33-13-351.png|width=449,height=383!
> I tried to put it in: php, html, plain text etc., with/without context etc
>  Should be easy and it is. But really it WON'T show up in the code.
> Typing 'pe' and ctrl-space >>> no suggestions
> !image-2020-07-28-15-36-26-205.png|width=464,height=417!
>  
> I tried .phtml and other extensions for the file (like: orderlist.phtml). 
> Tried to change the file-type in the options to: text/x-php, html, template 
> etc
>  I cannot get this to work
> In utter desperation I made my first macro in netbeans (never needed it 
> before) and that works very nice (should have done this before :D) but every 
> macro needs an shorcut to work. pppfff
>  
>  
> How to get the codetemplate '' show up in a php/html file ??
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion in php broken? (alias and namespaces)

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

-I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report.- 
 -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 

edit: i split my post in separate issues
 * https://issues.apache.org/jira/browse/NETBEANS-4650
 * https://issues.apache.org/jira/browse/NETBEANS-4649
 * https://issues.apache.org/jira/browse/NETBEANS-4648

 My previous request for autocompletion on properties:

https://issues.apache.org/jira/browse/NETBEANS-3675 

 
h3. Codecompletion with namespace, aliases and extends

 

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

Extend class seen in parent-class:
 !image-2020-07-28-14-43-06-810.png|width=650,height=345!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Extend class not seen in parent-class when using an alias as namespace
 !image-2020-07-28-14-41-38-480.png|width=650,height=346!

Codecompletion working when parentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Correct Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 No Codecompletion with alias in childclass, alias in first-parent removed and 
function removed:

!image-2020-07-28-13-17-15-567.png|width=705,height=308!

 

While writing this issue I found the difference when having an overridden 
function or not

some code:

  
{code:php}
namespace rh\data\listdata;
use rh\data\data\Data;
use rh\data\listdata\ListInterface;

class ListData extends Data implements ListInterface{
  public function getListIds(){
// netbeans does not see that it is extended by 
\sales\product\record\ListRecord
  }
}
{code}
{code:php}
namespace rhAdmin\sales\product\record\ListRecord;
use rh\data\listdata\ListData;

class ListRecord extends ListData{

}
{code}
{code:php}
namespace sales\product\record;
use rhAdmin\sales\product\record\ListRecord as rhBase;

class ListRecord extends rhBase{
  public function otherTest(){
// when start typing '$this->' the items from the parent-classes are not 
seen/shown by netbeans
  }
}

{code}
 

 

 

 

I hope someone can reproduce this or tell me what I am doing wrong.
 Sorry for my female complaints :P

Still hoping someone can help. 

flexjoly

 

 

 

 

  was:
 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

-I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report.- 
 -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 

edit: i split my post in separate issues
 * https://issues.apache.org/jira/browse/NETBEANS-4650
 * https://issues.apache.org/jira/browse/NETBEANS-4649
 * https://issues.apache.org/jira/browse/NETBEANS-4648

 My previous request for autocompletion on properties:

 

 
h3. Codecompletion with namespace, aliases and extends

 

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

Extend class seen in parent-class:
 !image-2020-07-28-14-43-06-810.png|width=650,height=345!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Extend class not seen in parent-class when using an alias as namespace
 !image-2020-07-28-14-41-38-480.png|width=650,height=346!

Codecompletion working when parentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class


[jira] [Updated] (NETBEANS-4647) Autocompletion in php broken? (alias and namespaces)

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

-I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report.- 
 -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 

edit: i split my post in separate issues
 * https://issues.apache.org/jira/browse/NETBEANS-4650
 * https://issues.apache.org/jira/browse/NETBEANS-4649
 * https://issues.apache.org/jira/browse/NETBEANS-4648

 My previous request for autocompletion on properties:

 

 
h3. Codecompletion with namespace, aliases and extends

 

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

Extend class seen in parent-class:
 !image-2020-07-28-14-43-06-810.png|width=650,height=345!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Extend class not seen in parent-class when using an alias as namespace
 !image-2020-07-28-14-41-38-480.png|width=650,height=346!

Codecompletion working when parentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Correct Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 No Codecompletion with alias in childclass, alias in first-parent removed and 
function removed:

!image-2020-07-28-13-17-15-567.png|width=705,height=308!

 

While writing this issue I found the difference when having an overridden 
function or not

some code:

  
{code:php}
namespace rh\data\listdata;
use rh\data\data\Data;
use rh\data\listdata\ListInterface;

class ListData extends Data implements ListInterface{
  public function getListIds(){
// netbeans does not see that it is extended by 
\sales\product\record\ListRecord
  }
}
{code}
{code:php}
namespace rhAdmin\sales\product\record\ListRecord;
use rh\data\listdata\ListData;

class ListRecord extends ListData{

}
{code}
{code:php}
namespace sales\product\record;
use rhAdmin\sales\product\record\ListRecord as rhBase;

class ListRecord extends rhBase{
  public function otherTest(){
// when start typing '$this->' the items from the parent-classes are not 
seen/shown by netbeans
  }
}

{code}
 

 

 

 

I hope someone can reproduce this or tell me what I am doing wrong.
 Sorry for my female complaints :P

Still hoping someone can help. 

flexjoly

 

 

 

 

  was:
 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

-I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report.- 
 -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 

edit: i split my post in separate issues
 * https://issues.apache.org/jira/browse/NETBEANS-4650
 * https://issues.apache.org/jira/browse/NETBEANS-4649
 * https://issues.apache.org/jira/browse/NETBEANS-4648

 

 
h3. Codecompletion with namespace, aliases and extends

 

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

Extend class seen in parent-class:
!image-2020-07-28-14-43-06-810.png|width=650,height=345!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Extend class not seen in parent-class when using an alias as namespace
!image-2020-07-28-14-41-38-480.png|width=650,height=346!

Codecompletion working when parentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Correct Code completion with Alias and function:


[jira] [Updated] (NETBEANS-4650) PHP: Codecompletion on traits

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4650?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4650:
---
Attachment: screenshot-3.png

> PHP: Codecompletion on traits
> -
>
> Key: NETBEANS-4650
> URL: https://issues.apache.org/jira/browse/NETBEANS-4650
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Priority: Major
> Attachments: screenshot-1.png, screenshot-2.png, screenshot-3.png
>
>
> h3. trait found inside class
> h3. !screenshot-1.png!  
>  
>   
> Trait not found in use list: (this part needs a fix I think)
>  
>  trait recognized in uselist and inside class
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4650) PHP: Codecompletion on traits

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4650?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4650:
---
Attachment: screenshot-2.png

> PHP: Codecompletion on traits
> -
>
> Key: NETBEANS-4650
> URL: https://issues.apache.org/jira/browse/NETBEANS-4650
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Priority: Major
> Attachments: screenshot-1.png, screenshot-2.png
>
>
> h3. trait found inside class
> h3. !screenshot-1.png!  
>  
>   
> Trait not found in use list: (this part needs a fix I think)
>  
>  trait recognized in uselist and inside class
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion in php broken? (alias and namespaces)

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: (was: image-2020-07-28-13-22-37-962.png)

> Autocompletion in php broken? (alias and namespaces)
> 
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png, 
> image-2020-07-28-13-11-45-910.png, image-2020-07-28-13-15-11-891.png, 
> image-2020-07-28-13-17-15-567.png, image-2020-07-28-13-24-10-223.png, 
> image-2020-07-28-14-41-38-480.png, image-2020-07-28-14-43-06-810.png
>
>
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> -I know one jira-issue should only have ONE topic and purpose. But I have the 
> feeling that php does not have much priority. And some of my previous 
> reports/requests did not get any attention. So first I want to know if what I 
> say below wil get any priority before taking much time to make a detailed 
> report.- 
>  -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 
> edit: i split my post in separate issues
>  * https://issues.apache.org/jira/browse/NETBEANS-4650
>  * https://issues.apache.org/jira/browse/NETBEANS-4649
>  * https://issues.apache.org/jira/browse/NETBEANS-4648
>  
>  
> h3. Codecompletion with namespace, aliases and extends
>  
> Overwritten function seen in _*parent-class:*_
> !image-2020-07-28-13-02-07-177.png|width=582,height=318!
> Extend class seen in parent-class:
> !image-2020-07-28-14-43-06-810.png|width=650,height=345!
>  Overwritten function in _*parent-class*_ NOT seen when using an alias for 
> the namespace
>    !image-2020-07-28-13-04-10-932.png|width=536,height=275!
> Extend class not seen in parent-class when using an alias as namespace
> !image-2020-07-28-14-41-38-480.png|width=650,height=346!
> Codecompletion working when parentclass has override-function with 
> alias-namespace
> !image-2020-07-28-13-10-46-227.png|width=582,height=290!
>  
> No codecompletion after removing the function in the parent-class
> !image-2020-07-28-13-11-45-910.png|width=571,height=236!
> Correct Code completion with Alias and function:
> !image-2020-07-28-13-15-11-891.png|width=566,height=229!
>  
>  No Codecompletion with alias in childclass, alias in first-parent removed 
> and function removed:
> !image-2020-07-28-13-17-15-567.png|width=705,height=308!
>  
> While writing this issue I found the difference when having an overridden 
> function or not
> some code:
>   
> {code:php}
> namespace rh\data\listdata;
> use rh\data\data\Data;
> use rh\data\listdata\ListInterface;
> class ListData extends Data implements ListInterface{
>   public function getListIds(){
> // netbeans does not see that it is extended by 
> \sales\product\record\ListRecord
>   }
> }
> {code}
> {code:php}
> namespace rhAdmin\sales\product\record\ListRecord;
> use rh\data\listdata\ListData;
> class ListRecord extends ListData{
> }
> {code}
> {code:php}
> namespace sales\product\record;
> use rhAdmin\sales\product\record\ListRecord as rhBase;
> class ListRecord extends rhBase{
>   public function otherTest(){
> // when start typing '$this->' the items from the parent-classes are not 
> seen/shown by netbeans
>   }
> }
> {code}
>  
>  
>  
>  
> I hope someone can reproduce this or tell me what I am doing wrong.
>  Sorry for my female complaints :P
> Still hoping someone can help. 
> flexjoly
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion in php broken? (alias and namespaces)

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: (was: image-2020-07-28-13-21-36-907.png)

> Autocompletion in php broken? (alias and namespaces)
> 
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png, 
> image-2020-07-28-13-11-45-910.png, image-2020-07-28-13-15-11-891.png, 
> image-2020-07-28-13-17-15-567.png, image-2020-07-28-13-24-10-223.png, 
> image-2020-07-28-14-41-38-480.png, image-2020-07-28-14-43-06-810.png
>
>
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> -I know one jira-issue should only have ONE topic and purpose. But I have the 
> feeling that php does not have much priority. And some of my previous 
> reports/requests did not get any attention. So first I want to know if what I 
> say below wil get any priority before taking much time to make a detailed 
> report.- 
>  -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 
> edit: i split my post in separate issues
>  * https://issues.apache.org/jira/browse/NETBEANS-4650
>  * https://issues.apache.org/jira/browse/NETBEANS-4649
>  * https://issues.apache.org/jira/browse/NETBEANS-4648
>  
>  
> h3. Codecompletion with namespace, aliases and extends
>  
> Overwritten function seen in _*parent-class:*_
> !image-2020-07-28-13-02-07-177.png|width=582,height=318!
> Extend class seen in parent-class:
> !image-2020-07-28-14-43-06-810.png|width=650,height=345!
>  Overwritten function in _*parent-class*_ NOT seen when using an alias for 
> the namespace
>    !image-2020-07-28-13-04-10-932.png|width=536,height=275!
> Extend class not seen in parent-class when using an alias as namespace
> !image-2020-07-28-14-41-38-480.png|width=650,height=346!
> Codecompletion working when parentclass has override-function with 
> alias-namespace
> !image-2020-07-28-13-10-46-227.png|width=582,height=290!
>  
> No codecompletion after removing the function in the parent-class
> !image-2020-07-28-13-11-45-910.png|width=571,height=236!
> Correct Code completion with Alias and function:
> !image-2020-07-28-13-15-11-891.png|width=566,height=229!
>  
>  No Codecompletion with alias in childclass, alias in first-parent removed 
> and function removed:
> !image-2020-07-28-13-17-15-567.png|width=705,height=308!
>  
> While writing this issue I found the difference when having an overridden 
> function or not
> some code:
>   
> {code:php}
> namespace rh\data\listdata;
> use rh\data\data\Data;
> use rh\data\listdata\ListInterface;
> class ListData extends Data implements ListInterface{
>   public function getListIds(){
> // netbeans does not see that it is extended by 
> \sales\product\record\ListRecord
>   }
> }
> {code}
> {code:php}
> namespace rhAdmin\sales\product\record\ListRecord;
> use rh\data\listdata\ListData;
> class ListRecord extends ListData{
> }
> {code}
> {code:php}
> namespace sales\product\record;
> use rhAdmin\sales\product\record\ListRecord as rhBase;
> class ListRecord extends rhBase{
>   public function otherTest(){
> // when start typing '$this->' the items from the parent-classes are not 
> seen/shown by netbeans
>   }
> }
> {code}
>  
>  
>  
>  
> I hope someone can reproduce this or tell me what I am doing wrong.
>  Sorry for my female complaints :P
> Still hoping someone can help. 
> flexjoly
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4650) PHP: Codecompletion on traits

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4650?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4650:
---
Description: 
h3. trait found inside class
h3. !screenshot-1.png!  

 

  

Trait not found in use list: (this part needs a fix I think)

 

 trait recognized in uselist and inside class

 

 

  was:
h3.  

trait found:

 

 

Trait not found in use list: (this part needs a fix I think)

 

 trait recognized in uselist and inside class

 

 


> PHP: Codecompletion on traits
> -
>
> Key: NETBEANS-4650
> URL: https://issues.apache.org/jira/browse/NETBEANS-4650
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Priority: Major
> Attachments: screenshot-1.png, screenshot-2.png
>
>
> h3. trait found inside class
> h3. !screenshot-1.png!  
>  
>   
> Trait not found in use list: (this part needs a fix I think)
>  
>  trait recognized in uselist and inside class
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion in php broken? (alias and namespaces)

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: (was: image-2020-07-28-13-24-10-223.png)

> Autocompletion in php broken? (alias and namespaces)
> 
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png, 
> image-2020-07-28-13-11-45-910.png, image-2020-07-28-13-15-11-891.png, 
> image-2020-07-28-13-17-15-567.png, image-2020-07-28-14-41-38-480.png, 
> image-2020-07-28-14-43-06-810.png
>
>
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> -I know one jira-issue should only have ONE topic and purpose. But I have the 
> feeling that php does not have much priority. And some of my previous 
> reports/requests did not get any attention. So first I want to know if what I 
> say below wil get any priority before taking much time to make a detailed 
> report.- 
>  -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 
> edit: i split my post in separate issues
>  * https://issues.apache.org/jira/browse/NETBEANS-4650
>  * https://issues.apache.org/jira/browse/NETBEANS-4649
>  * https://issues.apache.org/jira/browse/NETBEANS-4648
>  
>  
> h3. Codecompletion with namespace, aliases and extends
>  
> Overwritten function seen in _*parent-class:*_
> !image-2020-07-28-13-02-07-177.png|width=582,height=318!
> Extend class seen in parent-class:
> !image-2020-07-28-14-43-06-810.png|width=650,height=345!
>  Overwritten function in _*parent-class*_ NOT seen when using an alias for 
> the namespace
>    !image-2020-07-28-13-04-10-932.png|width=536,height=275!
> Extend class not seen in parent-class when using an alias as namespace
> !image-2020-07-28-14-41-38-480.png|width=650,height=346!
> Codecompletion working when parentclass has override-function with 
> alias-namespace
> !image-2020-07-28-13-10-46-227.png|width=582,height=290!
>  
> No codecompletion after removing the function in the parent-class
> !image-2020-07-28-13-11-45-910.png|width=571,height=236!
> Correct Code completion with Alias and function:
> !image-2020-07-28-13-15-11-891.png|width=566,height=229!
>  
>  No Codecompletion with alias in childclass, alias in first-parent removed 
> and function removed:
> !image-2020-07-28-13-17-15-567.png|width=705,height=308!
>  
> While writing this issue I found the difference when having an overridden 
> function or not
> some code:
>   
> {code:php}
> namespace rh\data\listdata;
> use rh\data\data\Data;
> use rh\data\listdata\ListInterface;
> class ListData extends Data implements ListInterface{
>   public function getListIds(){
> // netbeans does not see that it is extended by 
> \sales\product\record\ListRecord
>   }
> }
> {code}
> {code:php}
> namespace rhAdmin\sales\product\record\ListRecord;
> use rh\data\listdata\ListData;
> class ListRecord extends ListData{
> }
> {code}
> {code:php}
> namespace sales\product\record;
> use rhAdmin\sales\product\record\ListRecord as rhBase;
> class ListRecord extends rhBase{
>   public function otherTest(){
> // when start typing '$this->' the items from the parent-classes are not 
> seen/shown by netbeans
>   }
> }
> {code}
>  
>  
>  
>  
> I hope someone can reproduce this or tell me what I am doing wrong.
>  Sorry for my female complaints :P
> Still hoping someone can help. 
> flexjoly
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4650) PHP: Codecompletion on traits

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4650?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4650:
---
Description: 
h3. trait found inside class
h3. !screenshot-1.png!  

 

  

Trait not found in use list: (this part needs a fix I think)

  !screenshot-2.png!

 trait recognized in uselist and inside class

  !screenshot-3.png!

 

  was:
h3. trait found inside class
h3. !screenshot-1.png!  

 

  

Trait not found in use list: (this part needs a fix I think)

 

 trait recognized in uselist and inside class

 

 


> PHP: Codecompletion on traits
> -
>
> Key: NETBEANS-4650
> URL: https://issues.apache.org/jira/browse/NETBEANS-4650
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Priority: Major
> Attachments: screenshot-1.png, screenshot-2.png, screenshot-3.png
>
>
> h3. trait found inside class
> h3. !screenshot-1.png!  
>  
>   
> Trait not found in use list: (this part needs a fix I think)
>   !screenshot-2.png!
>  trait recognized in uselist and inside class
>   !screenshot-3.png!
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4650) PHP: Codecompletion on traits

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4650?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4650:
---
Attachment: screenshot-1.png

> PHP: Codecompletion on traits
> -
>
> Key: NETBEANS-4650
> URL: https://issues.apache.org/jira/browse/NETBEANS-4650
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Priority: Major
> Attachments: screenshot-1.png
>
>
> h3.  
> trait found:
>  
>  
> Trait not found in use list: (this part needs a fix I think)
>  
>  trait recognized in uselist and inside class
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4650) PHP: Codecompletion on traits

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4650?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4650:
---
Description: 
h3.  

trait found:

!image-2020-07-28-13-21-36-907.png!

 

Trait not found in use list: (this part needs a fix I think)

!image-2020-07-28-13-22-37-962.png|width=427,height=232!

 trait recognized in uselist and inside class

!image-2020-07-28-13-24-10-223.png!

 

  was:
h3.  

trait found:

!image-2020-07-28-13-21-36-907.png|width=430,height=319!

Trait not found in use list: (this part needs a fix I think)

!image-2020-07-28-13-22-37-962.png|width=427,height=232!

 trait recognized in uselist and inside class

!image-2020-07-28-13-24-10-223.png!

 


> PHP: Codecompletion on traits
> -
>
> Key: NETBEANS-4650
> URL: https://issues.apache.org/jira/browse/NETBEANS-4650
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Priority: Major
> Attachments: screenshot-1.png
>
>
> h3.  
> trait found:
> !image-2020-07-28-13-21-36-907.png!
>  
> Trait not found in use list: (this part needs a fix I think)
> !image-2020-07-28-13-22-37-962.png|width=427,height=232!
>  trait recognized in uselist and inside class
> !image-2020-07-28-13-24-10-223.png!
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4650) PHP: Codecompletion on traits

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4650?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4650:
---
Description: 
h3.  

trait found:

 

 

Trait not found in use list: (this part needs a fix I think)

 

 trait recognized in uselist and inside class

 

 

  was:
h3.  

trait found:

!image-2020-07-28-13-21-36-907.png!

 

Trait not found in use list: (this part needs a fix I think)

!image-2020-07-28-13-22-37-962.png|width=427,height=232!

 trait recognized in uselist and inside class

!image-2020-07-28-13-24-10-223.png!

 


> PHP: Codecompletion on traits
> -
>
> Key: NETBEANS-4650
> URL: https://issues.apache.org/jira/browse/NETBEANS-4650
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Priority: Major
> Attachments: screenshot-1.png
>
>
> h3.  
> trait found:
>  
>  
> Trait not found in use list: (this part needs a fix I think)
>  
>  trait recognized in uselist and inside class
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4650) PHP: Codecompletion on traits

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4650?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4650:
---
Description: 
h3.  

trait found:

!image-2020-07-28-13-21-36-907.png|width=430,height=319!

Trait not found in use list: (this part needs a fix I think)

!image-2020-07-28-13-22-37-962.png|width=427,height=232!

 trait recognized in uselist and inside class

!image-2020-07-28-13-24-10-223.png!

 

  was:
h3.  

trait found:

!image-2020-07-28-13-21-36-907.png|width=405,height=301!

Trait not found in use list: (this part needs a fix I think)

!image-2020-07-28-13-22-37-962.png|width=427,height=232!

 trait recognized in uselist and inside class

!image-2020-07-28-13-24-10-223.png!

 


> PHP: Codecompletion on traits
> -
>
> Key: NETBEANS-4650
> URL: https://issues.apache.org/jira/browse/NETBEANS-4650
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Priority: Major
>
> h3.  
> trait found:
> !image-2020-07-28-13-21-36-907.png|width=430,height=319!
> Trait not found in use list: (this part needs a fix I think)
> !image-2020-07-28-13-22-37-962.png|width=427,height=232!
>  trait recognized in uselist and inside class
> !image-2020-07-28-13-24-10-223.png!
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-4647) Autocompletion in php broken? (alias and namespaces)

2020-07-28 Thread flexJoly (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17166398#comment-17166398
 ] 

flexJoly commented on NETBEANS-4647:


done!
I hope this helps.

Thanks so far, for at least responding!! xx

> Autocompletion in php broken? (alias and namespaces)
> 
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png, 
> image-2020-07-28-13-11-45-910.png, image-2020-07-28-13-15-11-891.png, 
> image-2020-07-28-13-17-15-567.png, image-2020-07-28-13-21-36-907.png, 
> image-2020-07-28-13-22-37-962.png, image-2020-07-28-13-24-10-223.png, 
> image-2020-07-28-14-41-38-480.png, image-2020-07-28-14-43-06-810.png
>
>
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> -I know one jira-issue should only have ONE topic and purpose. But I have the 
> feeling that php does not have much priority. And some of my previous 
> reports/requests did not get any attention. So first I want to know if what I 
> say below wil get any priority before taking much time to make a detailed 
> report.- 
>  -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 
> edit: i split my post in separate issues
>  * https://issues.apache.org/jira/browse/NETBEANS-4650
>  * https://issues.apache.org/jira/browse/NETBEANS-4649
>  * https://issues.apache.org/jira/browse/NETBEANS-4648
>  
>  
> h3. Codecompletion with namespace, aliases and extends
>  
> Overwritten function seen in _*parent-class:*_
> !image-2020-07-28-13-02-07-177.png|width=582,height=318!
> Extend class seen in parent-class:
> !image-2020-07-28-14-43-06-810.png|width=650,height=345!
>  Overwritten function in _*parent-class*_ NOT seen when using an alias for 
> the namespace
>    !image-2020-07-28-13-04-10-932.png|width=536,height=275!
> Extend class not seen in parent-class when using an alias as namespace
> !image-2020-07-28-14-41-38-480.png|width=650,height=346!
> Codecompletion working when parentclass has override-function with 
> alias-namespace
> !image-2020-07-28-13-10-46-227.png|width=582,height=290!
>  
> No codecompletion after removing the function in the parent-class
> !image-2020-07-28-13-11-45-910.png|width=571,height=236!
> Correct Code completion with Alias and function:
> !image-2020-07-28-13-15-11-891.png|width=566,height=229!
>  
>  No Codecompletion with alias in childclass, alias in first-parent removed 
> and function removed:
> !image-2020-07-28-13-17-15-567.png|width=705,height=308!
>  
> While writing this issue I found the difference when having an overridden 
> function or not
> some code:
>   
> {code:php}
> namespace rh\data\listdata;
> use rh\data\data\Data;
> use rh\data\listdata\ListInterface;
> class ListData extends Data implements ListInterface{
>   public function getListIds(){
> // netbeans does not see that it is extended by 
> \sales\product\record\ListRecord
>   }
> }
> {code}
> {code:php}
> namespace rhAdmin\sales\product\record\ListRecord;
> use rh\data\listdata\ListData;
> class ListRecord extends ListData{
> }
> {code}
> {code:php}
> namespace sales\product\record;
> use rhAdmin\sales\product\record\ListRecord as rhBase;
> class ListRecord extends rhBase{
>   public function otherTest(){
> // when start typing '$this->' the items from the parent-classes are not 
> seen/shown by netbeans
>   }
> }
> {code}
>  
>  
>  
>  
> I hope someone can reproduce this or tell me what I am doing wrong.
>  Sorry for my female complaints :P
> Still hoping someone can help. 
> flexjoly
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion in php broken? (alias and namespaces)

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: image-2020-07-28-14-43-06-810.png

> Autocompletion in php broken? (alias and namespaces)
> 
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png, 
> image-2020-07-28-13-11-45-910.png, image-2020-07-28-13-15-11-891.png, 
> image-2020-07-28-13-17-15-567.png, image-2020-07-28-13-21-36-907.png, 
> image-2020-07-28-13-22-37-962.png, image-2020-07-28-13-24-10-223.png, 
> image-2020-07-28-14-41-38-480.png, image-2020-07-28-14-43-06-810.png
>
>
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> -I know one jira-issue should only have ONE topic and purpose. But I have the 
> feeling that php does not have much priority. And some of my previous 
> reports/requests did not get any attention. So first I want to know if what I 
> say below wil get any priority before taking much time to make a detailed 
> report.- 
>  -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 
> edit: i split my post in separate issues
>  * https://issues.apache.org/jira/browse/NETBEANS-4650
>  * https://issues.apache.org/jira/browse/NETBEANS-4649
>  * https://issues.apache.org/jira/browse/NETBEANS-4648
>  
>  
> h3. Codecompletion with namespace, aliases and extends
>  
> Overwritten function seen in _*parent-class:*_
> !image-2020-07-28-13-02-07-177.png|width=582,height=318!
>  Overwritten function in _*parent-class*_ NOT seen when using an alias for 
> the namespace
>    !image-2020-07-28-13-04-10-932.png|width=536,height=275!
> Codecompletion working when parentclass has override-function with 
> alias-namespace
> !image-2020-07-28-13-10-46-227.png|width=582,height=290!
>  
> No codecompletion after removing the function in the parent-class
> !image-2020-07-28-13-11-45-910.png|width=571,height=236!
> Correct Code completion with Alias and function:
> !image-2020-07-28-13-15-11-891.png|width=566,height=229!
>  
>  No Codecompletion with alias in childclass, alias in first-parent removed 
> and function removed:
> !image-2020-07-28-13-17-15-567.png|width=705,height=308!
>  
> While writing this issue I found the difference when having an overridden 
> function or not
> some code:
>   
> {code:php}
> namespace rh\data\listdata;
> use rh\data\data\Data;
> use rh\data\listdata\ListInterface;
> class ListData extends Data implements ListInterface{
>   public function getListIds(){
> // netbeans does not see that it is extended by 
> \sales\product\record\ListRecord
>   }
> }
> {code}
> {code:php}
> namespace rhAdmin\sales\product\record\ListRecord;
> use rh\data\listdata\ListData;
> class ListRecord extends ListData{
> }
> {code}
> {code:php}
> namespace sales\product\record;
> use rhAdmin\sales\product\record\ListRecord as rhBase;
> class ListRecord extends rhBase{
>   public function otherTest(){
> // when start typing '$this->' the items from the parent-classes are not 
> seen/shown by netbeans
>   }
> }
> {code}
>  
>  
>  
>  
> I hope someone can reproduce this or tell me what I am doing wrong.
>  Sorry for my female complaints :P
> Still hoping someone can help. 
> flexjoly
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion in php broken? (alias and namespaces)

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

-I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report.- 
 -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 

edit: i split my post in separate issues
 * https://issues.apache.org/jira/browse/NETBEANS-4650
 * https://issues.apache.org/jira/browse/NETBEANS-4649
 * https://issues.apache.org/jira/browse/NETBEANS-4648

 

 
h3. Codecompletion with namespace, aliases and extends

 

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

Extend class seen in parent-class:
!image-2020-07-28-14-43-06-810.png|width=650,height=345!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Extend class not seen in parent-class when using an alias as namespace
!image-2020-07-28-14-41-38-480.png|width=650,height=346!

Codecompletion working when parentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Correct Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 No Codecompletion with alias in childclass, alias in first-parent removed and 
function removed:

!image-2020-07-28-13-17-15-567.png|width=705,height=308!

 

While writing this issue I found the difference when having an overridden 
function or not

some code:

  
{code:php}
namespace rh\data\listdata;
use rh\data\data\Data;
use rh\data\listdata\ListInterface;

class ListData extends Data implements ListInterface{
  public function getListIds(){
// netbeans does not see that it is extended by 
\sales\product\record\ListRecord
  }
}
{code}
{code:php}
namespace rhAdmin\sales\product\record\ListRecord;
use rh\data\listdata\ListData;

class ListRecord extends ListData{

}
{code}
{code:php}
namespace sales\product\record;
use rhAdmin\sales\product\record\ListRecord as rhBase;

class ListRecord extends rhBase{
  public function otherTest(){
// when start typing '$this->' the items from the parent-classes are not 
seen/shown by netbeans
  }
}

{code}
 

 

 

 

I hope someone can reproduce this or tell me what I am doing wrong.
 Sorry for my female complaints :P

Still hoping someone can help. 

flexjoly

 

 

 

 

  was:
 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

-I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report.- 
 -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 

edit: i split my post in separate issues
 * https://issues.apache.org/jira/browse/NETBEANS-4650
 * https://issues.apache.org/jira/browse/NETBEANS-4649
 * https://issues.apache.org/jira/browse/NETBEANS-4648

 

 
h3. Codecompletion with namespace, aliases and extends

 

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working when parentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Correct Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 No Codecompletion with alias in childclass, alias in first-parent removed and 
function removed:

!image-2020-07-28-13-17-15-567.png|width=705,height=308!

 

While writing this issue I found the difference when having an overridden 
function or not


[jira] [Updated] (NETBEANS-4647) Autocompletion in php broken? (alias and namespaces)

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: image-2020-07-28-14-41-38-480.png

> Autocompletion in php broken? (alias and namespaces)
> 
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png, 
> image-2020-07-28-13-11-45-910.png, image-2020-07-28-13-15-11-891.png, 
> image-2020-07-28-13-17-15-567.png, image-2020-07-28-13-21-36-907.png, 
> image-2020-07-28-13-22-37-962.png, image-2020-07-28-13-24-10-223.png, 
> image-2020-07-28-14-41-38-480.png
>
>
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> -I know one jira-issue should only have ONE topic and purpose. But I have the 
> feeling that php does not have much priority. And some of my previous 
> reports/requests did not get any attention. So first I want to know if what I 
> say below wil get any priority before taking much time to make a detailed 
> report.- 
>  -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 
> edit: i split my post in separate issues
>  * https://issues.apache.org/jira/browse/NETBEANS-4650
>  * https://issues.apache.org/jira/browse/NETBEANS-4649
>  * https://issues.apache.org/jira/browse/NETBEANS-4648
>  
>  
> h3. Codecompletion with namespace, aliases and extends
>  
> Overwritten function seen in _*parent-class:*_
> !image-2020-07-28-13-02-07-177.png|width=582,height=318!
>  Overwritten function in _*parent-class*_ NOT seen when using an alias for 
> the namespace
>    !image-2020-07-28-13-04-10-932.png|width=536,height=275!
> Codecompletion working when parentclass has override-function with 
> alias-namespace
> !image-2020-07-28-13-10-46-227.png|width=582,height=290!
>  
> No codecompletion after removing the function in the parent-class
> !image-2020-07-28-13-11-45-910.png|width=571,height=236!
> Correct Code completion with Alias and function:
> !image-2020-07-28-13-15-11-891.png|width=566,height=229!
>  
>  No Codecompletion with alias in childclass, alias in first-parent removed 
> and function removed:
> !image-2020-07-28-13-17-15-567.png|width=705,height=308!
>  
> While writing this issue I found the difference when having an overridden 
> function or not
> some code:
>   
> {code:php}
> namespace rh\data\listdata;
> use rh\data\data\Data;
> use rh\data\listdata\ListInterface;
> class ListData extends Data implements ListInterface{
>   public function getListIds(){
> // netbeans does not see that it is extended by 
> \sales\product\record\ListRecord
>   }
> }
> {code}
> {code:php}
> namespace rhAdmin\sales\product\record\ListRecord;
> use rh\data\listdata\ListData;
> class ListRecord extends ListData{
> }
> {code}
> {code:php}
> namespace sales\product\record;
> use rhAdmin\sales\product\record\ListRecord as rhBase;
> class ListRecord extends rhBase{
>   public function otherTest(){
> // when start typing '$this->' the items from the parent-classes are not 
> seen/shown by netbeans
>   }
> }
> {code}
>  
>  
>  
>  
> I hope someone can reproduce this or tell me what I am doing wrong.
>  Sorry for my female complaints :P
> Still hoping someone can help. 
> flexjoly
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion in php broken? (alias and namespaces)

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

-I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report.- 
 -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 

edit: i split my post in separate issues
 * https://issues.apache.org/jira/browse/NETBEANS-4650
 * https://issues.apache.org/jira/browse/NETBEANS-4649
 * https://issues.apache.org/jira/browse/NETBEANS-4648

 

 
h3. Codecompletion with namespace, aliases and extends

 

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working when parentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Correct Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 No Codecompletion with alias in childclass, alias in first-parent removed and 
function removed:

!image-2020-07-28-13-17-15-567.png|width=705,height=308!

 

While writing this issue I found the difference when having an overridden 
function or not

some code:

  
{code:php}
namespace rh\data\listdata;
use rh\data\data\Data;
use rh\data\listdata\ListInterface;

class ListData extends Data implements ListInterface{
  public function getListIds(){
// netbeans does not see that it is extended by 
\sales\product\record\ListRecord
  }
}
{code}
{code:php}
namespace rhAdmin\sales\product\record\ListRecord;
use rh\data\listdata\ListData;

class ListRecord extends ListData{

}
{code}
{code:php}
namespace sales\product\record;
use rhAdmin\sales\product\record\ListRecord as rhBase;

class ListRecord extends rhBase{
  public function otherTest(){
// when start typing '$this->' the items from the parent-classes are not 
seen/shown by netbeans
  }
}

{code}
 

 

 

 

I hope someone can reproduce this or tell me what I am doing wrong.
 Sorry for my female complaints :P

Still hoping someone can help. 

flexjoly

 

 

 

 

  was:
 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

-I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report.- 
 -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 

edit: i split my post in separate issues
 * https://issues.apache.org/jira/browse/NETBEANS-4650
 * https://issues.apache.org/jira/browse/NETBEANS-4649
 * https://issues.apache.org/jira/browse/NETBEANS-4648

 

 
h3. Codecompletion with namespace, aliases and extends

 

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working whenparentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 Codecompletion with alias in childclass, alias in first-parent removed and 
function removed:

!image-2020-07-28-13-17-15-567.png|width=705,height=308!

 

While writing this issue I found the difference when having an overridden 
function or not

some code:

  
{code:php}
namespace rh\data\listdata;
use rh\data\data\Data;
use rh\data\listdata\ListInterface;

class ListData extends Data implements ListInterface{
  public function getListIds(){
// netbeans does not see that 

[jira] [Updated] (NETBEANS-4647) Autocompletion in php broken? (alias and namespaces)

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

-I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report.- 
 -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 

edit: i split my post in separate issues
 * https://issues.apache.org/jira/browse/NETBEANS-4650
 * https://issues.apache.org/jira/browse/NETBEANS-4649
 * https://issues.apache.org/jira/browse/NETBEANS-4648

 

 
h3. Codecompletion with namespace, aliases and extends

 

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working whenparentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 Codecompletion with alias in childclass, alias in first-parent removed and 
function removed:

!image-2020-07-28-13-17-15-567.png|width=705,height=308!

 

While writing this issue I found the difference when having an overridden 
function or not

some code:

  
{code:php}
namespace rh\data\listdata;
use rh\data\data\Data;
use rh\data\listdata\ListInterface;

class ListData extends Data implements ListInterface{
  public function getListIds(){
// netbeans does not see that it is extended by 
\sales\product\record\ListRecord
  }
}
{code}
{code:php}
namespace rhAdmin\sales\product\record\ListRecord;
use rh\data\listdata\ListData;

class ListRecord extends ListData{

}
{code}
{code:php}
namespace sales\product\record;
use rhAdmin\sales\product\record\ListRecord as rhBase;

class ListRecord extends rhBase{
  public function otherTest(){
// when start typing '$this->' the items from the parent-classes are not 
seen/shown by netbeans
  }
}

{code}
 

 

 

 

I hope someone can reproduce this or tell me what I am doing wrong.
 Sorry for my female complaints :P

Still hoping someone can help. 

flexjoly

 

 

 

 

  was:
 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

-I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report.- 
 -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 

edit: i split my post in separate issues
 * https://issues.apache.org/jira/browse/NETBEANS-4650
 * https://issues.apache.org/jira/browse/NETBEANS-4649
 * https://issues.apache.org/jira/browse/NETBEANS-4648

 

 
h3. Codecompletion with namespace, aliases and extends

 

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working whenparentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 Codecompletion with alias in childclass, alias in first-parent removed and 
function removed:

!image-2020-07-28-13-17-15-567.png|width=705,height=308!

 

While writing this issue I found the difference when having an overridden 
function or not

some code:

 
{code:php}
namespace rhAdmin\sales\product\record\ListRecord;

class ListRecord{
  protected $myProp = 'test';
  public function myTest(){
  }
}
{code}
{code:php}
namespace sales\product\record;
use 

[jira] [Updated] (NETBEANS-4647) Autocompletion in php broken? (alias and namespaces)

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

-I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report.- 
 -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 

edit: i split my post in separate issues
 * https://issues.apache.org/jira/browse/NETBEANS-4650
 * https://issues.apache.org/jira/browse/NETBEANS-4649
 * https://issues.apache.org/jira/browse/NETBEANS-4648

 

 
h3. Codecompletion with namespace, aliases and extends

 

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working whenparentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 Codecompletion with alias in childclass, alias in first-parent removed and 
function removed:

!image-2020-07-28-13-17-15-567.png|width=705,height=308!

 

While writing this issue I found the difference when having an overridden 
function or not

some code:

 
{code:php}
namespace rhAdmin\sales\product\record\ListRecord;

class ListRecord{
  protected $myProp = 'test';
  public function myTest(){
  }
}
{code}
{code:php}
namespace sales\product\record;
use rhAdmin\sales\product\record\ListRecord as rhBase;

class ListRecord extends rhBase{
  public function otherTest(){
// when start typing '$this->' the items from the parent-class are not seen 
by netbeans
  }
}

{code}
 

 

 

 

I hope someone can reproduce this or tell me what I am doing wrong.
 Sorry for my female complaints :P

Still hoping someone can help. 

flexjoly

 

 

 

 

  was:
 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

-I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report.- 
 -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 

edit: i split my post in separate issues
 * https://issues.apache.org/jira/browse/NETBEANS-4650
 * https://issues.apache.org/jira/browse/NETBEANS-4649
 * https://issues.apache.org/jira/browse/NETBEANS-4648

 

 
h3. Codecompletion with namespace, aliases and extends

 

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working whenparentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 Codecompletion with alias in childclass, alias in first-parent removed and 
function removed:

!image-2020-07-28-13-17-15-567.png|width=705,height=308!

 

While writing this issue I found the difference when having an overridden 
function or not

some code:

 
{code:php}
namespace rhAdmin\sales\product\record\ListRecord;

class ListRecord{
  protected $myProp = 'test';
  public function myTest(){
  }
}
{code}
{code:php}
namespace sales\product\record;
use rhAdmin\sales\product\record\ListRecord as rhBase;

class ListRecord extends rhBase{
  // when start typing '$this->' the items from the parent-class are not seen 
by netbeans
}

{code}
 

 

 

 

I hope someone can reproduce this or tell me what I am doing wrong.
 Sorry for my female complaints :P

Still 

[jira] [Updated] (NETBEANS-4647) Autocompletion in php broken? (alias and namespaces)

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

-I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report.- 
 -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 

edit: i split my post in separate issues
 * https://issues.apache.org/jira/browse/NETBEANS-4650
 * https://issues.apache.org/jira/browse/NETBEANS-4649
 * https://issues.apache.org/jira/browse/NETBEANS-4648

 

 
h3. Codecompletion with namespace, aliases and extends

 

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working whenparentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 Codecompletion with alias in childclass, alias in first-parent removed and 
function removed:

!image-2020-07-28-13-17-15-567.png|width=705,height=308!

 

While writing this issue I found the difference when having an overridden 
function or not

some code:

 
{code:php}
namespace rhAdmin\sales\product\record\ListRecord;

class ListRecord{
  protected $myProp = 'test';
  public function myTest(){
  }
}
{code}
{code:php}
namespace sales\product\record;
use rhAdmin\sales\product\record\ListRecord as rhBase;

class ListRecord extends rhBase{
  // when start typing '$this->' the items from the parent-class are not seen 
by netbeans
}

{code}
 

 

 

 

I hope someone can reproduce this or tell me what I am doing wrong.
 Sorry for my female complaints :P

Still hoping someone can help. 

flexjoly

 

 

 

 

  was:
 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

-I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report.- 
 -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 

edit: i split my post in separate issues
 * https://issues.apache.org/jira/browse/NETBEANS-4650
 * https://issues.apache.org/jira/browse/NETBEANS-4649
 * https://issues.apache.org/jira/browse/NETBEANS-4648

 

 
h3. Codecompletion with namespace, aliases and extends

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working whenparentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 Codecompletion with alias in childclass, alias in first-parent removed and 
function removed:

!image-2020-07-28-13-17-15-567.png|width=705,height=308!

 

While writing this issue I found the difference when having an overridden 
function or not

 

I hope someone can reproduce this or tell me what I am doing wrong.
 Sorry for my female complaints :P

Still hoping someone can help. 

flexjoly

 

 

 

 


> Autocompletion in php broken? (alias and namespaces)
> 
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 

[jira] [Updated] (NETBEANS-4647) Autocompletion in php broken? (alias and namespaces)

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Summary: Autocompletion in php broken? (alias and namespaces)  (was: 
Autocompletion in php broken? )

> Autocompletion in php broken? (alias and namespaces)
> 
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png, 
> image-2020-07-28-13-11-45-910.png, image-2020-07-28-13-15-11-891.png, 
> image-2020-07-28-13-17-15-567.png, image-2020-07-28-13-21-36-907.png, 
> image-2020-07-28-13-22-37-962.png, image-2020-07-28-13-24-10-223.png
>
>
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> -I know one jira-issue should only have ONE topic and purpose. But I have the 
> feeling that php does not have much priority. And some of my previous 
> reports/requests did not get any attention. So first I want to know if what I 
> say below wil get any priority before taking much time to make a detailed 
> report.- 
>  -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 
> edit: i split my post in separate issues
>  * https://issues.apache.org/jira/browse/NETBEANS-4650
>  * https://issues.apache.org/jira/browse/NETBEANS-4649
>  * https://issues.apache.org/jira/browse/NETBEANS-4648
>  
>  
> h3. Codecompletion with namespace, aliases and extends
> Overwritten function seen in _*parent-class:*_
> !image-2020-07-28-13-02-07-177.png|width=582,height=318!
>  Overwritten function in _*parent-class*_ NOT seen when using an alias for 
> the namespace
>    !image-2020-07-28-13-04-10-932.png|width=536,height=275!
> Codecompletion working whenparentclass has override-function with 
> alias-namespace
> !image-2020-07-28-13-10-46-227.png|width=582,height=290!
>  
> No codecompletion after removing the function in the parent-class
> !image-2020-07-28-13-11-45-910.png|width=571,height=236!
> Code completion with Alias and function:
> !image-2020-07-28-13-15-11-891.png|width=566,height=229!
>  
>  Codecompletion with alias in childclass, alias in first-parent removed and 
> function removed:
> !image-2020-07-28-13-17-15-567.png|width=705,height=308!
>  
> While writing this issue I found the difference when having an overridden 
> function or not
>  
> I hope someone can reproduce this or tell me what I am doing wrong.
>  Sorry for my female complaints :P
> Still hoping someone can help. 
> flexjoly
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken? And so slowwww

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

-I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report.- 
 -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 

edit: i split my post in separate issues
 * https://issues.apache.org/jira/browse/NETBEANS-4650
 * https://issues.apache.org/jira/browse/NETBEANS-4649
 * https://issues.apache.org/jira/browse/NETBEANS-4648

 

 
h3. Codecompletion with namespace, aliases and extends

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working whenparentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 Codecompletion with alias in childclass, alias in first-parent removed and 
function removed:

!image-2020-07-28-13-17-15-567.png|width=705,height=308!

 

While writing this issue I found the difference when having an overridden 
function or not

 

I hope someone can reproduce this or tell me what I am doing wrong.
 Sorry for my female complaints :P

Still hoping someone can help. 

flexjoly

 

 

 

 

  was:
 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

-I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report.- 
 -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 

edit: i made split my post in separate issues
 * https://issues.apache.org/jira/browse/NETBEANS-4650
 * https://issues.apache.org/jira/browse/NETBEANS-4649
 * https://issues.apache.org/jira/browse/NETBEANS-4648

 

 
h3. Codecompletion with namespace, aliases and extends

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working whenparentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 Codecompletion with alias in childclass, alias in first-parent removed and 
function removed:

!image-2020-07-28-13-17-15-567.png|width=705,height=308!

 

While writing this issue I found the difference when having an overridden 
function or not

 

I hope someone can reproduce this or tell me what I am doing wrong.
 Sorry for my female complaints :P

Still hoping someone can help. 

flexjoly

 

 

 

 


> Autocompletion etc in php broken? And so slo
> 
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png, 
> image-2020-07-28-13-11-45-910.png, image-2020-07-28-13-15-11-891.png, 
> image-2020-07-28-13-17-15-567.png, image-2020-07-28-13-21-36-907.png, 
> 

[jira] [Updated] (NETBEANS-4647) Autocompletion in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Summary: Autocompletion in php broken?   (was: Autocompletion etc in php 
broken? And so slo)

> Autocompletion in php broken? 
> --
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png, 
> image-2020-07-28-13-11-45-910.png, image-2020-07-28-13-15-11-891.png, 
> image-2020-07-28-13-17-15-567.png, image-2020-07-28-13-21-36-907.png, 
> image-2020-07-28-13-22-37-962.png, image-2020-07-28-13-24-10-223.png
>
>
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> -I know one jira-issue should only have ONE topic and purpose. But I have the 
> feeling that php does not have much priority. And some of my previous 
> reports/requests did not get any attention. So first I want to know if what I 
> say below wil get any priority before taking much time to make a detailed 
> report.- 
>  -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 
> edit: i split my post in separate issues
>  * https://issues.apache.org/jira/browse/NETBEANS-4650
>  * https://issues.apache.org/jira/browse/NETBEANS-4649
>  * https://issues.apache.org/jira/browse/NETBEANS-4648
>  
>  
> h3. Codecompletion with namespace, aliases and extends
> Overwritten function seen in _*parent-class:*_
> !image-2020-07-28-13-02-07-177.png|width=582,height=318!
>  Overwritten function in _*parent-class*_ NOT seen when using an alias for 
> the namespace
>    !image-2020-07-28-13-04-10-932.png|width=536,height=275!
> Codecompletion working whenparentclass has override-function with 
> alias-namespace
> !image-2020-07-28-13-10-46-227.png|width=582,height=290!
>  
> No codecompletion after removing the function in the parent-class
> !image-2020-07-28-13-11-45-910.png|width=571,height=236!
> Code completion with Alias and function:
> !image-2020-07-28-13-15-11-891.png|width=566,height=229!
>  
>  Codecompletion with alias in childclass, alias in first-parent removed and 
> function removed:
> !image-2020-07-28-13-17-15-567.png|width=705,height=308!
>  
> While writing this issue I found the difference when having an overridden 
> function or not
>  
> I hope someone can reproduce this or tell me what I am doing wrong.
>  Sorry for my female complaints :P
> Still hoping someone can help. 
> flexjoly
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken? And so slowwww

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

-I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report.- 
 -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 

edit: i made split my post in separate issues
 * https://issues.apache.org/jira/browse/NETBEANS-4650
 * https://issues.apache.org/jira/browse/NETBEANS-4649
 * https://issues.apache.org/jira/browse/NETBEANS-4648

 

 
h3. Codecompletion with namespace, aliases and extends

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working whenparentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 Codecompletion with alias in childclass, alias in first-parent removed and 
function removed:

!image-2020-07-28-13-17-15-567.png|width=705,height=308!

 

While writing this issue I found the difference when having an overridden 
function or not

 

I hope someone can reproduce this or tell me what I am doing wrong.
 Sorry for my female complaints :P

Still hoping someone can help. 

flexjoly

 

 

 

 

  was:
 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

-I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report.- 
 -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 

edit: i made split my post in separate issues
h3. Slow

It is getting slower and slower. At least after a installing a new version of 
netbeans. Then scanning the projects can go on for more then an hour, slowing 
down the editor. 

 

 

Below 2 other issues with details.
h3. Codecompletion with namespace, aliases and extends

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working whenparentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 Codecompletion with alias in childclass, alias in first-parent removed and 
function removed:

!image-2020-07-28-13-17-15-567.png|width=705,height=308!

 

While writing this issue I found the difference when having an overridden 
function or not
h3. Codecompletion on traits

trait found:

!image-2020-07-28-13-21-36-907.png|width=405,height=301!

Trait not found in use list: (this part needs a fix I think)

!image-2020-07-28-13-22-37-962.png|width=427,height=232!

 trait recognized in uselist and inside class

!image-2020-07-28-13-24-10-223.png!

 

I hope someone can reproduce this or tell me what I am doing wrong.
 Sorry for my female complaints :P

Still hoping someone can help. 

flexjoly

 

 

 

 


> Autocompletion etc in php broken? And so slo
> 
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly

[jira] [Updated] (NETBEANS-4648) Git very slow

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4648?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4648:
---
Description: 
*Pulling in git* (and some other git actions) takes s much time in 
netbeans. It looks like it is reading/checking the whole branche again.

When I need a quicker pull... I open the git-client, and do the pulling there 
and then synchronizing the branche in netbeans.

Then netbeans is ready, real quick.

It is really annyoing and not-logic that pulling by netbeans takes much more 
time (sometimes more then a minute) then with my workaround.

Also it can take 1 or more minutes before a changed file comes up in the 
git-show-changes So I always select the file(s) and right-click to commit 
which mostly works faster.

 
h3. Slow

I find Netbeans is getting slower and slower. At least after a installing a new 
version of netbeans. Then scanning the projects can go on for more then an 
hour, slowing down the editor. 

  was:
*Pulling in git* (and some other git actions) takes s much time in 
netbeans. It looks like it is reading/checking the whole branche again.

When I need a quicker pull... I open the git-client, and do the pulling there 
and then synchronizing the branche in netbeans.

Then netbeans is ready, real quick.

It is really annyoing and not-logic that pulling by netbeans takes much more 
time (sometimes more then a minute) then with my workaround.

Also it can take 1 or more minutes before a changed file comes up in the 
git-show-changes So I always select the file(s) and right-click to commit 
which mostly works faster.


> Git very slow
> -
>
> Key: NETBEANS-4648
> URL: https://issues.apache.org/jira/browse/NETBEANS-4648
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Editor, versioncontrol - Git
>Affects Versions: 12.0, 11.3
> Environment: window 10 64bit
>Reporter: flexJoly
>Priority: Major
>
> *Pulling in git* (and some other git actions) takes s much time in 
> netbeans. It looks like it is reading/checking the whole branche again.
> When I need a quicker pull... I open the git-client, and do the pulling there 
> and then synchronizing the branche in netbeans.
> Then netbeans is ready, real quick.
> It is really annyoing and not-logic that pulling by netbeans takes much more 
> time (sometimes more then a minute) then with my workaround.
> Also it can take 1 or more minutes before a changed file comes up in the 
> git-show-changes So I always select the file(s) and right-click to commit 
> which mostly works faster.
>  
> h3. Slow
> I find Netbeans is getting slower and slower. At least after a installing a 
> new version of netbeans. Then scanning the projects can go on for more then 
> an hour, slowing down the editor. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-4650) PHP: Codecompletion on traits

2020-07-28 Thread flexJoly (Jira)
flexJoly created NETBEANS-4650:
--

 Summary: PHP: Codecompletion on traits
 Key: NETBEANS-4650
 URL: https://issues.apache.org/jira/browse/NETBEANS-4650
 Project: NetBeans
  Issue Type: Bug
  Components: php - Code
Affects Versions: 11.3, 12.0
Reporter: flexJoly


h3.  

trait found:

!image-2020-07-28-13-21-36-907.png|width=405,height=301!

Trait not found in use list: (this part needs a fix I think)

!image-2020-07-28-13-22-37-962.png|width=427,height=232!

 trait recognized in uselist and inside class

!image-2020-07-28-13-24-10-223.png!

 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken? And so slowwww

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

-I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report.- 
 -Sorry!!! But I am really getting disappointed on netbeans :( and desperate- 

edit: i made split my post in separate issues
h3. Slow

It is getting slower and slower. At least after a installing a new version of 
netbeans. Then scanning the projects can go on for more then an hour, slowing 
down the editor. 

 

 

Below 2 other issues with details.
h3. Codecompletion with namespace, aliases and extends

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working whenparentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 Codecompletion with alias in childclass, alias in first-parent removed and 
function removed:

!image-2020-07-28-13-17-15-567.png|width=705,height=308!

 

While writing this issue I found the difference when having an overridden 
function or not
h3. Codecompletion on traits

trait found:

!image-2020-07-28-13-21-36-907.png|width=405,height=301!

Trait not found in use list: (this part needs a fix I think)

!image-2020-07-28-13-22-37-962.png|width=427,height=232!

 trait recognized in uselist and inside class

!image-2020-07-28-13-24-10-223.png!

 

I hope someone can reproduce this or tell me what I am doing wrong.
 Sorry for my female complaints :P

Still hoping someone can help. 

flexjoly

 

 

 

 

  was:
 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report. 
 Sorry!!! But I am really getting disappointed on netbeans :( and desperate 
h3. Slow

It is getting slower and slower. At least after a installing a new version of 
netbeans. Then scanning the projects can go on for more then an hour, slowing 
down the editor. 

*Pulling in git* takes s much time in netbeans. It looks like it is 
reading/checking the whole branche again. When I need a quicker pull... I open 
the git-client, and do the pulling there and then synchronizing the branche in 
netbeans. Then netbeans is ready real quick. It is really annyoing and 
not-logic that pulling by netbeans takes much more time (sometimes more then a 
minute) then with my workaround.
 Also it can take 1 or more minutes before a changed file comes up in the 
git-show-changes So I always select the file(s) and right-click to commit 
which mostly works faster.

*Plain php-html template*

My trigger to try if reporting will help is: codecompletion for a plain 
php-html template. We normally use Smarty. But we are exploring of having our 
own template engine (togeter with smarty for now)

So I made a file: *orderlist.tpl.php*

That works ok. But I tried to make a code-template: for '' . I 
tried to put it in: php, html, plain text etc.
 Should be easy and it is. But really it WON'T show up in the code.

I tried .phtml and other extensions. Tried to change the file-type in the 
options to: text/x-php, html, template etc

See: 
[https://netbeans.apache.org/kb/docs/php/code-templates.html#_use_case_inserting_php_into_html]
 I cannot get this to work

In utter desperation I made my first macro in netbeans (never needed it before) 
and that works very nice (should have done this before :D) but every macro 
needs an shorcut to work. pppfff

Below 2 other issues with details.
h3. Codecompletion with 

[jira] [Created] (NETBEANS-4649) Codecompletion in Plain php-html template

2020-07-28 Thread flexJoly (Jira)
flexJoly created NETBEANS-4649:
--

 Summary: Codecompletion in Plain php-html template
 Key: NETBEANS-4649
 URL: https://issues.apache.org/jira/browse/NETBEANS-4649
 Project: NetBeans
  Issue Type: Bug
  Components: editor - Completion  Templates, php - Code, web - 
HTML Editor
Reporter: flexJoly
 Fix For: 11.3, 12.0


We normally use Smarty. But we are exploring of having our own template engine 
(togeter with smarty for now)

So I made a file: *orderlist.tpl.php*

That works ok. But I tried to make a code-template: for '' . I 
tried to put it in: php, html, plain text etc.
 Should be easy and it is. But really it WON'T show up in the code.

I tried .phtml and other extensions. Tried to change the file-type in the 
options to: text/x-php, html, template etc

See: 
[https://netbeans.apache.org/kb/docs/php/code-templates.html#_use_case_inserting_php_into_html]
 I cannot get this to work

In utter desperation I made my first macro in netbeans (never needed it before) 
and that works very nice (should have done this before :D) but every macro 
needs an shorcut to work. pppfff



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4648) Git very slow

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4648?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4648:
---
Description: 
*Pulling in git* (and some other git actions) takes s much time in 
netbeans. It looks like it is reading/checking the whole branche again.

When I need a quicker pull... I open the git-client, and do the pulling there 
and then synchronizing the branche in netbeans.

Then netbeans is ready, real quick.

It is really annyoing and not-logic that pulling by netbeans takes much more 
time (sometimes more then a minute) then with my workaround.

Also it can take 1 or more minutes before a changed file comes up in the 
git-show-changes So I always select the file(s) and right-click to commit 
which mostly works faster.

  was:
*Pulling in git* takes s much time in netbeans. It looks like it is 
reading/checking the whole branche again.

When I need a quicker pull... I open the git-client, and do the pulling there 
and then synchronizing the branche in netbeans.

Then netbeans is ready, real quick.

It is really annyoing and not-logic that pulling by netbeans takes much more 
time (sometimes more then a minute) then with my workaround.

Also it can take 1 or more minutes before a changed file comes up in the 
git-show-changes So I always select the file(s) and right-click to commit 
which mostly works faster.


> Git very slow
> -
>
> Key: NETBEANS-4648
> URL: https://issues.apache.org/jira/browse/NETBEANS-4648
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Editor, versioncontrol - Git
>Affects Versions: 12.0, 11.3
> Environment: window 10 64bit
>Reporter: flexJoly
>Priority: Major
>
> *Pulling in git* (and some other git actions) takes s much time in 
> netbeans. It looks like it is reading/checking the whole branche again.
> When I need a quicker pull... I open the git-client, and do the pulling there 
> and then synchronizing the branche in netbeans.
> Then netbeans is ready, real quick.
> It is really annyoing and not-logic that pulling by netbeans takes much more 
> time (sometimes more then a minute) then with my workaround.
> Also it can take 1 or more minutes before a changed file comes up in the 
> git-show-changes So I always select the file(s) and right-click to commit 
> which mostly works faster.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-4648) Git very slow

2020-07-28 Thread flexJoly (Jira)
flexJoly created NETBEANS-4648:
--

 Summary: Git very slow
 Key: NETBEANS-4648
 URL: https://issues.apache.org/jira/browse/NETBEANS-4648
 Project: NetBeans
  Issue Type: Improvement
  Components: php - Editor, versioncontrol - Git
Affects Versions: 11.3, 12.0
 Environment: window 10 64bit
Reporter: flexJoly


*Pulling in git* takes s much time in netbeans. It looks like it is 
reading/checking the whole branche again.

When I need a quicker pull... I open the git-client, and do the pulling there 
and then synchronizing the branche in netbeans.

Then netbeans is ready, real quick.

It is really annyoing and not-logic that pulling by netbeans takes much more 
time (sometimes more then a minute) then with my workaround.

Also it can take 1 or more minutes before a changed file comes up in the 
git-show-changes So I always select the file(s) and right-click to commit 
which mostly works faster.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-4647) Autocompletion etc in php broken? And so slowwww

2020-07-28 Thread flexJoly (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17166373#comment-17166373
 ] 

flexJoly commented on NETBEANS-4647:


yeah i know...
ok i will

> Autocompletion etc in php broken? And so slo
> 
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png, 
> image-2020-07-28-13-11-45-910.png, image-2020-07-28-13-15-11-891.png, 
> image-2020-07-28-13-17-15-567.png, image-2020-07-28-13-21-36-907.png, 
> image-2020-07-28-13-22-37-962.png, image-2020-07-28-13-24-10-223.png
>
>
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> I know one jira-issue should only have ONE topic and purpose. But I have the 
> feeling that php does not have much priority. And some of my previous 
> reports/requests did not get any attention. So first I want to know if what I 
> say below wil get any priority before taking much time to make a detailed 
> report. 
>  Sorry!!! But I am really getting disappointed on netbeans :( and desperate 
> h3. Slow
> It is getting slower and slower. At least after a installing a new version of 
> netbeans. Then scanning the projects can go on for more then an hour, slowing 
> down the editor. 
> *Pulling in git* takes s much time in netbeans. It looks like it is 
> reading/checking the whole branche again. When I need a quicker pull... I 
> open the git-client, and do the pulling there and then synchronizing the 
> branche in netbeans. Then netbeans is ready real quick. It is really annyoing 
> and not-logic that pulling by netbeans takes much more time (sometimes more 
> then a minute) then with my workaround.
>  Also it can take 1 or more minutes before a changed file comes up in the 
> git-show-changes So I always select the file(s) and right-click to commit 
> which mostly works faster.
> *Plain php-html template*
> My trigger to try if reporting will help is: codecompletion for a plain 
> php-html template. We normally use Smarty. But we are exploring of having our 
> own template engine (togeter with smarty for now)
> So I made a file: *orderlist.tpl.php*
> That works ok. But I tried to make a code-template: for '' . 
> I tried to put it in: php, html, plain text etc.
>  Should be easy and it is. But really it WON'T show up in the code.
> I tried .phtml and other extensions. Tried to change the file-type in the 
> options to: text/x-php, html, template etc
> See: 
> [https://netbeans.apache.org/kb/docs/php/code-templates.html#_use_case_inserting_php_into_html]
>  I cannot get this to work
> In utter desperation I made my first macro in netbeans (never needed it 
> before) and that works very nice (should have done this before :D) but every 
> macro needs an shorcut to work. pppfff
> 
> Below 2 other issues with details.
> h3. Codecompletion with namespace, aliases and extends
> Overwritten function seen in _*parent-class:*_
> !image-2020-07-28-13-02-07-177.png|width=582,height=318!
>  Overwritten function in _*parent-class*_ NOT seen when using an alias for 
> the namespace
>    !image-2020-07-28-13-04-10-932.png|width=536,height=275!
> Codecompletion working whenparentclass has override-function with 
> alias-namespace
> !image-2020-07-28-13-10-46-227.png|width=582,height=290!
>  
> No codecompletion after removing the function in the parent-class
> !image-2020-07-28-13-11-45-910.png|width=571,height=236!
> Code completion with Alias and function:
> !image-2020-07-28-13-15-11-891.png|width=566,height=229!
>  
>  Codecompletion with alias in childclass, alias in first-parent removed and 
> function removed:
> !image-2020-07-28-13-17-15-567.png|width=705,height=308!
>  
> While writing this issue I found the difference when having an overridden 
> function or not
> h3. Codecompletion on traits
> trait found:
> !image-2020-07-28-13-21-36-907.png|width=405,height=301!
> Trait not found in use list: (this part needs a fix I think)
> !image-2020-07-28-13-22-37-962.png|width=427,height=232!
>  trait recognized in uselist and inside class
> !image-2020-07-28-13-24-10-223.png!
>  
> I hope someone can reproduce this or tell me what I am doing wrong.
>  Sorry for my female complaints :P
> Still hoping 

[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken? And so slowwww

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Summary: Autocompletion etc in php broken? And so slo  (was: 
Autocompletion etc in php broken?)

> Autocompletion etc in php broken? And so slo
> 
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png, 
> image-2020-07-28-13-11-45-910.png, image-2020-07-28-13-15-11-891.png, 
> image-2020-07-28-13-17-15-567.png, image-2020-07-28-13-21-36-907.png, 
> image-2020-07-28-13-22-37-962.png, image-2020-07-28-13-24-10-223.png
>
>
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> I know one jira-issue should only have ONE topic and purpose. But I have the 
> feeling that php does not have much priority. And some of my previous 
> reports/requests did not get any attention. So first I want to know if what I 
> say below wil get any priority before taking much time to make a detailed 
> report. 
>  Sorry!!! But I am really getting disappointed on netbeans :( and desperate 
> h3. Slow
> It is getting slower and slower. At least after a installing a new version of 
> netbeans. Then scanning the projects can go on for more then an hour, slowing 
> down the editor. 
> *Pulling in git* takes s much time in netbeans. It looks like it is 
> reading/checking the whole branche again. When I need a quicker pull... I 
> open the git-client, and do the pulling there and then synchronizing the 
> branche in netbeans. Then netbeans is ready real quick. It is really annyoing 
> and not-logic that pulling by netbeans takes much more time (sometimes more 
> then a minute) then with my workaround.
>  Also it can take 1 or more minutes before a changed file comes up in the 
> git-show-changes So I always select the file(s) and right-click to commit 
> which mostly works faster.
> *Plain php-html template*
> My trigger to try if reporting will help is: codecompletion for a plain 
> php-html template. We normally use Smarty. But we are exploring of having our 
> own template engine (togeter with smarty for now)
> So I made a file: *orderlist.tpl.php*
> That works ok. But I tried to make a code-template: for '' . 
> I tried to put it in: php, html, plain text etc.
>  Should be easy and it is. But really it WON'T show up in the code.
> I tried .phtml and other extensions. Tried to change the file-type in the 
> options to: text/x-php, html, template etc
> See: 
> [https://netbeans.apache.org/kb/docs/php/code-templates.html#_use_case_inserting_php_into_html]
>  I cannot get this to work
> In utter desperation I made my first macro in netbeans (never needed it 
> before) and that works very nice (should have done this before :D) but every 
> macro needs an shorcut to work. pppfff
> 
> Below 2 other issues with details.
> h3. Codecompletion with namespace, aliases and extends
> Overwritten function seen in _*parent-class:*_
> !image-2020-07-28-13-02-07-177.png|width=582,height=318!
>  Overwritten function in _*parent-class*_ NOT seen when using an alias for 
> the namespace
>    !image-2020-07-28-13-04-10-932.png|width=536,height=275!
> Codecompletion working whenparentclass has override-function with 
> alias-namespace
> !image-2020-07-28-13-10-46-227.png|width=582,height=290!
>  
> No codecompletion after removing the function in the parent-class
> !image-2020-07-28-13-11-45-910.png|width=571,height=236!
> Code completion with Alias and function:
> !image-2020-07-28-13-15-11-891.png|width=566,height=229!
>  
>  Codecompletion with alias in childclass, alias in first-parent removed and 
> function removed:
> !image-2020-07-28-13-17-15-567.png|width=705,height=308!
>  
> While writing this issue I found the difference when having an overridden 
> function or not
> h3. Codecompletion on traits
> trait found:
> !image-2020-07-28-13-21-36-907.png|width=405,height=301!
> Trait not found in use list: (this part needs a fix I think)
> !image-2020-07-28-13-22-37-962.png|width=427,height=232!
>  trait recognized in uselist and inside class
> !image-2020-07-28-13-24-10-223.png!
>  
> I hope someone can reproduce this or tell me what I am doing wrong.
>  Sorry for my 

[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report. 
 Sorry!!! But I am really getting disappointed on netbeans :( and desperate 
h3. Slow

It is getting slower and slower. At least after a installing a new version of 
netbeans. Then scanning the projects can go on for more then an hour, slowing 
down the editor. 

*Pulling in git* takes s much time in netbeans. It looks like it is 
reading/checking the whole branche again. When I need a quicker pull... I open 
the git-client, and do the pulling there and then synchronizing the branche in 
netbeans. Then netbeans is ready real quick. It is really annyoing and 
not-logic that pulling by netbeans takes much more time (sometimes more then a 
minute) then with my workaround.
 Also it can take 1 or more minutes before a changed file comes up in the 
git-show-changes So I always select the file(s) and right-click to commit 
which mostly works faster.

*Plain php-html template*

My trigger to try if reporting will help is: codecompletion for a plain 
php-html template. We normally use Smarty. But we are exploring of having our 
own template engine (togeter with smarty for now)

So I made a file: *orderlist.tpl.php*

That works ok. But I tried to make a code-template: for '' . I 
tried to put it in: php, html, plain text etc.
 Should be easy and it is. But really it WON'T show up in the code.

I tried .phtml and other extensions. Tried to change the file-type in the 
options to: text/x-php, html, template etc

See: 
[https://netbeans.apache.org/kb/docs/php/code-templates.html#_use_case_inserting_php_into_html]
 I cannot get this to work

In utter desperation I made my first macro in netbeans (never needed it before) 
and that works very nice (should have done this before :D) but every macro 
needs an shorcut to work. pppfff

Below 2 other issues with details.
h3. Codecompletion with namespace, aliases and extends

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working whenparentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 Codecompletion with alias in childclass, alias in first-parent removed and 
function removed:

!image-2020-07-28-13-17-15-567.png|width=705,height=308!

 

While writing this issue I found the difference when having an overridden 
function or not
h3. Codecompletion on traits

trait found:

!image-2020-07-28-13-21-36-907.png|width=405,height=301!

Trait not found in use list: (this part needs a fix I think)

!image-2020-07-28-13-22-37-962.png|width=427,height=232!

 trait recognized in uselist and inside class

!image-2020-07-28-13-24-10-223.png!

 

I hope someone can reproduce this or tell me what I am doing wrong.
 Sorry for my female complaints :P

Still hoping someone can help. 

flexjoly

 

 

 

 

  was:
_{color:#de350b}Sorry!  
!/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
                     
 _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
 _{color:#de350b}But I was not ready yet{color}_
 _{color:#de350b}Still editing this issue,{color}_

 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report. 
 Sorry!!! But I am really getting disappointed on netbeans :( and desperate 

[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
_{color:#de350b}Sorry!  
!/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
                     
 _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
 _{color:#de350b}But I was not ready yet{color}_
 _{color:#de350b}Still editing this issue,{color}_

 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report. 
 Sorry!!! But I am really getting disappointed on netbeans :( and desperate 
h3. Slow

It is getting slower and slower. At least after a installing a new version of 
netbeans. Then scanning the projects can go on for more then an hour, slowing 
down the editor. 

*Pulling in git* takes s much time in netbeans. It looks like it is 
reading/checking the whole branche again. When I need a quicker pull... I open 
the git-client, and do the pulling there and then synchronizing the branche in 
netbeans. Then netbeans is ready real quick. It is really annyoing and 
not-logic that pulling by netbeans takes much more time (sometimes more then a 
minute) then with my workaround.
 Also it can take 1 or more minutes before a changed file comes up in the 
git-show-changes So I always select the file(s) and right-click to commit 
which mostly works faster.

*Plain php-html template*

My trigger to try if reporting will help is: codecompletion for a plain 
php-html template. We normally use Smarty. But we are exploring of having our 
own template engine (togeter with smarty for now)

So I made a file: *orderlist.tpl.php*

That works ok. But I tried to make a code-template: for '' . I 
tried to put it in: php, html, plain text etc.
Should be easy and it is. But really it WON'T show up in the code.

I tried .phtml and other extensions. Tried to change the file-type in the 
options to: text/x-php, html, template etc

See: 
[https://netbeans.apache.org/kb/docs/php/code-templates.html#_use_case_inserting_php_into_html]
I cannot get this to work

 

Below 2 other issues with details.
h3. Codecompletion with namespace, aliases and extends

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working whenparentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 Codecompletion with alias in childclass, alias in first-parent removed and 
function removed:

!image-2020-07-28-13-17-15-567.png|width=705,height=308!

 

While writing this issue I found the difference when having an overridden 
function or not
h3. Codecompletion on traits

trait found:

!image-2020-07-28-13-21-36-907.png|width=405,height=301!

Trait not found in use list: (this part needs a fix I think)

!image-2020-07-28-13-22-37-962.png|width=427,height=232!

 trait recognized in uselist and inside class

!image-2020-07-28-13-24-10-223.png!

 

I hope someone can reproduce this or tell me what I am doing wrong.
Sorry for my female complaints :P

Still hoping someone can help. 

flexjoly

 

 

 

 

  was:
_{color:#de350b}Sorry!  
!/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
                   
 _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
 _{color:#de350b}But I was not ready yet{color}_
 _{color:#de350b}Still editing this issue,{color}_

 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time 

[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
_{color:#de350b}Sorry!  
!/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
                   
 _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
 _{color:#de350b}But I was not ready yet{color}_
 _{color:#de350b}Still editing this issue,{color}_

 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

I know one jira-issue should only have ONE topic and purpose. But I have the 
feeling that php does not have much priority. And some of my previous 
reports/requests did not get any attention. So first I want to know if what I 
say below wil get any priority before taking much time to make a detailed 
report. 
Sorry!!! But I am really getting disappointed on netbeans :( and desperate 
h3. Slow

It is getting slower and slower. At least after a installing a new version of 
netbeans. Then scanning the projects can go on for more then an hour, slowing 
down the editor. 

*Pulling in git* takes s much time in netbeans. It looks like it is 
reading/checking the whole branche again. When I need a quicker pull... I open 
the git-client, and do the pulling there and then synchronizing the branche in 
netbeans. Then netbeans is ready real quick. It is really annyoing and 
not-logic that pulling by netbeans takes much more time (sometimes more then a 
minute) then with my workaround.
Also it can take 1 or more minutes before a changed file comes up in the 
git-show-changes So I always select the file(s) and right-click to commit 
which mostly works faster.


My trigger to try if reporting will help is: codecompletion for a plain 
php-html template. We normally use Smarty. But we are exploring of having our 
own template engine.

 

 

Below 2 other issues with details.
h3. Codecompletion with namespace, aliases and extends

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working whenparentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 Codecompletion with alias in childclass, alias in first-parent removed and 
function removed:

!image-2020-07-28-13-17-15-567.png|width=705,height=308!

 

While writing this issue I found the difference when having an overridden 
function or not
h3. Codecompletion on traits

trait found:

!image-2020-07-28-13-21-36-907.png|width=405,height=301!

Trait not found in use list: (this part needs a fix I think)

!image-2020-07-28-13-22-37-962.png|width=427,height=232!

 trait recognized in uselist and inside class

!image-2020-07-28-13-24-10-223.png!

 

I hope someone can reproduce this or tell me what I am doing wrong.

 

 

 

 

  was:
_{color:#de350b}Sorry!  
!/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
                 
 _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
 _{color:#de350b}But I was not ready yet{color}_
 _{color:#de350b}Still editing this issue,{color}_

 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.
h3. Codecompletion with namespace, aliases and extends

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working whenparentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 Codecompletion with alias in childclass, alias in first-parent removed and 
function removed:

!image-2020-07-28-13-17-15-567.png|width=705,height=308!

 

While writing this issue I found the difference when having 

[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: image-2020-07-28-13-24-10-223.png

> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png, 
> image-2020-07-28-13-11-45-910.png, image-2020-07-28-13-15-11-891.png, 
> image-2020-07-28-13-17-15-567.png, image-2020-07-28-13-21-36-907.png, 
> image-2020-07-28-13-22-37-962.png, image-2020-07-28-13-24-10-223.png
>
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>                  
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> h3. Codecompletion with namespace, aliases and extends
> Overwritten function seen in _*parent-class:*_
> !image-2020-07-28-13-02-07-177.png|width=582,height=318!
>  Overwritten function in _*parent-class*_ NOT seen when using an alias for 
> the namespace
>    !image-2020-07-28-13-04-10-932.png|width=536,height=275!
> Codecompletion working whenparentclass has override-function with 
> alias-namespace
> !image-2020-07-28-13-10-46-227.png|width=582,height=290!
>  
> No codecompletion after removing the function in the parent-class
> !image-2020-07-28-13-11-45-910.png|width=571,height=236!
> Code completion with Alias and function:
> !image-2020-07-28-13-15-11-891.png|width=566,height=229!
>  
>  Codecompletion with alias in childclass, alias in first-parent removed and 
> function removed:
> !image-2020-07-28-13-17-15-567.png|width=705,height=308!
>  
> While writing this issue I found the difference when having an overridden 
> function or not
> h3. Codecompletion on traits
> trait found:
> !image-2020-07-28-13-21-36-907.png|width=405,height=301!
> Trait not found in use list:
> !image-2020-07-28-13-22-37-962.png|width=427,height=232!
>  
> I hope someone can reproduce this or tell me what I am doing wrong.
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
_{color:#de350b}Sorry!  
!/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
                 
 _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
 _{color:#de350b}But I was not ready yet{color}_
 _{color:#de350b}Still editing this issue,{color}_

 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.
h3. Codecompletion with namespace, aliases and extends

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working whenparentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 Codecompletion with alias in childclass, alias in first-parent removed and 
function removed:

!image-2020-07-28-13-17-15-567.png|width=705,height=308!

 

While writing this issue I found the difference when having an overridden 
function or not
h3. Codecompletion on traits

trait found:

!image-2020-07-28-13-21-36-907.png|width=405,height=301!

Trait not found in use list:

!image-2020-07-28-13-22-37-962.png|width=427,height=232!

 

I hope someone can reproduce this or tell me what I am doing wrong.

 

 

 

 

  was:
_{color:#de350b}Sorry!  
!/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
               
 _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
 _{color:#de350b}But I was not ready yet{color}_
 _{color:#de350b}Still editing this issue,{color}_

 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.
h3. Below some screenshots on codecompletion with namespace, aliasses and 
extends

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working whenparentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 

 

 

 


> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png, 
> image-2020-07-28-13-11-45-910.png, image-2020-07-28-13-15-11-891.png, 
> image-2020-07-28-13-17-15-567.png, image-2020-07-28-13-21-36-907.png, 
> image-2020-07-28-13-22-37-962.png
>
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>                  
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> h3. Codecompletion with namespace, aliases and extends
> Overwritten function seen in _*parent-class:*_
> !image-2020-07-28-13-02-07-177.png|width=582,height=318!
>  Overwritten function in _*parent-class*_ NOT seen when using an alias for 
> the namespace
>    

[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: image-2020-07-28-13-22-37-962.png

> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png, 
> image-2020-07-28-13-11-45-910.png, image-2020-07-28-13-15-11-891.png, 
> image-2020-07-28-13-17-15-567.png, image-2020-07-28-13-21-36-907.png, 
> image-2020-07-28-13-22-37-962.png
>
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>                
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> h3. Below some screenshots on codecompletion with namespace, aliasses and 
> extends
> Overwritten function seen in _*parent-class:*_
> !image-2020-07-28-13-02-07-177.png|width=582,height=318!
>  Overwritten function in _*parent-class*_ NOT seen when using an alias for 
> the namespace
>    !image-2020-07-28-13-04-10-932.png|width=536,height=275!
> Codecompletion working whenparentclass has override-function with 
> alias-namespace
> !image-2020-07-28-13-10-46-227.png|width=582,height=290!
>  
> No codecompletion after removing the function in the parent-class
> !image-2020-07-28-13-11-45-910.png|width=571,height=236!
> Code completion with Alias and function:
> !image-2020-07-28-13-15-11-891.png|width=566,height=229!
>  
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: image-2020-07-28-13-21-36-907.png

> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png, 
> image-2020-07-28-13-11-45-910.png, image-2020-07-28-13-15-11-891.png, 
> image-2020-07-28-13-17-15-567.png, image-2020-07-28-13-21-36-907.png
>
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>                
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> h3. Below some screenshots on codecompletion with namespace, aliasses and 
> extends
> Overwritten function seen in _*parent-class:*_
> !image-2020-07-28-13-02-07-177.png|width=582,height=318!
>  Overwritten function in _*parent-class*_ NOT seen when using an alias for 
> the namespace
>    !image-2020-07-28-13-04-10-932.png|width=536,height=275!
> Codecompletion working whenparentclass has override-function with 
> alias-namespace
> !image-2020-07-28-13-10-46-227.png|width=582,height=290!
>  
> No codecompletion after removing the function in the parent-class
> !image-2020-07-28-13-11-45-910.png|width=571,height=236!
> Code completion with Alias and function:
> !image-2020-07-28-13-15-11-891.png|width=566,height=229!
>  
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: image-2020-07-28-13-17-15-567.png

> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png, 
> image-2020-07-28-13-11-45-910.png, image-2020-07-28-13-15-11-891.png, 
> image-2020-07-28-13-17-15-567.png
>
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>                
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> h3. Below some screenshots on codecompletion with namespace, aliasses and 
> extends
> Overwritten function seen in _*parent-class:*_
> !image-2020-07-28-13-02-07-177.png|width=582,height=318!
>  Overwritten function in _*parent-class*_ NOT seen when using an alias for 
> the namespace
>    !image-2020-07-28-13-04-10-932.png|width=536,height=275!
> Codecompletion working whenparentclass has override-function with 
> alias-namespace
> !image-2020-07-28-13-10-46-227.png|width=582,height=290!
>  
> No codecompletion after removing the function in the parent-class
> !image-2020-07-28-13-11-45-910.png|width=571,height=236!
> Code completion with Alias and function:
> !image-2020-07-28-13-15-11-891.png|width=566,height=229!
>  
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
_{color:#de350b}Sorry!  
!/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
               
 _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
 _{color:#de350b}But I was not ready yet{color}_
 _{color:#de350b}Still editing this issue,{color}_

 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.
h3. Below some screenshots on codecompletion with namespace, aliasses and 
extends

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working whenparentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Code completion with Alias and function:

!image-2020-07-28-13-15-11-891.png|width=566,height=229!

 

 

 

 

 

  was:
_{color:#de350b}Sorry!  
!/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
             
 _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
 _{color:#de350b}But I was not ready yet{color}_
 _{color:#de350b}Still editing this issue,{color}_

 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

At first I would like to sum up some of the issues. If more info is needed I 
will gladly give it. 

 

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working whenparentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Script is found when no alias is used:

 

 

 

 

 


> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png, 
> image-2020-07-28-13-11-45-910.png, image-2020-07-28-13-15-11-891.png
>
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>                
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> h3. Below some screenshots on codecompletion with namespace, aliasses and 
> extends
> Overwritten function seen in _*parent-class:*_
> !image-2020-07-28-13-02-07-177.png|width=582,height=318!
>  Overwritten function in _*parent-class*_ NOT seen when using an alias for 
> the namespace
>    !image-2020-07-28-13-04-10-932.png|width=536,height=275!
> Codecompletion working whenparentclass has override-function with 
> alias-namespace
> !image-2020-07-28-13-10-46-227.png|width=582,height=290!
>  
> No codecompletion after removing the function in the parent-class
> !image-2020-07-28-13-11-45-910.png|width=571,height=236!
> Code completion with Alias and function:
> !image-2020-07-28-13-15-11-891.png|width=566,height=229!
>  
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: 

[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: image-2020-07-28-13-15-11-891.png

> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png, 
> image-2020-07-28-13-11-45-910.png, image-2020-07-28-13-15-11-891.png
>
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>              
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
> Overwritten function seen in _*parent-class:*_
> !image-2020-07-28-13-02-07-177.png|width=582,height=318!
>  Overwritten function in _*parent-class*_ NOT seen when using an alias for 
> the namespace
>    !image-2020-07-28-13-04-10-932.png|width=536,height=275!
> Codecompletion working whenparentclass has override-function with 
> alias-namespace
> !image-2020-07-28-13-10-46-227.png|width=582,height=290!
>  
> No codecompletion after removing the function in the parent-class
> !image-2020-07-28-13-11-45-910.png|width=571,height=236!
> Script is found when no alias is used:
>  
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
_{color:#de350b}Sorry!  
!/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
             
 _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
 _{color:#de350b}But I was not ready yet{color}_
 _{color:#de350b}Still editing this issue,{color}_

 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

At first I would like to sum up some of the issues. If more info is needed I 
will gladly give it. 

 

Overwritten function seen in _*parent-class:*_

!image-2020-07-28-13-02-07-177.png|width=582,height=318!

 Overwritten function in _*parent-class*_ NOT seen when using an alias for the 
namespace

   !image-2020-07-28-13-04-10-932.png|width=536,height=275!

Codecompletion working whenparentclass has override-function with 
alias-namespace

!image-2020-07-28-13-10-46-227.png|width=582,height=290!

 

No codecompletion after removing the function in the parent-class

!image-2020-07-28-13-11-45-910.png|width=571,height=236!

Script is found when no alias is used:

 

 

 

 

 

  was:
_{color:#de350b}Sorry!  
!/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
           
 _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
 _{color:#de350b}But I was not ready yet{color}_
 _{color:#de350b}Still editing this issue,{color}_

 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

At first I would like to sum up some of the issues. If more info is needed I 
will gladly give it. 

 

 Code-completion with alias as namespace not working

  !image-2020-07-28-12-40-31-547.png|width=397,height=314!

 

Script is found when no alias is used:

!image-2020-07-28-12-43-31-812.png|width=421,height=252!

 

 

 

 


> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png, 
> image-2020-07-28-13-11-45-910.png
>
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>              
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
> Overwritten function seen in _*parent-class:*_
> !image-2020-07-28-13-02-07-177.png|width=582,height=318!
>  Overwritten function in _*parent-class*_ NOT seen when using an alias for 
> the namespace
>    !image-2020-07-28-13-04-10-932.png|width=536,height=275!
> Codecompletion working whenparentclass has override-function with 
> alias-namespace
> !image-2020-07-28-13-10-46-227.png|width=582,height=290!
>  
> No codecompletion after removing the function in the parent-class
> !image-2020-07-28-13-11-45-910.png|width=571,height=236!
> Script is found when no alias is used:
>  
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: image-2020-07-28-13-11-45-910.png

> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png, 
> image-2020-07-28-13-11-45-910.png
>
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>            
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
>  Code-completion with alias as namespace not working
>   !image-2020-07-28-12-40-31-547.png|width=397,height=314!
>  
> Script is found when no alias is used:
> !image-2020-07-28-12-43-31-812.png|width=421,height=252!
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: image-2020-07-28-13-10-46-227.png

> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png, image-2020-07-28-13-10-46-227.png
>
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>            
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
>  Code-completion with alias as namespace not working
>   !image-2020-07-28-12-40-31-547.png|width=397,height=314!
>  
> Script is found when no alias is used:
> !image-2020-07-28-12-43-31-812.png|width=421,height=252!
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: image-2020-07-28-13-04-10-932.png

> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png, 
> image-2020-07-28-13-04-10-932.png
>
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>            
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
>  Code-completion with alias as namespace not working
>   !image-2020-07-28-12-40-31-547.png|width=397,height=314!
>  
> Script is found when no alias is used:
> !image-2020-07-28-12-43-31-812.png|width=421,height=252!
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: (was: image-2020-07-28-13-00-51-810.png)

> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png
>
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>            
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
>  Code-completion with alias as namespace not working
>   !image-2020-07-28-12-40-31-547.png|width=397,height=314!
>  
> Script is found when no alias is used:
> !image-2020-07-28-12-43-31-812.png|width=421,height=252!
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: image-2020-07-28-13-02-07-177.png

> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-02-07-177.png
>
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>            
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
>  Code-completion with alias as namespace not working
>   !image-2020-07-28-12-40-31-547.png|width=397,height=314!
>  
> Script is found when no alias is used:
> !image-2020-07-28-12-43-31-812.png|width=421,height=252!
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: (was: image-2020-07-28-12-52-48-933.png)

> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>            
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
>  Code-completion with alias as namespace not working
>   !image-2020-07-28-12-40-31-547.png|width=397,height=314!
>  
> Script is found when no alias is used:
> !image-2020-07-28-12-43-31-812.png|width=421,height=252!
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: image-2020-07-28-13-00-51-810.png

> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-13-00-51-810.png
>
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>            
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
>  Code-completion with alias as namespace not working
>   !image-2020-07-28-12-40-31-547.png|width=397,height=314!
>  
> Script is found when no alias is used:
> !image-2020-07-28-12-43-31-812.png|width=421,height=252!
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: (was: image-2020-07-28-12-43-31-812.png)

> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>            
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
>  Code-completion with alias as namespace not working
>   !image-2020-07-28-12-40-31-547.png|width=397,height=314!
>  
> Script is found when no alias is used:
> !image-2020-07-28-12-43-31-812.png|width=421,height=252!
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: (was: image-2020-07-28-12-40-31-547.png)

> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>            
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
>  Code-completion with alias as namespace not working
>   !image-2020-07-28-12-40-31-547.png|width=397,height=314!
>  
> Script is found when no alias is used:
> !image-2020-07-28-12-43-31-812.png|width=421,height=252!
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: (was: image-2020-07-28-12-55-05-681.png)

> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>            
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
>  Code-completion with alias as namespace not working
>   !image-2020-07-28-12-40-31-547.png|width=397,height=314!
>  
> Script is found when no alias is used:
> !image-2020-07-28-12-43-31-812.png|width=421,height=252!
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: image-2020-07-28-12-55-05-681.png

> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-12-40-31-547.png, 
> image-2020-07-28-12-43-31-812.png, image-2020-07-28-12-52-48-933.png, 
> image-2020-07-28-12-55-05-681.png
>
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>            
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
>  Code-completion with alias as namespace not working
>   !image-2020-07-28-12-40-31-547.png|width=397,height=314!
>  
> Script is found when no alias is used:
> !image-2020-07-28-12-43-31-812.png|width=421,height=252!
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: image-2020-07-28-12-52-48-933.png

> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-12-40-31-547.png, 
> image-2020-07-28-12-43-31-812.png, image-2020-07-28-12-52-48-933.png
>
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>            
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
>  Code-completion with alias as namespace not working
>   !image-2020-07-28-12-40-31-547.png|width=397,height=314!
>  
> Script is found when no alias is used:
> !image-2020-07-28-12-43-31-812.png|width=421,height=252!
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
_{color:#de350b}Sorry!  
!/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
           
 _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
 _{color:#de350b}But I was not ready yet{color}_
 _{color:#de350b}Still editing this issue,{color}_

 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

At first I would like to sum up some of the issues. If more info is needed I 
will gladly give it. 

 

 Code-completion with alias as namespace not working

  !image-2020-07-28-12-40-31-547.png|width=397,height=314!

 

Script is found when no alias is used:

!image-2020-07-28-12-43-31-812.png|width=421,height=252!

 

 

 

 

  was:
_{color:#de350b}Sorry!  
!/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
         
 _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
 _{color:#de350b}But I was not ready yet{color}_
 _{color:#de350b}Still editing this issue,{color}_

 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

At first I would like to sum up some of the issues. If more info is needed I 
will gladly give it. 

 

 Code-completion with alias as namespace
{code:java}
' the items from the parent-class are not seen 
by netbeans
}

{code}
 

 

 

 

 

 


> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-12-40-31-547.png, 
> image-2020-07-28-12-43-31-812.png
>
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>            
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
>  Code-completion with alias as namespace not working
>   !image-2020-07-28-12-40-31-547.png|width=397,height=314!
>  
> Script is found when no alias is used:
> !image-2020-07-28-12-43-31-812.png|width=421,height=252!
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: image-2020-07-28-12-43-31-812.png

> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Assignee: Junichi Yamamoto
>Priority: Major
> Attachments: image-2020-07-28-12-40-31-547.png, 
> image-2020-07-28-12-43-31-812.png
>
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>          
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
>  Code-completion with alias as namespace
> {code:java}
>  namespace rhAdmin\sales\product\record\ListRecord;
> class ListRecord{
>   protected $myProp = 'test';
>   public function myTest(){
>   }
> }
> {code}
> {code:java}
> namespace sales\product\record;
> use rhAdmin\sales\product\record\ListRecord as rhBase;
> class ListRecord extends rhBase{
>   // when start typing '$this->' the items from the parent-class are not seen 
> by netbeans
> }
> {code}
>  
>  
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
_{color:#de350b}Sorry!  
!/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
         
 _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
 _{color:#de350b}But I was not ready yet{color}_
 _{color:#de350b}Still editing this issue,{color}_

 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

At first I would like to sum up some of the issues. If more info is needed I 
will gladly give it. 

 

 Code-completion with alias as namespace
{code:java}
' the items from the parent-class are not seen 
by netbeans
}

{code}
 

 

 

 

 

 

  was:
_{color:#de350b}Sorry!  
!/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
       
 _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
 _{color:#de350b}But I was not ready yet{color}_
 _{color:#de350b}Still editing this issue,{color}_

 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

At first I would like to sum up some of the issues. If more info is needed I 
will gladly give it. 

 

 Code-completion with alias as namespace
{code:java}
' the items from the parent-class are not seen 
by netbeans
}

{code}
 

 

 

 

 

 


> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Priority: Major
> Attachments: image-2020-07-28-12-40-31-547.png
>
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>          
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
>  Code-completion with alias as namespace
> {code:java}
>  namespace rhAdmin\sales\product\record\ListRecord;
> class ListRecord{
>   protected $myProp = 'test';
>   public function myTest(){
>   }
> }
> {code}
> {code:java}
> namespace sales\product\record;
> use rhAdmin\sales\product\record\ListRecord as rhBase;
> class ListRecord extends rhBase{
>   // when start typing '$this->' the items from the parent-class are not seen 
> by netbeans
> }
> {code}
>  
>  
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
_{color:#de350b}Sorry!  
!/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
       
 _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
 _{color:#de350b}But I was not ready yet{color}_
 _{color:#de350b}Still editing this issue,{color}_

 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

At first I would like to sum up some of the issues. If more info is needed I 
will gladly give it. 

 

 Code-completion with alias as namespace
{code:java}
' the items from the parent-class are not seen 
by netbeans
}

{code}
 

 

 

 

 

 

  was:
_{color:#de350b}Sorry!  
!/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
      
 _{color:#de350b}I tapped: ctrl-enter, and the issues got posted...{color}_
 _{color:#de350b}But I was not ready yet{color}_
 _{color:#de350b}Still editing this issue,{color}_

 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

At first I would like to sum up some of the issues. If more info is needed I 
will gladly give it. 

 

 Code-completion with alias as namespace
{code:java}
' the items from the parent-class are not seen 
by netbeans
}

{code}
 

 

 

 

 

 


> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Priority: Major
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>        
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
>  Code-completion with alias as namespace
> {code:java}
>  namespace rhAdmin\sales\product\record\ListRecord;
> class ListRecord{
>   protected $myProp = 'test';
>   public function myTest(){
>   }
> }
> {code}
> {code:java}
> namespace sales\product\record;
> use rhAdmin\sales\product\record\ListRecord as rhBase;
> class ListRecord extends rhBase{
>   // when start typing '$this->' the items from the parent-class are not seen 
> by netbeans
> }
> {code}
>  
>  
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Attachment: image-2020-07-28-12-40-31-547.png

> Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Priority: Major
> Attachments: image-2020-07-28-12-40-31-547.png
>
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>        
>  _{color:#de350b}I tapped: ctrl-enter, and the issue got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
>  Code-completion with alias as namespace
> {code:java}
>  namespace rhAdmin\sales\product\record\ListRecord;
> class ListRecord{
>   protected $myProp = 'test';
>   public function myTest(){
>   }
> }
> {code}
> {code:java}
> namespace sales\product\record;
> use rhAdmin\sales\product\record\ListRecord as rhBase;
> class ListRecord extends rhBase{
>   // when start typing '$this->' the items from the parent-class are not seen 
> by netbeans
> }
> {code}
>  
>  
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
_{color:#de350b}Sorry!  
!/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
      
 _{color:#de350b}I tapped: ctrl-enter, and the issues got posted...{color}_
 _{color:#de350b}But I was not ready yet{color}_
 _{color:#de350b}Still editing this issue,{color}_

 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

At first I would like to sum up some of the issues. If more info is needed I 
will gladly give it. 

 

 Code-completion with alias as namespace
{code:java}
' the items from the parent-class are not seen 
by netbeans
}

{code}
 

 

 

 

 

 

  was:
_{color:#de350b}Sorry!  
!/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle! 
{color}_   
 _{color:#de350b}I tapped: ctrl-enter, and the issues got posted...{color}_
 _{color:#de350b}But I was not ready yet{color}_
 _{color:#de350b}Still editing this issue,{color}_

 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

At first I would like to sum up some of the issues. If more info is needed I 
will gladly give it. 

 

 
{code:java}
 Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Priority: Major
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle!{color}_
>       
>  _{color:#de350b}I tapped: ctrl-enter, and the issues got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
>  Code-completion with alias as namespace
> {code:java}
>  namespace rhAdmin\sales\product\record\ListRecord;
> class ListRecord{
>   protected $myProp = 'test';
>   public function myTest(){
>   }
> }
> {code}
> {code:java}
> namespace sales\product\record;
> use rhAdmin\sales\product\record\ListRecord as rhBase;
> class ListRecord extends rhBase{
>   // when start typing '$this->' the items from the parent-class are not seen 
> by netbeans
> }
> {code}
>  
>  
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
_{color:#de350b}Sorry!  
!/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle! 
{color}_   
 _{color:#de350b}I tapped: ctrl-enter, and the issues got posted...{color}_
 _{color:#de350b}But I was not ready yet{color}_
 _{color:#de350b}Still editing this issue,{color}_

 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

At first I would like to sum up some of the issues. If more info is needed I 
will gladly give it. 

 

 
{code:java}
 Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Priority: Major
>
> _{color:#de350b}Sorry!  
> !/jira/images/icons/emoticons/sad.png|width=16,height=16,align=absmiddle! 
> {color}_   
>  _{color:#de350b}I tapped: ctrl-enter, and the issues got posted...{color}_
>  _{color:#de350b}But I was not ready yet{color}_
>  _{color:#de350b}Still editing this issue,{color}_
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
>  
> {code:java}
>  use rhAdmin\sales\product\record\ListRecord as rhBase;
> class ListRecord extends rhBase{
> }
> namespace sales\product\record;
> use rhAdmin\sales\product\record\ListRecord as rhBase;
> class ListRecord extends rhBase{
> }
> {code}
>  
>  
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
Sorry!  :( 
 I tapped: ctrl-enter, and the issues got posted...
 But I was not ready yet
 Still editing this issue,

 

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

At first I would like to sum up some of the issues. If more info is needed I 
will gladly give it. 

 

 
{code:java}
 Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Priority: Major
>
> Sorry!  :( 
>  I tapped: ctrl-enter, and the issues got posted...
>  But I was not ready yet
>  Still editing this issue,
> 
>  
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
>  
> {code:java}
>  use rhAdmin\sales\product\record\ListRecord as rhBase;
> class ListRecord extends rhBase{
> }
> namespace sales\product\record;
> use rhAdmin\sales\product\record\ListRecord as rhBase;
> class ListRecord extends rhBase{
> }
> {code}
>  
>  
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-4647:
---
Description: 
Sorry!  :( 
I tapped: ctrl-enter, and the issues got posted...
But I was not ready yet
Still editing this issue,

Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

At first I would like to sum up some of the issues. If more info is needed I 
will gladly give it. 

 

 
{code:java}
 Autocompletion etc in php broken?
> -
>
> Key: NETBEANS-4647
> URL: https://issues.apache.org/jira/browse/NETBEANS-4647
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Code Completion, editor - Completion  
> Templates, php - Editor
>Affects Versions: 12.0, 11.3
>Reporter: flexJoly
>Priority: Major
>
> Sorry!  :( 
> I tapped: ctrl-enter, and the issues got posted...
> But I was not ready yet
> Still editing this issue,
> Hi,
> For years now I am using netbeans for php and promoting it to every 
> php-programmer, mostly with success!
> But since version 8 or so, I have the feeling that php in netbeans is not 
> getting better :( Even to the point that I am starting to look for another 
> IDE.
> At first I would like to sum up some of the issues. If more info is needed I 
> will gladly give it. 
>  
>  
> {code:java}
>  use rhAdmin\sales\product\record\ListRecord as rhBase;
> class ListRecord extends rhBase{
> }
> namespace sales\product\record;
> use rhAdmin\sales\product\record\ListRecord as rhBase;
> class ListRecord extends rhBase{
> }
> {code}
>  
>  
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-4647) Autocompletion etc in php broken?

2020-07-28 Thread flexJoly (Jira)
flexJoly created NETBEANS-4647:
--

 Summary: Autocompletion etc in php broken?
 Key: NETBEANS-4647
 URL: https://issues.apache.org/jira/browse/NETBEANS-4647
 Project: NetBeans
  Issue Type: Bug
  Components: cnd - Code Completion, editor - Completion  
Templates, php - Editor
Affects Versions: 11.3, 12.0
Reporter: flexJoly


Hi,

For years now I am using netbeans for php and promoting it to every 
php-programmer, mostly with success!

But since version 8 or so, I have the feeling that php in netbeans is not 
getting better :( Even to the point that I am starting to look for another IDE.

At first I would like to sum up some of the issues. If more info is needed I 
will gladly give it. 

 

 
{code:java}
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-3675) Autocomplete for assiging a property to class

2020-01-08 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-3675?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-3675:
---
Description: 
It would be very helpful to have autocomplete when adding properties in php 
classes, just as there is for adding methods.

For example:

 
{code:php}
abstract class A{
  /**
   * Fill this property!
   * @var string
   */
  proptected $myProp;
}

class B extends A{
  /**
   * @var string
   */ 
  proptected $myProp = 'testing';
}{code}
In class B we need to fill property '$myProp'. But while there is 
autocompletion for overwriting methods, there is none for properties.

So every time when making a new extending class, you need to open the 
base-class to look for the properties you need to overwrite in your new class. 
This is really annoying.

So my feature request is: please add auto-completion for declaring properties 
just like ther is voor methods in classes.

Greetz, flexjoly

 

  was:
It would be very helpful to have autocomplete when adding properties in php 
classes, just as there is for adding methods.

For example:

 
{code:php}
abstract class A{
  /**
   * Fill this property!
   * @var string
   */
  proptected $myProp;
}

class B extends A{
 /**
  * @var string
 */ proptected $myProp = 'testing';
}{code}
In class B we need to fill property '$myProp'. But while there is 
autocompletion for overwriting methods, there is none for properties.

So every time when making a new extending class, you need to open the 
base-class to look for the properties you need to overwrite in your new class. 
This is really annoying.

So my feature request is: please add auto-completion for declaring properties 
just like ther is voor methods in classes.

Greetz, flexjoly

 


> Autocomplete for assiging a property to class
> -
>
> Key: NETBEANS-3675
> URL: https://issues.apache.org/jira/browse/NETBEANS-3675
> Project: NetBeans
>  Issue Type: New Feature
>Reporter: flexJoly
>Priority: Major
>  Labels: autocomplete, class, extending, php, property
>
> It would be very helpful to have autocomplete when adding properties in php 
> classes, just as there is for adding methods.
> For example:
>  
> {code:php}
> abstract class A{
>   /**
>    * Fill this property!
>    * @var string
>*/
>   proptected $myProp;
> }
> class B extends A{
>   /**
>    * @var string
>*/ 
>   proptected $myProp = 'testing';
> }{code}
> In class B we need to fill property '$myProp'. But while there is 
> autocompletion for overwriting methods, there is none for properties.
> So every time when making a new extending class, you need to open the 
> base-class to look for the properties you need to overwrite in your new 
> class. This is really annoying.
> So my feature request is: please add auto-completion for declaring properties 
> just like ther is voor methods in classes.
> Greetz, flexjoly
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-3675) Autocomplete for assiging a property to class

2020-01-08 Thread flexJoly (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-3675?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

flexJoly updated NETBEANS-3675:
---
Description: 
It would be very helpful to have autocomplete when adding properties in php 
classes, just as there is for adding methods.

For example:

 
{code:php}
abstract class A{
  /**
   * Fill this property!
   * @var string
   */
  proptected $myProp;
}

class B extends A{
 /**
  * @var string
 */ proptected $myProp = 'testing';
}{code}
In class B we need to fill property '$myProp'. But while there is 
autocompletion for overwriting methods, there is none for properties.

So every time when making a new extending class, you need to open the 
base-class to look for the properties you need to overwrite in your new class. 
This is really annoying.

So my feature request is: please add auto-completion for declaring properties 
just like ther is voor methods in classes.

Greetz, flexjoly

 

  was:
It would be very helpful to have autocomplete when adding properties in php 
classes, just as there is for add methods.

For example:

 
{code:php}
abstract class A{
  /**
   * Fill this property!
   * @var string
   */
  proptected $myProp;
}

class B extends A{
 /**
  * @var string
 */ proptected $myProp = 'testing';
}{code}
In class B we need to fill property '$myProp'. But while there is 
autocompletion for overwriting methods, there is none for properties.

So every time when making a new extending class, you need to open the 
base-class to look for the properties you need to overwrite in your new class. 
This is really annoying.

So my feature request is: please add auto-completion for declaring properties 
just like ther is voor methods in classes.

Greetz, flexjoly

 


> Autocomplete for assiging a property to class
> -
>
> Key: NETBEANS-3675
> URL: https://issues.apache.org/jira/browse/NETBEANS-3675
> Project: NetBeans
>  Issue Type: New Feature
>Reporter: flexJoly
>Priority: Major
>  Labels: autocomplete, class, extending, php, property
>
> It would be very helpful to have autocomplete when adding properties in php 
> classes, just as there is for adding methods.
> For example:
>  
> {code:php}
> abstract class A{
>   /**
>    * Fill this property!
>    * @var string
>*/
>   proptected $myProp;
> }
> class B extends A{
>  /**
>   * @var string
>  */ proptected $myProp = 'testing';
> }{code}
> In class B we need to fill property '$myProp'. But while there is 
> autocompletion for overwriting methods, there is none for properties.
> So every time when making a new extending class, you need to open the 
> base-class to look for the properties you need to overwrite in your new 
> class. This is really annoying.
> So my feature request is: please add auto-completion for declaring properties 
> just like ther is voor methods in classes.
> Greetz, flexjoly
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-3675) Autocomplete for assiging a property to class

2020-01-08 Thread flexJoly (Jira)
flexJoly created NETBEANS-3675:
--

 Summary: Autocomplete for assiging a property to class
 Key: NETBEANS-3675
 URL: https://issues.apache.org/jira/browse/NETBEANS-3675
 Project: NetBeans
  Issue Type: New Feature
Reporter: flexJoly


It would be very helpful to have autocomplete when adding properties in php 
classes, just as there is for add methods.

For example:

 
{code:php}
abstract class A{
  /**
   * Fill this property!
   * @var string
   */
  proptected $myProp;
}

class B extends A{
 /**
  * @var string
 */ proptected $myProp = 'testing';
}{code}
In class B we need to fill property '$myProp'. But while there is 
autocompletion for overwriting methods, there is none for properties.

So every time when making a new extending class, you need to open the 
base-class to look for the properties you need to overwrite in your new class. 
This is really annoying.

So my feature request is: please add auto-completion for declaring properties 
just like ther is voor methods in classes.

Greetz, flexjoly

 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-2409) Very Slow Operations on Windows

2019-11-08 Thread flexJoly (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2409?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16969930#comment-16969930
 ] 

flexJoly commented on NETBEANS-2409:


Hi,
Thanks for the info about installer with php; I did not know this! The 
installer could not find the jdk so I turned to the .zip.

Well Wednesday my computer broke... the new ssd (3 months) seemed to 
function only for 9% anymore, according our computer-specialist, due to a 
'wrong' cable really.. :(:(

Yesterday I had to install everything again :(:( (terrible development 
environment installations, hate it!). To be sure I indeed used the installer 
and jdk13 (this time netbeans could find the jdk easily). 
I saw the new (very nice!!!) install-options to enable only php.

{color:#00875a}*Untill now it is MUCH faster*{color}!!! :D :D :D 

Thanks so far!

 

> Very Slow  Operations on Windows
> 
>
> Key: NETBEANS-2409
> URL: https://issues.apache.org/jira/browse/NETBEANS-2409
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0, 11.0
> Environment: Windows
>Reporter: Laszlo Kishalmi
>Priority: Critical
>  Labels: Performance, Windows
> Attachments: Details info.txt, NB11_autocomplete.nps, 
> NB11_getHint.nps, WinFilesystemSlow.png, messages.log
>
>  Time Spent: 1.5h
>  Remaining Estimate: 0h
>
> What is the best course of action for reporting slowness?  I can’t share my 
> project.
> I’m not certain how to give step-by-step instructions when the problem is 
> basically one step in most cases.  E.g. invoke auto-complete - nothing 
> happens for several seconds.  Invoke rename - dialog doesn’t appear for 
> several seconds.  Find usages - extremely slow > 5 second delay on a private 
> member of a class less than 100 lines.
> In general it seems NB 11 is noticeably slower than NB 8.2. Not good 
> considering slowness was already my #1 complaint about NB 8.2.  I have so far 
> found the benefits of NB outweigh the fact that it is much slower than other 
> IDEs for the same operations, but the slowness of NB 11 is tipping the scale. 
>  I don’t want to switch IDEs, pease don’t interpret this as some sort of 
> threat to do so. I would like to help find the issues in NB.  But I don’t 
> have the bandwidth to debug NB and not being about to share my project makes 
> it difficult to provide helpful reports :-(
> Are others seeing the slowness?
> Find usages, renames, call-hierarchy, auto-complete… things I use all the 
> time, I often have to wait 5 to 10 seconds for a response from the IDE, 
> sometimes more.
> I’ve already deleted user dir and cache and restarted. 
> I’m using Gradle-based Java projects, running NB 11.0 with JDK 8u202.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-2409) Very Slow Operations on Windows

2019-11-02 Thread flexJoly (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2409?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16965429#comment-16965429
 ] 

flexJoly commented on NETBEANS-2409:


[~geertjan] thanks for your reply,



I do need the import, because I have a lot of settings. In the past I did 
install without importing the user-dir, indeed to be sure Netbeans started 
clean. But i find netbeans getting slower the last years. Say after version 8 
or so. 

The virusscanner from windows is disabled. windows-firewall is enabled. I am a 
noob on the firewall, so I don't like to mess with it ;). 

I don't know what I can do in the netbeans.conf to finetune netbeans. I dare 
not mess with it ;) except the jdk-dir-setting. 

I have a lot of plugins disabled. Since I use almost plain-vanilla php. 

 

> Very Slow  Operations on Windows
> 
>
> Key: NETBEANS-2409
> URL: https://issues.apache.org/jira/browse/NETBEANS-2409
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0, 11.0
> Environment: Windows
>Reporter: Laszlo Kishalmi
>Priority: Critical
>  Labels: Performance, Windows
> Attachments: Details info.txt, NB11_autocomplete.nps, 
> NB11_getHint.nps, WinFilesystemSlow.png, messages.log
>
>  Time Spent: 1.5h
>  Remaining Estimate: 0h
>
> What is the best course of action for reporting slowness?  I can’t share my 
> project.
> I’m not certain how to give step-by-step instructions when the problem is 
> basically one step in most cases.  E.g. invoke auto-complete - nothing 
> happens for several seconds.  Invoke rename - dialog doesn’t appear for 
> several seconds.  Find usages - extremely slow > 5 second delay on a private 
> member of a class less than 100 lines.
> In general it seems NB 11 is noticeably slower than NB 8.2. Not good 
> considering slowness was already my #1 complaint about NB 8.2.  I have so far 
> found the benefits of NB outweigh the fact that it is much slower than other 
> IDEs for the same operations, but the slowness of NB 11 is tipping the scale. 
>  I don’t want to switch IDEs, pease don’t interpret this as some sort of 
> threat to do so. I would like to help find the issues in NB.  But I don’t 
> have the bandwidth to debug NB and not being about to share my project makes 
> it difficult to provide helpful reports :-(
> Are others seeing the slowness?
> Find usages, renames, call-hierarchy, auto-complete… things I use all the 
> time, I often have to wait 5 to 10 seconds for a response from the IDE, 
> sometimes more.
> I’ve already deleted user dir and cache and restarted. 
> I’m using Gradle-based Java projects, running NB 11.0 with JDK 8u202.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-2409) Very Slow Operations on Windows

2019-11-02 Thread flexJoly (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2409?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16965342#comment-16965342
 ] 

flexJoly commented on NETBEANS-2409:


Hi,

I just installed v11.2. And Netbeans performs indeed nicely, but only AFTER a 
very slow install. 



I noticed the following:
 * importing the userdir from 11.1 took more then 10 minutes. I thought it was 
hanging/crashed, but in explorer i saw the new user-dir growing 
 * when starting netbeans, it started with a new background scanning of the 
projects. For our framework-project and 5 normal projects it took more then 20 
minutes. 
 * memory-usage is over 60% according to win-taskmanager (at background 
scanning)

I cán understand that it takes so long to copy the userdir.

But why then does it need to do a new background scanning of the projects?? 
Is that not inside the (imported) user dir? Or inside the projects-dir?
Maybe here things can be done to get this better.

Greetz, flexJoly

Some specs:
Win10, x64, i3 (year: 2009), upgraded memory to 7gb, and new ssd harddisk (this 
year)
All my projects are PHP, with smarty, gulp, nodejs, npm etc. We have a central 
in-house framework project.
This framework project is always open in netbeans (I am the maintainer of it). 

I installed 11.2 from: 
[https://www.apache.org/dyn/closer.cgi/netbeans/netbeans/11.2/netbeans-11.2-bin.zip]
Because the .exe could not find c:/jdk-12

 

 

> Very Slow  Operations on Windows
> 
>
> Key: NETBEANS-2409
> URL: https://issues.apache.org/jira/browse/NETBEANS-2409
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0, 11.0
> Environment: Windows
>Reporter: Laszlo Kishalmi
>Priority: Critical
>  Labels: Performance, Windows
> Attachments: NB11_autocomplete.nps, NB11_getHint.nps, 
> WinFilesystemSlow.png
>
>  Time Spent: 1.5h
>  Remaining Estimate: 0h
>
> What is the best course of action for reporting slowness?  I can’t share my 
> project.
> I’m not certain how to give step-by-step instructions when the problem is 
> basically one step in most cases.  E.g. invoke auto-complete - nothing 
> happens for several seconds.  Invoke rename - dialog doesn’t appear for 
> several seconds.  Find usages - extremely slow > 5 second delay on a private 
> member of a class less than 100 lines.
> In general it seems NB 11 is noticeably slower than NB 8.2. Not good 
> considering slowness was already my #1 complaint about NB 8.2.  I have so far 
> found the benefits of NB outweigh the fact that it is much slower than other 
> IDEs for the same operations, but the slowness of NB 11 is tipping the scale. 
>  I don’t want to switch IDEs, pease don’t interpret this as some sort of 
> threat to do so. I would like to help find the issues in NB.  But I don’t 
> have the bandwidth to debug NB and not being about to share my project makes 
> it difficult to provide helpful reports :-(
> Are others seeing the slowness?
> Find usages, renames, call-hierarchy, auto-complete… things I use all the 
> time, I often have to wait 5 to 10 seconds for a response from the IDE, 
> sometimes more.
> I’ve already deleted user dir and cache and restarted. 
> I’m using Gradle-based Java projects, running NB 11.0 with JDK 8u202.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-2894) Warning - could not install some modules

2019-10-12 Thread flexJoly (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2894?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16949991#comment-16949991
 ] 

flexJoly commented on NETBEANS-2894:


I get this error once a week or so. (this time it is directly after the last 
windows update)

And then javascript is not recognized anymore. 

 

I do not understand why Netbeans is "installing" modules while everything is 
already installed and worked. Everything is working normally and then just the 
next day at startup it is giving this error.

> Warning - could not install some modules
> 
>
> Key: NETBEANS-2894
> URL: https://issues.apache.org/jira/browse/NETBEANS-2894
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Andreas Ernst
>Priority: Major
>
> If i remember correcly, on some start of NetBeans, NetBeans wants to install 
> a module, this works.
> But after a new start of NetBeans i get this error:
>  
> Warning - could not install some modules:
>  Nashorn Integration - No module providing the capability 
> com.oracle.js.parser.implementation could be found.
>  27 further modules could not be installed due to the above problems.
> Warning - could not install some modules:
>      org.netbeans.libs.nashorn - No module providing the capability 
> com.oracle.js.parser.implementation could be found.
>      org.netbeans.modules.javascript2.doc - The module 
> org.netbeans.libs.nashorn would also need to be installed.
>      org.netbeans.modules.javascript2.extdoc - The module 
> org.netbeans.modules.javascript2.doc would also need to be installed.
>      org.netbeans.modules.javascript2.sdoc - The module 
> org.netbeans.modules.javascript2.doc would also need to be installed.
>      org.netbeans.modules.javascript2.jsdoc - The module 
> org.netbeans.modules.javascript2.doc would also need to be installed.
>      org.netbeans.modules.javascript2.model - The module 
> org.netbeans.libs.nashorn would also need to be installed.
>      org.netbeans.modules.javascript2.model - The module 
> org.netbeans.modules.javascript2.doc would also need to be installed.
>      org.netbeans.modules.javascript2.knockout - The module 
> org.netbeans.modules.javascript2.model would also need to be installed.
>      org.netbeans.modules.javascript2.prototypejs - The module 
> org.netbeans.modules.javascript2.model would also need to be installed.
>      org.netbeans.modules.javascript2.editor - The module 
> org.netbeans.libs.nashorn would also need to be installed.
>      org.netbeans.modules.javascript2.editor - The module 
> org.netbeans.modules.javascript2.model would also need to be installed.
>      org.netbeans.modules.javascript2.editor - The module 
> org.netbeans.modules.javascript2.doc would also need to be installed.
>      org.netbeans.modules.javascript2.jquery - The module 
> org.netbeans.modules.javascript2.editor would also need to be installed.
>      org.netbeans.modules.javascript2.jquery - The module 
> org.netbeans.modules.javascript2.model would also need to be installed.
>      org.netbeans.modules.javascript2.extjs - The module 
> org.netbeans.modules.javascript2.editor would also need to be installed.
>      org.netbeans.modules.javascript2.extjs - The module 
> org.netbeans.modules.javascript2.model would also need to be installed.
>      org.netbeans.modules.javascript2.nodejs - The module 
> org.netbeans.modules.javascript2.editor would also need to be installed.
>      org.netbeans.modules.javascript2.nodejs - The module 
> org.netbeans.modules.javascript2.model would also need to be installed.
>      org.netbeans.modules.html.angular - The module 
> org.netbeans.modules.javascript2.editor would also need to be installed.
>      org.netbeans.modules.html.angular - The module 
> org.netbeans.modules.javascript2.model would also need to be installed.
>      org.netbeans.modules.html.knockout - The module 
> org.netbeans.modules.javascript2.editor would also need to be installed.
>      org.netbeans.modules.html.knockout - The module 
> org.netbeans.modules.javascript2.knockout would also need to be installed.
>      org.netbeans.modules.javascript2.source.query - The module 
> org.netbeans.modules.javascript2.model would also need to be installed.
>      org.netbeans.modules.javascript2.requirejs - The module 
> org.netbeans.modules.javascript2.editor would also need to be installed.
>      org.netbeans.modules.javascript2.requirejs - The module 
> org.netbeans.modules.javascript2.model would also need to be installed.
>      org.netbeans.modules.javascript2.kit - The module 
> org.netbeans.modules.javascript2.prototypejs would also need to be installed.
>      org.netbeans.modules.javascript2.kit - The module 
> 

[jira] [Commented] (NETBEANS-168) Background scanning process needs a rethink

2019-01-13 Thread flexJoly (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-168?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16741837#comment-16741837
 ] 

flexJoly commented on NETBEANS-168:
---

Last week I updated java and now the whole netbeans is a lot faster. I am no 
java-expert, and was unsure what to use and I could not get it to work fast 
enough. So I copied the jre from netbeans 8.0. That worked ;-)
But netbeans was so slow and I discovered that java was running as 32-bit while 
I use netbeans 64-bit. So I looked again at java and unzipped jdk-11
That solved a lot!!


> Background scanning process needs a rethink
> ---
>
> Key: NETBEANS-168
> URL: https://issues.apache.org/jira/browse/NETBEANS-168
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Performance, java - Platform, platform - Execution
>Affects Versions: 8.2, 9.0, 10.0
> Environment: NetBeans 8.2, Windows 10 x64
>Reporter: Christian Lenz
>Priority: Critical
>  Labels: ca_survey, pull-request-available
> Attachments: go-to-file.gif, messages - 10.0 vc3.log, messages 10.0 
> vc2.log, messages.log, puls.7z, ui.log, uigestures 10.0 vc, wp-dms.7z
>
>  Time Spent: 1h 50m
>  Remaining Estimate: 0h
>
> Often, while cloning, switching branch, merging, opening etc. etc. NetBeans 
> starts Background scanning for changes, but it is not real background, 
> because everything what you want to do then, like changing the branch, 
> commit, push, pull, open project, delete or whatever, is blocking by this 
> task and you can't cancel it, because it is essential.
> Either we need to rethink about this process like to make everything or most 
> of the stuff doing things in parallel or the task should really be 
> cancelable. It is a pain in the ass for big projects when they start to scan 
> for changes. 
> It is a real world case because you acan see it when you work on NetBeans 
> modules.
> Cheers
> Chris



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Comment Edited] (NETBEANS-168) Background scanning process needs a rethink

2018-12-18 Thread flexJoly (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-168?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16723949#comment-16723949
 ] 

flexJoly edited comment on NETBEANS-168 at 12/18/18 11:27 AM:
--

This morning I installed v10-rc5 for windows. It runs nice at first. But my 
(framework) php-project keeps scanned forever It does not hang netbeans. 
But it holds at a certain percentage. At the moment it is 25% after restarting 
netbeans. Before it came to 75% and 85% (between restarts).

 

update:
after about half an hour it is getting to 100% and autocomplete for php gets 
working better


was (Author: flexjoly):
This morning I installed v10-rc5 for windows. It runs nice at first. But my 
(framework) php-project keeps scanned forever It does not hang netbeans. 
But it holds at a certain percentage. At the moment it is 25% after restarting 
netbeans. Before it came to 75% and 85% (between restarts).

> Background scanning process needs a rethink
> ---
>
> Key: NETBEANS-168
> URL: https://issues.apache.org/jira/browse/NETBEANS-168
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Performance, java - Platform, platform - Execution
>Affects Versions: 8.2, 9.0, 10.0
> Environment: NetBeans 8.2, Windows 10 x64
>Reporter: Christian Lenz
>Priority: Critical
>  Labels: ca_survey
> Attachments: go-to-file.gif, messages - 10.0 vc3.log, messages 10.0 
> vc2.log, messages.log, puls.7z, ui.log, uigestures 10.0 vc, wp-dms.7z
>
>
> Often, while cloning, switching branch, merging, opening etc. etc. NetBeans 
> starts Background scanning for changes, but it is not real background, 
> because everything what you want to do then, like changing the branch, 
> commit, push, pull, open project, delete or whatever, is blocking by this 
> task and you can't cancel it, because it is essential.
> Either we need to rethink about this process like to make everything or most 
> of the stuff doing things in parallel or the task should really be 
> cancelable. It is a pain in the ass for big projects when they start to scan 
> for changes. 
> It is a real world case because you acan see it when you work on NetBeans 
> modules.
> Cheers
> Chris



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-168) Background scanning process needs a rethink

2018-12-18 Thread flexJoly (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-168?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16723949#comment-16723949
 ] 

flexJoly commented on NETBEANS-168:
---

This morning I installed v10-rc5 for windows. It runs nice at first. But my 
(framework) php-project keeps scanned forever It does not hang netbeans. 
But it holds at a certain percentage. At the moment it is 25% after restarting 
netbeans. Before it came to 75% and 85% (between restarts).

> Background scanning process needs a rethink
> ---
>
> Key: NETBEANS-168
> URL: https://issues.apache.org/jira/browse/NETBEANS-168
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - Performance, java - Platform, platform - Execution
>Affects Versions: 8.2, 9.0, 10.0
> Environment: NetBeans 8.2, Windows 10 x64
>Reporter: Christian Lenz
>Priority: Critical
>  Labels: ca_survey
> Attachments: go-to-file.gif, messages - 10.0 vc3.log, messages 10.0 
> vc2.log, messages.log, puls.7z, ui.log, uigestures 10.0 vc, wp-dms.7z
>
>
> Often, while cloning, switching branch, merging, opening etc. etc. NetBeans 
> starts Background scanning for changes, but it is not real background, 
> because everything what you want to do then, like changing the branch, 
> commit, push, pull, open project, delete or whatever, is blocking by this 
> task and you can't cancel it, because it is essential.
> Either we need to rethink about this process like to make everything or most 
> of the stuff doing things in parallel or the task should really be 
> cancelable. It is a pain in the ass for big projects when they start to scan 
> for changes. 
> It is a real world case because you acan see it when you work on NetBeans 
> modules.
> Cheers
> Chris



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists