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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,5b18a5a233d3f64b X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!d57g2000hsg.googlegroups.com!not-for-mail From: gautier_niouzes@hotmail.com Newsgroups: comp.lang.ada Subject: Re: Ann: UnZip-Ada v.20 Date: 19 Mar 2007 07:05:12 -0700 Organization: http://groups.google.com Message-ID: <1174313112.392118.313210@d57g2000hsg.googlegroups.com> References: <45fa9823$1_4@news.bluewin.ch> <45fabc52$0$192$edfadb0f@dread11.news.tele.dk> <45fad3af$1_6@news.bluewin.ch> <45fb9e15$1_4@news.bluewin.ch> <1174303820.108064.43930@e1g2000hsg.googlegroups.com> NNTP-Posting-Host: 206.122.158.4 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: posting.google.com 1174313113 11598 127.0.0.1 (19 Mar 2007 14:05:13 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Mon, 19 Mar 2007 14:05:13 +0000 (UTC) In-Reply-To: <1174303820.108064.43930@e1g2000hsg.googlegroups.com> User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1),gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: d57g2000hsg.googlegroups.com; posting-host=206.122.158.4; posting-account=CZAoAgwAAAD9ntJQ85OlWL0_Q5EFdzP_ Xref: g2news1.google.com comp.lang.ada:14558 Date: 2007-03-19T07:05:12-07:00 List-Id: On 19 mar, 12:30, "Harald Korneliussen" wrote: > -- Codes for methods > > stored: constant:= 0; > shrunk: constant:= 1; > reduced_1: constant:= 2; > reduced_2: constant:= 3; > reduced_3: constant:= 4; > reduced_4: constant:= 5; > imploded: constant:= 6; > deflated: constant:= 8; > > SupportedMethods: constant:= > 2 ** stored + 2 ** shrunk + > 2 ** reduced_1 + 2 ** reduced_2 + > 2 ** reduced_3 + 2 ** reduced_4 + > 2 ** imploded + > 2 ** deflated; > > Ick! ;-) Translation from C via Pascal shines through occasionally. I guess you spotted this remain of C code in the browsable source (version 15), it is not anymore in the present version (v. 20). You will see yet a few other not-so-nice things, like packages that used to contain global variables; but since you can make packages sub-units of a procedure, it was possible to finally zap this problem like with a mangic wand... > But it's really interesting, we are certainly not spoiled with pure > Ada libraries. > Thanks for making it public, and I hope you go with a > standard license. There is an improved version now (certainly not perfect) of the license. Gautier