From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19371 invoked from network); 6 Jun 2001 19:12:52 -0000 Received: from sunsite.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 6 Jun 2001 19:12:52 -0000 Received: (qmail 12283 invoked by alias); 6 Jun 2001 19:12:34 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 14778 Received: (qmail 12271 invoked from network); 6 Jun 2001 19:12:33 -0000 Date: Wed, 6 Jun 2001 15:12:40 -0400 From: Clint Adams To: Peter Stephenson Cc: Zsh hackers list Subject: Re: Module namespaces? RE: PATCH: zftp/tcp abstraction Message-ID: <20010606151240.A28014@dman.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from pws@csr.com on Wed, Jun 06, 2001 at 07:07:25PM +0100 > We could use zsh/net/*. I wouldn't want to move zftp there, however, since > it will be a major nuisance now. But there's nothing to stop us making > zsh/net/tcp. Zftp is directly useful to users, while tcp isn't, so hiding > the one at a lower level makes some kind of twisted sense. > > I don't know offhand if the install scripts handle extra levels, but > zmodload won't have any problem. make check is happy, at least. Index: Src/Modules/tcp.mdd =================================================================== RCS file: /cvsroot/zsh/zsh/Src/Modules/tcp.mdd,v retrieving revision 1.1 diff -u -r1.1 tcp.mdd --- Src/Modules/tcp.mdd 2001/06/06 18:53:56 1.1 +++ Src/Modules/tcp.mdd 2001/06/06 19:10:49 @@ -1,4 +1,4 @@ -name=zsh/tcp +name=zsh/net/tcp link=dynamic load=no Index: Src/Modules/zftp.mdd =================================================================== RCS file: /cvsroot/zsh/zsh/Src/Modules/zftp.mdd,v retrieving revision 1.7 diff -u -r1.7 zftp.mdd --- Src/Modules/zftp.mdd 2001/06/06 18:53:56 1.7 +++ Src/Modules/zftp.mdd 2001/06/06 19:10:49 @@ -5,6 +5,6 @@ autobins="zftp" -moddeps="zsh/tcp" +moddeps="zsh/net/tcp" objects="zftp.o"