[Zope-dev] multiple servers!

2001-06-11 Thread Stian Jenssen
Hi! I wan't to run two webservers on the same machine one, zope/apache an one apache. Can I set it up with 2 ports eg. 8080 and 80 but how do I do it? Stian ___ Zope-Dev maillist - [EMAIL PROTECTED]

Re: [Zope-dev] Structured Text Plus

2001-06-11 Thread Chris Withers
Have you checked out StructuredTextNG? cheers, Chris Ian Clatworthy wrote: I've put together the design for an extended version of Structured Text which I'd like some feedback on before I go too much further. At this stage, the design is explained via a series of user-level How-To's,

Re: [Zope-dev] Advanced REQUEST inside Python Class Problem

2001-06-11 Thread Erik Enge
On Sun, 10 Jun 2001, Stephan Richter wrote: But, if I try: dtml-var ObjectInstance, then I cannot use self.REQUEST, since the namespace is somehow not passed. Don't you have to use dtml-var ObjectInstance()? ___ Zope-Dev maillist - [EMAIL

Re: [Zope-dev] multiple servers!

2001-06-11 Thread Erik Enge
On Mon, 11 Jun 2001, Stian Jenssen wrote: I wan't to run two webservers on the same machine one, zope/apache an one apache. Can I set it up with 2 ports eg. 8080 and 80 but how do I do it? Edit the z2.py file in your zope/ directory, look for HTTP_PORT and adjust that to your needs.

VS: [Zope-dev] multiple servers!

2001-06-11 Thread Stian Jenssen
I have set up two ports but get a error message, 404 error. I just want apache on the second port -Opprinnelig melding- Fra: Erik Enge [mailto:[EMAIL PROTECTED]] Sendt: 11. juni 2001 12:05 Til: Stian Jenssen Kopi: '[EMAIL PROTECTED]' Emne: Re: [Zope-dev] multiple servers! On Mon, 11

RE: [Zope-dev] request.set

2001-06-11 Thread Adrian Hungate
Title: RE: [Zope-dev] request.set What this does is set a key/value pair in the REQUEST variable (Which is a sort of python dictionary, just with extra smarts). DTML will not let you do dtml-call REQUEST['record_ids']=0 for security reasons, so the REQUEST variable has the .set method which

Re: [Zope-dev] aq_explicit isn't?

2001-06-11 Thread Chris Withers
Dieter Maurer wrote: What you probably need: derive a new ObjectManager from Acquisition.Explicit and the current ObjectManager. provide an interface to manage the attributes that should be acquired implicitly. Well, I had a go at this, but not quite in the way you describe.

Re: [Zope-dev] Structured Text Plus

2001-06-11 Thread Andreas Jung
- Original Message - From: Ian Clatworthy [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, June 10, 2001 9:52 PM Subject: [Zope-dev] Structured Text Plus I've put together the design for an extended version of Structured Text which I'd like some feedback on before I go too

Re: [Zope-dev] Request for a Pluggin Index (NameIndex)

2001-06-11 Thread Chris Withers
Matt Hamilton wrote: I would like to help if I had time :) I think the most efficient way of doing what you want is to construct an index based on a 'Suffix Trie' this essentially allows matching of arbitrary substrings very quickly, the only problem is that it takes up a fair amount of

Re: [Zope-dev] Request for a Pluggin Index (NameIndex)

2001-06-11 Thread Andreas Jung
There is a new How-To for PlugginIndexes: http://www.zope.org/Members/ajung/howto/PluginIndexes/index_html Andreas - Original Message - From: Chris Withers [EMAIL PROTECTED] To: Matt Hamilton [EMAIL PROTECTED] Cc: Andreas Jung [EMAIL PROTECTED]; zope-dev [EMAIL PROTECTED] Sent: Monday,

Re: [Zope-dev] Request for a Pluggin Index (NameIndex)

2001-06-11 Thread Matt Hamilton
On Mon, 11 Jun 2001, Chris Withers wrote: Wow Matt, you seem to know what you're talking about :-) My final year University project was to create an Open Source mailing list archive :) I did quite a bit of reading into information retrieval and assorted algorithms and data structures. I had

Re: [Zope-dev] multiple servers!

2001-06-11 Thread Tim McLaughlin
Stian, It's probably nicer to use the -P option for z2.py which allows you to specify a port offset for all ZServer services. ie. -P 8001 puts http on 8081 and ftp on 8022 or -P 8002 puts http on 8082 and ftp on 8023 --Tim _ Tim

Re: [Zope-dev] multiple servers!

2001-06-11 Thread Dieter Maurer
Stian Jenssen writes: I wan't to run two webservers on the same machine one, zope/apache an one apache. Can I set it up with 2 ports eg. 8080 and 80 but how do I do it? You can control the ports used by parameters to z2.py (usually called in start). Be careful, as Zope usually does serve

Re: [Zope-dev] aq_explicit isn't?

2001-06-11 Thread Dieter Maurer
Chris Withers writes: Dieter Maurer wrote: What you probably need: derive a new ObjectManager from Acquisition.Explicit and the current ObjectManager. provide an interface to manage the attributes that should be acquired implicitly. Well, I had a go at

Re: [Zope-dev] Structured Text Plus

2001-06-11 Thread Ian Clatworthy
Andreas Jung wrote: - Original Message - From: Ian Clatworthy [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, June 10, 2001 9:52 PM Subject: [Zope-dev] Structured Text Plus I've put together the design for an extended version of Structured Text which I'd like some