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,WEIRD_QUOTING 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!p2g2000prf.googlegroups.com!not-for-mail From: =?ISO-8859-1?B?Suly9G1l?= Newsgroups: comp.lang.ada Subject: Re: Ada for Netbeans [0.1.6] Date: Tue, 6 Jan 2009 04:37:58 -0800 (PST) Organization: http://groups.google.com Message-ID: 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> 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 1231245479 17156 127.0.0.1 (6 Jan 2009 12:37:59 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 6 Jan 2009 12:37:59 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: p2g2000prf.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.5) Gecko/2008120122 Firefox/3.0.5,gzip(gfe),gzip(gfe) Xref: g2news2.google.com comp.lang.ada:4193 Date: 2009-01-06T04:37:58-08:00 List-Id: On 5 jan, 17:00, raster wrote: > > I solved any problems with 0.1.6 version (http://plugins.netbeans.org/ > PluginPortal/faces/PluginDetailPage.jsp?pluginid=3D13977): > 1. Fix string and char literal recognition. > 2. Fix new ada platform and autodetect in linux system. > 3. Fix gpr template file for linux systems. > 4. Fix project actions for linux systems. > > This first version of ada for netbeans I have released for =A0the > communities to have some necessary feedbacks to the pursuance of the > project available, to understand if the road that I have undertaken is > correct. > > Thanks all for your collaboration. > Andrea Thanks for these fixes. So, I have installed 0.1.6 Here my comments : 1/ Auto-Detect is still not giving me any results. I am using Windows XP SP3 with Gnat GPL 2008 and Gnat GPL 2007 "manually copied" somewhere on C: I start Netbeans 6.5 from a Command Prompt with PATH adjusted (depending on which compiler I want to use). FYI, (Emacs + ada-mode) and GPS are working fine 2/ Here under you will find an updated Ada Source file for which the editor claims there are "Syntax error" Regards and thanks again for that contribution. ---------------------------------------------------------------------------= ----- -- File: test_ada_for_netbeans.ads -- -- Created on 30 d=E9c. 2008 ---------------------------------------------------------------------------= ----- -- -- Description of test_ada_for_netbeans -- -- @author jerome -- package Test_Ada_For_Netbeans is -- Problem in 0.1.5 A_Character : constant Character :=3D 's'; Another_Character : constant Character :=3D 's'; A_String : constant String :=3D """"; -- Problem in 0.1.6 generic type A_Type is (<>); package A_Generic_Package is function Is_Alive (A_Variable : A_Type) return Boolean; end A_Generic_Package; end Test_Ada_For_Netbeans;