Re: [Zope-dev] z3c.autoinclude doesn't include extra_requires

2008-11-21 Thread Martijn Faassen
Hey,

Christian Zagrodnick wrote:
 when I include an egg with extras (like gocept.foo[server]) the 
 dependencies from the extra are not automatically included with 
 autoinclude.
 
 I'm posting this here, because there is no other obvious place (no 
 project for this on lauchpad).

I only see this now. :)

I don't know much to say about this, except that patches are welcome to 
enable extras support.

Regards,

Martijn

___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )


[Zope-dev] Zope Tests: 4 OK, 2 Failed

2008-11-21 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list.
Period Thu Nov 20 12:00:00 2008 UTC to Fri Nov 21 12:00:00 2008 UTC.
There were 6 messages: 6 from Zope Tests.


Test failures
-

Subject: FAILED (failures=3) : Zope-trunk Python-2.4.5 : Linux
From: Zope Tests
Date: Thu Nov 20 20:37:17 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-November/010524.html

Subject: FAILED (failures=3) : Zope-trunk Python-2.5.2 : Linux
From: Zope Tests
Date: Thu Nov 20 20:38:48 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-November/010525.html


Tests passed OK
---

Subject: OK : Zope-2.8 Python-2.3.7 : Linux
From: Zope Tests
Date: Thu Nov 20 20:31:17 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-November/010520.html

Subject: OK : Zope-2.9 Python-2.4.5 : Linux
From: Zope Tests
Date: Thu Nov 20 20:32:47 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-November/010521.html

Subject: OK : Zope-2.10 Python-2.4.5 : Linux
From: Zope Tests
Date: Thu Nov 20 20:34:17 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-November/010522.html

Subject: OK : Zope-2.11 Python-2.4.5 : Linux
From: Zope Tests
Date: Thu Nov 20 20:35:47 EST 2008
URL: http://mail.zope.org/pipermail/zope-tests/2008-November/010523.html

___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )


Re: [Zope-dev] working with SUF

2008-11-21 Thread Chris Withers
abhishek dastidar wrote:
 Hi all,

You're on the wrong list, you want [EMAIL PROTECTED] as detailed on the 
product's page at simplistix.co.uk

 I am looking at how to use SimpleUserFolder to simulate users in 
 zope.Since I don't need to add/edit users in zope,I only added the 
 getUserDetails in the contents tab inside acl_user as per the readme 
 .The problem is I can't import anything in a python script and I have 

If you need to get users from a relational database, use a ZSQL method, 
otherwise use an External Method if you need stuff not available in 
python scripts.

 all my user details in an external zodb(/tmp/data.fs)) 

Huh? What on earth are you doing?

 Also,I read in the readme about subclassing the SUF class.Where do I 
 need to subclass.Can I do that in a product that I have written and 
 installed in the same folder?How would SUF know that I have subclassed 
 it inside a product ?

I'd suggest you don't want to be doing this.

 I have to admit that I'm completelty new to zope(2.9 here on debian etch)

...and that's why you don't use OS-packaged versions of Zope. The 
current version is 2.11, install it from source.

cheers,

Chris

-- 
Simplistix - Content Management, Zope  Python Consulting
- http://www.simplistix.co.uk
___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )


Re: [Zope-dev] working with SUF

2008-11-21 Thread abhi
Chris Withers wrote:
 abhishek dastidar wrote:
 Hi all,

 You're on the wrong list, you want [EMAIL PROTECTED] as detailed on the 
 product's page at simplistix.co.uk
I got confused between #zope and zope-dev.Thanks for that.

 I am looking at how to use SimpleUserFolder to simulate users in 
 zope.Since I don't need to add/edit users in zope,I only added the 
 getUserDetails in the contents tab inside acl_user as per the readme 
 .The problem is I can't import anything in a python script and I have 

 If you need to get users from a relational database, use a ZSQL 
 method, otherwise use an External Method if you need stuff not 
 available in python scripts.
I wanted everything inside my product but I was wrong.External methods 
should be fine in that case.

 all my user details in an external zodb(/tmp/data.fs)) 

 Huh? What on earth are you doing?
Just testing out zodb,I did this exercise keeping ZEO/external ZODB in mind.

 Also,I read in the readme about subclassing the SUF class.Where do I 
 need to subclass.Can I do that in a product that I have written and 
 installed in the same folder?How would SUF know that I have 
 subclassed it inside a product ?

 I'd suggest you don't want to be doing this.

 I have to admit that I'm completelty new to zope(2.9 here on debian 
 etch)

 ...and that's why you don't use OS-packaged versions of Zope. The 
 current version is 2.11, install it from source.

 cheers,

 Chris

Thanks for the tip,Chris.
___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )