[Repoze-dev] Fwd: Chameleon and multiple select box

2010-11-15 Thread Uwe Hentzschel
great thanks -uhe Anfang der weitergeleiteten E-Mail: > Von: Tres Seaver > Datum: 16. November 2010 02:38:53 MEZ > An: Uwe Hentzschel > Kopie: repoze-dev > Betreff: Re: [Repoze-dev] Chameleon and multiple select box > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 11/15/2010 08:29

Re: [Repoze-dev] Chameleon and multiple select box

2010-11-15 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 11/15/2010 08:29 PM, Uwe Hentzschel wrote: > Hi > > I create a new project and add a multiple select box in mytemplate.pt. > > === %< = > > > >

Re: [Repoze-dev] Chameleon and multiple select box

2010-11-15 Thread Shane Hathaway
On 11/15/2010 06:29 PM, Uwe Hentzschel wrote: > Your "multiple" attribute needs a value. One possibility: Shane ___ Repoze-dev mailing list Repoze-dev@lists.repoze.org http://lists.repoze.org/listinfo/repoze-dev

[Repoze-dev] Chameleon and multiple select box

2010-11-15 Thread Uwe Hentzschel
Hi I create a new project and add a multiple select box in mytemplate.pt. === %< = Option 1 Option 2 Option 3 Option 4

Re: [Repoze-dev] entry points vs ZCA registrations

2010-11-15 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 11/15/2010 05:30 PM, Shane Hathaway wrote: > On 11/15/2010 02:48 PM, Martin Aspeli wrote: >> On 15 November 2010 21:21, Michael Mulich wrote: >>> Part of my decision to use entry points was from my experience at pycon. >>> People hear reference to

Re: [Repoze-dev] entry points vs ZCA registrations

2010-11-15 Thread Shane Hathaway
On 11/15/2010 02:48 PM, Martin Aspeli wrote: > On 15 November 2010 21:21, Michael Mulich wrote: >> Part of my decision to use entry points was from my experience at pycon. >> People hear reference to zope and either cringe or run away. So if >> people see zope.* as a dependency they decide not to

Re: [Repoze-dev] entry points vs ZCA registrations

2010-11-15 Thread Martin Aspeli
On 15 November 2010 21:21, Michael Mulich wrote: > Part of my decision to use entry points was from my experience at pycon. > People hear reference to zope and either cringe or run away. So if > people see zope.* as a dependency they decide not to use use it. ;) I think this is one of those amazi

Re: [Repoze-dev] entry points vs ZCA registrations

2010-11-15 Thread Michael Mulich
Iain- I'll offer my two cents. But first, I want to suggest the use of Extensions (http://pypi.python.org/pypi/extensions) opposed to setuptools style entrypoints. Distutils2, the successor to Distutils and therefore Setuptools, will not support entry points as part of the distribution setup.

Re: [Repoze-dev] basicauth plugin does not work with https/apache

2010-11-15 Thread cornelius
Am 15.11.2010 20:24, schrieb Tres Seaver: > On 11/15/2010 02:17 PM, cornelius wrote: > > > you made my day! > > Great. > > > Just addind this, my configuration also works with digestAuth! > > What plugin are you using for digest authentication? > > > Tres. Hi Tres, no I a concentrating to spell yo

Re: [Repoze-dev] entry points vs ZCA registrations

2010-11-15 Thread Iain Duncan
thanks guys, Ethan that sounds like exactly what I'm looking for! Can anyone ooint me at good examples of the combination? great input from this list as always. =) iain On Mon, Nov 15, 2010 at 7:34 AM, Ethan Jucovy wrote: > On Mon, Nov 15, 2010 at 4:59 AM, Wichert Akkerman wrote: > >> On 11/14/

Re: [Repoze-dev] basicauth plugin does not work with https/apache

2010-11-15 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 11/15/2010 02:17 PM, cornelius wrote: > you made my day! Great. > Just addind this, my configuration also works with digestAuth! What plugin are you using for digest authentication? Tres. - -- =

Re: [Repoze-dev] basicauth plugin does not work with https/apache

2010-11-15 Thread cornelius
Am 15.11.2010 18:50, schrieb Tres Seaver: > On 11/15/2010 12:42 PM, cornelius wrote: > > Dear list, > > > I am trying to do dual authentication. I am using repoze-who with > > pylons. (Due to my distribtion version 1.0.18 of repoze-who). > > I'd like to do form authentication when accessing a url w

Re: [Repoze-dev] basicauth plugin does not work with https/apache

2010-11-15 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 11/15/2010 12:42 PM, cornelius wrote: > Dear list, > > I am trying to do dual authentication. I am using repoze-who with > pylons. (Due to my distribtion version 1.0.18 of repoze-who). > I'd like to do form authentication when accessing a url with

[Repoze-dev] basicauth plugin does not work with https/apache

2010-11-15 Thread cornelius
Dear list, I am trying to do dual authentication. I am using repoze-who with pylons. (Due to my distribtion version 1.0.18 of repoze-who). I'd like to do form authentication when accessing a url with a browser and basic auth (or rather I'd use digest auth) when accessing with a API client. I foll

Re: [Repoze-dev] entry points vs ZCA registrations

2010-11-15 Thread Ethan Jucovy
On Mon, Nov 15, 2010 at 4:59 AM, Wichert Akkerman wrote: > On 11/14/10 05:32 , Shane Hathaway wrote: > > On 11/12/2010 03:17 PM, Iain Duncan wrote: > >> Reading some of the diaolgue on the pylons/bfg merger has me curious > >> about the following, wondering if any experts care to share opinions a

[Repoze-dev] [Pyramid] Strange error on unittest.

2010-11-15 Thread Atsushi Odagiri
Hi I try to use Pyramid, routes + sqlalchemy. And, I wrote unittest with pyramid.configuration:Configurator. My model uses `route_url`, and call `add_route` in TestCase.setUp. I got error below:: Traceback (most recent call last): File "/Users/aodag/.buildout/eggs/unittest2-0.5.1-py2.6.egg/u

Re: [Repoze-dev] entry points vs ZCA registrations

2010-11-15 Thread Wichert Akkerman
On 11/14/10 05:32 , Shane Hathaway wrote: > On 11/12/2010 03:17 PM, Iain Duncan wrote: >> Reading some of the diaolgue on the pylons/bfg merger has me curious >> about the following, wondering if any experts care to share opinions and >> war stories: >> >> - what is the best use case for extending

Re: [Repoze-dev] Chameleon templates and facebook namespace

2010-11-15 Thread Malthe Borch
Hey Eduardo, --- It shouldn't eat that namespace prefix. I wonder if this is still the case in the current Chameleon release. Have you tried? Sorry for the long delay in response. \malthe On 5 June 2010 18:29, Eduardo Diaz wrote: > Hi, I'm trying to use facebook's xfbml, it uses a custom names