Re: C++ compiler gone weird, flags errors

2020-05-04 Thread Emilian Bold
I'm pretty sure there was no C++ release from NetBeans in the past week. It
was a fluke on your machine.

--emi


On Mon, May 4, 2020 at 9:17 PM Brenden Towey  wrote:

>
> And thank you to whoever released the new C++ patch for Netbeans this
> morning.  The errors have disappeared and all seems to be working. :-)
>
> Brenden
>
>
>  Forwarded Message 
> Subject: C++ compiler gone weird, flags errors
> Date: Tue, 28 Apr 2020 08:36:46 -0700
> From: Brenden Towey  
> To: users@netbeans.apache.org
>
> Hi folks, I wonder if I could get some help with an issue I'm having.  I
> have NetBeans 11.1 and the C++ module installed for Cygwin.  I think at
> some point I updated my Cygwin installation (using the standard install
> tool for Cygwin) and now NetBeans reports errors everywhere.
>
> For example, this code example with errors marked as comments:
>
> #include   // cannot find include file 
> #include // cannot find include file 
>
> using namespace std;   // Unable to resolve identifier std
>
> /*
>  *
>  */
> int main(int argc, char** argv) {
>cout << "Hello world.";  // Unable to resolve identifier cout
>return 0;
> }
>
>
> The thing is the code compiles and runs just fine.  It's just the editor
> window that is getting all of these errors.  Help?  What would I look for
> to tell the editor to resolve these errors when the compiler is working
> just fine?
>
> Thanks!
>
>
>


Re: Changing comment character

2020-05-04 Thread Pete Whelpton
Hi!

Sorry to hear you are having problems.  When you say you are having errors,
do you mean a) Netbeans highlights errors in the compiled CSS file b) the
Dart Sass compiler throws errors or c) the compiled CSS is invalid?

Can you provide examples of the errors?  If a), then it is most likely
because the CSS grammar in Netbeans is not totally up-to-date.  The grammar
file also include Sass (scss) and Less grammar so is a total monster.

if b) or c) then when Netbeans compiles a .scss file, all it does is pass
the file to the Sass pre-compiler you specify in Netbeans options.
According to Dart-Sass, " If a multi-line comment is written somewhere that
a statement is allowed, it’s compiled to a CSS comment "

If I create a file:
@mixin test {
/*color:red;
font-size: #{var}*10;*/
color:blue;
}

p {
@include test;
}

This will compile to:
p {
  /*color:red;
  font-size: var*10;*/
  color: blue;
}

As per Dart-Sass documentation, it compiles the comments to CSS comments
(whether I compile via Netbeans or directly at the Command Line).  If you
want to surpress the comments totally, you can use Dart Sass' Compress
Mode.  This will compile to:
p{color:blue}/*# sourceMappingURL=TestSass.css.map */

Here's how to do it:

1) Make sure you have Netbeans configured to use a libsass implementation.
Open /etc/netbeans.conf in a text editor and make sure
-J-Dnb.sass.libsass=true

is in your netbeans_default_options

2) Launch Netbeans.  Open Menu->Tools->Options->HTML/JavaScript and make
sure Sass path points to your dart-sass execuatble (e.g. sass.bat on
Windows)

3) Tell your project to add the Compressed mode flag when calling
dart-sass.  Right click on your Project Node->Properties->CSS Preprocessors
and in Compiler Options add:
--style=compressed

Next time your .scss compiles, in the Output window you should see the
parameter pass to the Dart-Sass executable like this:
"X:\Apps\dart-sass\sass.bat" "--style=compressed"
"Y:\Projects\TestHTML\public_html\scss\TestSass.scss"
"Y:\Projects\TestHTML\public_html\css\TestSass.css"

And dart-sass should strip your comments during compile.

Hope that helps,



On Mon, May 4, 2020 at 3:01 PM letrollpoilu  wrote:

> Hi all,
>
> This is the first time I'm using this mailing list because I'm a bit
> desperate to find an answer to this question :)
> I posted in on Stack here:
> https://stackoverflow.com/questions/61527564/modify-comment-symbols-in-netbeans
>
> But you can still find below the question:
>
> I'm using Netbeans 11, and I have now switch from Ruby sass to Dart sass.
> The thing is that when I comment a block of code on my .scss files, they
> are commented like that:
>
> @mixin test($var){
> /*color:red;
> font-size: #{var}*10;*/
> color:blue;}
>
> The thing is that now in Dart sass, what's in between the /**/ is compiled
> and raises sometimes errors. Though I just want to comment it. So I would
> need to comment this way:
>
> @mixin test($var){
> //color:red;
> //font-size: #{var}*10;
> color:blue;}
>
> This is fine for 2 lines, but sometimes I need to comment big blocks, and
> Netbeans is not using the // but /**/. So is there a way to change the
> default commenting of Netbeans for .scss files? I mean this has to be
> somewhere since you can sometimes comment in blocks with #.
>
> Any help would be greatly appreciated. Thanks a lot in advance!
>


Re: C++ compiler gone weird, flags errors

2020-05-04 Thread Brenden Towey


And thank you to whoever released the new C++ patch for Netbeans this 
morning.  The errors have disappeared and all seems to be working. :-)


Brenden


 Forwarded Message 
Subject:C++ compiler gone weird, flags errors
Date:   Tue, 28 Apr 2020 08:36:46 -0700
From:   Brenden Towey 
To: users@netbeans.apache.org



Hi folks, I wonder if I could get some help with an issue I'm having.  I 
have NetBeans 11.1 and the C++ module installed for Cygwin.  I think at 
some point I updated my Cygwin installation (using the standard install 
tool for Cygwin) and now NetBeans reports errors everywhere.


For example, this code example with errors marked as comments:

#include   // cannot find include file 
#include     // cannot find include file 

using namespace std;   // Unable to resolve identifier std

/*
 *
 */
int main(int argc, char** argv) {
   cout << "Hello world.";  // Unable to resolve identifier cout
   return 0;
}


The thing is the code compiles and runs just fine.  It's just the editor 
window that is getting all of these errors.  Help?  What would I look 
for to tell the editor to resolve these errors when the compiler is 
working just fine?


Thanks!




Changing comment character

2020-05-04 Thread letrollpoilu
Hi all,

This is the first time I'm using this mailing list because I'm a bit
desperate to find an answer to this question :)
I posted in on Stack here:
https://stackoverflow.com/questions/61527564/modify-comment-symbols-in-netbeans

But you can still find below the question:

I'm using Netbeans 11, and I have now switch from Ruby sass to Dart
sass. The thing is that when I comment a block of code on my .scss
files, they are commented like that:

|@mixintest($var){/*color:red; font-size: #{var}*10;*/color:blue;}|

The thing is that now in Dart sass, what's in between the /**/ is
compiled and raises sometimes errors. Though I just want to comment it.
So I would need to comment this way:

|@mixintest($var){//color:red;//font-size: #{var}*10;color:blue;}|

This is fine for 2 lines, but sometimes I need to comment big blocks,
and Netbeans is not using the // but /**/. So is there a way to change
the default commenting of Netbeans for .scss files? I mean this has to
be somewhere since you can sometimes comment in blocks with #.

Any help would be greatly appreciated. Thanks a lot in advance!



Re: Missing module opening existing HTML project

2020-05-04 Thread Bayless Kirtley
I have no idea what happened but it finally just started working last 
night and I did nothing to correct it.


Bayless


On 5/2/20 12:23 PM, Bayless Kirtley wrote:
I just installed Netbeans 11.1 on Linux Mint 19.3. It seem to open my 
java projects all right but my HTML project shows as "Broken". When I 
try to resolve the problem it gives the following message.


Would also need to enable 
StandardModule:org.netbeans.modules.web.webkit.tooling jarFile /home/...


with the path to the jar file which does exist as shown and marked as 
executable. How do I enable it?


Bayless
l


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

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



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

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