*** gary_poster has quit IRC | 00:00 | |
*** Theuni1 has quit IRC | 00:04 | |
*** aaronv has joined #zope3-dev | 00:06 | |
*** benji has quit IRC | 00:11 | |
*** aaronv has quit IRC | 00:15 | |
*** aaronv has joined #zope3-dev | 00:15 | |
*** aaronv_ has joined #zope3-dev | 00:23 | |
*** aaronv has quit IRC | 00:23 | |
*** aaronv_ is now known as aaronv | 00:23 | |
*** mcdonc has joined #zope3-dev | 00:23 | |
*** tarek has quit IRC | 00:31 | |
*** aaronv has quit IRC | 00:36 | |
*** allisterb_ has joined #zope3-dev | 00:59 | |
*** allisterb has quit IRC | 01:02 | |
*** davisagli has left #zope3-dev | 01:14 | |
*** fcorrea has quit IRC | 01:22 | |
*** timte has quit IRC | 02:05 | |
*** davisagli has joined #zope3-dev | 02:08 | |
*** davisagli has quit IRC | 02:09 | |
*** junk|afk has quit IRC | 02:38 | |
*** davisagli has joined #zope3-dev | 02:39 | |
*** davisagli has left #zope3-dev | 02:52 | |
*** huajie has joined #zope3-dev | 03:23 | |
*** fcorrea has joined #zope3-dev | 03:27 | |
*** davisagli has joined #zope3-dev | 03:49 | |
*** MrTango has quit IRC | 03:55 | |
*** ignas has quit IRC | 04:05 | |
*** alga has quit IRC | 04:08 | |
*** ignas has joined #zope3-dev | 04:14 | |
*** ignas has quit IRC | 04:17 | |
*** davisagli has quit IRC | 04:25 | |
*** davisagli has joined #zope3-dev | 04:37 | |
*** davisagli has quit IRC | 04:45 | |
*** davisagli has joined #zope3-dev | 04:47 | |
*** hazmat has quit IRC | 05:09 | |
*** davisagli has quit IRC | 05:16 | |
*** davisagli has joined #zope3-dev | 05:27 | |
*** fcorrea has quit IRC | 05:32 | |
*** kursor has joined #zope3-dev | 06:11 | |
*** alecm has quit IRC | 06:27 | |
*** alecm has joined #zope3-dev | 06:45 | |
*** kursor has quit IRC | 07:04 | |
*** davisagli has quit IRC | 07:09 | |
*** huajie has quit IRC | 07:30 | |
*** jfkw has quit IRC | 07:31 | |
*** huajie has joined #zope3-dev | 07:45 | |
*** alecm has quit IRC | 07:56 | |
*** davisagli has joined #zope3-dev | 08:00 | |
*** ignas has joined #zope3-dev | 08:03 | |
*** huajie has quit IRC | 08:04 | |
*** alecm has joined #zope3-dev | 08:11 | |
*** davisagli has quit IRC | 08:15 | |
*** huajie has joined #zope3-dev | 08:21 | |
*** huajie has quit IRC | 08:23 | |
*** matthal has joined #zope3-dev | 08:49 | |
*** alecm has quit IRC | 09:07 | |
*** Theuni1 has joined #zope3-dev | 09:13 | |
*** kursor has joined #zope3-dev | 09:34 | |
*** markusleist has joined #zope3-dev | 09:37 | |
*** timte has joined #zope3-dev | 10:00 | |
*** timte has quit IRC | 10:00 | |
*** ignas has quit IRC | 10:14 | |
*** huajie has joined #zope3-dev | 10:25 | |
*** agroszer has joined #zope3-dev | 10:41 | |
*** ignas has joined #zope3-dev | 11:01 | |
*** dunny has quit IRC | 11:14 | |
*** huajie has quit IRC | 11:45 | |
*** junkafarian has joined #zope3-dev | 12:07 | |
*** agroszer has quit IRC | 12:33 | |
*** ignas has quit IRC | 12:34 | |
*** MrTango has joined #zope3-dev | 12:41 | |
*** alga has joined #zope3-dev | 12:50 | |
*** ignas has joined #zope3-dev | 13:18 | |
*** aaronv has joined #zope3-dev | 13:20 | |
*** menesis has quit IRC | 13:37 | |
*** aaronv has quit IRC | 13:38 | |
*** menesis has joined #zope3-dev | 13:39 | |
*** matthal has quit IRC | 13:43 | |
*** sunew has joined #zope3-dev | 13:45 | |
*** sunew has quit IRC | 13:56 | |
*** mgedmin has joined #zope3-dev | 13:57 | |
*** aaronv has joined #zope3-dev | 14:04 | |
*** fcorrea has joined #zope3-dev | 14:15 | |
mgedmin | how do key references work when objects are deleted from the ZODB? | 14:55 |
---|---|---|
mgedmin | can I still look up dead objects if they haven't been garbage-collected? | 14:55 |
* kobold doesn't know what "key references" are... sorry. | 14:56 | |
mgedmin | http://pypi.python.org/pypi/zope.keyreference | 14:57 |
mgedmin | the intids utility uses them by default, I believe | 14:58 |
mgedmin | what I'm trying to figure out is: why do my catalog searched give me back objects that have been deleted from the db? | 14:58 |
mgedmin | am I supposed to manually handle that case, or are there stale references somewhere in my code that keep those objects alive? | 14:58 |
kobold | no idea, I don't use that package; I'd ask on zope-dev though. | 15:00 |
mgedmin | mhm | 15:00 |
kobold | doesn't it work with events? when an object is removed, a subscriber updates the key reference? | 15:00 |
mgedmin | surely there are people who have used catalogs and indexes, and .. | 15:00 |
mgedmin | thank you! | 15:00 |
mgedmin | it's a missing event notification I bet | 15:01 |
kobold | sorry, I couldn't really help | 15:01 |
mgedmin | you did | 15:01 |
kobold | sometimes I get strange behaviour if I don't import zope.component.event | 15:01 |
mgedmin | I've these objects that aren't held in a container directly; they're held in an attribute | 15:01 |
mgedmin | I'm forgetting to post an ObjectRemovedEvent when the parent is removed | 15:01 |
mgedmin | zope containers do that, I should do it too | 15:01 |
kobold | ah, that's the problem then :) | 15:01 |
* mgedmin wonders why zope.copypastemove-3.4.0 and zope.app.container-3.5.6 both provide the same dispatchToSublocations subscriber | 15:05 | |
*** timte has joined #zope3-dev | 15:11 | |
*** tarek has joined #zope3-dev | 15:31 | |
* mgedmin is confused by ISublocations adapters | 15:39 | |
*** yvl has quit IRC | 15:47 | |
*** huajie has joined #zope3-dev | 15:47 | |
*** aaronv has quit IRC | 15:54 | |
*** timte has quit IRC | 15:58 | |
*** avn has quit IRC | 16:02 | |
*** avn has joined #zope3-dev | 16:03 | |
*** tarek has quit IRC | 16:04 | |
*** fcorrea has quit IRC | 16:05 | |
*** huajie has quit IRC | 16:06 | |
*** MrTango has quit IRC | 16:14 | |
*** avn has quit IRC | 16:34 | |
*** avn has joined #zope3-dev | 16:36 | |
*** agroszer has joined #zope3-dev | 16:45 | |
*** hazmat has joined #zope3-dev | 16:58 | |
*** aaronv has joined #zope3-dev | 17:00 | |
*** aaronv has quit IRC | 17:09 | |
*** redir has joined #zope3-dev | 17:21 | |
*** redir has quit IRC | 17:21 | |
*** ccomb has quit IRC | 17:31 | |
*** ignas has quit IRC | 17:47 | |
*** ccomb has joined #zope3-dev | 18:01 | |
*** markusleist has quit IRC | 18:20 | |
*** jfkw has joined #zope3-dev | 18:30 | |
*** ignas has joined #zope3-dev | 18:36 | |
*** markusleist has joined #zope3-dev | 18:38 | |
*** markusleist has quit IRC | 18:44 | |
*** MrTango has joined #zope3-dev | 19:21 | |
mgedmin | oh, buildout ... :( | 19:43 |
*** aaronv has joined #zope3-dev | 19:58 | |
*** agroszer has quit IRC | 20:13 | |
*** agroszer_ has joined #zope3-dev | 20:13 | |
*** davisagli has joined #zope3-dev | 20:16 | |
*** benji has joined #zope3-dev | 20:35 | |
*** benji has quit IRC | 20:46 | |
*** aaronv has quit IRC | 20:48 | |
*** benji has joined #zope3-dev | 20:54 | |
*** timte has joined #zope3-dev | 21:33 | |
*** dunny has joined #zope3-dev | 21:39 | |
*** tarek has joined #zope3-dev | 21:40 | |
*** davisagli has quit IRC | 21:54 | |
*** Theuni1 has quit IRC | 21:54 | |
*** Theuni1 has joined #zope3-dev | 21:54 | |
*** timte has quit IRC | 21:54 | |
*** agroszer_ has quit IRC | 21:56 | |
*** Theuni1 has quit IRC | 22:09 | |
*** sunew has joined #zope3-dev | 22:23 | |
*** aaronv has joined #zope3-dev | 22:24 | |
*** sunew has quit IRC | 22:29 | |
*** timte has joined #zope3-dev | 22:31 | |
*** zagy has quit IRC | 22:40 | |
*** matthal has joined #zope3-dev | 22:58 | |
*** timte has quit IRC | 23:05 | |
*** matthal has quit IRC | 23:10 | |
*** matthal has joined #zope3-dev | 23:23 | |
*** Theuni1 has joined #zope3-dev | 23:27 | |
*** kursor has quit IRC | 23:36 |
Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!