IRC log of #zope3-dev for Sunday, 2005-09-04

*** sashav has quit IRC01:09
*** lunatik has joined #zope3-dev01:28
*** MiUlEr has joined #zope3-dev01:32
*** yota has quit IRC01:42
*** MiUlEr has quit IRC02:08
*** tiredbones has joined #zope3-dev02:17
*** peaceman_ has quit IRC03:42
*** sashav has joined #zope3-dev04:14
*** sashav has quit IRC04:15
*** vlado has quit IRC04:33
*** projekt01 has joined #zope3-dev04:44
*** projekt01 has left #zope3-dev04:55
*** bskahan has quit IRC05:15
*** sashav has joined #zope3-dev06:00
*** peaceman has joined #zope3-dev10:07
*** sashav has joined #zope3-dev10:27
*** peaceman has quit IRC10:35
*** MJ has quit IRC11:42
*** MJ has joined #zope3-dev11:57
*** PythIRC has joined #zope3-dev12:05
*** lunatik has left #zope3-dev13:02
*** yota has joined #zope3-dev13:06
*** vlado has joined #zope3-dev13:07
*** drzoltron_ has joined #zope3-dev13:24
drzoltron_HI !13:24
drzoltron_How do I build a series of .cpt's and .cpy's in z3 ?13:24
*** xenru has joined #zope3-dev13:56
*** MJ has quit IRC13:57
*** MJ has joined #zope3-dev13:59
*** projekt01 has joined #zope3-dev14:06
*** xenru has quit IRC14:08
*** drzoltron_ has quit IRC14:17
*** peaceman has joined #zope3-dev14:42
*** sashav has quit IRC15:26
*** MJ has quit IRC15:33
*** sashav has joined #zope3-dev15:56
*** sashav has quit IRC16:27
*** sashav has joined #zope3-dev16:27
*** sashav_ has joined #zope3-dev16:44
*** mgedmin has joined #zope3-dev17:08
*** sashav has quit IRC17:08
*** roym has joined #zope3-dev17:18
roymFolks, Quite frequently, when I try to add object to the site manager,17:31
roymI get errors of the following sort. Any ideas as to what I might be17:31
roymmissing (I am using the latest version of trunk and have created a17:31
roymbrand-new zope instance).17:31
roym17:31
roym  ...17:31
roym  File "/usr/local/Zope3-trunk/src/zope/interface/adapter.py", line17:31
roym    481, in queryMultiAdapter17:31
roym    return factory(*objects)17:31
roym  File "/usr/local/Zope3-trunk/src/zope/app/component/metaconfigure.py",17:31
roym    line 387, in __call__17:31
roym    return proxify(self.factory(*objects), self.checker)17:31
roymTypeError: __init__() takes exactly 4 arguments (3 given)17:31
projekt01romy, this looks like a error from a widget used on a field.17:35
projekt01romy, try to print out the *objects and you see what objects are involved17:36
mgedminit's amazing to see how many ways the word 'utility' is misspelt in doc/CHANGES.txt17:40
roymprojekt01: the last set of values for objects is: (<zope.schema._field.Choice object at 0x44cf8acc>, <zope.publisher.browser.BrowserRequest instance URL=http://michelle:8080/++etc++site/default/pluggable-auth-utility/group-folder/addRegistration.html>)17:52
roymdo I need to do a make clean before building zope trunk? is it possible that the pyc code is stale?17:54
*** mgedmin has quit IRC17:55
roymdid a make clean and re-ran; didn't make a difference!17:56
*** sashav_ has quit IRC18:00
royma search on google brings up this issue exactly once:18:09
roymhttp://mail.zope.org/pipermail/zope3-dev/2004-April/010721.html18:09
roymAccording to the post, it was fixed in CVS in 2004... surely the18:10
roymsvn version is more than upto-date - or am I wrong in assuming that?18:10
projekt01roym, the svn trunk should work18:11
*** MJ has joined #zope3-dev18:11
projekt01Can you explain when exactly fails? I guess if you will call a view? right?18:12
projekt01roym, there is a mess in lookup a choice vocabulary for a field. What did you call? the group folders addRegistration?18:14
roymHere are the steps:18:16
roym1) In my 'default' site management folder, I am adding a pluggable18:16
roymauth utility.18:16
roym2) In this utility, I then succcesfully add a 'principal folder'.18:16
roym3) The error happens when I try to register the principal folder.18:16
projekt01roym, how did you activate the PAU? unnamed?18:21
*** bradb has left #zope3-dev18:21
roymno, it was named "pluggable-auth-utility"18:22
roymIf I revisit the PAU, I see that it now has the contents - so it looks like the error18:22
projekt01You mean the name of the PAU use int he folder or the activation name?18:22
roymthe contents view name is "pluggable-auth-utility"18:23
roymI am not sure what the registration name is. How do I find out?18:23
roymah - I see that it is <no name>18:24
roymfrom .../++etc++site/default/++registrations++/@@index.html18:24
roymIs this bad?18:24
projekt01No, that's OK, this is called the registration name, the PAU is allways "unnamed"18:25
projekt01Let me checkout the trunk and follow your sample18:26
roymthanks a lot.18:27
projekt01roym, if you go to the configuration view of the PAU, do you see a field on the left side with a word "principal" inside?18:32
roymThe 4 that I see are:18:34
roymGroup Folder/HTTP Basic-Auth Plugin/Principal Folder/Session Credentials Plugin18:35
projekt01and in the field "Authenticator Plugins18:35
roymthe same 4 appear...18:36
projekt01are you sure?18:37
roymI just realized that this may be my error...18:37
roymIn my etc/overrides.zcml, I have the following:18:37
roym  <configure package="zope.app.form.browser">18:38
roym    <view18:38
roym        type="zope.publisher.interfaces.browser.IBrowserRequest"18:38
roym        for="zope.schema.interfaces.IChoice"18:38
roym        provides="zope.app.form.interfaces.IInputWidget"18:38
roym        factory="zope.app.form.browser.itemswidgets.RadioWidget"18:38
roym        permission="anoobe.quiztaker.Public"18:38
roym    />18:38
projekt01For what will use a RadioWidget?18:39
roymI was hoping to use the RadioWidget to force exactly one choice to be selected by the user.18:39
projekt01If you like to use a Radio widget you can register the RadioWidget for a Choice like18:40
projekt01for="...IChoice IMyOwnVocabulary"18:40
projekt01a sequence is used in this case, but you need a own vocabulary18:40
projekt01e.g. IMyVocabulary18:40
projekt01And in the field you can use your own voabulary like myAttr = Choice (vocabulary=IMyOwnVocabulary)18:41
roymI see: so you are saying that the adapter chosen becomes specific to the combination of (IChoice,IBrowserRequest and the Vocabulary) rather than just (IChoice and IBrowserRequest).18:43
projekt01Yup, that's your missing 4 th argument where I told before18:43
roymThankyou - that was a very educational experience.18:44
*** sashav has joined #zope3-dev18:44
projekt01Ok, have a nice weekend.18:45
*** Aiste has joined #zope3-dev19:11
*** xenru has joined #zope3-dev19:11
*** tiredbones has quit IRC19:19
*** d2m has quit IRC19:23
*** d2m has joined #zope3-dev19:35
*** tiredbones has joined #zope3-dev20:25
*** xenru has quit IRC20:50
*** MiUlEr has joined #zope3-dev20:58
*** MiUlEr has quit IRC22:07
*** mgedmin has joined #zope3-dev22:30
*** xenru has joined #zope3-dev22:49
*** sashav_ has joined #zope3-dev23:06
*** sashav has quit IRC23:08
*** sashav_ has quit IRC23:46
*** sashav has joined #zope3-dev23:48

Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!