*** jodok has quit IRC | 00:00 | |
*** b52lap has joined #zope3-dev | 00:11 | |
*** yota has quit IRC | 00:18 | |
*** timte has quit IRC | 00:26 | |
*** b52laptop has quit IRC | 00:27 | |
*** greenman has joined #zope3-dev | 00:31 | |
*** Aiste has quit IRC | 00:49 | |
*** pcardune has joined #zope3-dev | 00:53 | |
*** bigkevmcd has quit IRC | 01:13 | |
*** harobed has quit IRC | 01:32 | |
*** pcardune has quit IRC | 01:44 | |
*** Jell-O-Fishi has quit IRC | 02:02 | |
*** pcardune has joined #zope3-dev | 02:04 | |
*** Jell-O-Fishi has joined #zope3-dev | 02:14 | |
*** Jell-O-Fishi has quit IRC | 02:25 | |
*** Jell-O-Fishi has joined #zope3-dev | 02:25 | |
*** greenman has quit IRC | 02:30 | |
*** pcardune has quit IRC | 02:57 | |
*** greenman has joined #zope3-dev | 03:39 | |
*** BjornT has quit IRC | 04:03 | |
*** philiKON_ has joined #zope3-dev | 04:21 | |
*** philiKON has quit IRC | 04:23 | |
*** redir has joined #zope3-dev | 05:01 | |
*** redir has quit IRC | 05:09 | |
*** pcardune has joined #zope3-dev | 05:32 | |
*** pcardune has quit IRC | 05:33 | |
*** dunny has quit IRC | 06:27 | |
*** natea|mpls has quit IRC | 06:46 | |
*** baijum has joined #zope3-dev | 06:47 | |
*** dunny has joined #zope3-dev | 07:03 | |
*** LeoRochael has joined #zope3-dev | 08:09 | |
LeoRochael | hi, which is the currently fastest way of getting a z3 sandbox? | 08:12 |
---|---|---|
LeoRochael | I'm about to reopen https://bugs.launchpad.net/zope3/+bug/98111 | 08:13 |
LeoRochael | because the change that fixed it doesn't cover the case where the collection was empty | 08:13 |
LeoRochael | it's still returning a list in this case even when the collection type is different | 08:13 |
LeoRochael | I need a quick sandbox to add my tests and fix to it, and submit the report | 08:13 |
*** sorin has joined #zope3-dev | 08:15 | |
*** sorin is now known as sorindregan | 08:16 | |
baijum | LeoRochael, http://wiki.zope.org/zope3/SettingUpAZope3Sandbox | 08:18 |
baijum | If you are not a "Contributor", you need to check out anonymously: | 08:18 |
baijum | svn co svn://svn.zope.org/repos/main/Zope3/trunk Zope3 | 08:19 |
LeoRochael | baijum: I am (though I don't follow it all that closely). But isn't there a buildout way now? | 08:19 |
baijum | LeoRochael, yes just check the package you want to test then run bootstrap.py | 08:22 |
*** stub has joined #zope3-dev | 08:22 | |
baijum | it will install all required packages for you | 08:22 |
LeoRochael | baijum: cool, thanks! | 08:24 |
baijum | LeoRochael, I would suggest to create $HOME/.buildout/default.cfg file | 08:24 |
baijum | then add: | 08:24 |
*** BjornT has joined #zope3-dev | 08:24 | |
baijum | [buildout] | 08:24 |
baijum | eggs-directory = /mbaiju/eggs | 08:24 |
baijum | find-links = http://download.zope.org/distribution/ | 08:24 |
baijum | replace eggs-directory to where you wanto download eggs | 08:24 |
LeoRochael | baijum: thanks! | 08:25 |
baijum | np | 08:25 |
LeoRochael | zope.app.form doesn't have a bootstrap.py, just a setup.py with a buildout.cfg | 08:30 |
LeoRochael | baijum: any further tips in this case? :-) | 08:31 |
LeoRochael | baijum: can I just get a bootstrap.py from, say, zope.annotation and use it? | 08:32 |
baijum | LeoRochael, yes | 08:32 |
LeoRochael | baijum: should I check it into zope.app.form/trunk for completeness? :-) | 08:33 |
baijum | LeoRochael, sure | 08:34 |
LeoRochael | damn | 08:41 |
LeoRochael | Error: Can't download http://download.zope.org/distribution/zope.app.zcmlfiles-3.4.0a1.tar.gz: 403 Forbidden | 08:41 |
LeoRochael | baijum: how do I switch it to get that specific egg from svn? | 08:42 |
baijum | LeoRochael, sorry, there are some permissions problem yet to be solved in download.zope.org | 08:44 |
baijum | LeoRochael, I am not sure about how to build eggs from svn directly ... | 08:45 |
baijum | Theuni, ayt ? | 08:46 |
baijum | Anyone with direct access to download.zope.org/distribution here ? | 08:47 |
baijum | LeoRochael, you will be required to wait for sometime ... | 08:48 |
LeoRochael | baijum: I'm sure there must be a way of setting buildout to fetch all eggs as development (or at least the zope ones) | 08:49 |
*** naro has joined #zope3-dev | 08:50 | |
baijum | LeoRochael, yes, please read about setuptools | 08:50 |
baijum | LeoRochael, I think grok is doing something like that | 08:51 |
baijum | see this page: http://cheeseshop.python.org/pypi/grok | 08:51 |
baijum | "Download URL: svn://svn.zope.org/repos/main/grok/trunk#egg=grok-dev " | 08:52 |
baijum | I guess you will be required to add a setup.cfg file like this: http://svn.zope.org/grok/trunk/setup.cfg | 08:53 |
LeoRochael | baijum: zope.app.form/trunk/setup.cfg is already like that | 09:00 |
LeoRochael | baijum: what I'm doing is checking out each "Forbidden" egg manually, bootstrapping it and trying to install it | 09:03 |
baijum | LeoRochael, ah ok | 09:03 |
LeoRochael | even if it fails, it'll have created an egg-link in it's eggs-develop directory | 09:04 |
LeoRochael | which I then copy over to zope.app.form/eggs-develop | 09:04 |
baijum | I wonder should we upload 3.4.0a1-1 version | 09:04 |
LeoRochael | eggs-develop > develop-eggs | 09:04 |
baijum | >>> from pkg_resources import parse_version | 09:05 |
baijum | >>> parse_version('3.4.0a1') < parse_version('3.4.0a1-1') | 09:05 |
baijum | True | 09:05 |
baijum | hmm.. for some packges alpha releases are not made yet | 09:06 |
baijum | eg:- zope.app.publisher | 09:07 |
baijum | RestrictedPython | 09:07 |
baijum | ZConfig | 09:07 |
baijum | zdaemon | 09:07 |
baijum | zodbcode | 09:07 |
LeoRochael | ok, my strategy is ttaking too long | 09:09 |
LeoRochael | going the old way | 09:09 |
*** pghoratiu has joined #zope3-dev | 09:13 | |
*** wrobel has joined #zope3-dev | 09:25 | |
*** timte has joined #zope3-dev | 09:30 | |
*** romanofski has joined #zope3-dev | 09:31 | |
*** yvl has joined #zope3-dev | 10:03 | |
*** pelle_ has joined #zope3-dev | 10:06 | |
*** yota has joined #zope3-dev | 10:06 | |
*** ghendi has joined #zope3-dev | 10:14 | |
*** tarek has joined #zope3-dev | 10:16 | |
*** harobed has joined #zope3-dev | 10:17 | |
*** zagy has joined #zope3-dev | 10:23 | |
*** lurker has joined #zope3-dev | 10:24 | |
*** goschtl has joined #zope3-dev | 10:24 | |
*** lzdych has joined #zope3-dev | 10:29 | |
*** bigkevmcd has joined #zope3-dev | 10:59 | |
*** Aiste_ has joined #zope3-dev | 11:04 | |
*** jfroche has quit IRC | 11:09 | |
*** sureshvv has joined #zope3-dev | 11:11 | |
*** jfroche has joined #zope3-dev | 11:13 | |
*** jkakar has joined #zope3-dev | 11:16 | |
*** jkakar has joined #zope3-dev | 11:17 | |
*** jkakar has quit IRC | 11:17 | |
*** jkakar has joined #zope3-dev | 11:18 | |
*** ghendi has quit IRC | 11:25 | |
*** ghendi has joined #zope3-dev | 11:25 | |
*** sorindregan has quit IRC | 11:25 | |
*** sorindregan has joined #zope3-dev | 11:26 | |
*** zagy_ has joined #zope3-dev | 11:27 | |
*** zagy has quit IRC | 11:27 | |
*** zagy_ is now known as zagy | 11:37 | |
*** sureshvv has quit IRC | 11:44 | |
*** stub has quit IRC | 11:53 | |
*** stub has joined #zope3-dev | 11:54 | |
*** pelle_ has quit IRC | 11:58 | |
*** ignas has joined #zope3-dev | 11:58 | |
*** Aiste_ has quit IRC | 12:02 | |
*** pelle_ has joined #zope3-dev | 12:02 | |
*** ka-jod has joined #zope3-dev | 12:03 | |
*** niemeyer has joined #zope3-dev | 12:24 | |
*** __gotchaway has joined #zope3-dev | 12:29 | |
* baijum thinking about adding a simple tutorial here (same page) : http://wiki.zope.org/zope3/ZopeComponentArchitecture | 12:30 | |
*** dunny has quit IRC | 12:30 | |
ignas | :D | 12:30 |
ignas | oxymorons += 1 | 12:31 |
* baijum reading 'dict oxymoron' | 12:33 | |
baijum | ah. why ? | 12:34 |
*** dunny has joined #zope3-dev | 12:36 | |
ignas | "Simple Zope3 tutorial" | 12:38 |
baijum | not Zope3 tutorial, but Zope Component Architecture, is ZCA simple ? ;) | 12:40 |
ignas | yes, is it ? | 12:41 |
baijum | yes, IMHO :) | 12:42 |
ignas | well - i am using Zope3 for quite a while and still i have no idea about some ZCA parts | 12:42 |
ignas | like Persistent Component Registry | 12:42 |
ignas | Site lookup, Local utility internals | 12:43 |
ignas | multi adapter lookups are not 100% clear to me, especially when you want to debug it | 12:43 |
baijum | If you are asking me these things, I also will be in trouble ;) | 12:44 |
ignas | all the directlyProvide, implementsOnly, directlyProvidedBy seem a bit confusing sometimes | 12:44 |
ignas | and all these are the Core not some fancy addons ... | 12:45 |
baijum | so more detailed documentation, manual, tutorials, howtos, reference cards etc. are required for ZCA to become windely accepted | 12:46 |
ignas | more koolaid, yes! :) | 12:46 |
baijum | widely | 12:46 |
ignas | though - describing an immediately useful but simple subset of ZCA | 12:47 |
ignas | would be better than a reference card for everything | 12:47 |
baijum | now there are two Desktop projects using ZCA, see that page..that's good sign | 12:47 |
ignas | recipe cookbook for the funny cases | 12:47 |
ignas | ZCA patterns are not formalized enough, some things that can be done/have been done using it | 12:49 |
ignas | like - the viewlet pattern | 12:49 |
ignas | pluggability for local utilities | 12:49 |
ignas | usage of getUtilitiesFor to make an application easier to extend | 12:50 |
ignas | etc. | 12:50 |
baijum | ignas, if you are familiar with these things, can you add it to a subpage of ZopeComponentArchitecture wiki page ? | 12:52 |
ignas | i have done that, though i am better at writing code than writing about it :/ | 12:53 |
baijum | ah. ok, I hope someone else will come up ... | 12:54 |
*** pghoratiu has quit IRC | 13:01 | |
*** lurker has quit IRC | 13:21 | |
*** lurker_ has joined #zope3-dev | 13:21 | |
*** mkerrin has joined #zope3-dev | 13:27 | |
*** sorindregan has quit IRC | 13:33 | |
*** sorindregan has joined #zope3-dev | 13:36 | |
*** dunny has quit IRC | 13:45 | |
*** alga has joined #zope3-dev | 13:47 | |
*** deo has joined #zope3-dev | 14:00 | |
*** stu1 has joined #zope3-dev | 14:33 | |
*** jodok has joined #zope3-dev | 14:34 | |
*** redir has joined #zope3-dev | 14:37 | |
*** jinty has joined #zope3-dev | 14:50 | |
*** jodok has quit IRC | 14:51 | |
*** jodok has joined #zope3-dev | 14:52 | |
*** lurker_ is now known as lurker | 14:52 | |
*** greenman has quit IRC | 14:53 | |
*** redir has quit IRC | 14:53 | |
*** greenman has joined #zope3-dev | 14:54 | |
*** greenman has quit IRC | 14:55 | |
*** jodok_ has joined #zope3-dev | 15:08 | |
*** jodok has quit IRC | 15:10 | |
*** jodok has joined #zope3-dev | 15:10 | |
* Theuni moans | 15:10 | |
Theuni | we're running in heavy bad and nasty problems with the dependencies of the zope 3 eggs i built | 15:11 |
philiKON_ | such as? | 15:11 |
Theuni | zope.app.server imports threadedasync which does not have its own egg but belongs to zodb, which is not a dependency of zope.app.server | 15:11 |
Theuni | lots of smaller things that i'm fighting on a pretty stupid low level | 15:11 |
philiKON_ | hmm | 15:12 |
Theuni | also the fact that zc's download server is totally stupid makes everything so annoying | 15:12 |
philiKON_ | but sounds fixable | 15:12 |
philiKON_ | how is it stupid? | 15:12 |
Theuni | it sets the files as non-world-readable | 15:12 |
Theuni | because that's how they get created on my machine and i can't change the permissions afterwards anymore | 15:12 |
Theuni | so i couldn't access the eggs at all | 15:12 |
Theuni | but they get listed in the index | 15:12 |
philiKON_ | weird | 15:13 |
Theuni | so i had to re-create all the 90 eggs | 15:13 |
Theuni | to have them available on a local index | 15:13 |
philiKON_ | yeah | 15:13 |
Theuni | hmm | 15:13 |
*** benji has joined #zope3-dev | 15:16 | |
* Theuni shoots himself | 15:16 | |
Theuni | morning benji | 15:16 |
benji | morning, gun-shot Theuni | 15:17 |
Theuni | I'm having bad pain with the 3.4.0a1 eggs :( | 15:17 |
benji | I hear that the first batch of eggs is the most painful | 15:17 |
Theuni | we need to solve the problem with the download-server | 15:18 |
benji | Jim has sudo, I can get him to fix it when he gets in (in about an hour) | 15:18 |
philiKON_ | i suppose that's just a umask problem? | 15:18 |
Theuni | i don't know | 15:18 |
Theuni | but we need to get out of the situation that we have to wait for one of you guys in the us | 15:19 |
benji | definately | 15:19 |
Theuni | benji: I thought you have those rights as well? | 15:19 |
benji | unfortunately not | 15:20 |
Theuni | hmm. i remember you changing rights for me at pycon? | 15:20 |
benji | nope, at pycon I investigated the problem, Jim had to fix it | 15:23 |
Theuni | ah | 15:24 |
* Theuni finally switches his umask | 15:24 | |
*** jodok_ has quit IRC | 15:25 | |
*** tarek has quit IRC | 15:29 | |
*** afd_ has joined #zope3-dev | 15:36 | |
baijum | Theuni, zope.app.locking won't be part of Zope 3.4, is it ? | 15:37 |
Theuni | i have no idea | 15:37 |
Theuni | i need the egg | 15:37 |
baijum | ah. ok | 15:38 |
Theuni | is it part of the release? | 15:38 |
baijum | no | 15:38 |
Theuni | then i have no idea | 15:38 |
Theuni | you mean i should give it a different version number? | 15:38 |
baijum | Theuni, no need | 15:38 |
Theuni | k | 15:38 |
Theuni | so it's not part of the zope 3.4 release | 15:38 |
Theuni | but it can be available as an egg | 15:38 |
baijum | sure | 15:39 |
Theuni | and some people here used it an we're switchign to eggs and so ... i need an egg :) | 15:39 |
baijum | Theuni, ok, I have also created eggs for packages which never released with Zope 3 earlier ... I thought it will useful for clean up of Zope 3 trunk | 15:41 |
Theuni | jup | 15:42 |
*** tarek has joined #zope3-dev | 15:42 | |
baijum | Theuni, I am going to simply upload all eggs in zope.app namespace to PyPi (3.4.0a1 or 3.4.0a1-1), is it ok ? I will add J1m and ctheune with 'Owner' role | 15:55 |
baijum | this will be usefull atleast as a backup server | 15:55 |
*** redir has joined #zope3-dev | 16:03 | |
* baijum can see how annoying is 'setup.cfg' when making point releases ... | 16:06 | |
philiKON_ | Theuni: when you have to redo some eggs and tag them, don't forget the external | 16:06 |
philiKON_ | baijum: there's a switch to setup.py to ignore the "dev" part | 16:06 |
*** avoine has joined #zope3-dev | 16:07 | |
*** baijum has quit IRC | 16:14 | |
*** baijum has joined #zope3-dev | 16:15 | |
*** timte has quit IRC | 16:19 | |
Theuni | philiKON_: jup. my release script doesn't handle this automatically yet. | 16:22 |
Theuni | i have to merge the fix-script (python) with the release-script (sh) | 16:22 |
philiKON_ | shouldn't be too hard... svn propset svn:externals "..." svn+ssh://.... | 16:22 |
philiKON_ | (IOW, you should be able to do it w/o a checkout) | 16:22 |
Theuni | right however, doing the computation how the paths look like in a shell script is rather ugly | 16:24 |
Theuni | it's simple in a python script | 16:24 |
Theuni | i guess i'll do some `sed`ing later | 16:24 |
*** redir has quit IRC | 16:27 | |
*** pelle_ has quit IRC | 16:35 | |
* baijum uploaded all tagged (3.4.0a1) zope.app eggs to PyPI | 16:40 | |
philiKON_ | zope inferno on the cheeseshop :) | 16:48 |
baijum | :) | 16:49 |
*** pghoratiu has joined #zope3-dev | 16:50 | |
*** whit has joined #zope3-dev | 16:58 | |
*** J1m has joined #zope3-dev | 17:04 | |
baijum | Theuni, now I found how you missed some packges to upload, those missed were 0.1dev version ... | 17:08 |
baijum | hmm.. we should update it to 3.4dev ... | 17:09 |
Theuni | aha | 17:10 |
Theuni | that might be | 17:10 |
Theuni | i only took those that were published as 3.4dev | 17:10 |
benji | Theuni: after receiving a little clear thinking from Jim, can't you just re-upload those eggs with the right permission? | 17:13 |
baijum | benji, same version cannot be updated | 17:14 |
benji | really? | 17:15 |
baijum | it will raise some permission denied message | 17:15 |
benji | Jim has now fixed the permissions | 17:17 |
baijum | benji, so no need to upload again ? | 17:17 |
*** lurker has quit IRC | 17:21 | |
*** ghendi has quit IRC | 17:26 | |
*** natea has joined #zope3-dev | 17:26 | |
*** meatballhat has joined #zope3-dev | 17:30 | |
*** LeoRochael has quit IRC | 17:32 | |
*** pghoratiu has left #zope3-dev | 17:39 | |
* baijum leaving | 17:41 | |
baijum | good night all :) | 17:41 |
*** baijum has quit IRC | 17:41 | |
*** gumpa has joined #zope3-dev | 17:42 | |
*** yvl has quit IRC | 17:43 | |
*** sorindregan has quit IRC | 17:54 | |
*** faassen has joined #zope3-dev | 17:55 | |
*** jodok has quit IRC | 17:57 | |
*** lurker has joined #zope3-dev | 18:03 | |
*** meatballhat has quit IRC | 18:04 | |
*** meatballhat has joined #zope3-dev | 18:05 | |
*** meatballhat_ has joined #zope3-dev | 18:05 | |
*** ktwilight_ has joined #zope3-dev | 18:10 | |
*** alecm has joined #zope3-dev | 18:11 | |
*** alecm has quit IRC | 18:13 | |
*** alecm has joined #zope3-dev | 18:14 | |
*** jfroche_ has joined #zope3-dev | 18:17 | |
*** jfroche has quit IRC | 18:18 | |
*** whit has quit IRC | 18:20 | |
*** whit has joined #zope3-dev | 18:21 | |
benji | yep | 18:22 |
benji | how about Tuesday of next week? | 18:22 |
benji | k | 18:22 |
*** softdevr has joined #zope3-dev | 18:23 | |
*** goschtl has quit IRC | 18:24 | |
*** ktwilight has quit IRC | 18:24 | |
benji | should I make it wednesday instead? | 18:29 |
benji | or should I just talk to myself? | 18:29 |
*** tarek has quit IRC | 18:32 | |
faassen | benji: you're .. | 18:38 |
faassen | benji: yeah.. doing that again. | 18:38 |
faassen | benji: talking to yourself :) | 18:38 |
faassen | \ | 18:38 |
benji | lol | 18:38 |
* benji expects the men in white coats to come knocking soon | 18:39 | |
*** CSWookie has joined #zope3-dev | 18:39 | |
faassen | benji: these men in white coats are a bit odd, wearing white coats and all. | 18:40 |
faassen | benji: what kind of irc client are you using anyway? | 18:41 |
benji | irssi; configured in the most optimally confusing way possible; I'm starting to second-guess that part | 18:41 |
CSWookie | ++irssi++ | 18:41 |
CSWookie | Is that legitemate syntax? | 18:41 |
faassen | ah, terminal based. that explain it. | 18:42 |
faassen | comes with Perl scripting! :) | 18:42 |
benji | the only thing I don't like about it is lack of spell check | 18:43 |
CSWookie | They have plugins for that. | 18:43 |
benji | yeah, my lazy plugin overrides that though | 18:44 |
*** febb has joined #zope3-dev | 18:49 | |
*** febb has quit IRC | 18:50 | |
*** natea has quit IRC | 19:01 | |
*** J1m has quit IRC | 19:04 | |
*** zagy has quit IRC | 19:06 | |
*** alecm has quit IRC | 19:07 | |
*** BjornT has quit IRC | 19:09 | |
*** BjornT has joined #zope3-dev | 19:10 | |
*** lurker_ has joined #zope3-dev | 19:13 | |
*** ignas has quit IRC | 19:14 | |
*** romanofski has quit IRC | 19:18 | |
*** mgedmin has joined #zope3-dev | 19:19 | |
*** lurker has quit IRC | 19:37 | |
*** afd_ has quit IRC | 19:37 | |
*** hazmat has quit IRC | 19:39 | |
*** J1m has joined #zope3-dev | 19:48 | |
*** RaFromBRC has joined #zope3-dev | 20:02 | |
*** jhauser has joined #zope3-dev | 20:12 | |
*** softdevr has quit IRC | 20:30 | |
*** harobed has quit IRC | 20:32 | |
*** whit has quit IRC | 20:35 | |
*** zagy has joined #zope3-dev | 20:36 | |
*** mkerrin has quit IRC | 20:45 | |
*** whit has joined #zope3-dev | 20:58 | |
*** torkel_ has quit IRC | 21:01 | |
*** pcardune has joined #zope3-dev | 21:04 | |
*** henri_ has joined #zope3-dev | 21:11 | |
*** jkakar has quit IRC | 21:11 | |
*** henri_ has quit IRC | 21:11 | |
*** bigkevmcd has quit IRC | 21:13 | |
*** torkel_ has joined #zope3-dev | 21:16 | |
*** romanofski has joined #zope3-dev | 21:19 | |
*** RaFromBRC is now known as RaFromBRC|phone | 21:21 | |
*** niemeyer has quit IRC | 21:25 | |
*** mgedmin has quit IRC | 21:25 | |
*** jodok has joined #zope3-dev | 21:33 | |
*** alga has quit IRC | 21:38 | |
*** yvl has joined #zope3-dev | 21:44 | |
*** torkel_ has quit IRC | 21:47 | |
*** deo has quit IRC | 21:54 | |
*** deo has joined #zope3-dev | 21:55 | |
*** zagy has quit IRC | 21:57 | |
*** ka-jod has left #zope3-dev | 21:59 | |
*** jodok has quit IRC | 21:59 | |
*** jodok has joined #zope3-dev | 22:02 | |
*** pcardune has left #zope3-dev | 22:03 | |
*** zagy has joined #zope3-dev | 22:03 | |
*** romanofski has quit IRC | 22:03 | |
*** Aiste has joined #zope3-dev | 22:04 | |
*** lurker_ is now known as lurker | 22:05 | |
*** hazmat has joined #zope3-dev | 22:05 | |
*** ChanServ sets mode: +o hazmat | 22:05 | |
*** svenn has joined #zope3-dev | 22:08 | |
*** timte has joined #zope3-dev | 22:18 | |
*** zagy has quit IRC | 22:21 | |
*** jhauser has quit IRC | 22:23 | |
*** stu1 has quit IRC | 22:51 | |
*** naro has quit IRC | 22:57 | |
*** svenn has quit IRC | 23:01 | |
*** rocky has joined #zope3-dev | 23:02 | |
*** lzdych has quit IRC | 23:11 | |
*** b52laptop has joined #zope3-dev | 23:11 | |
*** pcardune has joined #zope3-dev | 23:13 | |
*** RaFromBRC|phone is now known as RaFromBRC | 23:14 | |
*** hazmat has quit IRC | 23:17 | |
*** BjornT has quit IRC | 23:23 | |
*** BjornT has joined #zope3-dev | 23:24 | |
*** greenman has joined #zope3-dev | 23:25 | |
*** BjornT has quit IRC | 23:26 | |
*** dunny has joined #zope3-dev | 23:27 | |
*** b52lap has quit IRC | 23:28 | |
*** BjornT has joined #zope3-dev | 23:29 | |
*** Aiste has quit IRC | 23:35 | |
*** tarek has joined #zope3-dev | 23:40 | |
*** greenman has quit IRC | 23:40 | |
*** faassen has quit IRC | 23:48 | |
*** tarek has quit IRC | 23:53 |
Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!