IRC log of #zope3-dev for Monday, 2008-07-14

*** norro has quit IRC00:19
*** reco has joined #zope3-dev00:25
*** romanofski has quit IRC00:37
*** vimes656 has quit IRC00:58
*** timte has quit IRC01:09
*** jpcw2002 has joined #zope3-dev01:41
*** aclark is now known as aclark|dinner01:46
*** MrTopf has quit IRC01:50
*** reco has quit IRC02:10
*** gstratton has joined #zope3-dev02:16
arikaDo every content type needs a factory to be created?02:45
*** jpcw2002 has left #zope3-dev02:52
*** georgyberdyshev has joined #zope3-dev02:54
*** gberdyshev_ has quit IRC02:54
*** georgyberdyshev is now known as gberdyshev_02:54
arikaanyone here?03:07
*** b52laptop has quit IRC03:07
gstrattonarika: I think the anwer's no03:08
gstrattonTo the first question ;-)03:08
arikaHahahahahahhaa03:08
arikawell at least it was better than asking to ask :)03:09
*** yota has quit IRC03:09
arikagstratton: do I need a factory for every object that I create?03:09
arikalol03:09
gstrattonarika: From what I remember, it's not necessary to register any factories03:10
arikaok...03:11
arikaI've created the browser vew of addMenuItem03:11
arikabut nothing appears...03:12
arikalol03:12
arikaI don't see my object under the adding thing...03:14
arikaThis will be a long learning curve03:14
arikalol03:14
*** b52laptop has joined #zope3-dev03:14
gstrattonSo you're registered an addform?03:14
arikayeah03:14
arikaI don't know if it's using really my package03:15
arikaI would suppose that because it was created every .pyc file03:15
arikalol03:15
arikaI've got now an addform and an addMenuItem03:16
gstrattonHmm, sorry, I'm not too hot on this stuff. I haven't done it for a couple of years. Do you have Philipp's book?03:19
arikayeah that's what I'm using03:20
arikaand also the zope3 book03:20
arikaI checked that you can create a new object03:21
arikaand03:21
arikaI'm trying to continue now with the browser thing03:21
arikain order to make the part of adding the content03:21
arika:)03:21
gstrattonarika: Well, registering the class as a factory is quite trivial, so maybe you should try it too see whether that's the problem03:23
arikayeah I noticed03:23
arikaI suppose it fails when you try to package include something that doesn't exists, isn't it?03:24
arikalol03:24
gstrattonYup.03:24
arikaah then I've got no problem03:24
arika1) I created an interface for the content03:24
arika2) I created a class for the content that implements interface03:24
arika3) I added a subfolder browser/ with a configure.zcml thing03:25
arikadon't get my problem03:25
arikalol03:25
arikanow if I try to debug the factory...03:25
gstrattonAnd the package zcml includes the browser subpackage zcml?03:25
arikalet me check...03:26
arikayeah yeah03:26
arikaadded03:26
arika<include package=".browser" />03:26
arikawait03:26
arikagonna debug this03:26
arikaif in my zcml Ive got03:28
arika    <utility        factory=".ara2site.Ara2SiteFactory"03:28
arika                    name="ara2CMS.Ara2Site"03:28
arika                    permission="Zope.ManageContent"03:28
arika    />03:28
arikait says03:28
arika>>> a = createObject(u"ara2CMS.Ara2Site")03:28
arikaTraceback (most recent call last):03:28
arika  File "<stdin>", line 1, in ?03:28
arika  File "/usr/local/Zope-3.3.1/lib/python/zope/component/_api.py", line 224, in createObject03:28
arika    return getUtility(IFactory, __factory_name, context)(*args, **kwargs)03:28
arika  File "/usr/local/Zope-3.3.1/lib/python/zope/component/_api.py", line 207, in getUtility03:28
arika    raise ComponentLookupError(interface, name)03:28
arikazope.component.interfaces.ComponentLookupError: (<InterfaceClass zope.component.interfaces.IFactory>, u'ara2CMS.Ara2Site')03:28
arika>>>03:28
gstrattonThis is from a debug prompt with the application configuration loaded, yes?03:29
arikayeah debugzope03:29
arika:)03:29
arikabut take this: (wait)03:29
arikauh03:30
arikagot a syntax error...03:30
arikalet me see :)03:30
arika>>> from ara2CMS.ara2site import Ara2Site03:32
arika>>>03:32
arikaok ok03:32
arikathe file now is ok let me restart the zope server03:32
arikacontinues without working gstratton03:37
arika:)03:37
arikadoesn't also work with getUtility()03:39
*** vimes656 has joined #zope3-dev03:39
gstrattonThat zcml doesn't look right to me...03:40
arikahmm03:41
arikalet me check03:41
gstrattonhttp://wiki.zope.org/zope3/ReducingTheAmountOfZCMLDirectives03:41
gstrattonprovides="zope.component.interfaces.IFactory"03:41
arikahm03:42
arikautility has to be under content tag03:42
arikaisn't it?03:42
arikaI think that would be my problem...03:42
arikayeah it is under content...03:43
gstrattonI don't think so... I think either you use <factory> under content or utility outside03:43
arikafactory is deprecated, as I've read03:43
gstrattonSure. Actually, so I content, which is merely an alias for class03:44
arikaThe factory directive has been deprecated and will be removed in Zope 3.5. Use the utility directive instead:03:44
arikamy code doesn't seem the example code03:45
arikaand I've got the utility code from philip book03:45
gstrattonHmm, you are right. I wonder how it knows that it's meant to provide IFactory03:47
arikawell03:48
arikaas I understand03:48
arikafactories inherit from zope.component.interfaces.IFactory03:48
arikalol03:48
arikaso I put03:48
arikaimplements(IFactory)03:48
arikadon't know if you mean that03:49
gstrattonYes, I was just getting there!03:49
arikahahaha :)03:49
gstrattonSo when you look up a utility, you look for something providing an interface03:49
arikaaha03:49
gstrattonIn this case, IFactory. Which means that when you register a utility, you need to specify the interface it implements03:50
arikayeah03:50
gstrattonBut, if you don't specify it, and it provides exactly one interface, then it will be registered for that03:50
arikashould I use provides03:51
gstrattonSorry, there's a bit of provides/implements confusion here.03:51
arikaand say provide an IFactory?03:51
arikagot the error, I think03:52
arikaapi docs say03:52
arikaPython name of a factory which can create the implementation object. This must identify an object in a module using the full dotted name. If specified, the component field must be left blank.03:52
arikausing full dotted name03:52
arikameans in python jargon to specify all the dots03:52
arikawithout beginning with a simple .?03:52
gstrattonStarting with a dot means relative to the current package03:53
*** aclark|dinner is now known as aclark|away03:53
gstratton.. means relative to the parent, etc03:53
arikayeah03:53
arikabut what's a full dotted name?03:53
gstrattonpackage.subpackage.module.file.xxx03:54
arikaok ok03:54
gstrattonzope.component.interfaces.IFactory03:54
arikaI just learnt python to work with Zope, lol03:54
gstrattonWow, that's a lot to learn at once!03:54
arikaI think so...03:55
arikaanother language03:55
arikahahahahaha03:55
arikagetting addicted to python really03:55
arikadone some tests and it's really useful :)03:55
gstrattonYou said you put "implements(IFactory)" in the class def; was that from Philipp's book?03:55
arikayeah03:56
arikai've defined __call__03:56
arikathat returns the object to be created03:57
arikaand getInterfaces03:57
arikathat returns implementedBy the object class...03:57
gstrattonOh, right. Fair enough!03:58
arikadunno I'm not a Zope expert...03:58
arikalol03:58
arikaI was really freak when I decided to do my website in Zope03:59
arikalol03:59
gstrattonRight, I've looked at what the utility directive does, and the utility will already be registered for IFactory!04:02
arikais it my problem?04:03
arikalol04:03
arikahave I done something wrong?04:03
gstrattonNope, sorry!04:03
gstrattonThat's not the issue :-(04:03
arikaso what should I do?04:03
gstrattonHmm, so is your utility directive inside the class/component directive?04:04
arikait is under content directive04:04
gstrattonTake it out to the top level04:04
arikalet me see04:05
arikaunder configure, I understand04:05
gstrattonYes, sorry04:05
arikarestarting zope...04:06
arikaif I understand this I can create content types for my little website :))04:06
arikacontinues not to work04:07
arikalol04:07
arikadoesn't appear any add site thing04:07
gstrattonOkay, but do you get the same traceback in the debugger?04:08
arikalet me check sir04:08
arikaik   raise ComponentLookupError(interface, name)04:10
arikazope.component.interfaces.ComponentLookupError: (<InterfaceClass zope.component.interfaces.IFactory>, u'ara2CMS.Ara2Site')04:10
arika>>>04:10
arikathat one04:10
gstrattonDo you get that with the (deprecated) <factory> directive04:11
gstratton?04:11
*** alecm|away is now known as alecm04:12
arikahaven't used04:12
arikalol04:12
arikabut has to work in this way04:12
arikathe other thing is deprecated :)04:12
gstrattonSure, I'm just hoping for clues as to what the problem is. I'm not suggesting this way doesn't work!04:13
*** alecm is now known as alecm|away04:13
arikahahaha sure it works :)04:13
arikagstratton: wanna a paste of code?04:16
arikagstratton: http://arika.ara-ara.org/ara2CMS/04:18
arikagive it a look04:18
arikalol04:18
gstrattonLooking....04:21
arikaI'm coding throught SSH so I can copy it every time someone can help04:21
arikaI explain...04:21
arikathe CMS type there04:21
arikain content/ gonna put subfolders for every content that can be contained by the CMS folder04:22
arikain skins/ have to code the skins04:22
arikaand so04:22
arikavery simple04:22
arikaas I saw in the manuals found04:23
arikacreating content types are the first stept on this04:23
arikaso that's what I'm doing in order to code a little cms that has what I need...04:23
gstrattonDoesn't the include package="" need to be inside the configure tag?04:23
arikahmmm04:24
arikaI think no04:24
arikabecause every configure.zcml04:24
arikalike that browser/ one04:24
arikahas its own configuring namespace04:24
arikaxmlns thing, I mean04:24
*** aaronv has joined #zope3-dev04:25
arikagstratton: because I'm a novice with zope I can't find the error04:27
arika lol04:27
*** alecm|away has quit IRC04:29
*** alecm has joined #zope3-dev04:29
arikagstratton: have you found an error?04:31
gstrattonSorry, been trying to run the code, but messed it up....04:31
arikalol04:32
*** aaronv has quit IRC04:33
gstrattonHmm, the createObject() call works for me!04:34
arikaoh yes?04:34
arikahave you tweaked something?04:34
arikahow do you call createObject?04:34
gstratton>>> from zope.component import createObject04:34
gstratton>>> createObject("ara2CMS.Ara2Site")04:34
gstratton<ara2CMS.ara2site.Ara2Site object at 0x271f930>04:34
arikahuh?04:35
arikawait a moment...04:35
arikaI can see what's the problem maybe04:35
arikait crashes for me04:37
arikalol04:37
arikawhat have you tweaked gstratton ?04:37
gstrattonPretty much nothing. I got rid of the <include package=".browser"> line04:38
arikaaha04:39
arikaexplain yourself04:39
arikalol04:39
gstrattonBut it's all a bit different as I'm running it using zopeproject with Zope 3.404:39
arikahmmm04:39
arikawhat's zopeproject?04:39
gstrattonBTW, the first implements directive in the content directive: it doesn't start with an ascii 'i'04:40
arikahuh?04:41
arikaI've got04:42
arika    <content class=".ara2site.Ara2Site">04:42
arika        <ìmplements interface="zope.app.container.interfaces.IContainer" />04:42
arika        <implements04:42
arika        interface="zope.app.annotation.interfaces.IAttributeAnnotatable" />04:42
arikawhere's the i?04:42
gstrattonThe first character of 'implements'04:42
arikaI've got written ok04:42
arikalol04:42
arikait says implements04:42
arikahuh04:42
arikano04:42
arikait says ì04:42
arikafucking accent I can't see it it's so shitty little04:43
arikalol04:43
arikathank you04:43
gstrattonWhy didn't that cause you an error? I couldn't start zope until I fixed that...04:43
arikadidn't caused a thing...04:43
arikalet me paste you a thing04:43
arika[arika@ara-ara ~/Zope/lib/python/ara2CMS]$ cat ../../../etc/package-includes/ara2CMS.zcml04:44
arika<include package="ara2CMS" />04:44
arikathis is the proper thing04:44
arikaisn't it?04:44
arika[arika@ara-ara ~/Zope/lib/python/ara2CMS]$04:44
gstrattonI think it has to end in -configure.zcml to be loaded04:46
gstrattonie ara2CMS-configure.zcml04:46
arikawith a dot04:48
arikaah04:48
arikayeah04:48
arikayeah04:48
arikaI remember04:48
arikaI read that 2 weeks ago04:48
arikatreu04:48
arikatrue04:48
arikanow my daemon seems to be death04:50
arikagstratton: have you modified another thing?04:52
gstrattonI don't think so.04:52
gstrattonSo your zcml is definitely being loaded, is it?04:52
arikayeah yeah04:52
arikaI think the last include is failing...04:53
arikamy daemon now is dead04:54
arikalol04:54
gstrattonOkay, well I've gotta go for a bit; good luck!04:55
arikathanks04:56
arika:)04:56
*** philiKON has joined #zope3-dev05:08
arika<include package="ara2CMS.browser" />05:09
arikawhat's the error here?05:10
*** alecm is now known as alecm|away05:10
arikajunk after document element05:10
arikait says05:10
arikathink I've found the solution05:17
*** alecm|away has quit IRC05:19
*** b52laptop has quit IRC05:19
*** vimes656 has quit IRC05:20
*** alecm has joined #zope3-dev05:22
arikacool05:24
arikaIt works... I've created the content and yes05:24
arikait ask for adding05:24
arikabut then says "system error occurred"05:24
arikawell at least it is an advance05:24
arikahahahaha :)05:24
*** alecm is now known as alecm|away05:25
*** philiKON_ has joined #zope3-dev05:26
*** philiKON__ has joined #zope3-dev05:33
*** philiKON_ has quit IRC05:33
*** dunny_ has quit IRC05:33
*** philiKON has quit IRC05:34
*** dunny has joined #zope3-dev05:34
*** alecm|away has quit IRC05:35
*** alecm has joined #zope3-dev05:38
*** philiKON__ is now known as philiKON05:38
*** hexsprite has quit IRC05:38
*** alecm is now known as alecm|away05:44
*** philiKON has quit IRC06:40
*** philiKON has joined #zope3-dev06:41
*** philiKON has quit IRC06:46
*** philiKON_ has joined #zope3-dev06:48
*** georgyberdyshev has joined #zope3-dev06:53
*** gberdyshev_ has quit IRC06:53
*** georgyberdyshev is now known as gberdyshev_06:53
*** tdoggette has quit IRC07:32
*** tdoggette has joined #zope3-dev07:36
*** yvl has joined #zope3-dev08:15
*** zagy has quit IRC08:30
*** theuni has joined #zope3-dev08:32
*** timte has joined #zope3-dev08:40
*** jayaraj has joined #zope3-dev08:45
*** charith_para has joined #zope3-dev08:47
*** binseer has joined #zope3-dev08:49
*** zagy has joined #zope3-dev08:49
*** theuni1 has joined #zope3-dev08:49
*** theuni has quit IRC08:49
*** theuni1 is now known as theuni08:49
*** fairwinds has quit IRC09:07
*** afd_ has joined #zope3-dev09:16
*** jukart has joined #zope3-dev09:17
*** __mac__ has joined #zope3-dev09:21
*** stub has joined #zope3-dev09:29
*** romanofski has joined #zope3-dev09:37
*** agroszer has joined #zope3-dev09:51
*** quodt has joined #zope3-dev10:00
*** tdoggette has quit IRC10:01
*** charith_parana has joined #zope3-dev10:02
*** charith_para has quit IRC10:04
*** kursor has joined #zope3-dev10:11
*** malthe has quit IRC10:12
*** dobee has joined #zope3-dev10:17
*** theuni has quit IRC10:18
*** tdoggette has joined #zope3-dev10:23
*** Charith__ has joined #zope3-dev10:36
*** charith_parana has quit IRC10:37
*** MJ has joined #zope3-dev10:41
*** gstratton has quit IRC10:45
*** vimes656 has joined #zope3-dev10:48
*** alecghica has joined #zope3-dev10:48
*** vimes656 has quit IRC10:51
*** vimes656 has joined #zope3-dev10:52
*** kursor has quit IRC10:56
*** b52laptop has joined #zope3-dev11:12
*** Jell-O-Fishi has quit IRC11:22
*** markusleist has joined #zope3-dev11:25
*** b52lap has joined #zope3-dev11:32
*** projekt01 has joined #zope3-dev11:41
*** b52laptop has quit IRC11:44
*** maurits has joined #zope3-dev11:44
*** vimes656_ has joined #zope3-dev11:54
*** fairwinds has joined #zope3-dev12:00
*** dunny has quit IRC12:09
*** dunny has joined #zope3-dev12:11
*** vimes656 has quit IRC12:11
*** dunny has quit IRC12:12
*** mazvv_ has quit IRC12:12
*** mazvv_ has joined #zope3-dev12:12
*** malthe has joined #zope3-dev12:12
*** rocky has left #zope3-dev12:32
*** menesis has joined #zope3-dev12:37
*** kursor has joined #zope3-dev12:38
*** alga has joined #zope3-dev12:42
*** theuni1 has joined #zope3-dev12:45
*** theuni1 is now known as theuni12:45
*** kursor has quit IRC12:48
*** stub has quit IRC12:52
*** georgyberdyshev has joined #zope3-dev12:53
*** gberdyshev_ has quit IRC12:53
*** georgyberdyshev is now known as gberdyshev_12:54
*** kursor has joined #zope3-dev12:56
*** aaronv has joined #zope3-dev13:13
*** jpcw2002 has joined #zope3-dev13:18
*** goschtl has joined #zope3-dev13:22
*** vimes656_ has quit IRC13:23
*** aclark|away is now known as aclark13:23
*** vimes656 has joined #zope3-dev13:24
*** ktwilight_ has joined #zope3-dev13:24
*** georgyberdyshev has joined #zope3-dev13:32
*** gberdyshev_ has quit IRC13:32
*** georgyberdyshev is now known as gberdyshev_13:32
*** ktwilight has quit IRC13:37
*** mkerrin has joined #zope3-dev13:46
*** mgedmin has joined #zope3-dev13:53
*** MJ is now known as MJ|lunch13:55
*** salfield has joined #zope3-dev13:59
*** goschtl has quit IRC14:01
*** dobee has quit IRC14:04
*** mazvv_ has quit IRC14:04
*** dunny has joined #zope3-dev14:09
*** BjornT has quit IRC14:09
*** aaronv has quit IRC14:11
*** yota has joined #zope3-dev14:15
*** dobee has joined #zope3-dev14:23
*** georgyberdyshev has joined #zope3-dev14:24
*** gberdyshev_ has quit IRC14:24
*** georgyberdyshev is now known as gberdyshev_14:24
*** goschtl has joined #zope3-dev14:27
*** mazvv has joined #zope3-dev14:41
*** MJ|lunch is now known as MJ14:44
*** djohnson has joined #zope3-dev14:49
*** jpcw2002 has quit IRC14:51
*** djohnson_ has joined #zope3-dev14:55
*** hexsprite has joined #zope3-dev15:10
*** djohnson has quit IRC15:12
*** MrTopf has joined #zope3-dev15:21
*** natea_ has joined #zope3-dev15:27
*** rocky has joined #zope3-dev15:28
*** acsr has joined #zope3-dev15:32
*** benji has joined #zope3-dev15:39
*** lucielejard has joined #zope3-dev15:45
*** Charith__ has quit IRC15:50
*** sp0cksbeard has joined #zope3-dev15:51
*** fcorrea has joined #zope3-dev15:52
*** hazmat has joined #zope3-dev15:53
*** ChanServ sets mode: +o hazmat15:53
*** dunny has quit IRC15:58
*** jhauser has joined #zope3-dev16:00
*** jamur2 has joined #zope3-dev16:02
*** lurkymclurkleton has joined #zope3-dev16:03
*** rcrafton has joined #zope3-dev16:05
*** djohnson_ has quit IRC16:06
*** J1m has joined #zope3-dev16:09
*** jsadjohnson_ has joined #zope3-dev16:17
*** jsadjohnson has quit IRC16:31
*** tonico has joined #zope3-dev16:33
*** vimes656_ has joined #zope3-dev16:35
*** goschtl has quit IRC16:35
*** srichter has quit IRC16:36
*** gstratton has joined #zope3-dev16:38
*** vimes656 has quit IRC16:40
*** rcrafton has quit IRC16:40
*** whit has joined #zope3-dev16:42
*** vimes656_ has quit IRC16:42
*** vimes656 has joined #zope3-dev16:43
*** aaronv has joined #zope3-dev16:47
*** gstratton has quit IRC16:51
*** reco has joined #zope3-dev16:52
*** georgyberdyshev has joined #zope3-dev16:53
*** gberdyshev_ has quit IRC16:53
*** georgyberdyshev is now known as gberdyshev_16:53
*** charith_para has joined #zope3-dev17:05
*** hexsprite has quit IRC17:06
*** srichter has joined #zope3-dev17:13
*** nathany has joined #zope3-dev17:16
*** MJ has quit IRC17:27
*** vimes656_ has joined #zope3-dev17:33
*** srichter has quit IRC17:34
*** srichter has joined #zope3-dev17:34
*** zagy has quit IRC17:35
*** menesis has quit IRC17:38
*** reco has quit IRC17:38
*** reco has joined #zope3-dev17:38
*** menesis has joined #zope3-dev17:39
*** reco has quit IRC17:39
*** reco has joined #zope3-dev17:39
*** vimes656 has quit IRC17:51
*** rmarianski has joined #zope3-dev17:55
*** srichter has quit IRC17:55
*** aaronv has quit IRC18:03
*** srichter has joined #zope3-dev18:03
*** whit has quit IRC18:03
*** salfield has quit IRC18:04
*** whit has joined #zope3-dev18:04
*** aaronv has joined #zope3-dev18:06
*** andres_f has joined #zope3-dev18:13
*** alecm|away is now known as alecm18:14
*** andres has quit IRC18:20
*** romanofski has quit IRC18:25
*** redir has joined #zope3-dev18:27
*** dobee has quit IRC18:31
*** hexsprite has joined #zope3-dev18:34
*** __gotcha has joined #zope3-dev18:34
*** sp0cksbeard has left #zope3-dev18:36
*** projekt01 has quit IRC18:44
*** whitmo has joined #zope3-dev18:44
*** whit has quit IRC18:45
*** timte has quit IRC18:45
*** whitmo is now known as whit18:47
*** timte has joined #zope3-dev18:48
*** rcrafton has joined #zope3-dev18:48
*** jayaraj has quit IRC18:53
*** afd_ has quit IRC18:53
*** MJ has joined #zope3-dev18:54
*** dobee has joined #zope3-dev18:55
*** binseer has quit IRC18:56
*** __gotcha has quit IRC19:00
*** norro has joined #zope3-dev19:08
*** timte has quit IRC19:13
*** fcorrea_ has joined #zope3-dev19:18
*** theuni1 has joined #zope3-dev19:20
*** theuni has quit IRC19:20
*** theuni1 is now known as theuni19:20
*** whit has quit IRC19:22
*** whit has joined #zope3-dev19:22
*** menesis has quit IRC19:23
*** fcorrea has quit IRC19:25
*** redir has quit IRC19:27
*** maurits has quit IRC19:27
*** afd_ has joined #zope3-dev19:28
*** quodt has quit IRC19:36
*** goschtl has joined #zope3-dev19:36
*** zagy has joined #zope3-dev19:38
*** tonico has quit IRC19:38
*** jukart has quit IRC19:41
*** goschtl has quit IRC19:43
*** whit has quit IRC19:46
*** whit has joined #zope3-dev19:46
*** afd_ has quit IRC19:53
*** dobee has quit IRC19:53
*** dobee has joined #zope3-dev19:56
*** dobee has quit IRC19:56
*** whit has quit IRC19:57
*** whit has joined #zope3-dev19:58
*** redir has joined #zope3-dev19:59
*** aaronv has quit IRC20:00
*** salfield has joined #zope3-dev20:02
*** aaronv has joined #zope3-dev20:04
*** norro has quit IRC20:05
arikado Zope CMF works with Zope 3?20:08
*** aaronv has quit IRC20:09
*** aaronv has joined #zope3-dev20:10
*** charith_para has quit IRC20:15
*** alecghica has quit IRC20:21
*** RaFromBRC has joined #zope3-dev20:24
*** aaronv has quit IRC20:25
theuninope20:29
theuniwell20:29
theuniit does with five20:29
*** theuni has left #zope3-dev20:30
arikaohh20:33
arikanot interested then20:33
arikalol20:33
*** mkerrin has quit IRC20:33
*** malthe has quit IRC20:37
*** hazmat has quit IRC20:44
*** whit has quit IRC20:45
*** charith_para has joined #zope3-dev20:46
*** MacYET has joined #zope3-dev20:48
arikahave thought about this zope...20:50
arikagonna follow Philip's book...20:50
arikait's the recommendation I've found in order to get the rid of it...20:50
*** alga has quit IRC20:51
*** charith_parana has joined #zope3-dev20:52
*** flox has joined #zope3-dev20:53
*** MJ is now known as MJ|afk20:53
*** charith_para has quit IRC21:08
*** aaronv has joined #zope3-dev21:12
*** aaronv has joined #zope3-dev21:13
*** markusleist has quit IRC21:15
*** redir has quit IRC21:19
*** romanofski has joined #zope3-dev21:24
*** redir has joined #zope3-dev21:26
*** norro has joined #zope3-dev21:30
*** redir has quit IRC21:33
*** flox has quit IRC21:34
*** mgedmin has quit IRC21:34
*** redir has joined #zope3-dev21:38
*** flox has joined #zope3-dev21:46
*** salfield has quit IRC21:47
*** bigkevmcd_ has joined #zope3-dev21:52
*** bigkevmcd_ has quit IRC21:52
*** flox has quit IRC21:55
*** whit has joined #zope3-dev21:57
*** flox has joined #zope3-dev21:58
*** charith_parana has quit IRC22:00
*** quodt has joined #zope3-dev22:00
*** strichter has joined #zope3-dev22:03
*** srichter has quit IRC22:03
*** strichter is now known as srichter22:05
*** ChanServ sets mode: +o srichter22:05
*** MacYET has quit IRC22:10
*** menesis has joined #zope3-dev22:11
*** norro has quit IRC22:19
*** timte has joined #zope3-dev22:25
*** timte has quit IRC22:25
*** timte has joined #zope3-dev22:26
*** dunny has joined #zope3-dev22:29
*** sm has joined #zope3-dev22:31
*** whit has quit IRC22:33
*** whit has joined #zope3-dev22:33
*** whitmo has joined #zope3-dev22:38
*** hazmat has joined #zope3-dev22:39
*** ChanServ sets mode: +o hazmat22:39
*** whit has quit IRC22:39
*** kursor has quit IRC22:44
*** georgyberdyshev has joined #zope3-dev22:54
*** gberdyshev_ has quit IRC22:54
*** georgyberdyshev is now known as gberdyshev_22:54
*** flox has left #zope3-dev22:55
*** theuni has joined #zope3-dev22:59
*** salfield has joined #zope3-dev22:59
*** norro has joined #zope3-dev23:00
*** romanofski has quit IRC23:00
*** agroszer has quit IRC23:02
*** lisppaste6 has quit IRC23:03
*** lisppaste6 has joined #zope3-dev23:04
arikagot a question...23:08
*** flox has joined #zope3-dev23:09
arikausing formlib can I avoid to check the propierty set23:09
*** flox has quit IRC23:09
arikaand leave it to formlibs23:09
arikabecause I could suppose it will fail setting properly a propierty on an object?23:09
arikaif insert a different propierty type than the schema I've used in the interface of a content object...23:10
*** hexsprite has quit IRC23:17
*** jpcw2002 has joined #zope3-dev23:18
*** rocky has quit IRC23:20
*** whit has joined #zope3-dev23:43
*** whitmo has quit IRC23:44
*** whit has quit IRC23:45
*** whit has joined #zope3-dev23:45
*** menesis has quit IRC23:48
*** norro has quit IRC23:48
*** MJ|afk has quit IRC23:52
*** myroslav_ has joined #zope3-dev23:52
*** redir has quit IRC23:54
*** myroslav_ is now known as interra23:56
*** jpcw2002 has quit IRC23:56
*** aaronv has quit IRC23:58

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