Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:15583 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 80780 invoked by uid 1010); 24 Mar 2005 15:44:49 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 80763 invoked from network); 24 Mar 2005 15:44:48 -0000 Received: from unknown (HELO pb1.pair.com) (127.0.0.1) by localhost with SMTP; 24 Mar 2005 15:44:48 -0000 X-Host-Fingerprint: 212.112.227.169 ipx11223.ipxserver.de Linux 2.4/2.6 Received: from ([212.112.227.169:55705] helo=ipx11223.ipxserver.de) by pb1.pair.com (ecelerity HEAD r(5268)) with SMTP id 45/96-02157-070E2424 for ; Thu, 24 Mar 2005 10:44:48 -0500 Received: from localhost (localhost [127.0.0.1]) by ipx11223.ipxserver.de (Postfix) with ESMTP id 357F0DF0113; Thu, 24 Mar 2005 16:45:18 +0100 (CET) Received: from ipx11223.ipxserver.de ([127.0.0.1]) by localhost (ipx11223 [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20941-10; Thu, 24 Mar 2005 16:45:12 +0100 (CET) Received: from [192.168.0.77] (port-212-202-40-148.dynamic.qsc.de [212.202.40.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by ipx11223.ipxserver.de (Postfix) with ESMTP id 9E7C8DF011A; Thu, 24 Mar 2005 16:45:12 +0100 (CET) Message-ID: <4242E067.6070306@php.net> Date: Thu, 24 Mar 2005 16:44:39 +0100 User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Wez Furlong Cc: Jason Barnett , internals@lists.php.net References: <20050321201142.37642.qmail@lists.php.net> <5.1.0.14.2.20050323173319.02eb3990@localhost> <20050324111834.43481.qmail@lists.php.net> <4e89b42605032407273bc6a931@mail.gmail.com> In-Reply-To: <4e89b42605032407273bc6a931@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by somedaemon at backendmedia.com Subject: Re: [PHP-DEV] extension naming From: lsmith@php.net (Lukas Smith) Wez Furlong wrote: > On Thu, 24 Mar 2005 06:16:03 -0500, Jason Barnett > wrote: > >>... >> >>>>The obvious problem is: >>>>What comes after "i"? >> >>ii? iii? iv? > > > improved improved, > improved improved improved > improved very > > i means improved, not "the roman numeral i". Well that may be have been the original intention. I have seen alot of people suggest going with roman numerals as a way to prevent collisions with other projects. It is an interesting coincidence. I am not aware of any projects who has used roman numerals so it will prevent collisions. However there is a good reason why nobody has done it: - its ugly - it gets verbose - the letter "i" isnt the most readable letter .. and several "i"s next too eachother are only making things worse. Then again like I said it does provide a solution to work around issues like how to deal with standards like: POP3 IPv6 Or products like: DB2 Doing the obvious and appending numbers will lead to problems which we addressed in PEAR by allowing stuff like this at the developers choice: 1. FooX 2. FoovX 3. Foo_vX Not particularily a perfect solution either. regards, Lukas