IRC log of #zope3-dev for Wednesday, 2008-08-06

*** aaronv has quit IRC00:00
*** natea_ has quit IRC00:00
*** J1m has quit IRC00:05
*** vipod_ has joined #zope3-dev00:05
*** elro has joined #zope3-dev00:15
*** vipod has quit IRC00:27
*** kidsoul has quit IRC00:28
*** jpcw2002 has left #zope3-dev00:30
*** jpcw2002 has joined #zope3-dev00:31
*** kidsoul has joined #zope3-dev00:36
*** vipod_ is now known as vipod00:39
*** kidsoul has quit IRC00:40
*** aclark|away is now known as aclark00:45
*** jhauser has quit IRC00:52
*** dbfrombrc has quit IRC00:54
*** elro has quit IRC00:59
*** lucielejard has quit IRC01:06
*** nathany has joined #zope3-dev01:08
*** jodok has quit IRC01:09
*** dbfrombrc has joined #zope3-dev01:11
*** dbfrombrc has quit IRC01:12
*** flox has left #zope3-dev01:18
*** dbfrombrc has joined #zope3-dev01:22
*** jamur2 has quit IRC01:24
*** ChrisW has left #zope3-dev01:27
*** whitmo has quit IRC01:28
*** rmarianski has quit IRC01:29
*** aclark is now known as aclark|dinner01:29
*** timte has quit IRC01:33
*** whit has joined #zope3-dev01:42
*** whit has quit IRC01:44
*** aaronv has joined #zope3-dev01:46
*** vipod has quit IRC01:47
*** oggers has quit IRC01:57
*** projekt01 has joined #zope3-dev01:58
*** lurkymclurkleton has quit IRC02:08
*** benji has quit IRC02:13
*** gstratton has joined #zope3-dev02:23
*** bigkevmcd has quit IRC02:26
*** aaronv has quit IRC02:40
*** projekt01 has quit IRC02:41
*** junkafarian has quit IRC02:43
*** quodt has quit IRC02:47
*** dbfrombrc has quit IRC02:48
*** jukart has joined #zope3-dev02:55
*** aclark|dinner is now known as aclark02:58
*** jpcw2002 has quit IRC02:59
*** benji has joined #zope3-dev03:00
*** alecm has quit IRC03:00
*** benji is now known as Guest7246703:01
*** alecm has joined #zope3-dev03:01
*** Guest72467 is now known as benji03:01
*** hazmat has joined #zope3-dev03:02
*** ChanServ sets mode: +o hazmat03:02
*** jukart_ has joined #zope3-dev03:25
*** nathany has quit IRC03:39
*** jukart has quit IRC03:42
*** srichter has quit IRC03:42
*** kidsoul has joined #zope3-dev03:51
*** b52laptop has quit IRC04:08
*** fcorrea has quit IRC04:08
*** jukart_ has quit IRC04:28
*** fcorrea has joined #zope3-dev04:51
*** alecm_ has joined #zope3-dev04:57
*** alecm has quit IRC04:57
*** jsadjohnson has quit IRC05:09
*** yvl_ has quit IRC05:28
*** alecm_ has quit IRC05:48
*** kidsoul has quit IRC05:55
*** greenman has joined #zope3-dev06:16
*** dbfrombrc has joined #zope3-dev06:30
*** binseer has joined #zope3-dev06:51
*** seletz has joined #zope3-dev07:09
*** ktwilight_ has joined #zope3-dev07:12
*** aclark is now known as aclark|away07:14
*** ktwilight has quit IRC07:25
*** dbfrombrc has quit IRC07:48
*** greenman has quit IRC07:50
*** philiKON_ has joined #zope3-dev07:52
*** fairwinds has quit IRC07:57
*** philiKON has quit IRC07:58
*** stub has joined #zope3-dev08:05
*** jayaraj has joined #zope3-dev08:29
*** jukart has joined #zope3-dev08:45
*** jukart_ has joined #zope3-dev08:49
*** jukart has quit IRC08:51
*** jukart has joined #zope3-dev08:52
*** jodok has joined #zope3-dev09:04
*** jodok has quit IRC09:06
*** jukart_ has quit IRC09:09
*** axelgitm has joined #zope3-dev09:11
*** axelgitm has left #zope3-dev09:11
*** __mac__ has joined #zope3-dev09:13
*** jodok has joined #zope3-dev09:16
*** ktwilight_ has quit IRC09:18
*** srichter has joined #zope3-dev09:19
*** jodok has quit IRC09:38
*** srichter has quit IRC09:42
*** jodok has joined #zope3-dev09:43
*** flox has joined #zope3-dev09:44
*** ignas has joined #zope3-dev09:59
*** jpcw2002 has joined #zope3-dev10:04
*** mintsauce has joined #zope3-dev10:07
*** quodt has joined #zope3-dev10:18
*** romanofski has joined #zope3-dev10:20
*** mintsauce has quit IRC10:22
*** ccomb_ has joined #zope3-dev10:27
*** timte has joined #zope3-dev10:31
*** goschtl has joined #zope3-dev10:32
*** gstratton has quit IRC10:37
*** markusleist has joined #zope3-dev10:39
*** jodok has quit IRC10:40
*** ChrisW has joined #zope3-dev10:42
ChrisWhey all... can anyone point me at docs that explain how zope.testing.cleanup actually works?10:43
ChrisWwhat calls addCleanUp?10:44
ChrisWwhy are all the cleanup funcs called at both setUp and tearDown?10:45
philiKON_let's say i have a module that stores some global state that can be manipulated when running an application10:46
philiKON_then it can certainly be manipulated over the course of running a test10:46
philiKON_so you'd want this global state to be pristine before and after each test10:47
ChrisW*nods*10:47
philiKON_so in my module i write a small function10:47
philiKON_say10:47
ChrisWmaybe...10:47
philiKON_def makeStatePristine(): ...10:47
philiKON_and register this as a clean up func10:47
philiKON_z.t.c.addCleanUp(makeStatePristine)10:47
philiKON_that way, tests only have to call z.t.c.cleanUp() and this will call all the clean up hooks10:48
ChrisWdoes anything other than zope.component use these hooks?10:48
philiKON_yup10:48
ChrisW...10:48
philiKON_zope.security.management (the interactions tuff)10:48
ChrisWah, okay10:48
philiKON_zope.configuration (zcml stuff)10:48
philiKON_don't know about others. feel free to grep yourself10:49
philiKON_for addCleanUp10:49
ChrisWdon't tests that use cleanup interact badly with tests that are mroe functional in feel?10:49
*** ktwilight has joined #zope3-dev10:49
ChrisW(ie: if I've set up, say, any global components, then any testing that uses zope.testing.cleanup will trash those and cause the tests to fail :-S)10:50
philiKON_right. z.t.c and functional tests don't mix10:51
philiKON_with functional and integration tests, in other words, all tests that use layers to do their setup, the individual tests shouldn't modify global state10:51
philiKON_at least not *that* particular kind of global state10:51
ChrisWokay, so if you have a functional test that modifies said global state, how does it undo it's modifications afterwards?10:52
philiKON_i'd say your ftest is wrong10:52
*** jodok has joined #zope3-dev10:53
philiKON_an ftest that does this is hardly realistic10:53
philiKON_in a real app out there you wouldn't do this either would you10:53
ChrisWI'm inclined to agree with you ;-) I don't have that case, just trying to get to the bottom of how cleanup works before I write soem more docs for it...10:53
ChrisWwell, now that I'm not so sure about ;-)10:53
philiKON_app code shouldn't mess with global state like that (gloabl state like configuration)10:54
ChrisWwhy not? :-)10:55
philiKON_uh, because it gets the app in trouble10:56
ChrisWhow so?10:56
philiKON_i'm talking about things like: a view modifying the global component registry10:56
ChrisWindeed, so am I10:56
ChrisWwhat if you want to make the component registry ttw configurable?10:56
philiKON_well, that global state would be lost10:57
philiKON_the whole point of the global comp. reg. is that it's reloaded from zcml10:57
philiKON_if you want ttw configurability, use a local persist. comp. reg.10:57
ChrisWnot if the same code als ochanged the config fiel the registrations were read from...10:57
*** elro has joined #zope3-dev10:57
philiKON_ok. edge case.10:57
ChrisWsadly, local persistent component registries seem to be heavilly zodb-focused10:57
*** ktwilight has quit IRC10:58
ChrisWI'm not using zodb10:58
philiKON_well, they *are* persistent10:58
philiKON_as in zodb-persistent10:58
ChrisWand bear in mine that one man's edge case is another man's central feature ;-)10:58
philiKON_certainly you can have zcml-fueled local registries10:58
philiKON_sure10:58
philiKON_so far nobody's cared about building such an app10:58
ChrisWso far...10:58
ChrisW;-)10:58
ChrisWseriously though, I don't think changing global config fil;es like that is a good idea10:58
ChrisWso we agree10:58
ChrisWit's just a shame that the persistent component registries are so heavilly centred on:10:59
ChrisW- zodb10:59
ChrisW- having the containment path be permenant10:59
philiKON_again, the whole point of persistency is zodb11:00
philiKON_but local registries in general don't make such assumptions11:00
ChrisWwell, that depends how you understand that word11:00
philiKON_PersistentFoo in zope is always understood in terms of the zodb :)11:00
ChrisW" but local registries in general don't make such assumptions" -> really? that's not the impression I got11:00
philiKON_z3c.baseregistry provides local registries that are configured via zcml11:01
ChrisWhow would you, say, tackle having an SQLAlchemy-backed local registry?11:02
philiKON_uh11:03
ChrisWI'm also looking to have the registries to check worked out from traversal path rather than the containment path11:03
philiKON_i'm trying to figure out if that even makes sense :)11:03
*** mintsauce has joined #zope3-dev11:04
ChrisWwell, it makes as much sense has having a zodb-backed registry, and people seem to think they're a pretty good idea ;-)11:04
mintsauceHow do I configure authentication plugins?11:04
philiKON_mintsauce: got my book?11:05
mintsaucephiliKON_: lol - yeah, stuck on page 421 :P11:06
philiKON_then you should be able to ask a more specific question than that11:06
philiKON_how do you expect anyone to ansewr this question?11:06
philiKON_"um sure, let me take 2 hours off work and start typing away. oh no, wait, i already wrote it down once. it's int he book"11:06
philiKON_;)11:07
mintsauceI was leading on to that .... gotta tempt you first!11:07
mintsauceAnyways ..11:07
*** junkafarian has joined #zope3-dev11:07
*** ignas has quit IRC11:07
mintsauceIve added the cookies credential plugin via the ZMI - but every time i login I get the popup box - im unlcear how I should get Zope to redirect to wclogin, instead of the standard form.11:09
philiKON_have you also added the plugin to the list of active plugins?11:09
mintsauceI've registered the form in zcml11:09
mintsauceyup - to the right?11:09
* philiKON_ can't remember the form right now.11:09
philiKON_i guess so11:10
philiKON_and it's on top?11:10
mintsauce(btw - what the difference between 'a utility' and 'in contents' in those forms?)11:10
*** bigkevmcd has joined #zope3-dev11:10
mintsauceyup - its the only one!11:10
philiKON_p 40611:11
philiKON_around the middle of the page11:11
mintsaucek11:12
philiKON_(that's just to answer your question about 'a utility' vs. 'in contents')11:12
philiKON_regarding your actual problem11:13
mintsaucegathered that - thanks :)11:13
philiKON_have you registered the PAU as an Iauthentication utility?11:13
*** malthe|out is now known as malthe11:13
mintsaucevia the register tab, or in zcml?11:14
philiKON_register tab11:14
*** elro has quit IRC11:15
mintsauceahh .. errr .... no.11:15
philiKON_:)11:15
* mintsauce bangs head against wall11:16
mintsaucethats got it :D11:16
*** maurits has joined #zope3-dev11:16
mintsauceI don't think your book mentions that it should be registered (although, with experience it's probably obvious). Probably worth making more obvious for idiots like me ;)11:20
mintsauceIt's the only place I've been really stumped, it's a great book  - i dont usually enjoy language tutorial books at all.11:21
philiKON_hmm, this is a good point11:22
philiKON_mintsauce: could you write me an email repeating this? then i won't forget it11:22
mintsauceSure use the e-mail inside the front cover?11:23
philiKON_yup11:24
*** malthe has quit IRC11:31
*** philiKON_ has quit IRC11:42
*** agroszer has joined #zope3-dev11:46
*** elro has joined #zope3-dev11:47
*** philiKON has joined #zope3-dev11:53
*** mintsauce has quit IRC11:55
*** thruflo has joined #zope3-dev11:58
*** romanofski has quit IRC12:05
*** Theuni has quit IRC12:05
*** junkafarian has quit IRC12:07
*** Theuni has joined #zope3-dev12:08
*** malthe has joined #zope3-dev12:12
*** ktwilight has joined #zope3-dev12:20
*** greenman has joined #zope3-dev12:30
*** charith_para has joined #zope3-dev12:38
*** mintsauce has joined #zope3-dev12:42
*** gimni has joined #zope3-dev12:44
*** mkerrin has joined #zope3-dev12:45
*** b52laptop has joined #zope3-dev12:48
*** sunew has joined #zope3-dev12:48
*** alga has joined #zope3-dev13:05
*** ChrisW1 has joined #zope3-dev13:06
mintsaucebin/instance adduser returns *** Unknown syntax: adduser - any ideas?13:09
ChrisW1what os you on?13:11
*** afd__ has joined #zope3-dev13:12
*** greenman has quit IRC13:13
*** romanofski has joined #zope3-dev13:14
mintsauceOS X13:15
*** greenman has joined #zope3-dev13:17
*** ChrisW2 has joined #zope3-dev13:18
*** ChrisW2 has left #zope3-dev13:18
*** jhauser has joined #zope3-dev13:21
*** alecghica has quit IRC13:24
*** ChrisW has quit IRC13:24
*** afd___ has quit IRC13:31
*** gimni is now known as gimni|away13:31
*** ChrisW1 has quit IRC13:32
afd__mintsauce: that should be bin/zopectl13:38
mintsaucebuildout based - no zopectl in parts/bin13:39
afd__if you don't have zopectl in the bin folder, locate it in the parts/instance/bin folder (something like that)13:39
mintsauceafd__: there isn't one there either ....13:43
afd__mintsauce: I think you can specify one in zcml (a principal)13:43
afd__http://apidoc.zope.org/++apidoc++/ZCML/http_co__sl__sl_namespaces.zope.org_sl_zope/principal/index.html13:44
afd__btw, is this a "I'm locked out of zope" problem? Because if you have manager access, you can add a new user source in pau and add users there. Then you can go to the zope root (or whatever folder/site you have) and grant that users some roles or permissions13:46
mintsauceI've locked myself out of manager access somehow - had manager specified via principal id="zope.manager" in zcml - then changed the PAU authenticator14:01
mintsauceuseful page tho, thanks :)14:01
*** baijum has joined #zope3-dev14:02
*** philiKON has quit IRC14:02
*** charith_para has quit IRC14:11
*** fairwinds has joined #zope3-dev14:15
*** __mac___ has joined #zope3-dev14:15
*** gimni has joined #zope3-dev14:28
*** andres__ has joined #zope3-dev14:31
*** vipod has joined #zope3-dev14:32
*** benji has quit IRC14:32
*** __mac__ has quit IRC14:33
*** jsadjohnson has joined #zope3-dev14:34
*** afd__ has quit IRC14:40
*** gimni|away has quit IRC14:46
*** andres_f has quit IRC14:47
*** philiKON has joined #zope3-dev14:55
*** yvl has joined #zope3-dev15:02
*** ignas has joined #zope3-dev15:03
*** benji has joined #zope3-dev15:15
*** stub has quit IRC15:21
*** MrTopf has joined #zope3-dev15:23
*** aclark|away is now known as aclark15:23
*** andres__ has quit IRC15:31
*** baijum has quit IRC15:41
*** greenman has quit IRC15:43
*** greenman has joined #zope3-dev15:49
*** yvl_ has joined #zope3-dev15:53
*** jamur2 has joined #zope3-dev15:57
*** lurkymclurkleton has joined #zope3-dev15:58
*** yvl has quit IRC16:06
*** yvl_ has quit IRC16:09
*** thruflo_ has joined #zope3-dev16:11
*** fcorrea has quit IRC16:11
*** lucielejard has joined #zope3-dev16:19
*** yvl has joined #zope3-dev16:19
*** sp0cksbeard has joined #zope3-dev16:21
*** thruflo has quit IRC16:23
*** projekt01 has joined #zope3-dev16:24
*** aclark_ has joined #zope3-dev16:29
*** aclark_ has quit IRC16:31
*** aclark_ has joined #zope3-dev16:31
*** aclark has quit IRC16:42
*** aclark_ is now known as aclark16:43
*** fcorrea has joined #zope3-dev16:43
*** binseer has quit IRC16:46
*** rcrafton has joined #zope3-dev16:50
*** natea_ has joined #zope3-dev16:50
*** natea__ has joined #zope3-dev16:51
*** aclark is now known as aclark|away16:52
*** lurkymclurkleton has quit IRC16:55
*** lurkymclurkleton has joined #zope3-dev16:55
*** faassen has joined #zope3-dev16:57
*** yvl_ has joined #zope3-dev16:57
*** natea_ has quit IRC17:04
*** mintsauce has quit IRC17:06
*** yvl has quit IRC17:11
*** kidsoul has joined #zope3-dev17:12
*** whit has joined #zope3-dev17:17
*** whit has quit IRC17:21
*** kidsoul has quit IRC17:22
*** dbfrombrc has joined #zope3-dev17:24
*** akm1 has joined #zope3-dev17:26
*** whit has joined #zope3-dev17:26
*** alecm has joined #zope3-dev17:27
*** afd__ has joined #zope3-dev17:30
*** kiorky has quit IRC17:34
*** afd__ has quit IRC17:34
*** yvl_ has quit IRC17:34
*** rcrafton has quit IRC17:34
*** sp0cksbeard has quit IRC17:34
*** bigkevmcd has quit IRC17:34
*** timte has quit IRC17:34
*** ccomb_ has quit IRC17:34
*** hazmat has quit IRC17:34
*** afd__ has joined #zope3-dev17:35
*** rmarianski has joined #zope3-dev17:36
*** andres has joined #zope3-dev17:38
*** hazmat has joined #zope3-dev17:39
*** yvl_ has joined #zope3-dev17:39
*** rcrafton has joined #zope3-dev17:39
*** sp0cksbeard has joined #zope3-dev17:39
*** bigkevmcd has joined #zope3-dev17:39
*** timte has joined #zope3-dev17:39
*** ccomb_ has joined #zope3-dev17:39
*** kiorky has joined #zope3-dev17:39
*** irc.freenode.net sets mode: +o hazmat17:39
*** srichter has joined #zope3-dev17:40
*** dunny has quit IRC17:42
*** rcrafton has quit IRC17:52
*** rcrafton has joined #zope3-dev17:53
*** akm1 has quit IRC18:03
*** projekt01 has quit IRC18:05
*** __mac__ has joined #zope3-dev18:06
*** goschtl has quit IRC18:15
*** charith_para has joined #zope3-dev18:19
*** srichter has quit IRC18:20
*** srichter has joined #zope3-dev18:20
*** __mac___ has quit IRC18:22
*** benji has quit IRC18:25
*** afd__ has quit IRC18:26
*** srichter has quit IRC18:29
*** benji has joined #zope3-dev18:29
*** benji is now known as Guest6583718:30
*** Guest65837 is now known as benji18:31
*** vipod has quit IRC18:32
*** yotaff has quit IRC18:36
*** srichter has joined #zope3-dev18:45
*** nathany has joined #zope3-dev18:52
*** gimni has quit IRC18:54
*** philiKON has quit IRC18:59
*** yotaff has joined #zope3-dev19:03
*** sunew_ has joined #zope3-dev19:06
*** sunew_ has quit IRC19:06
*** sunew has quit IRC19:06
*** alecm has quit IRC19:08
*** alecm has joined #zope3-dev19:10
*** __mac__ has quit IRC19:11
*** twcook has joined #zope3-dev19:15
*** yotaff has quit IRC19:23
*** philiKON has joined #zope3-dev19:23
*** quodt has quit IRC19:29
*** fcorrea_ has joined #zope3-dev19:33
*** nathany has quit IRC19:35
*** alga has quit IRC19:36
*** dbfrombrc_ has joined #zope3-dev19:36
*** fcorrea has quit IRC19:36
*** jayaraj has quit IRC19:39
*** benji has quit IRC19:40
*** dbfrombrc has quit IRC19:51
*** fcorrea_ is now known as fcorrea19:53
*** ChanServ sets mode: +o srichter19:59
*** mkerrin has quit IRC20:01
*** yvl_ is now known as yvl20:06
*** whit has quit IRC20:10
*** danfairs has quit IRC20:10
*** thruflo_ has quit IRC20:11
*** whit has joined #zope3-dev20:13
*** whit is now known as whit|palace20:17
*** baijum has joined #zope3-dev20:17
*** dbfrombrc_ is now known as dbfrombrc20:20
*** faassen has quit IRC20:20
*** lucielejard is now known as lucie|meeting20:30
*** faassen has joined #zope3-dev20:30
faassendoes anyone know whether Jim's around this week?20:30
faassenor is he on vacation recently?20:30
*** twcook has quit IRC20:34
faassennobody seems to know. :)20:35
* faassen waves.20:35
*** faassen has quit IRC20:35
*** benji has joined #zope3-dev20:40
*** benji is now known as Guest4097420:40
*** ignas has quit IRC20:40
*** Guest40974 is now known as benji20:41
*** vipod has joined #zope3-dev20:49
*** twcook has joined #zope3-dev20:50
*** MrTopf has quit IRC20:52
*** quodt has joined #zope3-dev20:58
*** oggers has joined #zope3-dev21:03
*** maurits has quit IRC21:04
*** ccomb_ has left #zope3-dev21:06
*** dobee has joined #zope3-dev21:11
*** jodok has quit IRC21:13
*** seletz has quit IRC21:17
*** twcook has quit IRC21:18
*** fcorrea_ has joined #zope3-dev21:19
*** romanofski has quit IRC21:19
*** lucie|meeting is now known as lucielejard21:22
*** jukart has quit IRC21:24
*** MrTopf has joined #zope3-dev21:24
*** charith_para has quit IRC21:25
baijumCan anyone give a pointer to this problem : http://mail.zope.org/pipermail/zope3-users/2008-August/008103.html ?21:25
*** fcorrea has quit IRC21:28
*** nathany has joined #zope3-dev21:31
*** jodok has joined #zope3-dev21:31
*** whit|palace has quit IRC21:32
*** whit has joined #zope3-dev21:32
*** dobee has quit IRC21:40
*** dobee has joined #zope3-dev21:42
*** dobee_ has joined #zope3-dev21:46
*** dbfrombrc has quit IRC21:49
*** dbfrombrc has joined #zope3-dev21:50
*** malthe has quit IRC21:51
*** junkafarian has joined #zope3-dev21:54
*** jodok has quit IRC21:55
*** fcorrea_ has quit IRC21:59
*** whitmo has joined #zope3-dev21:59
*** markusleist has quit IRC21:59
*** whit has quit IRC22:00
*** fcorrea has joined #zope3-dev22:02
*** jodok has joined #zope3-dev22:02
*** dobee has quit IRC22:03
*** agroszer_ has joined #zope3-dev22:05
*** rcrafton has quit IRC22:06
*** elro has quit IRC22:09
*** alga has joined #zope3-dev22:12
*** agroszer_ has quit IRC22:12
*** dobee_ has quit IRC22:15
*** agroszer has quit IRC22:17
*** natea__ has quit IRC22:18
*** baijum has quit IRC22:20
*** natea_ has joined #zope3-dev22:20
*** whit has joined #zope3-dev22:22
*** whitmo has quit IRC22:23
*** jodok has quit IRC22:25
*** natea_ has quit IRC22:41
*** whit has quit IRC22:43
*** malthe has joined #zope3-dev22:44
*** quodt_ has joined #zope3-dev22:44
*** quodt__ has joined #zope3-dev22:56
*** quodt has quit IRC22:56
*** timte has quit IRC23:01
mgedminoh noes, testbrowser won't let me select a control by ID23:02
*** danfairs has joined #zope3-dev23:03
*** timte has joined #zope3-dev23:13
*** quodt_ has quit IRC23:14
*** cccomb900 has joined #zope3-dev23:20
*** ccomb_ has joined #zope3-dev23:21
*** elro has joined #zope3-dev23:22
ccomb_hi, I would like to tag and release zope.app.container 3.5.6 and zope.app.authentication 3.4.3 so that they are correctly uploaded to pypi and solve many errors in the kgs trunk23:28
ccomb_can someone here give me access to zope.app.authentication on PyPI ?23:29
mgedminwhat's your pypi username?23:31
ccomb_ccomb23:31
ccomb_I'm already ok for z.a.container, but I need z.a.authentication too23:32
ccomb_mgedmin I really want to help you on the kgs23:32
mgedminyou're ok for both now ;)23:32
ccomb_the buildbot is a good thing23:32
ccomb_ok thanks23:33
mgedminit's good that you want to help, because I kinda lost momentum after setting up the buildbot23:33
mgedminand then noticing new regressions ;-)23:33
mgedminmy current todo is isolating the buildbot from site packages23:33
ccomb_with virtualenv ?23:34
mgedminprobably23:34
mgedminhey thanks!23:34
ccomb_yesterday I had 70 errors or failure23:34
mgedminI was agonising here, not wanting to sudo easy_install virtualenv23:34
*** dbfrombrc has quit IRC23:34
mgedminbut just now I remembered it's a standalone python script23:34
mgedminI can just drop it into /usr/local/bin and it'll work23:34
ccomb_what's the problem with sudo easyinstall virtualenv ?23:35
ccomb_virtualenv has no dependency I think23:36
mgedminit sticks its dirty fingers into my /usr/lib/pythonX.Y23:36
mgedminmatter of principle23:36
mgedmin/usr belongs to apt-get & dpkg23:36
mgedmin/usr/local is for non-packaged stuff23:36
ccomb_ahh ok23:36
*** dbfrombrc has joined #zope3-dev23:37
*** greenman has joined #zope3-dev23:40
mgedminyay it worked23:41
ccombcool. Let's hope there won"t be new errors due to virtualenv :)23:42
mgedmincan buildout get lxml and reportlab from pypi?23:45
ccombno idea23:45
mgedminyay, no PIL23:48
mgedminz3c.rml is always near the top of failures23:49
*** alecm has quit IRC23:50
mgedminhuh, what's wrong with docutils?23:56
*** ccomb_ has quit IRC23:57
mgedminMemoryError? does buildbot enable resource limits, or what?23:59

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