*** redir has quit IRC | 00:00 | |
CIA-7 | charlie_x * r116774 Products.CMFDefault/Products/CMFDefault/browser/membership/members.py: Use _get_ids for finding which items were selected. | 00:02 |
---|---|---|
*** hever has joined #zope | 00:03 | |
*** srichter has quit IRC | 00:06 | |
*** srichter has joined #zope | 00:06 | |
*** hever has quit IRC | 00:08 | |
*** redir has joined #zope | 00:10 | |
*** thetetet has joined #zope | 00:15 | |
*** thetet has quit IRC | 00:19 | |
*** jakke has quit IRC | 00:30 | |
*** Arfrever has quit IRC | 00:42 | |
*** redir has quit IRC | 00:57 | |
*** vipod has quit IRC | 00:59 | |
*** thetetet has quit IRC | 01:05 | |
CIA-7 | charlie_x * r116775 Products.CMFDefault/Products/CMFDefault/browser/content/ (folder_contents.pt folder.py tests/test_folder.py): Utility class used for wrapping items for display. | 01:13 |
CIA-7 | charlie_x * r116776 Products.CMFDefault/Products/CMFDefault/browser/membership/members.py: Utility class for display works the same as folder_contents. | 01:13 |
CIA-7 | jim * r116777 /ZODB/branches/jim-gc: whimper | 01:13 |
CIA-7 | ldr * r116778 /Products.CMFCore/branches/adapterize-wfstatus-wfhistory: about to rebase this branch | 01:13 |
CIA-7 | ldr * r116779 /Products.CMFCore/branches/adapterize-wfstatus-wfhistory: rebase branch | 01:13 |
CIA-7 | jim jim-gc * r116780 ZODB/src/ (5 files in 3 dirs): (log message trimmed) | 01:13 |
CIA-7 | Trying to deal with https://bugs.launchpad.net/zodb/+bug/641481 | 01:13 |
CIA-7 | I'm fairly sure that the problem has to do with the fact that ZODB' | 01:13 |
CIA-7 | object caches implementation has its own weakref implementation. | 01:13 |
CIA-7 | The approach in this branch is to basically stop using GC for | 01:13 |
CIA-7 | persistent objects that are in object caches. This is a band aid. :( | 01:13 |
CIA-7 | Once consequence is that there will significant leakage if caches | 01:13 |
CIA-7 | ldr adapterize-wfstatus-wfhistory * r116781 Products.CMFCore/Products/CMFCore/ (5 files in 3 dirs): Update workflow storage adapter branch, originally [83320] | 01:13 |
_mup_ | Bug #641481: ZODB 3.10b6 fails to run tests with Python 2.7 on Fedora 14 Branched <ZODB:Confirmed for jim-zope> <https://launchpad.net/bugs/641481> | 01:13 |
*** menesis has quit IRC | 01:18 | |
*** Hypergraphe_ has quit IRC | 01:20 | |
*** dunny has quit IRC | 01:27 | |
*** MrWu has joined #zope | 01:30 | |
*** davisagli is now known as davisagli|away | 01:40 | |
*** davisagli|away is now known as davisagli | 01:43 | |
*** davisagli is now known as davisagli|away | 01:43 | |
*** _bluetouff has quit IRC | 01:48 | |
*** _bluetouff has joined #zope | 01:48 | |
CIA-7 | jim jim-gc * r116782 ZODB/src/persistent/tests/testPersistent.py: Fixed test leaks. | 01:49 |
*** HammerToe has joined #zope | 01:49 | |
HammerToe | Hi all... got a very odd problem with viewlets, which I'm trying to track down.... however I want to check super() does what I think it does... see http://pastie.org/1178004 | 01:50 |
HammerToe | line 1 shows the error I get... so checking the mro it shows that super() *should* find __init__ in BrowserView... but clearly doesn't... yet if I try and call it directly (ie without super) then it works | 01:51 |
*** John[a] has joined #zope | 01:55 | |
*** John[a] is now known as John | 01:55 | |
*** John has quit IRC | 01:55 | |
*** John has joined #zope | 01:55 | |
*** davisagli|away is now known as davisagli | 02:02 | |
*** minskmaz has joined #zope | 02:03 | |
davisagli | HammerToe: is your viewlet ViewletBase, or something that extends ViewletBase? | 02:03 |
*** webmaven has quit IRC | 02:03 | |
davisagli | HammerToe: I think you probably want super(YourViewletClass, self) | 02:04 |
CIA-7 | jim jim-gc * r116783 ZODB/src/BTrees/tests/ (testBTrees.py test_compare.py testConflict.py): Fixed test leaks. | 02:05 |
HammerToe | davisagli: I'm trying to migrate a site from plone 3 to plone 4... and seem to be having trouble with some grok-based viewlets | 02:05 |
HammerToe | I thought it was a egg version mismatch... but no matter what I try, I can't get it to work | 02:05 |
davisagli | HammerToe: if you paste your viewlet code maybe I can help more | 02:06 |
HammerToe | davisagli: I'll try... but not sure it'll help... hold on | 02:07 |
*** redir has joined #zope | 02:07 | |
davisagli | HammerToe: or did you have a traceback? | 02:08 |
davisagli | http://imgur.com/jacoj ;) | 02:08 |
HammerToe | davisagli: here is the relevent viewlet code | 02:08 |
*** allisterb has joined #zope | 02:10 | |
HammerToe | davisagli: traceback: http://pastie.org/1178055 | 02:11 |
davisagli | HammerToe: I'm afraid I don't have much experience to offer here...I haven't tried registering viewlets grok-style | 02:15 |
HammerToe | davisagli: ok thanks anyways... it all works fine on Plone 3.3.5... but not on 4.0.. and I can't work out why... it almost seems like a method signature in either a zope or grak package has changed and I have versions out of sync... but I can't see what/where/how :( | 02:16 |
davisagli | HammerToe: what is super(ViewletBase, self).__init__.__module__ ? | 02:18 |
HammerToe | davisagli: plone.app.layout.viewlets.common | 02:20 |
*** RaFromBRC has joined #zope | 02:21 | |
davisagli | HammerToe: seems like there's some confusion between the ViewletBase in zope.viewlet.viewlet and the one in plone.app.layout.viewlets.common | 02:21 |
davisagli | HammerToe: but not sure what exactly. gotta go for now | 02:21 |
HammerToe | OK cheers | 02:21 |
*** davisagli is now known as davisagli|away | 02:22 | |
*** allisterb has quit IRC | 02:34 | |
*** mr_jolly_ has joined #zope | 02:41 | |
*** mr_jolly has quit IRC | 02:43 | |
*** mr_jolly_ is now known as mr_jolly | 02:43 | |
*** HammerToe has quit IRC | 02:45 | |
*** HammerToe has joined #zope | 02:45 | |
*** allisterb has joined #zope | 02:47 | |
*** HammerToe has quit IRC | 02:58 | |
*** mr_jolly has quit IRC | 02:58 | |
*** John has quit IRC | 02:59 | |
*** daMaestro has quit IRC | 02:59 | |
*** strichter has joined #zope | 03:06 | |
*** srichter has quit IRC | 03:07 | |
*** tiwula has quit IRC | 03:11 | |
*** daMaestro has joined #zope | 03:12 | |
*** MrWu has quit IRC | 03:12 | |
*** runyaga has quit IRC | 03:22 | |
*** ccomb has quit IRC | 03:34 | |
*** fredvd|weg has quit IRC | 03:38 | |
*** pepeu has joined #zope | 03:56 | |
*** minskmaz has quit IRC | 04:07 | |
*** alecm_ has joined #zope | 04:08 | |
*** alecm has quit IRC | 04:11 | |
*** alecm_ is now known as alecm | 04:11 | |
*** daMaestro has quit IRC | 04:21 | |
*** alecm has quit IRC | 04:25 | |
*** tiwula has joined #zope | 04:26 | |
*** davisagli|away is now known as davisagli | 04:26 | |
*** davisagli is now known as davisagli|away | 04:28 | |
*** alvaro_ has quit IRC | 04:42 | |
*** pepeu has quit IRC | 04:43 | |
*** davisagli|away is now known as davisagli | 04:52 | |
*** davisagli is now known as davisagli|away | 04:53 | |
*** runyaga has joined #zope | 05:05 | |
*** runyaga has quit IRC | 05:43 | |
*** runyaga has joined #zope | 05:43 | |
*** benji has quit IRC | 05:45 | |
*** dayne has joined #zope | 05:50 | |
*** davisagli|away is now known as davisagli | 05:58 | |
*** davisagli is now known as davisagli|away | 06:11 | |
*** davisagli|away is now known as davisagli | 06:11 | |
*** kleist has joined #zope | 06:25 | |
*** davisagli is now known as davisagli|away | 06:25 | |
*** xitrium_ has joined #zope | 06:48 | |
*** xitrium has quit IRC | 06:50 | |
*** xitrium_ is now known as xitrium | 06:50 | |
*** strichter has quit IRC | 06:50 | |
*** mahiti_skt has joined #zope | 07:11 | |
*** pingviin1 has joined #zope | 07:46 | |
*** vipod has joined #zope | 07:52 | |
*** baijum has joined #zope | 07:55 | |
*** wosc has joined #zope | 08:22 | |
*** vipod has quit IRC | 08:24 | |
*** Theuni1 has joined #zope | 08:26 | |
*** Guest73994 has quit IRC | 08:28 | |
*** vipod has joined #zope | 08:30 | |
*** JaRoel|4D has quit IRC | 08:46 | |
*** tiwula has quit IRC | 08:52 | |
*** zagy has joined #zope | 08:53 | |
*** Theuni1 has quit IRC | 08:57 | |
*** d2m has joined #zope | 09:08 | |
*** Theuni1 has joined #zope | 09:11 | |
*** jakke has joined #zope | 09:19 | |
*** cna has joined #zope | 09:20 | |
*** hever has joined #zope | 09:23 | |
*** hever has quit IRC | 09:26 | |
*** hever has joined #zope | 09:26 | |
*** yvl has quit IRC | 09:30 | |
*** pingviin1 has quit IRC | 09:31 | |
*** yvl has joined #zope | 09:33 | |
*** baijum has quit IRC | 09:33 | |
*** menesis has joined #zope | 09:35 | |
*** hever has quit IRC | 09:38 | |
*** shastry_ has joined #zope | 09:40 | |
*** shastry has quit IRC | 09:43 | |
*** sashav has joined #zope | 09:45 | |
*** JaRoel|4D has joined #zope | 09:59 | |
*** xitrium has quit IRC | 10:07 | |
*** neo|4D has joined #zope | 10:07 | |
*** __mac__ has joined #zope | 10:10 | |
*** redir has quit IRC | 10:10 | |
*** redir has joined #zope | 10:19 | |
*** redir_ has joined #zope | 10:22 | |
*** goschtl has joined #zope | 10:23 | |
*** redir has quit IRC | 10:24 | |
*** hever has joined #zope | 10:27 | |
*** davisagli|away is now known as davisagli | 10:30 | |
*** planetzopebot has quit IRC | 10:33 | |
*** planetzopebot has joined #zope | 10:34 | |
*** astoon has joined #zope | 10:34 | |
*** runyaga has quit IRC | 10:35 | |
*** runyaga has joined #zope | 10:37 | |
*** runyaga has quit IRC | 10:37 | |
*** baijum has joined #zope | 10:39 | |
*** rwat has quit IRC | 10:50 | |
*** agroszer has joined #zope | 10:57 | |
*** danielkie has joined #zope | 11:09 | |
*** davisagli is now known as davisagli|away | 11:10 | |
danielkie | hello. i need a bit of help. i used buildout to install ZMySQLDA in my Zope2 and it installed without errors. But i cant my start my instance because Zope misses DBAdapterFolder_icon.gif. What a critical error... ;) Any Idea? http://www.pastie.org/1178733 | 11:13 |
betabug | to make it work just this instant, touch the file... otherwise, go and complain to whoever did that ZMySQLDA buildout? | 11:17 |
*** ccomb has joined #zope | 11:18 | |
*** dunny has joined #zope | 11:18 | |
*** goschtl_ has joined #zope | 11:18 | |
*** goschtl has quit IRC | 11:20 | |
*** goschtl_ is now known as goschtl | 11:20 | |
danielkie | betabug: yeah thats obvious, but it misses the file in the Zope2 egg. not in the folder of the ZmySQLDA. | 11:21 |
betabug | hmm, dunno then | 11:21 |
*** HammerToe has joined #zope | 11:21 | |
*** John has joined #zope | 11:22 | |
*** John has quit IRC | 11:22 | |
*** msg has joined #zope | 11:25 | |
*** shastry_ has quit IRC | 11:36 | |
d2m | danielkie: just add the file in the egg folder and check who did the 2.12.10 release | 11:38 |
d2m | actually google shows the same error for a 2007 zope2.9.5 instance, could be that Products.ZMySQLDA-3.1-py2.6.egg/Products/ZMySQLDA/DA.py is doing wrong | 11:40 |
d2m | i think this is really a problem with the mysql db adapter | 11:41 |
d2m | danielkie: the problem has been reported already http://sourceforge.net/projects/mysql-python/forums/forum/70461/topic/3816799 | 11:44 |
CIA-7 | alga * r116784 z3c.pt/src/z3c/pt/expressions.py: A little readability improvement. | 11:47 |
*** mitchell`off is now known as mitchell` | 11:52 | |
*** mr_jolly has joined #zope | 11:52 | |
*** fredvd has joined #zope | 11:52 | |
danielkie | d2m: thx. i use SQLAlchemyDA now. it works better :D | 11:56 |
*** MatthewWilkes has joined #zope | 12:00 | |
*** TomBlockley has joined #zope | 12:02 | |
*** TomBlockley has joined #zope | 12:02 | |
*** sunew has joined #zope | 12:06 | |
*** ccomb has quit IRC | 12:08 | |
*** hever has quit IRC | 12:08 | |
*** hever has joined #zope | 12:08 | |
*** mr_jolly has quit IRC | 12:13 | |
*** mr_jolly has joined #zope | 12:17 | |
*** mr_jolly_ has joined #zope | 12:19 | |
*** mr_jolly_ has quit IRC | 12:20 | |
*** mr_jolly has left #zope | 12:21 | |
*** teix has joined #zope | 12:22 | |
*** msg has quit IRC | 12:22 | |
*** mr_jolly has joined #zope | 12:22 | |
*** _bluetouff has quit IRC | 12:27 | |
*** ccomb has joined #zope | 12:32 | |
*** _bluetouff has joined #zope | 12:36 | |
*** baijum has quit IRC | 12:38 | |
*** yvl has quit IRC | 12:59 | |
*** yvl_ has joined #zope | 12:59 | |
*** yvl_ is now known as yvl | 12:59 | |
*** danielkie has left #zope | 12:59 | |
*** astoon has quit IRC | 13:10 | |
*** River_Rat has quit IRC | 13:13 | |
*** River_Rat has joined #zope | 13:26 | |
*** dunny has quit IRC | 13:34 | |
*** alexpilz has joined #zope | 13:37 | |
*** Moo--- has quit IRC | 13:37 | |
*** moo has joined #zope | 13:39 | |
*** moo is now known as Guest87324 | 13:39 | |
*** goschtl has quit IRC | 13:44 | |
*** ccomb has quit IRC | 13:44 | |
*** thetet has joined #zope | 13:59 | |
*** River_Rat has quit IRC | 14:03 | |
*** benji has joined #zope | 14:09 | |
*** goschtl has joined #zope | 14:27 | |
*** John[a] has joined #zope | 14:30 | |
*** John[a] is now known as msg | 14:34 | |
*** _bluetouff has quit IRC | 14:34 | |
*** msg has quit IRC | 14:34 | |
*** msg has joined #zope | 14:34 | |
*** msg has quit IRC | 14:36 | |
*** _bluetouff has joined #zope | 14:39 | |
*** smita1 has quit IRC | 14:52 | |
CIA-7 | icemac * r116785 zope.app.authentication/src/zope/app/authentication/browser/ (tests/test_doctests.py tests tests/__init__.py tests.py): making room for more test modules | 15:10 |
*** benji has quit IRC | 15:11 | |
*** benji has joined #zope | 15:12 | |
*** benji has quit IRC | 15:16 | |
*** benji has joined #zope | 15:16 | |
*** __mac__ has quit IRC | 15:16 | |
*** ccomb has joined #zope | 15:17 | |
*** hever has quit IRC | 15:23 | |
*** digitalmortician has quit IRC | 15:29 | |
*** fredvd has quit IRC | 15:32 | |
*** astoon has joined #zope | 15:35 | |
*** Guest87324 is now known as Moo-_-_ | 15:43 | |
*** benji has quit IRC | 15:44 | |
*** benji has joined #zope | 15:45 | |
*** benji has quit IRC | 15:51 | |
*** benji has joined #zope | 15:51 | |
agroszer | ping Theuni1 | 15:57 |
Theuni1 | agroszer: pong | 15:57 |
agroszer | hi | 15:57 |
*** benji has quit IRC | 15:57 | |
agroszer | Theuni1, did you ever try to use zodbupdate with z3c.baseregistry | 15:58 |
agroszer | ? | 15:58 |
*** benji has joined #zope | 15:58 | |
Theuni1 | probably not | 15:59 |
agroszer | :-S | 15:59 |
agroszer | I guess I gotta try on my own | 16:00 |
*** mahiti_skt has quit IRC | 16:01 | |
*** baijum has joined #zope | 16:02 | |
*** benji has quit IRC | 16:03 | |
*** benji has joined #zope | 16:04 | |
*** yareckon has joined #zope | 16:05 | |
*** digitalmortician has joined #zope | 16:06 | |
*** alexpilz has left #zope | 16:08 | |
*** alexpilz has joined #zope | 16:09 | |
yareckon | hi guys, zope 2.10.4 can I trigger a redirect from within a dtml method? | 16:09 |
*** benji has quit IRC | 16:10 | |
*** benji has joined #zope | 16:10 | |
*** benji has quit IRC | 16:12 | |
*** Arfrever has joined #zope | 16:13 | |
agroszer | Theuni1, fyi, seems to work, just have to register a global utility in rename_dict | 16:14 |
agroszer | that it gets registered on import | 16:14 |
*** benji has joined #zope | 16:16 | |
*** benji has quit IRC | 16:16 | |
*** benji has joined #zope | 16:17 | |
*** vipod_ has joined #zope | 16:17 | |
*** _bluetouff has quit IRC | 16:18 | |
*** vipod has quit IRC | 16:18 | |
*** vipod_ is now known as vipod | 16:18 | |
*** baijum has quit IRC | 16:30 | |
*** wosc has quit IRC | 16:31 | |
*** touff has joined #zope | 16:33 | |
*** digitalmortician has quit IRC | 16:34 | |
*** mitchell` is now known as mitchell`afk | 16:35 | |
*** matthewwilkes_ has joined #zope | 16:35 | |
*** MatthewWilkes has quit IRC | 16:36 | |
*** matthewwilkes_ is now known as MatthewWilkes | 16:36 | |
*** kleist has quit IRC | 16:36 | |
*** touff has quit IRC | 16:37 | |
*** kleist has joined #zope | 16:38 | |
*** Theuni1 has quit IRC | 16:40 | |
*** webmaven has joined #zope | 16:40 | |
*** digitalmortician has joined #zope | 16:41 | |
*** tisto has joined #zope | 16:43 | |
*** smita1 has joined #zope | 16:45 | |
*** benji has quit IRC | 16:46 | |
*** huajie has joined #zope | 16:51 | |
*** benji has joined #zope | 16:52 | |
*** sashav has quit IRC | 16:56 | |
*** alvaro has joined #zope | 16:57 | |
*** benji has quit IRC | 16:58 | |
*** benji has joined #zope | 17:00 | |
*** sunew has quit IRC | 17:01 | |
*** Theuni1 has joined #zope | 17:04 | |
*** cna has quit IRC | 17:05 | |
*** RiverRat has joined #zope | 17:05 | |
*** yareckon has quit IRC | 17:07 | |
*** dayne has quit IRC | 17:11 | |
*** digitalmortician has quit IRC | 17:16 | |
*** digitalmortician has joined #zope | 17:22 | |
*** benji has quit IRC | 17:24 | |
*** benji has joined #zope | 17:25 | |
*** MrWu has joined #zope | 17:28 | |
*** digitalmortician has quit IRC | 17:40 | |
*** goschtl has quit IRC | 17:43 | |
*** baijum has joined #zope | 17:48 | |
_mup_ | Bug #646872 was filed: HTTP 301 redirects aren't followed <zope.testbrowser:New> <https://launchpad.net/bugs/646872> | 17:51 |
*** tisto has quit IRC | 17:55 | |
*** baijum has quit IRC | 18:01 | |
*** bigkevmcd has left #zope | 18:01 | |
*** alecm has joined #zope | 18:09 | |
*** hartym has quit IRC | 18:10 | |
*** zagy has quit IRC | 18:13 | |
*** touff has joined #zope | 18:17 | |
*** daMaestro has joined #zope | 18:17 | |
*** daMaestro|isBack has joined #zope | 18:17 | |
*** daMaestro|isBack has quit IRC | 18:18 | |
CIA-7 | jim * r116786 ZODB/src/ (persistent/cPickleCache.c CHANGES.txt): | 18:19 |
CIA-7 | Bug fixed | 18:19 |
CIA-7 | - Changes in way that garage collection treats dictionaries in Python | 18:19 |
CIA-7 | 2.7 broke the object/connection cache implementation. | 18:19 |
CIA-7 | (https://bugs.launchpad.net/zodb/+bug/641481) | 18:19 |
_mup_ | Bug #641481: ZODB 3.10b6 fails to run tests with Python 2.7 on Fedora 14 Branched <ZODB:Fix Committed by jim-zope> <https://launchpad.net/bugs/641481> | 18:19 |
*** touff has quit IRC | 18:21 | |
*** menesis has quit IRC | 18:26 | |
*** yvl has quit IRC | 18:29 | |
*** jakke has left #zope | 18:33 | |
*** Theuni1 has quit IRC | 18:39 | |
*** huajie has quit IRC | 18:49 | |
*** benji is now known as benji-lunch | 18:49 | |
*** tiwula has joined #zope | 19:03 | |
*** regebro has joined #zope | 19:07 | |
*** smita1 has quit IRC | 19:09 | |
*** tisto has joined #zope | 19:09 | |
*** thetet has quit IRC | 19:12 | |
CIA-7 | jim * r116787 ZODB/src/ZEO/tests/testConnection.py: Tweaked debugging info again. | 19:19 |
*** hever has joined #zope | 19:21 | |
*** smita1 has joined #zope | 19:23 | |
*** HammerToe has quit IRC | 19:23 | |
*** davisagli|away is now known as davisagli | 19:25 | |
*** davisagli is now known as davisagli|away | 19:26 | |
*** Theuni1 has joined #zope | 19:41 | |
*** mitchell`afk is now known as mitchell`off | 19:43 | |
*** alexpilz has quit IRC | 19:43 | |
*** benji-lunch is now known as benji | 19:47 | |
*** redir_ has quit IRC | 19:52 | |
*** hever has quit IRC | 19:59 | |
*** ccomb has quit IRC | 20:00 | |
*** regebro has quit IRC | 20:07 | |
*** MatthewWilkes has quit IRC | 20:07 | |
*** davisagli|away is now known as davisagli | 20:09 | |
*** mr_jolly has quit IRC | 20:12 | |
*** mr_jolly has joined #zope | 20:13 | |
*** sm has joined #zope | 20:22 | |
*** agroszer_ has joined #zope | 20:22 | |
*** agroszer has quit IRC | 20:22 | |
*** TomBlockley has quit IRC | 20:31 | |
*** davisagli is now known as davisagli|away | 20:37 | |
*** davisagli|away is now known as davisagli | 20:37 | |
*** binbrain has joined #zope | 20:38 | |
*** __mac__ has joined #zope | 20:41 | |
*** mcdonc has quit IRC | 20:44 | |
*** mcdonc has joined #zope | 20:44 | |
CIA-7 | jim * r116788 ZODB/src/ (ZEO/tests/testZEO.py CHANGES.txt ZEO/runzeo.py): | 20:48 |
CIA-7 | Bug fixed | 20:48 |
CIA-7 | - Logrotation/repoening via a SIGUSR2 signal wasn't implemented. | 20:48 |
CIA-7 | (https://bugs.launchpad.net/zodb/+bug/143600) | 20:48 |
CIA-7 | Needs windows test. | 20:48 |
_mup_ | Bug #143600: Enable ZEO log rotation <database> <feature+solution> <ZODB:Confirmed for hannosch> <https://launchpad.net/bugs/143600> | 20:48 |
*** MrWu has quit IRC | 20:49 | |
*** digitalmortician has joined #zope | 20:58 | |
CIA-7 | ctheune * r116789 /zopetoolkit/doc/source/zope-dev/zope-dev-20100921.rst: add summary from this week | 21:05 |
CIA-7 | ctheune * r116790 /zopetoolkit/doc/source/zope-dev/ (zope-dev-20100928.rst archive.rst index.rst): Agenda for next week. | 21:05 |
*** HammerToe has joined #zope | 21:08 | |
*** JaRoel|4D has quit IRC | 21:14 | |
*** mr_jolly has quit IRC | 21:15 | |
*** MatthewWilkes has joined #zope | 21:17 | |
*** HammerToe has quit IRC | 21:18 | |
*** agroszer_ has quit IRC | 21:20 | |
*** shastry has joined #zope | 21:26 | |
*** shastry has joined #zope | 21:26 | |
*** smita1 has quit IRC | 21:30 | |
*** zagy has joined #zope | 21:34 | |
*** davisagli is now known as davisagli|away | 21:34 | |
*** jvanz has joined #zope | 21:37 | |
*** jvanz has left #zope | 21:43 | |
*** zagy1 has joined #zope | 21:47 | |
*** zagy has quit IRC | 21:47 | |
*** redir has joined #zope | 21:48 | |
*** zagy1 has quit IRC | 22:08 | |
*** kleist has quit IRC | 22:15 | |
*** JaRoel|4D has joined #zope | 22:19 | |
*** teix has quit IRC | 22:20 | |
*** JaRoel|4D has quit IRC | 22:25 | |
*** vipod has quit IRC | 22:26 | |
*** JaRoel|4D has joined #zope | 22:27 | |
*** daMaestro has quit IRC | 22:31 | |
*** dunny has joined #zope | 22:38 | |
*** daMaestro has joined #zope | 22:44 | |
*** daMaestro has joined #zope | 22:44 | |
*** tisto has quit IRC | 22:46 | |
CIA-7 | jim * r116791 ZODB/src/ZEO/ (ServerStub.py ClientStorage.py cache.py): Finish z64-ification of lastTransaction. | 22:47 |
CIA-7 | jim * r116792 ZODB/src/ZODB/tests/BasicStorage.py: Give a join more time to try to avoid spurious errors. | 22:47 |
*** astoon has quit IRC | 22:49 | |
*** smita1 has joined #zope | 22:52 | |
*** shastry has quit IRC | 22:55 | |
*** redir has quit IRC | 23:00 | |
*** redir has joined #zope | 23:02 | |
CIA-7 | jim * r116793 ZODB/src/ZEO/tests/testZEO.py: Fixed runzeo_logrotate_on_sigusr2 to work with Python 2.5. | 23:18 |
*** davisagli|away is now known as davisagli | 23:23 | |
*** __mac__ has quit IRC | 23:24 | |
*** __mac__ has joined #zope | 23:31 | |
*** sm has quit IRC | 23:34 | |
*** giampaolo has joined #zope | 23:51 | |
*** Wu has quit IRC | 23:51 | |
*** binbrain has quit IRC | 23:56 | |
*** Arfrever has quit IRC | 23:59 |
Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!