[Zope] What's up with MySQL and Zope?

2001-01-09 Thread Jason Byron
What's up with MySQL and Zope? Now there are four different products that are related to MySQL and Zope. Which one should I use? Some don't even look like DA's for zope. Why are these listed in Zope's product page anyway? Why can't they all get coordinated? Jason

Re: [Zope] Building from Source

2000-12-22 Thread Jason Byron
--- Ben Ocean [EMAIL PROTECTED] wrote: Hi; One of the add-on programs I want to include (ZMySQLdb) requires I rebuild Zope from the src-tgz distro. I've tried to do this but get this error: gzip: stdin: invalid compressed data--crc error tar: Child returned status 1 tar: Error exit

Re: [Zope] PIL problem

2000-12-13 Thread Jason Byron
s. Jason - Message d'origine ----- De : Jason Byron [EMAIL PROTECTED] À : Luc Tonin [EMAIL PROTECTED] Cc : [EMAIL PROTECTED] Envoyé : mercredi 13 décembre 2000 07:10 Objet : Re: [Zope] PIL problem --- Luc Tonin [EMAIL PROTECTED] wrote: well i m still trying to insert some text in a

Re: [Zope] PIL problem

2000-12-12 Thread Jason Byron
--- Luc Tonin [EMAIL PROTECTED] wrote: well i m still trying to insert some text in a gif image using PIL but what should i do??? using da PSDraw class?? does anybody have an id ?? thx by advance I recently got that working for me by doing a few tricky things: created a directory in

Re: [Zope] problem installing login manager

2000-10-29 Thread Jason Byron
You need to compile the DynPersist.c file for ZPatters to work. put a "Makefile.pre.in" file in the ZPatterns directory. (there is one in the lib/python dir, but any should work) then do a "make -f Makefile.pre.in boot" and then a "make" in the ZPatterns directory. Then it should be OK. -

[Zope] LoginManager and standard_html_header

2000-10-29 Thread Jason Byron
LoginManager seems to append the standard_html_header to the logoutForm when authorization fails. This would normally be ok but the problem is that it uses the standard_html_header from the directory where the authorization fails and not from where the logoutForm is. Is there a way to fix this?

Re: [Zope] LoginManager 0.8.8b1 examples/suggestions?

2000-10-25 Thread Jason Byron
--- "Morten W. Petersen" [EMAIL PROTECTED] wrote: [Jason Byron] | Does anyone have any LoginManager 0.8.8b1 example | code? It almost looks like you can extend the system | using plugins, but I don't know how that's done. | Anyone else have luck doing this? If so then do y

[Zope] LoginManager 0.8.8b1 examples/suggestions?

2000-10-24 Thread Jason Byron
Does anyone have any LoginManager 0.8.8b1 example code? It almost looks like you can extend the system using plugins, but I don't know how that's done. Anyone else have luck doing this? If so then do you have any examples/suggestions? All I want is a simple ZODB/cookie based system, but I

[Zope] GUF, ZODB, and 2.2.2

2000-10-18 Thread Jason Byron
Has anyone had luck getting GUF to work using ZODB to store the user info, and Zope version 2.2.2 (no hot fixes)? I had some code working fine in 2.2.1, but in 2.2.2 I am having lots of trouble getting GUF to work. The current implementation I have places a folder in the acl_users (GUF) folder

[Zope] illegal id chars?

2000-09-02 Thread Jason Byron
Why is it that objects can't be created because the id chosen contains characters that aren't proper in urls? Spaces are allowed and converted to their hex values when you create an object. Why not do this with every illegal url character? I must me missing something here because this seems

[Zope] GUF and manage_addGenericUserFolder not working

2000-08-30 Thread Jason Byron
I try to call the function manage_addGenericUserFolder in a DTML Method but I keep getting a NameError for it. It's as if Zope can't find the definition. I'm stumped as to why it won't work in DTML. - The product is installed and not broken. - I can add GUF's under the management screen with

Re: [Zope] GUF and manage_addGenericUserFolder not working

2000-08-30 Thread Jason Byron
--- Chris Withers [EMAIL PROTECTED] wrote: Jason Byron wrote: I try to call the function manage_addGenericUserFolder in a DTML Method but I keep getting a NameError for it. It's as if Zope can't find the definition. Try somethign like the following: dtml-with "manage_addPr

Re: [Zope] manage_pasteObjects() permissions?

2000-07-22 Thread Jason Byron
I figured out what was wrong. I wasn't giving all of the required parameters to manage_copyObjects() and manage_pasteObjects(). Evidently for both to work they need the REQUEST parameters set. Here's the calls I got to work: COPY: dtml-call "manage_copyObjects(REQUEST['ids'],REQUEST)" -- ids

[Zope] manage_pasteObjects() permissions?

2000-07-19 Thread Jason Byron
Can anyone tell me what permissions are required to get these copy and paste functions to work? manage_copyObjects() manage_pasteObjects() Everytime I use them I get a Copy Error with the manage_pasteObjects() function. And I am not sure the copy function is working at all. thanks, Jason

[Zope] what permissions are required for [un]restrictedTraverse?

2000-07-13 Thread Jason Byron
what permissions are required for [un]restrictedTraverse? I recently added the call to 'restrictedTraverse()' in a method and I can't get permission to use it except when I'm logged in as superuser. I need to be able to let other users use this method. How do I do that? Thanks, Jason

[Zope] How do I detect in DTML when I'm in the management interface?

2000-06-01 Thread Jason Byron
I have a ZClass that I would like to be able to create using the management interface and in DTML from the users end with the same DTML script. I believe I need something like this to get it to work: (if in management interface) dtml-call "create_my_zclass(_.None, _)" (else) dtml-with