Re: Module Structure/Import Design Problem

2008-11-25 Thread Arnaud Delobelle
Bruno Desthuilliers <[EMAIL PROTECTED]> writes: > Rafe a écrit : >> On Nov 20, 2:06 pm, Arnaud Delobelle <[EMAIL PROTECTED]> wrote: > (snip) >>> >>> Or (better IMHO) you can make types register themselves with the factory >>> function (in which case it would have some state so it would make more >

Re: Module Structure/Import Design Problem

2008-11-25 Thread Bruno Desthuilliers
Rafe a écrit : On Nov 20, 2:06 pm, Arnaud Delobelle <[EMAIL PROTECTED]> wrote: (snip) Or (better IMHO) you can make types register themselves with the factory function (in which case it would have some state so it would make more sense to make it a factory object). Can you elaborate on what

Re: Module Structure/Import Design Problem

2008-11-24 Thread Rafe
On Nov 22, 2:39 am, Stef Mientki <[EMAIL PROTECTED]> wrote: > Gabriel Genellina wrote: > > En Thu, 20 Nov 2008 17:36:11 -0200, Stef Mientki > > <[EMAIL PROTECTED]> escribió: > > I'm not an expert, I even don't fully understand your problem, > but having struggled with imports in the past,

Re: Module Structure/Import Design Problem

2008-11-23 Thread Gabriel Genellina
En Fri, 21 Nov 2008 17:39:14 -0200, Stef Mientki <[EMAIL PROTECTED]> escribió: Gabriel Genellina wrote: En Thu, 20 Nov 2008 17:36:11 -0200, Stef Mientki <[EMAIL PROTECTED]> escribió: I'm not an expert, I even don't fully understand your problem, but having struggled with imports in the past,

Re: Module Structure/Import Design Problem

2008-11-22 Thread Steve Holden
Stef Mientki wrote: > Steve Holden wrote: >> Stef Mientki wrote: >> >>> Gabriel Genellina wrote: >>> >> [...] >> >>> Sorry I don't understand all that pep-talk (I'm not a programmer ;-) >>> >> >> And I'm not a plumber. The difference between us is that I don't write >> blogs telling p

Re: Module Structure/Import Design Problem

2008-11-22 Thread Stef Mientki
Steve Holden wrote: Stef Mientki wrote: Gabriel Genellina wrote: [...] Sorry I don't understand all that pep-talk (I'm not a programmer ;-) And I'm not a plumber. The difference between us is that I don't write blogs telling people how to lay out and connect their pipework.

Re: Module Structure/Import Design Problem

2008-11-21 Thread Steve Holden
Stef Mientki wrote: > Gabriel Genellina wrote: [...] > Sorry I don't understand all that pep-talk (I'm not a programmer ;-) And I'm not a plumber. The difference between us is that I don't write blogs telling people how to lay out and connect their pipework. regards Steve PS: Q: What's the diff

Re: Module Structure/Import Design Problem

2008-11-21 Thread Stef Mientki
Gabriel Genellina wrote: En Thu, 20 Nov 2008 17:36:11 -0200, Stef Mientki <[EMAIL PROTECTED]> escribió: I'm not an expert, I even don't fully understand your problem, but having struggled with imports in the past, I've a solution now, which seems to work quit well. That's not very helpful, i

Re: Module Structure/Import Design Problem

2008-11-21 Thread Stef Mientki
Rafe wrote: On Nov 21, 2:36 am, Stef Mientki <[EMAIL PROTECTED]> wrote: I'm not an expert, I even don't fully understand your problem, but having struggled with imports in the past, I've a solution now, which seems to work quit well. That's not very helpful, is it? Were you planning

Re: Module Structure/Import Design Problem

2008-11-20 Thread Gabriel Genellina
En Thu, 20 Nov 2008 17:36:11 -0200, Stef Mientki <[EMAIL PROTECTED]> escribió: I'm not an expert, I even don't fully understand your problem, but having struggled with imports in the past, I've a solution now, which seems to work quit well. That's not very helpful, is it? Were you planning t

Re: Module Structure/Import Design Problem

2008-11-20 Thread Steve Holden
Rafe wrote: > On Nov 21, 1:39 am, Steve Holden <[EMAIL PROTECTED]> wrote: >> Rafe wrote: >>> Hi, >>> I am in a situation where I feel I am being forced to abandon a clean >>> module structure in favor of a large single module. If anyone can save >>> my sanity here I would be forever grateful. >>> M

Re: Module Structure/Import Design Problem

2008-11-20 Thread Rafe
On Nov 21, 2:36 am, Stef Mientki <[EMAIL PROTECTED]> wrote: > >> I'm not an expert, I even don't fully understand your problem, > >> but having struggled with imports in the past, > >> I've a solution now, which seems to work quit well. > > > That's not very helpful, is it? Were you planning to kee

Re: Module Structure/Import Design Problem

2008-11-20 Thread Rafe
On Nov 21, 1:39 am, Steve Holden <[EMAIL PROTECTED]> wrote: > Rafe wrote: > > Hi, > > > I am in a situation where I feel I am being forced to abandon a clean > > module structure in favor of a large single module. If anyone can save > > my sanity here I would be forever grateful. > > > My problem i

Re: Module Structure/Import Design Problem

2008-11-20 Thread Stef Mientki
I'm not an expert, I even don't fully understand your problem, but having struggled with imports in the past, I've a solution now, which seems to work quit well. That's not very helpful, is it? Were you planning to keep the solution secret? sorry slip of the keyboard ;-) htt

Re: Module Structure/Import Design Problem

2008-11-20 Thread Steve Holden
Stef Mientki wrote: > Rafe wrote: >> Hi, >> >> I am in a situation where I feel I am being forced to abandon a clean >> module structure in favor of a large single module. If anyone can save >> my sanity here I would be forever grateful. >> >> My problem is that classes in several modules share a c

Re: Module Structure/Import Design Problem

2008-11-20 Thread Steve Holden
Rafe wrote: > Hi, > > I am in a situation where I feel I am being forced to abandon a clean > module structure in favor of a large single module. If anyone can save > my sanity here I would be forever grateful. > > My problem is that classes in several modules share a common base > class which ne

Re: Module Structure/Import Design Problem

2008-11-20 Thread Stef Mientki
Rafe wrote: Hi, I am in a situation where I feel I am being forced to abandon a clean module structure in favor of a large single module. If anyone can save my sanity here I would be forever grateful. My problem is that classes in several modules share a common base class which needs to impleme

Re: Module Structure/Import Design Problem

2008-11-20 Thread Rafe
On Nov 20, 2:06 pm, Arnaud Delobelle <[EMAIL PROTECTED]> wrote: > Rafe <[EMAIL PROTECTED]> writes: > > Hi, > > > I am in a situation where I feel I am being forced to abandon a clean > > module structure in favor of a large single module. If anyone can save > > my sanity here I would be forever gra

Re: Module Structure/Import Design Problem

2008-11-19 Thread Arnaud Delobelle
Rafe <[EMAIL PROTECTED]> writes: > Hi, > > I am in a situation where I feel I am being forced to abandon a clean > module structure in favor of a large single module. If anyone can save > my sanity here I would be forever grateful. > > My problem is that classes in several modules share a common b

Module Structure/Import Design Problem

2008-11-19 Thread Rafe
Hi, I am in a situation where I feel I am being forced to abandon a clean module structure in favor of a large single module. If anyone can save my sanity here I would be forever grateful. My problem is that classes in several modules share a common base class which needs to implement a factory m