IRC log of #zope3-dev for Thursday, 2009-12-10

*** aaronv has quit IRC00:06
*** davisagli has quit IRC00:09
*** davisagli has joined #zope3-dev00:12
*** davisagli has quit IRC00:13
*** mcdonc has quit IRC00:17
*** mcdonc has joined #zope3-dev00:18
*** fcorrea has joined #zope3-dev00:19
*** davisagli has joined #zope3-dev00:22
*** davisagli has quit IRC00:23
*** tarek has joined #zope3-dev00:34
*** davisagli has joined #zope3-dev00:42
*** redir has quit IRC00:43
*** davisagli has quit IRC00:45
*** alga has quit IRC00:48
*** menesis has quit IRC00:52
*** davisagli has joined #zope3-dev00:59
*** aaronv has joined #zope3-dev01:12
*** lurkymclurkleton has quit IRC01:25
*** aaronv has quit IRC01:39
*** Theuni1 has quit IRC01:46
*** benji has quit IRC01:49
*** drudi has joined #zope3-dev01:56
*** mcdonc has quit IRC02:02
*** mcdonc has joined #zope3-dev02:07
*** J1m has quit IRC02:22
*** redir has joined #zope3-dev02:27
*** nathany has quit IRC02:35
*** r0ver has quit IRC03:31
*** huajie has joined #zope3-dev03:38
*** davisagli has quit IRC04:18
*** drudi has quit IRC04:33
*** davisagli has joined #zope3-dev04:56
*** pcardune has quit IRC05:13
*** davisagli has quit IRC05:19
*** redir has quit IRC05:19
*** fcorrea has quit IRC05:19
*** matthal has quit IRC05:19
*** do3cc has quit IRC05:19
*** do3cc has joined #zope3-dev05:20
*** davisagli has joined #zope3-dev05:20
*** redir has joined #zope3-dev05:20
*** fcorrea has joined #zope3-dev05:20
*** matthal has joined #zope3-dev05:20
*** dbfrombrc has quit IRC06:19
*** alecm has quit IRC06:26
*** afd_ has joined #zope3-dev06:31
*** afd_ has quit IRC07:02
*** afd___ has joined #zope3-dev07:04
*** davisagli has quit IRC07:14
*** davisagli has joined #zope3-dev07:15
*** pcardune has joined #zope3-dev07:28
*** davisagli has quit IRC07:47
*** dunny has quit IRC07:52
*** davisagli has joined #zope3-dev08:02
*** davisagli has quit IRC08:09
*** redir has quit IRC08:09
*** davisagli has joined #zope3-dev08:21
*** zagy has joined #zope3-dev08:41
*** agroszer__ has joined #zope3-dev09:02
*** romanofski has quit IRC09:05
*** jfkw has quit IRC09:09
*** davisagli has quit IRC09:15
*** davisagli has joined #zope3-dev09:20
*** Theuni1 has joined #zope3-dev09:21
*** agroszer__ is now known as agroszer09:21
*** afd___ has quit IRC09:27
*** sweh has joined #zope3-dev09:30
*** dunny has joined #zope3-dev09:34
*** Theuni1 has quit IRC09:35
*** Theuni1 has joined #zope3-dev09:36
*** afd___ has joined #zope3-dev09:38
*** romanofski has joined #zope3-dev09:49
*** davisagli has quit IRC09:54
*** yvl has joined #zope3-dev09:54
*** pcardune has quit IRC10:00
*** jpcw has joined #zope3-dev10:00
*** matthal has quit IRC10:16
*** afd___ has quit IRC10:16
*** pcardune has joined #zope3-dev10:29
*** lamike has joined #zope3-dev10:29
*** lamike has left #zope3-dev10:29
*** menesis has joined #zope3-dev10:50
*** ccomb has joined #zope3-dev11:08
*** ccomb has left #zope3-dev11:12
*** markusleist has quit IRC11:30
*** jhauser has joined #zope3-dev11:33
*** Theuni2 has joined #zope3-dev11:38
*** Theuni2 has quit IRC11:43
*** Theuni3 has joined #zope3-dev11:43
*** yotaff has joined #zope3-dev11:49
*** junkafarian has joined #zope3-dev11:51
*** Theuni1 has quit IRC11:52
*** Theuni3 has quit IRC11:56
*** Theuni1 has joined #zope3-dev12:04
*** mkerrin has joined #zope3-dev12:06
*** drudi has joined #zope3-dev12:35
*** sawdog has joined #zope3-dev12:44
*** drudi has quit IRC12:44
*** ccomb has joined #zope3-dev12:51
*** MJ has joined #zope3-dev12:55
*** mkerrin has left #zope3-dev13:01
*** pcardune has quit IRC13:06
*** mkerrin has joined #zope3-dev13:08
*** jukart has joined #zope3-dev13:10
*** menesis has quit IRC13:13
*** menesis has joined #zope3-dev13:14
*** mcdonc has quit IRC13:16
*** Theuni1 has quit IRC13:27
*** fcorrea has quit IRC13:43
*** drudi has joined #zope3-dev13:56
*** romanofski has quit IRC14:09
*** ignas has joined #zope3-dev14:13
*** mintsauce has joined #zope3-dev14:30
mintsauceHave a really odd problem where a dict is being returned to a view as unicode. Yet if I PDB into the class and type(foo) its a dict.....?14:35
*** dunny has quit IRC14:37
koboldmintsauce: can you paste somewhere your (simplified) code, to see what are you trying to do?14:43
*** redir has joined #zope3-dev14:50
*** srichter has quit IRC14:52
mintsaucehttp://pastie.org/73716714:57
mintsaucekobold ^14:57
*** jhauser has quit IRC14:57
koboldmintsauce: why do you say that it is a string? what if you do <span tal:content="python:repr(nextprevious)"></span>, do you really get a string? sorry if the question is stupid...15:00
*** projekt01 has joined #zope3-dev15:01
*** fcorrea has joined #zope3-dev15:06
*** benji has joined #zope3-dev15:13
mintsaucekobold: If I do <span tal:content="python:type(nextprevious)"></span> I get TypeError: 'unicode' object is not callable15:22
mintsauce(sorry for delay, lunch got in the way ;) )15:23
mintsauceIf i do <span tal:content="python:repr(nextprevious)"></span> as suggested i get {'previous': None, 'next': u'backwell-school'} ... but thats the dict, in unicode format!15:24
mintsauceI'm doing something really stupid somewhere ....15:24
koboldmintsauce: <span tal:content="nextprevious/next"> ?15:27
mintsaucekobold: ummm .. that works properly ..... I swear it didn't earlier though!15:28
*** afd___ has joined #zope3-dev15:28
koboldmintsauce: I think you just solved your issue ;)15:29
koboldmintsauce: that's a dict15:29
mintsaucehehe, cheers ;)15:29
*** reinout has joined #zope3-dev15:32
*** sawdog has quit IRC15:49
*** huajie has quit IRC15:51
*** allisterb__ has joined #zope3-dev15:56
*** lamike has joined #zope3-dev15:57
*** lamike has left #zope3-dev15:57
*** lurkymclurkleton has joined #zope3-dev16:04
*** zagy has quit IRC16:04
*** srichter has joined #zope3-dev16:04
*** ChanServ sets mode: +o srichter16:04
*** mgedmin has joined #zope3-dev16:04
*** davisagli has joined #zope3-dev16:05
*** allisterb_ has quit IRC16:13
mintsauceDoes Zope3 keep an undo history like Zope2? Can it undo generations!?16:15
*** ignas has quit IRC16:20
mgedminmintsauce, yes and no16:25
mgedminZODB keeps all history, unless you pack it16:25
mgedminthere was a zope.app.undo at some point which had ZMI views for undoing changes16:25
mintsaucemgedmin: I haven't packed recently16:26
mgedminIIRC they did not work for me for some reason ("a later transaction modified something blah blah blah") and I never figured out why; didn't try figuring it out really16:26
mgedminmaybe you'll have better luck16:26
*** J1m has joined #zope3-dev16:26
mintsaucebasically, I've just run a generation that I shouldn't had - before I revert to a backup Data.fs, I wanted to check if there was an easier option16:27
mintsaucezope.app.undo adds the interface to the rotterdam skinned ZMI?16:27
mgedminyes, IIRC16:29
mgedminif you made a copy of the Data.fs just before you ran the generation script, restoring Data.fs would be easier IMO16:32
*** davisagli has quit IRC16:33
*** mcdonc has joined #zope3-dev16:37
*** davisagli has joined #zope3-dev16:48
*** aaronv has joined #zope3-dev16:49
*** ignas has joined #zope3-dev16:57
*** Theuni1 has joined #zope3-dev17:07
*** jfkw has joined #zope3-dev17:11
*** sweh has quit IRC17:12
*** Theuni1 has quit IRC17:14
*** Theuni1 has joined #zope3-dev17:14
*** flox has quit IRC17:16
*** flox has joined #zope3-dev17:16
*** MJ has quit IRC17:18
*** ignas has quit IRC17:21
*** mkerrin has left #zope3-dev17:32
*** r0ver has joined #zope3-dev17:33
*** davisagli has quit IRC17:34
*** zagy has joined #zope3-dev17:37
*** mintsauce has quit IRC17:37
*** mkerrin has joined #zope3-dev17:38
*** thetet has joined #zope3-dev17:46
*** zagy has quit IRC17:48
*** reinout has quit IRC17:56
*** projekt01 has quit IRC18:19
*** jhauser has joined #zope3-dev18:19
*** davisagli has joined #zope3-dev18:21
*** jukart has quit IRC18:28
*** redir has quit IRC18:38
*** matthal has joined #zope3-dev18:51
*** mintsauce has joined #zope3-dev18:57
*** allisterb has joined #zope3-dev19:06
*** r0ver has quit IRC19:06
*** jpcw has left #zope3-dev19:09
*** jukart has joined #zope3-dev19:16
*** nathany has joined #zope3-dev19:17
*** allisterb__ has quit IRC19:23
*** mintsauce has quit IRC19:25
*** mcdonc has quit IRC19:27
*** mcdonc has joined #zope3-dev19:28
mgedminis it possible to convince doctests snippets that they come from a source file named 'foo.txt' at line 127 or whatnot?19:37
mgedminmaybe it would be sufficient to pass the right filename and the right number of blank lines to the exec bit in doctest.py?19:37
* mgedmin is tempted to experiment19:37
*** zagy has joined #zope3-dev19:38
mgedminactually, the traceback already shows the file and line19:38
mgedminwhat I want is pdb support19:38
mgedminpdb think it's in <string>(1)<module>() and, obviously, cannot show me the source19:38
*** jpcw has joined #zope3-dev19:52
*** ccomb has quit IRC19:58
*** redir has joined #zope3-dev20:01
*** pcardune has joined #zope3-dev20:04
*** cbcunc has quit IRC20:07
*** r0ver has joined #zope3-dev20:10
*** afd__ has joined #zope3-dev20:16
*** yotaff has quit IRC20:19
*** agroszer has quit IRC20:29
*** agroszer_ has joined #zope3-dev20:29
*** afd___ has quit IRC20:34
*** pcardune has quit IRC20:39
*** jukart has quit IRC20:41
*** alga has joined #zope3-dev20:44
*** mgedmin has quit IRC20:52
*** nathany has quit IRC21:01
*** junkafarian has quit IRC21:16
*** markusleist has joined #zope3-dev21:17
*** pcardune has joined #zope3-dev21:30
*** r0ver has quit IRC21:31
*** dunny has joined #zope3-dev21:36
*** Theuni1 has quit IRC21:57
*** Theuni1 has joined #zope3-dev22:01
*** srichter has quit IRC22:13
*** mkerrin has left #zope3-dev22:27
*** alecm has joined #zope3-dev22:34
*** allisterb has quit IRC22:36
*** agroszer_ has quit IRC22:39
*** thetet has quit IRC22:40
*** thetet has joined #zope3-dev22:41
*** afd__ has quit IRC22:47
*** fcorrea has quit IRC22:54
*** dunny has quit IRC23:22
*** fcorrea has joined #zope3-dev23:40
*** drudi has quit IRC23:46
*** tarek has quit IRC23:54
*** thetet has quit IRC23:58

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