[Zope3-dev] The UI grant tool doesn't work for objects without an location

2005-09-04 Thread Dmitry Vasiliev
Can someone take a look at the issue 447? http://www.zope.org/Collectors/Zope3-dev/447 -- Dmitry Vasiliev (dima at hlabs.spb.ru) http://hlabs.spb.ru ___ Zope3-dev mailing list Zope3-dev@zope.org Unsub:

[Zope3-dev] Schema field interfaces

2005-09-04 Thread TAHARA Yusei
Hi. I have used mutable schema and found a problem about schema interfaces. Many field interfaces does not override attributes (default, missing_value, etc..) that is provided by IField. Because these attributes are Field and there is no adapter from Field to IInputWidget, can not display

[Zope3-dev] FAILED (failures=2, errors=1) on win XP

2005-09-04 Thread Roger Ineichen
Hi together Does somebody know how to fix this 3 tests? Windows XP, Zope 3 trunk revision 38299 - Error in test Invalid Test (zope.app.form.browser.tests.test_textwidget) Traceback (most recent call last): File D:\projektCompiler\trunk\src\zope\app\testing\test.py,

[Zope3-dev] Re: [Zope3-checkins] SVN: Zope3/trunk/src/zope/schema/interfaces.py - add IIterableChoice and note the desire to depricate vocabularies

2005-09-04 Thread Benji York
Stuart Bishop wrote: If this is a way of saying I'm iterable, but I don't want to tell you how long I am Right. shouldn't an exeption be raised? Otherwise 'for i in range(0,len(source)): foo = source[i]' could start blowing up if the source changes. Of course, that particular spelling

Re: [Zope3-dev] FAILED (failures=2, errors=1) on win XP

2005-09-04 Thread Benji York
Roger Ineichen wrote: Does somebody know how to fix this 3 tests? Windows XP, Zope 3 trunk revision 38299 I can reproduce the failure on XP with Python 2.4, but not on Linux (with 2.4). I don't have a fix yet, but if you remove the encoding line at the top, the failure goes away. -- Benji

Re: [Zope3-dev] Re: [Zope3-checkins] SVN: Zope3/trunk/src/zope/schema/interfaces.py - add IIterableChoice and note the desire to depricate vocabularies

2005-09-04 Thread Stuart Bishop
Benji York wrote: Stuart Bishop wrote: If this is a way of saying I'm iterable, but I don't want to tell you how long I am Right. shouldn't an exeption be raised? Otherwise 'for i in range(0,len(source)): foo = source[i]' could start blowing up if the source changes. Of