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=unavailable autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!news.eternal-september.org!feeder.eternal-september.org!feed.usenet.farm!feeder4.usenet.farm!feeder-out1.eu1.usenetexpress.com!feeder.usenetexpress.com!feeder-in1.eu1.usenetexpress.com!ecngs!feeder2.ecngs.de!81.171.118.63.MISMATCH!peer03.fr7!futter-mich.highwinds-media.com!news.highwinds-media.com!fx39.am4.POSTED!not-for-mail From: Felix Krause Newsgroups: comp.lang.ada Message-ID: <2017082016575265275-contact@flyx.org> References: <2017081710482765630-contact@flyx.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed Content-Transfer-Encoding: 8bit Subject: Re: ANN: AdaYaml 0.1.0 (initial release) User-Agent: Unison/2.2 X-Complaints-To: abuse@eweka.nl NNTP-Posting-Date: Sun, 20 Aug 2017 14:57:52 UTC Organization: Eweka Internet Services Date: Sun, 20 Aug 2017 16:57:52 +0200 X-Received-Bytes: 1859 X-Received-Body-CRC: 1981251921 Xref: news.eternal-september.org comp.lang.ada:47758 Date: 2017-08-20T16:57:52+02:00 List-Id: On 2017-08-19 15:28:37 +0000, Lucretia said: > Just had a brief look at this. I disagree with having Text outside of > the Yaml package namespace, it might not be part of the spec, but it is > part of the API/project so should be inside as Yaml.Text. Also, if > there exists another package called Text somewhere, you will be > inflicting naming collisions. Well, I thought about moving the Text stuff into a separate, independent project because I might want to use it somewhere else. For now, it exists as part of AdaYaml, but in the Text package. I also like having the Event type inside of the base Yaml package, which would not be possible if I moved Text to Yaml.Text because Event depends on Text. This is what made me believe Text is a very basic thing and should be separate from Yaml. I am not aware of any publicly available libraries using Text as package name, but it does seem like a name that may lead to a collision. I might reconsider the package structure, but as soon as I start using the Text stuff elsewhere, I need to place it in a separate base package anyway. Perhaps I can come up with a better name to avoid collisions. -- Regards, Felix Krause