[jira] [Created] (NETBEANSINFRA-271) Auto-correct messes up JavaDoc

2022-08-26 Thread Blake McBride (Jira)
Blake McBride created NETBEANSINFRA-271:
---

 Summary: Auto-correct messes up JavaDoc
 Key: NETBEANSINFRA-271
 URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-271
 Project: Apache NetBeans Infra
  Issue Type: Bug
 Environment: Fedora Linux
Reporter: Blake McBride
 Attachments: pic1.png, pic2.png

I was missing a @param entry.  NetBeans offered to correct it.  When I executed 
it, NetBeans messed up another part of the JavaDoc.  See the two attached 
images.

 

I am seeing this in NetBeans 14.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

-
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] (NETBEANSINFRA-270) Valid CSS options not allowed

2022-08-10 Thread Blake McBride (Jira)
Blake McBride created NETBEANSINFRA-270:
---

 Summary: Valid CSS options not allowed
 Key: NETBEANSINFRA-270
 URL: https://issues.apache.org/jira/browse/NETBEANSINFRA-270
 Project: Apache NetBeans Infra
  Issue Type: Bug
  Components: Apache NetBeans Release Preparation Tasks
Reporter: Blake McBride


Greetings,
 
I have an HTML5 app.  I am using the CSS styles grid-column-gap and 
grid-row-gap.  NB 14 is flagging them as Unknown property.  Should be standard 
HTML.
 
Thanks.
 



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

-
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-6160) Can't set breakpoints in Groovy until a Java file is displayed

2021-10-29 Thread Blake McBride (Jira)


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

Blake McBride commented on NETBEANS-6160:
-

[https://github.com/blakemcbride/Kiss|http://example.com]

> Can't set breakpoints in Groovy until a Java file is displayed
> --
>
> Key: NETBEANS-6160
> URL: https://issues.apache.org/jira/browse/NETBEANS-6160
> Project: NetBeans
>  Issue Type: Bug
>  Components: groovy - Code
>Affects Versions: 12.6
> Environment: NetBeans 12.6-rc1
> Java 8
> 64-bit Linux
>  
>Reporter: Blake McBride
>Priority: Minor
>  Labels: groovy
>
> If I bring up NetBeans 12.6-rc1 on a project with Java & Groovy source files, 
> and go to a Groovy source file, the system will not allow me to set a 
> breakpoint.  However if I display a Java file and then go back to the Groovy 
> file, I can then set breakpoint in the Groovy file.
> It appears like displaying a Java file is activating something needed by the 
> Groovy file.  Once it is activated all works well until I exit NetBeans and 
> go back in.



--
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-6160) Can't set breakpoints in Groovy until a Java file is displayed

2021-10-28 Thread Blake McBride (Jira)
Blake McBride created NETBEANS-6160:
---

 Summary: Can't set breakpoints in Groovy until a Java file is 
displayed
 Key: NETBEANS-6160
 URL: https://issues.apache.org/jira/browse/NETBEANS-6160
 Project: NetBeans
  Issue Type: Bug
  Components: groovy - Code
Affects Versions: 12.6
 Environment: NetBeans 12.6-rc1

Java 8

64-bit Linux

 
Reporter: Blake McBride


If I bring up NetBeans 12.6-rc1 on a project with Java & Groovy source files, 
and go to a Groovy source file, the system will not allow me to set a 
breakpoint.  However if I display a Java file and then go back to the Groovy 
file, I can then set breakpoint in the Groovy file.

It appears like displaying a Java file is activating something needed by the 
Groovy file.  Once it is activated all works well until I exit NetBeans and go 
back in.



--
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-1636) Can't debug dynamically loaded Groovy

2018-11-08 Thread Blake McBride (JIRA)


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

Blake McBride updated NETBEANS-1636:

Description: 
I have a program that can load (Java or Groovy) source code and compile it into 
JVM bytecode to execute in a Tomcat environment.  (microservices).   I can put 
breakpoints in either under IntelliJ and it breaks as expected.  NetBeans works 
fine for Java but ignores breakpoints set in Groovy.  I am sure it is executing 
correctly because if I change the source code, the REST service immediately 
reflects the change.  It just ignores breakpoints in Groovy.

I do have the Groovy feature activated.

All of the code is at [https://github.com/kiss-web/Kiss]

 

  was:
I have a program that can load (Java or Groovy) source code and compile it into 
JVM bytecode to execute in a Tomcat environment.  (microservices).   I can put 
breakpoints in either under intelliJ and it breaks as expected.  NetBeans works 
fine for Java but ignores breakpoints set in Groovy.  I am sure it is executing 
correctly because if I change the source code, the REST service immediatly 
reflects the change.  It just ignores breakpoints in Groovy.

All of the code is at [https://github.com/kiss-web/Kiss]

 


> Can't debug dynamically loaded Groovy
> -
>
> Key: NETBEANS-1636
> URL: https://issues.apache.org/jira/browse/NETBEANS-1636
> Project: NetBeans
>  Issue Type: Bug
>  Components: cnd - Debugger
>Affects Versions: 8.2
> Environment: 64 bit Linux, Java 8, Tomcat 8.0.27
>Reporter: Blake McBride
>Priority: Major
>
> I have a program that can load (Java or Groovy) source code and compile it 
> into JVM bytecode to execute in a Tomcat environment.  (microservices).   I 
> can put breakpoints in either under IntelliJ and it breaks as expected.  
> NetBeans works fine for Java but ignores breakpoints set in Groovy.  I am 
> sure it is executing correctly because if I change the source code, the REST 
> service immediately reflects the change.  It just ignores breakpoints in 
> Groovy.
> I do have the Groovy feature activated.
> All of the code is at [https://github.com/kiss-web/Kiss]
>  



--
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] [Created] (NETBEANS-1636) Can't debug dynamically loaded Groovy

2018-11-08 Thread Blake McBride (JIRA)
Blake McBride created NETBEANS-1636:
---

 Summary: Can't debug dynamically loaded Groovy
 Key: NETBEANS-1636
 URL: https://issues.apache.org/jira/browse/NETBEANS-1636
 Project: NetBeans
  Issue Type: Bug
  Components: cnd - Debugger
Affects Versions: 8.2
 Environment: 64 bit Linux, Java 8, Tomcat 8.0.27
Reporter: Blake McBride


I have a program that can load (Java or Groovy) source code and compile it into 
JVM bytecode to execute in a Tomcat environment.  (microservices).   I can put 
breakpoints in either under intelliJ and it breaks as expected.  NetBeans works 
fine for Java but ignores breakpoints set in Groovy.  I am sure it is executing 
correctly because if I change the source code, the REST service immediatly 
reflects the change.  It just ignores breakpoints in Groovy.

All of the code is at [https://github.com/kiss-web/Kiss]

 



--
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