[Zope3-Users] Apache config. for skinned sites

2008-08-20 Thread andrew
Hi All, Say I've got a site at: http://127.0.0.1:8080/mysite and I've mapped this to a domain (mysite.com) pointed to by an Apache rewrite rule: RewriteRule ^/(.+) http://127.0.0.1:8080/mysite/++vh++http: %{HTTP_HOST}:80/++/$1 [L,P] but I've now created a skin for the site that I want to point

Re: [Zope3-Users] z3c.form: Data Manager - getting value via dm.query() instead of dm.get()

2008-08-20 Thread Stephan Richter
On Wednesday 13 August 2008, Hermann Himmelbauer wrote: > The problem is, that if the dictionary does not contain all fields, an > error is raised. The reason for this error lies in line 97 in > z3c.form.widget: The value is retrieved via the get() function (which does > a dict.get()) and thus fail

Re: [Zope3-Users] building zope 3 instances?

2008-08-20 Thread Chris Withers
[EMAIL PROTECTED] wrote: >>> If you still want an instance, yes. I don't particularly like instances >>> as we've had them with Zope 2 and Zope 3 (they don't quite work in a >>> WSGI environment). >> So what do you do instead? >> How do people get a zope 3 project/application/whatever up and runnin

Re: [Zope3-Users] building zope 3 instances?

2008-08-20 Thread Marius Gedminas
On Wed, Aug 20, 2008 at 03:02:32AM +0200, Sebastien Douche wrote: > On Wed, Aug 20, 2008 at 00:11, Chris Withers <[EMAIL PROTECTED]> wrote: > >> Please don't remove things! Never ever. People might still be using them. > > > > That is getting a bit old. The confusion from having this cruft lying >

Re: [Zope3-Users] building zope 3 instances?

2008-08-20 Thread Benji York
On Tue, Aug 19, 2008 at 6:11 PM, Chris Withers <[EMAIL PROTECTED]> wrote: > Philipp von Weitershausen wrote: >> Please don't remove things! Never ever. People might still be using them. > > That is getting a bit old. The confusion from having this cruft lying > around (in the same way as accidental

Re: [Zope3-Users] building zope 3 instances?

2008-08-20 Thread Christian Theune
On Tue, 2008-08-19 at 23:11 +0100, Chris Withers wrote: > Philipp von Weitershausen wrote: > >> http://pypi.python.org/pypi/zc.zope3recipes > >> > >> ? > > > > If you still want an instance, yes. I don't particularly like instances > > as we've had them with Zope 2 and Zope 3 (they don't quite wo

[Zope3-Users] Dynamically generate interfaces, content object and z3c.forms?

2008-08-20 Thread Harald
Hello, I need some advise how to use dynamically generated interfaces, content and forms: 1. step: generate interfaces from xsd I've used zope.interface.interface.InterfaceClass to achieve this 2. step: generate content object implementing the generated interface from step 1 zope.interface.dir

[Zope3-Users] z3c.form: hidden select widget id attribute

2008-08-20 Thread Markus Kemmerling
Hi, there is a small issue with the template for a hidden select field widget, select_hidden.pt, in z3c.form. It renders an input tag with the same id as the *option* tag with the selected value in input mode instead of the id of the *select* tag in input mode. I consider this a mistake,