[Zope] Problem : ZCatalog

2001-01-25 Thread Fabien Germain
Hello,I've got a problem with a search form.I have a ZCatalog with lots of entries. I added the index "absolute_url" inorder to search by the files url.Why ?'cause I have files in organized folders like that :/language_name/country_name/city_name/elementI'd like to do a search on "#

Re: [Zope] Minor oddity in beta 3

2001-01-25 Thread Shane Hathaway
Brian Lloyd wrote: > > > One oddity I just noticed in the beta 3... if you have no folders > > created in the root, then the left-hand navigation pane doesn't > > show the Control_Panel, Quickstart, or acl_users folder. Once > > you add a folder, then all three of those objects, as well as the >

Re: [Zope] ZMySQLDA problems after upgrade

2001-01-25 Thread Andy Dustman
On Thu, 25 Jan 2001, Randall F. Kern wrote: > 1) All field values appear as strings in python Use ZMySQLDA-2.0.4. There was some confusion on my part as to whether or not the DA should return string values to Zope. All values are now converted to the correct Python types, or DateTime objects. >

RE: [Zope] LoginManager, can't get past login form

2001-01-25 Thread Nick McDowell
Fred, I encountered the same problem. I soon realized that the ZPatterns that is packaged with LoginManger is a version different to the one Dan Pierson mentions in his article. My resolution was to upgrade my ZPatterns to version 0.4.3b2, recreate my LoginManager folder (i.e. delete the old ve

Re: [Zope] Unique ID generation

2001-01-25 Thread Aleksander Salwa
On Thu, 25 Jan 2001, Timothy Wilson wrote: > Try adding the following to your ZClass add method: > > > > > This will use the ZopeTime() as the id of your instance. I doubt you can add > them faster enough to get the same one twice. :-) When you add instances programatically, than you can add

[Zope] LoginManager, can't get past login form

2001-01-25 Thread Fred Yankowski
I've installed LoginManager exactly (AFAICT) according to , and when I try to access the protected folder I get the login form, but when I enter the username and password into that form and submit it, I just get the same form back again. I've tested

[Zope] "Acquisition Algebra"; interaction of containment and acquisition is confusing

2001-01-25 Thread Fred Yankowski
Can anyone help me understand what's going on in the last example of the main "Acquisition" document, ? I think I understand how the various "complex expressions" relate to the equivalent expression in terms of the '__of__' operator

Re: [Zope] Editors [OT]

2001-01-25 Thread Michel Pelletier
On Thu, 25 Jan 2001, Chris Withers wrote: > My wishlist would be: > > - Runs nicely on NT4 XEmacs > - Syntax highlighting for Python, C, XML, HTML (and, although this is dreamworld > stuff, DTML ;-) XEmacs > - FTP or WebDAV editing built in as standard (or alternative solution, like > cadave

Re: [Zope] Unique ID generation

2001-01-25 Thread Timothy Wilson
On 25 Jan 2001, Tim Moore wrote: > I'm writing a simple ZClass (and a second ZClass which contains the > first) and I would like the constructor for this class to be able to > auto-generate unique IDs for the instances rather than making the > owner choose one. Some people call me "Tim" too. :-)

Re: [Zope] Editors [OT]

2001-01-25 Thread seb bacon
> - class browser for python, with expand/collapse of code (like the editor for > Python 2) would http://www.beopen.com/products/oobrowser/oobrowser_overview.html be any use? ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/li

Re: [Zope] Unique ID generation

2001-01-25 Thread Andy McKay
Using time is very common eg _.str(_.int(ZopeTime)), or I did a HowTo on using FSCounter to do this: http://www.zope.org/Members/andym/FSCounter/unique_ids -- Andy McKay. - Original Message - From: "Tim Moore" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 25, 2001

[Zope] Unique ID generation

2001-01-25 Thread Tim Moore
I'm writing a simple ZClass (and a second ZClass which contains the first) and I would like the constructor for this class to be able to auto-generate unique IDs for the instances rather than making the owner choose one. What I've tried isn't working, but I don't really know what I'm doing here..

[Zope] ZMySQLDA problems after upgrade

2001-01-25 Thread Randall F. Kern
I recently moved my product from zope 2.2.5 with ZMySQLDA 1.1.4 and MySQLDB 0.1.2 to a Zope 2.3.0b3 with new mysql code (MySQL-python-0.3.0, and ZMySQLDA 2.0.1). With these changes, I've found a couple problems, and was wondering if others where familiar with any of these problems, if some might

Re: [Zope] Login Manager

2001-01-25 Thread Dan L. Pierson
"Nick McDowell" <[EMAIL PROTECTED]> writes: > Hi, > > I have installed Login Manager utilizing skinscripts as per Dan Pierson's > article @ http://www.zope.org/Members/dlpierson/sqlLogin and everything > works fine. I would love to customize it to tailor my needs and was > wondering if anyone n

Re: [Zope] New User: Documentation + Information

2001-01-25 Thread Jason Cunliffe
Until the ORelly book is out, my offline suggestion is go to the online Zope book at http://www.zope.org/Members/michel/ZB then click on each chapter link and SAVE AS HTML to your local drive. Print and/or read in your browser locally. Zope 2.3 also has starter tutorial built in. To access it yo

RE: [Zope] How to prevent the user from going

2001-01-25 Thread Farrell, Troy
Netscape and Mozilla create make new HTTP requests when a user asks to view source or print. This drives me nuts. I want to see source of the page I'm looking at. If there are any Moz or NS people on the list, please enlighten us to the reasoning behind this behavior. Troy -Original Messa

[Zope] Login Manager

2001-01-25 Thread Nick McDowell
Hi, I have installed Login Manager utilizing skinscripts as per Dan Pierson's article @ http://www.zope.org/Members/dlpierson/sqlLogin and everything works fine. I would love to customize it to tailor my needs and was wondering if anyone new of in-depth documentation detailing LoginManager. For

RE: [Zope] Instatiate object instances :-)

2001-01-25 Thread Tom Jenkins
> -Original Message- > From: Aleksander Salwa [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 25, 2001 4:25 PM > To: [EMAIL PROTECTED] > Subject: Re: [Zope] Instatiate object instances :-) > > > Paths can be treated as "pointers", so methods > getPhysicalPath/(un)restrictedTraverse

Re: [Zope] url_quote written differently

2001-01-25 Thread Peter Bengtsson
sorry. Bad example. I just don't want to do it that way. I'm passing it as a parameter, and it has just got to happen :) >From inside a external python method it would be something like this: from DocumentTemplate import DT_Util text_html_quoted= DT_Util.html_quote(text_with_html) Look at the

Re: [Zope] How to prevent the user from going

2001-01-25 Thread rlanham
These lines, at least as group, ought only be used on process only pages. Never on page that an application stops on and renders to a browser. In addition to these lines, I always make it a practice to do DB or file system processes on a page that I post to, that includes the lines below, and when

Re: [Zope] Instatiate object instances :-)

2001-01-25 Thread Aleksander Salwa
Paths can be treated as "pointers", so methods getPhysicalPath/(un)restrictedTraverse may be what you need. [EMAIL PROTECTED], [EMAIL PROTECTED] /--\ | `long long long' is too long for GCC | \--/ __

[Zope] Meaning of error?

2001-01-25 Thread Steven Grimes
I'm trying to write a report for a system and When I try to view my document by clicking on the view tab at the top of the management screen I receive the following error: ! Temporarily Unavailable The resource you requested is temporarily unavailable - please try again later. (107) bad stdout st

Re: [Zope] Unable to instantiate ZClass

2001-01-25 Thread Dieter Maurer
=?iso-8859-1?q?=C5smund=20Hjulstad?= writes: > > > Error Type: AttributeError > >Error Value: _setId It appears that you ZClass does not include the "standard Python persistent classes". They are required to instantiate the class in the ZODB. You omit it only, when you

Re: [Zope] Zope gets stuck

2001-01-25 Thread Dieter Maurer
Shai Berger writes: > We've repeatedly encountered a weird situation where Zope gets > stuck. Then, when we kill one of the Zope processes, it is released > and answers requests. We see something similar once in a while (about once in 6 month): * Zope stops serving requests: processes

Re: [Zope] Unable to instantiate ZClass

2001-01-25 Thread Åsmund Hjulstad
On Thursday 25 January 2001 18:58, you wrote: > This is not Python 2 related - I've added a fix for this > (defining _setId in SimpleItem.Item) that should do the > trick. Can you update from CVS and let me know if you > still have problems? Did an update, then a rebuild ("python w_pcgi.py", nec

Re: [Zope] Instatiate object instances :-)

2001-01-25 Thread Timothy Wilson
On Thu, 25 Jan 2001, Mario Valente wrote: > The subject of this message is also another hypothesis: each object in > Zope has a reference (the "Object Instance at #hiusd9743" messages...). Is > it possible to instantiate object instances :-) ? This would be, of > course, pointers. This would

Re: [Zope] Editors [OT]

2001-01-25 Thread Dan L. Pierson
Chris Withers <[EMAIL PROTECTED]> writes: > Hmmm... interesting, maybe it's time to find a new editor... > > My wishlist would be: > > - Runs nicely on NT4 > - Syntax highlighting for Python, C, XML, HTML (and, although this is dreamworld > stuff, DTML ;-) > - FTP or WebDAV editing built in as

Re: [Zope] url_quote written differently

2001-01-25 Thread Andy McKay
the url_quote is a parameter to dtml-var. -- Andy McKay. - Original Message - From: "peter bengtson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 25, 2001 11:01 AM Subject: [Zope] url_quote written differently > 1a) is one way of writing it. > > 2a) is anoth

[Zope] url_quote written differently

2001-01-25 Thread peter bengtson
1a) is one way of writing it. 2a) is another way of writing it 1b) is a second way of writing it 2b) ? How do I do this one?? I have tried this, but that didn't work: , but that didn't work either. What's the syntax? Anybody? Cheers, Peter __

[Zope] Instatiate object instances :-)

2001-01-25 Thread Mario Valente
Hi: Can someone give any info/tips on the best way to solve this ? We have a folder "/content" containing all the diferent type of content we have available on our site. Within this folder, for example, we have a subfolder "/content/polls" where we store all the polls (instances of a

[Zope] New User: Documentation + Information

2001-01-25 Thread Freddy Wanis
Hey All, I just installed Zope in my machine but i don't have any documentation or manual .. I tryed to find something on the web page but it would just have the online manual what is not a good thing for me since i don't have 24hs of internet connection. Anyways... I'd like to know if anybody h

Re: [Zope] REMOTE_ADDR

2001-01-25 Thread Oleg Broytmann
Hi! This [P] suggests that you use mod_proxy. >--\ | As I already said, mod_proxy can't pass environment. >---+--\ | | On Thu, 25 Jan 2001, Marcus Mendes wrot

RE: [Zope] How to make broken images/links broken!

2001-01-25 Thread Farrell, Troy
I will try, although I don't completely understand your problem. Instead of refering to your images with html, try using dtml. This requires that the images are Zope Image Objects. Try this: That will place the image on the page if there is any object called "images" with a subobject "my

Re: [Zope] Editors [OT]

2001-01-25 Thread Mario Valente
At 10:08 1/25/01 +, Chris Withers wrote: >Hmmm... interesting, maybe it's time to find a new editor... > >My wishlist would be: > >- Runs nicely on NT4 >- Syntax highlighting for Python, C, XML, HTML (and, although this is dreamworld >stuff, DTML ;-) >- FTP or WebDAV editing built in as standa

RE: [Zope] Minor oddity in beta 3

2001-01-25 Thread Brian Lloyd
> One oddity I just noticed in the beta 3... if you have no folders > created in the root, then the left-hand navigation pane doesn't > show the Control_Panel, Quickstart, or acl_users folder. Once > you add a folder, then all three of those objects, as well as the > new folder, appear in the

Re: [Zope] How to make broken images/links broken!

2001-01-25 Thread Chris Withers
I'd change to using 2.3 with the Cache management stuff and leave IIS totally out of the loop. Then everyone gets what they expect and you get nice, fast-served pages :-) cheers, Chris PS: Maybe having ZServer behind Apache would be needed for a decent solution. [EMAIL PROTECTED] wrote: > >

Re: [Zope] Editors [OT]

2001-01-25 Thread Jason Cunliffe
check out HTML-Kit http://www.chami.com/html-kit/#features - Jason ___ Jason CUNLIFFE = NOMADICS['Interactive Art and Technology'] - Original Message - From: Chris Withers <[EMAIL PROTECTED]> To: Tres Seaver <[EMAIL PROTECTED]> Cc:

Re: [Zope] LoginManager ...

2001-01-25 Thread mapr
Oops, I have forgotten to ask something: I have heard that GenericUserFolder doesn't work under Zope-2.2.x, is that right ? Thanks Mario On Thu, 25 Jan 2001 [EMAIL PROTECTED] wrote: > Hi everybody, > I installed LoginManager-0-8-8b1 on Zope-2.2.2 by following the > install.-instruction

[Zope] REMOTE_ADDR

2001-01-25 Thread Marcus Mendes
I don't understand very much about Apache; but i've this lines in my httpd.conf. See: ServerAdmin XXX DocumentRoot XXX ServerName myserver.xxx.xxx ServerAlias myserver ErrorLog /usr/local/apache/logs/error_log CustomLog /usr/local/apache/logs/access_log common ScriptAlias /

[Zope] "Treeing" a dictionary

2001-01-25 Thread Gary Perez
Hi, all. I've been playing with the XML Document product and the tags. Works quite nicely. Is there any way to duplicate this "treeing" in Zope for a dictionary (with embedded dictionaries) coming in from an external method? For example, the external method is returning to Zope something like t

RE: [Zope] Unable to instantiate ZClass

2001-01-25 Thread Brian Lloyd
> My previous mail is further down. > > I have now done a fresh install from the CVS, after the beta3 release. > > If this problem is because I am using python 2.0, then I hope > someone will > fix this. If not, am I doing something wrong. > > Is everybody else using python 1.5.2? > > Asmun

[Zope] How to make broken images/links broken!

2001-01-25 Thread sbabu
Hi folks, I think this has to do with acquisition. Here's my problem. I've an image, say http://localhost:8080/colorado/images/myimage.jpg Now, with Zope, if in a DTML document called http://localhost:8080/colorado/test.html , I refer to it as it works as expected. However, if I have anot

Re: [Zope] How to prevent the user from going

2001-01-25 Thread rlanham
I use this on asp pages, you will have to modify for zope syntax, but it works very well for your need: Response.buffer = true Response.Expires = -1 Response.AddHeader "Pragma", "no-cache" Response.AddHeader "cache-control", "no-store" Original Message --- > From: Daniel

RE: [Zope] ANNOUNCE: Zope 2.3.0 beta 3 released

2001-01-25 Thread Ron Bickers
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Chris > Withers > Sent: Thursday, January 25, 2001 10:19 AM > To: Erik Enge > Cc: Oleg Broytmann; Zope Mailing List > Subject: Re: [Zope] ANNOUNCE: Zope 2.3.0 beta 3 released > > | Finally it works for m

[Zope] LoginManager ...

2001-01-25 Thread mapr
Hi everybody, I installed LoginManager-0-8-8b1 on Zope-2.2.2 by following the install.-instructions in the HOWTO: 'LoginManager with SQL DB' by jok. Nevertheless when I try to watch my TestFolder I get some weird error messages, like : Error Type: NameError Error Va

Re: [Zope] PythonScripts editable through FTP?

2001-01-25 Thread Chris Withers
"A.J. Rossini" wrote: > > > "TS" == Tres Seaver <[EMAIL PROTECTED]> writes: > > TS> I'm liking it a lot -- the last reason to even consider using > TS> emacs is gone :) > > There never is a reason to not consider Emacs. Note that there is a > new package for editing XML, called XAE

Re: [Zope] VirtualHostMonster, PATH_INFO and absolute_url

2001-01-25 Thread Evan Simpson
From: Philip Aylesworth <[EMAIL PROTECTED]> > I would appreciate that HOWTO. :) I am going to need virtual hosting for > a project I am undertaking and don't even know where to begin. Is > VirtualHostMonster part of SiteAccess (which I have just discovered when > I did a search on zope.org)? Do I

Re: [Zope] PythonScripts editable through FTP?

2001-01-25 Thread A.J. Rossini
> "TS" == Tres Seaver <[EMAIL PROTECTED]> writes: TS> I'm liking it a lot -- the last reason to even consider using TS> emacs is gone :) There never is a reason to not consider Emacs. Note that there is a new package for editing XML, called XAE (XML authoring environment) which take

Re: [Zope] Change Permissions via FTP

2001-01-25 Thread Phil Harris
Matthias, First thing is that your not looking at files when you ftp into Zope, your looking at objects. Secondly Zope uses it's own permissions/security system, that is far more comprehensive than *nix permissions. I really rather doubt that you can set permissions on Zope using a 'simple' chm

[Zope] Change Permissions via FTP

2001-01-25 Thread Matthias Füsting
Hi, is there any possibility to change permissions of files via ZOPE-FTP? Every time I try this with the command "chmod", I get following error message: 500 'SITE': command not understood. What is the problem? Thanks. Matthias Füsting ___ Zope

RE: [Zope] DNS/access problems

2001-01-25 Thread Farrell, Troy
What browser are you using? Netscape 6 (I'm on NT4) has a nasty habit of remembering (or not remembering) ports associated with addresses. When I run Zope 2.2.5 on port 80 and 2.3.0b? on port 9000, and access the first as http://localhost and the second on http://localhost:9000, Netscape 6 chang

Re: [Zope] DNS/access problems

2001-01-25 Thread Oleg Broytmann
On Thu, 25 Jan 2001, Olaf Zanger wrote: > but then, when i clicked to any link i got an error. > any idea where to search? First, carefully read the error message... Oleg. Oleg Broytmann http://www.zope.org/Members/phd/ [EMAIL PROTECTED] Programmers don't die, the

Re: [Zope] Minor oddity in beta 3

2001-01-25 Thread Martijn Pieters
On Thu, Jan 25, 2001 at 09:22:14AM -0700, Michael W. Homyack wrote: > One oddity I just noticed in the beta 3... if you have no folders created in the >root, then the left-hand navigation pane doesn't show the Control_Panel, Quickstart, >or acl_users folder. Once you add a folder, then all thre

Re: [Zope] DNS/access problems

2001-01-25 Thread Erik Enge
[Olaf Zanger] | any idea where to search? Try providing more details about what went wrong, how it should've worked instead and any error messages. Then, maybe, we'll be able to help you. :-) ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope

[Zope] Minor oddity in beta 3

2001-01-25 Thread Michael W. Homyack
One oddity I just noticed in the beta 3... if you have no folders created in the root, then the left-hand navigation pane doesn't show the Control_Panel, Quickstart, or acl_users folder. Once you add a folder, then all three of those objects, as well as the new folder, appear in the left-hand

Re: [Zope] How to prevent the user from going "Back" to a page???

2001-01-25 Thread Chris McDonough
> Use a session tracking product, that'll give you a session id and ocne the > session is complete, you can return an error if that session id is presented > again. I'd probably handle this instead by computing an identifier for the transaction and including it as a hidden form field on the submi

Re: [Zope] Problem instantiating ZClass

2001-01-25 Thread Erik Enge
[Åsmund Hjulstad] | I did the following: But do you have to? Have you sniffed the Python Product API? If you haven't already, check these out: http://www.zope.org/Members/maxm/HowTo/minimal_01> and then http://www.itamarst.org/learningzope/index.html> __

Re: [Zope] DNS/access problems

2001-01-25 Thread Phil Harris
What error are you getting? - Original Message - From: "Olaf Zanger" <[EMAIL PROTECTED]> To: "Zope Mailinglist" <[EMAIL PROTECTED]> Sent: Thursday, January 25, 2001 4:05 PM Subject: [Zope] DNS/access problems > hi there, > for presentation purposes i installed zope on suse 7.0 on a lap

Re: [Zope] VirtualHostMonster, PATH_INFO and absolute_url

2001-01-25 Thread Philip Aylesworth
> I should probably write a Howto for VirtualHostMonster, and ask the folks > who've written the various fine SiteAccess-related Howtos to incorporate it. > It really is a lot easier and safer to use than SiteRoots 98% of the time. I would appreciate that HOWTO. :) I am going to need virtual host

Re: [Zope] How to prevent the user from going "Back" to a page???

2001-01-25 Thread Chris Withers
Daniel Rusch wrote: > > We have an Order Entry/Billing intranet site where users fill out > several pages of data an then submit the information. After the order is > submitted we would like to prevent them from backing up and resubmitting > the same order. Is there a way to prevent them from doi

Re: [Zope] DNS/access problems

2001-01-25 Thread Chris McDonough
What is ipOperate? - Original Message - From: "Olaf Zanger" <[EMAIL PROTECTED]> To: "Zope Mailinglist" <[EMAIL PROTECTED]> Sent: Thursday, January 25, 2001 11:05 AM Subject: [Zope] DNS/access problems > hi there, > for presentation purposes i installed zope on suse 7.0 on a laptop with

[Zope] How to prevent the user from going "Back" to a page???

2001-01-25 Thread Daniel Rusch
All, Has anyone figured out a way to prevent a user from going "Back" to a page once they have passed it. The situation: We have an Order Entry/Billing intranet site where users fill out several pages of data an then submit the information. After the order is submitted we would like to preve

[Zope] DNS/access problems

2001-01-25 Thread Olaf Zanger
hi there, for presentation purposes i installed zope on suse 7.0 on a laptop with port 8090. i was able to access apache on port 80, i was able to access http://vaio:8090/ipOperate but then, when i clicked to any link i got an error. any idea where to search? thanks olaf -- soli-con Engine

Re: [Zope] 2.3 and Products

2001-01-25 Thread Chris McDonough
This is not true. The behavior is the same as before... the plans to make restart optional were waylaid by complications. ;-( - Original Message - From: "Andy Dawkins" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 25, 2001 11:45 AM Subject: [Zope] 2.3 and Products

Re: [Zope] 2.3 and Products

2001-01-25 Thread Andy Dawkins
Brain Cheers, That explains why it wouldn't do it then :) -Andy Brian Lloyd wrote: > > > I heard a rumour that with Zope 2.3 you don't need to restart the Zope > > server after making changes a (python) Product. > > > > Can anyone confirm this? > > If so how can I turn on/make this work ? > >

RE: [Zope] 2.3 and Products

2001-01-25 Thread Brian Lloyd
> I heard a rumour that with Zope 2.3 you don't need to restart the Zope > server after making changes a (python) Product. > > Can anyone confirm this? > If so how can I turn on/make this work ? > > -Andy That's not the case - it was something that we considered, but doing this with a consiste

[Zope] Re: Zope and Python 2.0

2001-01-25 Thread Åsmund Hjulstad
On Thursday 25 January 2001 16:37, you wrote: > On Thu, 25 Jan 2001, [iso-8859-1] Åsmund Hjulstad wrote: > > I am having a nightmare getting ZClasses to work with Python 2.0. Does it > > work for you?? > >I don't create ZClasses because: > > 1. I am The Knight Of Command Line! I do not underst

[Zope] Re: Zope and Python 2.0

2001-01-25 Thread Oleg Broytmann
On Thu, 25 Jan 2001, [iso-8859-1] Åsmund Hjulstad wrote: > I am having a nightmare getting ZClasses to work with Python 2.0. Does it > work for you?? I don't create ZClasses because: 1. I am The Knight Of Command Line! I do not understand visual programming :) 2. I learned Zope Product API b

Re: [Zope] ANNOUNCE: Zope 2.3.0 beta 3 released

2001-01-25 Thread Erik Enge
[Oleg Broytmann] | On 25 Jan 2001, Erik Enge wrote: | > | > Really? Python 2.0? Without any problems? | |I didn't found any, do you? I haven't tried running Zope with 2.0, yet. ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailma

Re: [Zope] Zope Games

2001-01-25 Thread Mario Valente
At 20:53 1/24/01 +0100, Erik Enge wrote: >[Gerald Gutierrez] > >| Does anyone know about any web games written in Zope, something akin >| to Blacknova.net, which is written in PHP ? The source is at >| http://sourceforge.net/projects/blacknova/. > >I don't. But I might be able to hook someone up

Re: [Zope] ANNOUNCE: Zope 2.3.0 beta 3 released

2001-01-25 Thread Oleg Broytmann
On 25 Jan 2001, Erik Enge wrote: > | Finally it works for me lake a charm! (Even with python 2.0!) > > Really? Python 2.0? Without any problems? I didn't found any, do you? Oleg. Oleg Broytmann http://www.zope.org/Members/phd/ [EMAIL PROTECTED] Programmers don't

[Zope] 2.3 and Products

2001-01-25 Thread Andy Dawkins
I heard a rumour that with Zope 2.3 you don't need to restart the Zope server after making changes a (python) Product. Can anyone confirm this? If so how can I turn on/make this work ? -Andy ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.or

RE: [Zope] ANNOUNCE: Zope 2.3.0 beta 3 released

2001-01-25 Thread Brian Lloyd
> [Oleg Broytmann] > > | Finally it works for me lake a charm! (Even with python 2.0!) > > Really? Python 2.0? Without any problems? Digicool's, are you > supporting Zope on Python 2.0? It is not *officially* supported, meaning that new features (unicode) are not guaranteed to work with Zope

Re: [Zope] ANNOUNCE: Zope 2.3.0 beta 3 released

2001-01-25 Thread Chris Withers
Erik Enge wrote: > > [Oleg Broytmann] > > | Finally it works for me lake a charm! (Even with python 2.0!) > > Really? Python 2.0? Without any problems? Digicool's, are you > supporting Zope on Python 2.0? That's the target for 2.4, isn't it? cheers, Chris _

Re: [Zope] ANNOUNCE: Zope 2.3.0 beta 3 released

2001-01-25 Thread Erik Enge
[Oleg Broytmann] | Finally it works for me lake a charm! (Even with python 2.0!) Really? Python 2.0? Without any problems? Digicool's, are you supporting Zope on Python 2.0? ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listi

Re: [Zope] ZPoPyDa doesnt find the PoPy-Module

2001-01-25 Thread Axel Missbach
Thanks a lot. Moving the PoPymodule.so to the $ZOPE_HOME/lib/python1.5 works fine Axel [EMAIL PROTECTED] wrote: > > On Tue, Jan 23, 2001 at 07:41:45AM +0100, Axel Missbach wrote: > > [EMAIL PROTECTED] wrote: > > > > > > On Sun, Jan 21, 2001 at 11:27:30AM +0100, Axel Missbach wrote: > > > > Hey

Re: [Zope] ANNOUNCE: Zope 2.3.0 beta 3 released

2001-01-25 Thread Oleg Broytmann
Hi! Many cheers to DC people and the community! On Wed, 24 Jan 2001, Brian Lloyd wrote: > Zope 2.3.0 beta 3 is now available. You can download it > from Zope.org: > > http://www.zope.org/Products/Zope/2.3.0b3/ Finally it works for me lake a charm! (Even with python 2.0!) Thanks to a

Re: [Zope] a little problem - $1 reward!

2001-01-25 Thread Lee
> DON'T HAVE ANY WHITESPACE BEFORE THE MAIL HEADERS. (sorry for the shouting, > but it's a classic misstake) I didn't realise that. Thanks. > Does it work "DTMLless". I.e. does it work with statically typed in email > addresses and such? Nope, 'From:Lee' still gives me [EMAIL PROTECTED] in the

Re: [Zope] Re: Editors [OT]

2001-01-25 Thread Åsmund Hjulstad
KWrite (the "advanced editor" that comes with KDE) also supports FTP. I just found out, by entering "ftp:[EMAIL PROTECTED]/" in the File Open dialog... Åsmund Hjulstad ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zo

[Zope] Re: Editors [OT]

2001-01-25 Thread Tres Seaver
On Thu, 25 Jan 2001, Chris Withers wrote: > Tres Seaver wrote: > > > > I'm liking it a lot -- the last reason to even consider using > > emacs is gone :) > > Hmmm... interesting, maybe it's time to find a new editor... > > My wishlist would be: > > - Runs nicely on NT4 Vim works for me :) h

Re: [Zope] Editors [OT]

2001-01-25 Thread Phil Harris
Boa already has a Zope interface via FTP. - Original Message - From: "Tom Deprez" <[EMAIL PROTECTED]> To: "Dario Lopez-Kästen" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, January 25, 2001 1:23 PM Subject: Re: [Zope] Editors [OT] > Hi, > > What about http://freshmeat.net/

[Zope] Zope gets stuck

2001-01-25 Thread Shai Berger
Hi guys, We've repeatedly encountered a weird situation where Zope gets stuck. Then, when we kill one of the Zope processes, it is released and answers requests. Has anybody encountered anything like this? I know this is a little short on information, but we are still trying to figure more ourse

[Zope] .isCurrentDay strangeness

2001-01-25 Thread Michael Angelo
hi all, i have an indexing script which highlights the modification date table cell depending on whether the indexed object was modified today or in the past month. however, it seems a bit flakey. todays red cells (modified today) were objects modified on Aug 25, 2000 6:34 pm and Sep 25, 2000 5:0

[Zope] Unable to instantiate ZClass

2001-01-25 Thread Åsmund Hjulstad
My previous mail is further down. I have now done a fresh install from the CVS, after the beta3 release. If this problem is because I am using python 2.0, then I hope someone will fix this. If not, am I doing something wrong. Is everybody else using python 1.5.2? Asmund Hjulstad On Tues

Re: [Zope] Editors [OT]

2001-01-25 Thread Tom Deprez
Hi, What about http://freshmeat.net/projects/boa-constructor/?highlight=boa ? I heard about this yesterday from Godefroid. With some changes we perhaps could add a Zope interface? Tom. - Original Message - From: "Dario Lopez-Kästen" <[EMAIL PROTECTED]> To: "Chris Withers" <[EMAIL PROTEC

Re: [Zope] Mozilla and Zope (Was: Re: [Zope] Editors [OT])

2001-01-25 Thread Phil Harris
IIRC I saw a post to that effect, they say they haven't got the resources right now. Shame. You could look at Komodo, http://www.activestate.com - Original Message - From: "Erik Enge" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 25, 2001 2:00 PM Subject: [Zope]

[Zope] Mozilla and Zope (Was: Re: [Zope] Editors [OT])

2001-01-25 Thread Erik Enge
[Wolfgang Strobl] | It's pure Python and wxPython (i.a. wxWindows) based, it even comes | with a first attempt of a Zope interface! I wonder that it doesn't | get more publicity here. On the other hand, I noticed that Shane | Hathaway is listed as one of the developers ... I though DigiCool was

Re: [Zope] Editors [OT]

2001-01-25 Thread Phil Harris
I just did a search on google and came up with some interesting Win32 versions of Vim 5.7.11: See http://vim.sourceforge.net/bin_download/00index.txt Since the Python and TCL interpreters are built in it should be possible to add seamless FTP/WebDAV clients into Vim, cool! http://vim.sourc

Re: [Zope] Editors [OT]

2001-01-25 Thread Phil Harris
Vim, seconded apart from the FTP and WebDAV bits ;), but using cadaver sounds like a good option. See also http://www.zope.org/Members/philh/vim_html for a small howto on using Vim with FTP. - Original Message - From: "Oleg Broytmann" <[EMAIL PROTECTED]> To: "Zope Mailing List" <[EMAIL

Re: [Zope] Editors [OT]

2001-01-25 Thread Oleg Broytmann
On Thu, 25 Jan 2001, Chris Withers wrote: > Hmmm... interesting, maybe it's time to find a new editor... > My wishlist would be: > > - Runs nicely on NT4 > - Syntax highlighting for Python, C, XML, HTML (and, although this is dreamworld > stuff, DTML ;-) > - FTP or WebDAV editing built in as stand

Re: [Zope] DCOracle with Python 2.0?

2001-01-25 Thread Oleg Broytmann
On Wed, 24 Jan 2001, Michelle Walden wrote: > I'm having zero success getting DCOracle to build with any version of Python > using the included Makefile.pre.in files. Anyone with a working DCOracle > install on RedHat 6.1 who might be willing to offer suggestions or donate > binaries will receive

Re: [Zope] Editors [OT]

2001-01-25 Thread Wolfgang Strobl
On 25 Jan 2001, 10:08 Chris Withers wrote: > Tres Seaver wrote: > > > > I'm liking it a lot -- the last reason to even consider using > > emacs is gone :) > > Hmmm... interesting, maybe it's time to find a new editor... Why not use Riaan Booysens Boa Constructor IDE or Mark Hammonds PythonWi

[Zope] z2.py

2001-01-25 Thread Wolfgang Strobl
While analyzing a problem, I had a quick look into z2.py, and frankly, I don't understand the logic behind the so called "required path hackery for the win32 binary distribution". This hack unnecessarily makes the z2.py location dependant. The installer rewrites the z2.py source, inserting the

Re: [Zope] Editors [OT]

2001-01-25 Thread Dario Lopez-Kästen
Textpad www.textpad.com EditPluswww.editplus.com I am using TextPad mostly now. Of course, given the choice, I'd much rather use BBEdit or Alpha on a Mac /dario - Original Message - From: "Chris Withers" <[EMAIL PROTECTED]> To: "Tres Seaver" <[EMAIL PROTECTED]> Cc: <[EMAIL P

RE: [Zope] Editors [OT]

2001-01-25 Thread Max Møller Rasmussen
From: Chris Withers [mailto:[EMAIL PROTECTED]] >Hmmm... interesting, maybe it's time to find a new editor... Try www.ultraedit.com . It's not free, but it ain't expensive, and I use it 12 hours/day with joy. Has only crashed on me twice in 4 years. regards Max M __

Re: [Zope] a little problem - $1 reward!

2001-01-25 Thread Erik Enge
[[EMAIL PROTECTED]] | ... in the received message. A previous version I had of this script gave | me the correct results (From: God, Reply-To: [EMAIL PROTECTED]) so I'm | pretty-sure that's it's a problem with '@cs.strath.ac.uk' being appended. And you are running with the same mailserver, on th

Re: [Zope] a little problem - $1 reward!

2001-01-25 Thread peter bengtson
Lee, Before you move on to your DTML stuff about email address and stuff, you should always make sure that you DON'T HAVE ANY WHITESPACE BEFORE THE MAIL HEADERS. (sorry for the shouting, but it's a classic misstake) Does it work "DTMLless". I.e. does it work with statically typed in email addres

Re: [Zope] a little problem - $1 reward!

2001-01-25 Thread Lee
Hi, Thanks for your response. "" gives me... From: "Lee"@cs.strath.ac.uk ... in the received message. A previous version I had of this script gave me the correct results (From: God, Reply-To: [EMAIL PROTECTED]) so I'm pretty-sure that's it's a problem with '@cs.strath.ac.uk' being appended.

Re: [Zope] Did I miss some major change in Z SQL Methods ?

2001-01-25 Thread peter bengtson
Curtis, Doing Z SQL Methods (SELECT) is really easy with DTML. When you've got a working example of it in DTML, then we can perhaps help you to convert that into Python Method code. Cheers, Peter > On Thursday 25 January 2001 16:50, Evan Simpson wrote: > > From: "Curtis Maloney" <[EMAIL PROTECT

[Zope] Editors [OT]

2001-01-25 Thread Chris Withers
Tres Seaver wrote: > > I'm liking it a lot -- the last reason to even consider using > emacs is gone :) Hmmm... interesting, maybe it's time to find a new editor... My wishlist would be: - Runs nicely on NT4 - Syntax highlighting for Python, C, XML, HTML (and, although this is dreamworld stuff

  1   2   >