[Zope3-Users] Re: worldcookery Christmas Dinner

2005-10-03 Thread Joel Moxley
, thanks for your understanding and help. Best, Joel On 10/2/05, Joel Moxley [EMAIL PROTECTED] wrote: Hello yall, I'm a python guy who wanted to provide an interface for some baseball-related code to the web, so I naturally turned to Zope. I fumbled around for a while, but Philipp

[Zope3-Users] Zwiki issues with Unicode text pasted from Word

2005-10-04 Thread Joel Moxley
Thank you Duncan and Gary for your informative replies yesterday. I'm working on understanding and implementing your input. In the meantime, I'm having an issue with my zwiki. I checked on google, and I do not find this as a known issue. I have not had time to extensively document the

[Zope3-Users] NameChooser functionality for IContainerNamesContainer

2006-01-16 Thread Joel Moxley
I successfully added a name chooser for objects added through an add form to my container. This involved implementing IContainerNamesContainer on my container, INameChooser on my NameChooser, registering each, and being sure to set my set_before_add fields in the addform registration. What is

Re: [Zope3-Users] Please Guido, pick me, pick me!

2006-02-02 Thread Joel Moxley
Stefane Fermigier wrote: Wade Leftwich wrote: Guido van Rossum is looking for a web app framework. http://blog.delaguardia.com.mx/index.php?op=ViewArticlearticleId=34blogId=1 Zope is conspicuous by its absence from the discussion. Hardly a mention, and no advocacy at all. Is Zope

Re: [Zope3-Users] Please Guido, pick me, pick me!

2006-02-03 Thread Joel Moxley
The Zope Foundation, which is probably coming pretty darn soon, might help catalyze contributors a bit. It will own the zope3.org domain, the zope.org domain, and probably lots more, and all of the software. But before or after the foundation, I think small steps are more likely to succeed

[Zope3-Users] syncing object view after an attribute change

2006-02-21 Thread Joel Moxley
Hi all, I've been developing an app, and I keep running into this problem. Briefly, the object view loaded in my page will be one step out of sync with a change I make on the object. This seems to be something very basic that I am missing, but I have not been able to find an appropriate fix and

[Zope3-Users] introductory app idea: music filesystem browser

2006-02-21 Thread Joel Moxley
Hi all, Recently, I've been doing some thinking about cool ways to introduce a Python programmer to Zope3. Baiju has done a great job with his bookmarker app in his Zope3 in 30 Minutes. The upside (and what was it was designed for) is simplicity, but it's not especially useful or cool past the

[Zope3-Users] redirects in a formlib EditForm

2006-02-25 Thread Joel Moxley
Hello list, I keep hearing about the wonders of formlib, so I've been trying to migrate one of my zcml browser:editform generated forms to formlib. Once I figured out how to select(...) fields to avoid problems with the __parent__ field on my interface, this worked acceptably. After edit

Re: [Zope3-Users] Re: redirects in a formlib EditForm

2006-02-26 Thread Joel Moxley
** What is the best way to use a formlib EditForm to redirect a user after applying changes without fully cloning a handle_edit_action method? ** I'm doing it this way : def render(self): if self.errors is None or self.errors: return super(EditPerson,

Re: [Zope3-Users] Re: redirects in a formlib EditForm

2006-02-26 Thread Joel Moxley
On 2/26/06, Gary Poster [EMAIL PROTECTED] wrote: On Feb 26, 2006, at 4:17 PM, jürgen Kartnaller wrote: Joel Moxley wrote: ** What is the best way to use a formlib EditForm to redirect a user after applying changes without fully cloning a handle_edit_action method? ** I'm doing

[Zope3-Users] closing external 8080 access when using apache proxy/rewrite

2006-03-05 Thread Joel Moxley
I'm running a site at 8080 accessed through apache using the normal proxy/rewrite methods detailed in philikon and srichter's books. I'm thinking about using apache authentication, so obviously I'd need to shut off any outside 8080 access that would bypass apache. **What is The Best Way to do