From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,5bcecfde044a119d X-Google-Attributes: gid103376,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII Path: g2news2.google.com!postnews.google.com!t39g2000prh.googlegroups.com!not-for-mail From: =?ISO-8859-1?Q?J=E9r=F4me_Haguet?= Newsgroups: comp.lang.ada Subject: Re: Ada for Netbeans [0.1.7] Date: Wed, 4 Feb 2009 07:27:35 -0800 (PST) Organization: http://groups.google.com Message-ID: <7a976860-ef8c-46ec-9f0e-81d46d53f70d@t39g2000prh.googlegroups.com> References: <483c86d1-7a60-4a86-8bbb-aa79d364f82a@r10g2000prf.googlegroups.com> <199b4221-bc46-4dfc-beca-542917a8f548@r37g2000prr.googlegroups.com> <28dfe716-8c01-4a77-a55f-86fc747b007b@o4g2000pra.googlegroups.com> <028effae-d6ba-48eb-a22b-4a65acfb725e@b38g2000prf.googlegroups.com> <2681b9ec-15c4-4a7b-a3ea-26d2db4ba9f6@n33g2000pri.googlegroups.com> <68632358-7586-4fac-8020-c728aa231b3c@z27g2000prd.googlegroups.com> <77cc298c-36a0-44f0-81c7-ea4c4f48d282@g1g2000pra.googlegroups.com> NNTP-Posting-Host: 84.96.81.228 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1233761256 2717 127.0.0.1 (4 Feb 2009 15:27:36 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Wed, 4 Feb 2009 15:27:36 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: t39g2000prh.googlegroups.com; posting-host=84.96.81.228; posting-account=d5j2DQoAAABeZhUIl30hw1xF6LEcGIMa User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9.0.6) Gecko/2009011913 Firefox/3.0.6 (.NET CLR 3.5.30729),gzip(gfe),gzip(gfe) Xref: g2news2.google.com comp.lang.ada:4524 Date: 2009-02-04T07:27:35-08:00 List-Id: On 2 f=E9v, 01:32, raster wrote: > > I have just published a new version of Ada for NB 0.1.7:http://plugins.ne= tbeans.org/PluginPortal/faces/PluginDetailPage.jsp?p... > It's an incremental version of job. > I have also corrected a pair of bugs from your comments (J=E9r=F4me and > xavier) and and to improve the auto-detect, I also check the > environment path variable now. > > ciao > Andrea Hello Andrea. I confirm : Everything I have reported is fixed with 0.1.7. Thanks a lot ! By the way, is there any possibility to contribute to that project ? A few comments about 0.1.7 : 1/ In Project Properties > Build > Main Module > Browse, it would be good a/ to have files sorted alphabetically b/ to have an optionnal filter (ex : *.adb; *-test.adb) 2/ Here under you will find an updated Ada Source file for which the editor claims there are "Syntax error". PS : Uncomment pragma License, and you will get another one. -- ---------------------------------------------------------------------------= ----- -- File: Ada4nb_v017.ads -- -- Created on 30 d=E9c. 2008 ---------------------------------------------------------------------------= ----- -- -- Description of Ada4nb_v017 -- -- @author jerome -- -- pragma License (Unrestricted); package Ada4nb_v017 is type Ensemble is array (Character) of Boolean; Operateur : constant Ensemble :=3D Ensemble'('+' | '-' =3D> True, others =3D> False); procedure Query_Element (Position : Integer; Process : not null access procedure (Element : Integer)); end Ada4nb_v017;