IRC log of #zope3-dev for Friday, 2008-07-18

*** flox has joined #zope3-dev00:02
*** faassen has quit IRC00:08
*** whit has quit IRC00:17
*** whit has joined #zope3-dev00:17
*** salfield has quit IRC00:21
*** RaFromBRC|lunch is now known as RaFromBRC00:23
*** timte has quit IRC00:28
*** flox has quit IRC00:29
*** flox has joined #zope3-dev00:30
*** markusleist has quit IRC00:34
*** dobee has quit IRC00:36
*** benji has quit IRC00:49
*** whit has quit IRC00:55
arika      <p tal:replace="context/content">Content</p>00:56
arikawhat's the rpoblem there?00:56
arikauh... my fault00:57
*** theuni has joined #zope3-dev01:06
*** lucielejard has quit IRC01:08
*** lurkymclurkleton has quit IRC01:08
*** malthe has quit IRC01:08
*** J1m has quit IRC01:11
*** jamur2 has quit IRC01:14
*** sp0cksbeard has quit IRC01:22
*** tdoggette has quit IRC01:28
*** flox has quit IRC01:32
*** aaronv has joined #zope3-dev01:41
*** menesis has quit IRC01:52
*** elro has quit IRC01:52
*** arika has quit IRC01:54
*** dunny has quit IRC02:08
*** dunny has joined #zope3-dev02:09
*** vimes656 has quit IRC02:13
*** fcorrea has quit IRC02:13
*** pcardune has joined #zope3-dev02:19
*** ARiKA has joined #Zope3-Dev02:20
ARiKAHello :)02:20
*** vimes656 has joined #zope3-dev02:21
*** quodt has quit IRC02:21
ARiKAwhy my default view is "preview" instead of "view"02:22
ARiKAeven if I use browser:defaultView set to view?02:23
*** reco has quit IRC02:24
ARiKAanyone here?02:24
*** tarek has quit IRC02:26
*** tarek has joined #zope3-dev02:27
*** fairwinds has quit IRC02:28
ARiKAah... done02:30
*** vimes656 has quit IRC02:31
*** gstratton has joined #zope3-dev02:31
*** nathany has quit IRC02:35
ARiKAwell02:45
ARiKAI've finished a Document type...02:45
ARiKAdone lots for today lol02:45
ARiKAcan view, can edit, can preview... cool :)02:45
*** reco has joined #zope3-dev02:49
*** sm has quit IRC02:55
*** fairwinds has joined #zope3-dev02:59
*** nathany has joined #zope3-dev03:04
*** srichter has quit IRC03:09
*** lucielejard has joined #zope3-dev03:11
*** pcardune has quit IRC03:20
ARiKAanyone here?03:43
gstrattonarika: depends03:43
ARiKAgot a nice question lol03:43
ARiKAI'm reading about how to do a site layout with skins and so...03:43
ARiKAbut my problem is about one big point.03:44
ARiKAif my app creates an own skin03:44
ARiKAbut I've got two copies of the app on the zope root...03:44
ARiKAthey will use the default skin, isn't it?03:44
ARiKAcan I make them use different skins?03:44
ARiKAlol03:44
gstrattonPersonally I front Zope with apache, which redirects to /++skin++SkinName/rest/of/url or however it works!03:45
ARiKAyeah, I've thought about it03:46
ARiKAbut what if I let the user choose skin? ^^03:46
ARiKAhahaha03:46
gstrattonHmm, I'm not familiar with how the skin lookup works, and I don't have time to look right now03:47
ARiKAwhere can I see about it?03:47
gstrattonarika: Probably zope.publisher (.browser)03:48
ARiKAhumm...03:49
ARiKAlet me read...03:49
*** radix has left #zope3-dev03:52
*** RaFromBRC has quit IRC03:53
*** jsadjohnson has quit IRC03:57
ARiKAgstratton:04:08
ARiKAlooking thru the code of Zope:04:08
ARiKAdef applySkin(request, skin): """Change the presentation skin for this request. """04:09
ARiKAso...04:09
ARiKAthat's on zope.publisher.browser :)04:09
ARiKAgstratton: I think I should have to call that function04:10
ARiKAand get the request on every view and set it to the sking firstly I chosed by the user and then chosed for the site04:10
ARiKAso every user can select a Skin04:11
ARiKAand I can have different sites with different Skins :)04:11
ARiKAdoing some extra-logic I can do it...04:21
*** nathany has quit IRC04:23
*** theuni has quit IRC04:41
*** b52laptop has quit IRC04:49
*** fairwinds has quit IRC05:15
*** aaronv has quit IRC05:20
*** MiUlEr has joined #zope3-dev05:28
*** vimes656 has joined #zope3-dev06:15
*** aclark is now known as aclark|away06:31
*** pcardune has joined #zope3-dev06:31
*** srichter has joined #zope3-dev06:31
*** tarek has quit IRC06:41
*** sm has joined #zope3-dev06:42
*** kursor has joined #zope3-dev06:42
*** sm_ has joined #zope3-dev06:45
*** sm has quit IRC06:45
*** sm_ is now known as sm06:45
*** pcardune_ has joined #zope3-dev06:46
*** salfield has joined #zope3-dev06:49
*** tarek has joined #zope3-dev06:50
*** pcardune__ has joined #zope3-dev06:50
*** tdoggette has joined #zope3-dev06:51
*** tarek has quit IRC06:51
*** binseer has joined #zope3-dev06:56
*** pcardune_ has quit IRC06:57
*** pcardune has quit IRC07:03
*** afd_ has joined #zope3-dev07:13
*** ChanServ sets mode: +o srichter07:26
ARiKAhi afd_ nice to see you :)07:30
afd_ARiKA: what's up?07:30
ARiKAhere continuing with Zope hahaha07:30
afd_any progress?07:30
ARiKAyeah07:30
ARiKA'or so'07:31
ARiKAgot a document page that I can edit07:31
ARiKAlol07:31
afd_cool07:31
ARiKAand I'm coding now a blog...07:31
ARiKAtried to make my CMS container an ISite07:31
ARiKAbut crashes07:31
ARiKAhave to read about it lol07:31
afd_whenever you have ISomething classes, they're interfaces, you're not suposed to inherit from them except if you define a new interface07:32
ARiKAyeah yeah07:32
afd_in your content class you do zope.interface.implements(ISomething)07:32
ARiKAthat's what I mean...07:32
afd_ok07:32
ARiKAInheriting the interface of my CMS07:32
ARiKAfrom ISite07:32
ARiKA:)07:32
afd_also... I'm not sure that is correct07:32
afd_just inherit from Folder07:32
afd_and make it a site from the ZMI07:33
ARiKAI've inherited from IContainer :)07:33
gstrattonarika: I think you need to inherit from IPossible site and then make it a site in the UI07:33
afd_with the "Make site" button07:33
gstrattonIPossibleSite07:33
ARiKAyeah yeah07:33
ARiKAthat's what I've read...07:33
ARiKAbut I think another solution would be possible07:33
*** dobee has joined #zope3-dev07:34
ARiKAlike coding a makeSite() on the __init__() of the class or whatsoever07:34
ARiKAplaying with the code I've learnt lots :)07:34
ARiKAafd_: reading I've learnt that ++etc++site++/ is used for local utilities and so...07:36
ARiKAfound an application on that...07:36
*** kursor has quit IRC07:36
ARiKAbut well... I continue reading Philip's book and seing explanations on Zope3 book :)07:37
ARiKAI'm getting the concepts and that's the important part...07:37
ARiKAthe way of doing things and so07:37
*** pcardune has joined #zope3-dev07:41
*** rcrafton has quit IRC07:50
*** pcardune__ has quit IRC07:57
*** reco has quit IRC08:03
*** sm has quit IRC08:09
*** dobee has quit IRC08:10
*** srichter has quit IRC08:10
*** srichter has joined #zope3-dev08:12
*** dobee has joined #zope3-dev08:12
*** irc.freenode.net sets mode: +o srichter08:12
*** strichter has joined #zope3-dev08:12
*** srichter has quit IRC08:12
*** MiUlEr has quit IRC08:24
*** dobee has quit IRC08:26
*** dobee has joined #zope3-dev08:28
*** timte has joined #zope3-dev08:28
*** afd_ has quit IRC08:35
*** salfield has quit IRC08:36
*** jukart has joined #zope3-dev08:41
*** jukart has quit IRC08:51
*** afd_ has joined #zope3-dev08:52
*** jayaraj has joined #zope3-dev09:05
*** theuni has joined #zope3-dev09:14
*** jukart has joined #zope3-dev09:27
*** mcdonc has quit IRC09:28
*** mcdonc has joined #zope3-dev09:28
*** romanofski has joined #zope3-dev09:30
*** theuni has quit IRC09:53
*** theuni has joined #zope3-dev09:56
*** quodt has joined #zope3-dev10:06
*** tarek has joined #zope3-dev10:28
*** strichter is now known as srichter10:30
*** ChanServ sets mode: +o srichter10:30
*** MJ has joined #zope3-dev10:39
*** goschtl has joined #zope3-dev10:43
*** menesis has joined #zope3-dev10:48
*** harobed has joined #zope3-dev10:58
*** projekt01 has joined #zope3-dev11:02
*** gstratton has quit IRC11:06
*** malthe has joined #zope3-dev11:16
*** svenn has joined #zope3-dev11:22
*** malthe has quit IRC11:33
*** mcdonc has quit IRC11:37
*** mcdonc has joined #zope3-dev11:38
*** Rolando has joined #zope3-dev11:38
svennHi, I'm trying to override the default skin in a zopeproject11:39
svennbut I'm having problems.11:39
svennWhere should I put my overrides.zcml and where to include it?11:39
ccombsvenn: I add this in the site.zcml :11:44
ccomb<includeOverrides package="eztranet" file="overrides.zcml" />11:44
ccombjuste below the include of the main package11:44
*** gstratton has joined #zope3-dev11:47
*** harobed has quit IRC11:48
*** harobed has joined #zope3-dev11:48
*** MJ has quit IRC11:49
svennccomb: thanks, working now. Didn't know about the includeOverrides.11:49
*** malthe has joined #zope3-dev11:57
*** mkerrin has joined #zope3-dev12:05
*** __gotcha has joined #zope3-dev12:18
*** b52laptop has joined #zope3-dev12:18
*** jsadjohnson has joined #zope3-dev12:26
*** gimni has joined #zope3-dev12:30
*** ignas has joined #zope3-dev12:57
*** b52laptop has quit IRC12:59
*** vimes656_ has joined #zope3-dev13:01
*** seletz has joined #zope3-dev13:04
*** tarek has quit IRC13:05
*** charith_para has joined #zope3-dev13:06
*** tarek has joined #zope3-dev13:07
*** aaronv has joined #zope3-dev13:12
*** tarek has quit IRC13:13
*** gimni has quit IRC13:16
*** vimes656 has quit IRC13:17
*** b52laptop has joined #zope3-dev13:29
*** dirceu has joined #zope3-dev13:31
*** charith_para has quit IRC13:31
*** mgedmin has joined #zope3-dev13:34
*** elro has joined #zope3-dev13:38
*** theuni1 has joined #zope3-dev13:43
*** theuni has quit IRC13:43
*** theuni1 is now known as theuni13:44
*** mcdonc has quit IRC13:47
*** mcdonc has joined #zope3-dev13:47
*** elro has quit IRC13:51
*** fairwinds has joined #zope3-dev13:53
*** lapinferoce has joined #zope3-dev13:54
*** jhauser has joined #zope3-dev13:55
*** elro has joined #zope3-dev14:03
*** tarek has joined #zope3-dev14:04
*** markusleist has joined #zope3-dev14:17
*** agroszer has joined #zope3-dev14:17
*** harobed has quit IRC14:22
*** aaronv has quit IRC14:27
*** menesis has quit IRC14:32
*** dobee_ has joined #zope3-dev14:37
*** jukart has quit IRC14:38
*** jayaraj has quit IRC14:39
*** vimes656_ has quit IRC14:41
*** vimes656 has joined #zope3-dev14:42
*** theuni1 has joined #zope3-dev14:45
*** theuni has quit IRC14:45
*** theuni1 is now known as theuni14:45
*** quodt has quit IRC14:46
*** jukart has joined #zope3-dev14:47
*** quodt has joined #zope3-dev14:50
*** dobee has quit IRC14:51
*** benji has joined #zope3-dev14:58
*** quodt has quit IRC15:04
*** jukart has quit IRC15:04
*** quodt has joined #zope3-dev15:05
*** redir has joined #zope3-dev15:08
*** dobee_ has quit IRC15:10
*** goschtl has quit IRC15:17
*** redir has quit IRC15:27
*** J1m has joined #zope3-dev15:29
*** kursor has joined #zope3-dev15:36
*** dirceu has quit IRC15:37
*** dobee has joined #zope3-dev15:42
*** jukart has joined #zope3-dev15:42
*** quodt_ has joined #zope3-dev15:42
__gotchatheuni: hi15:42
*** quodt has quit IRC15:43
theuni__gotcha: jo15:47
*** sunew has joined #zope3-dev15:48
__gotchatheuni: who should I ask permission to move some tests which sits in grok to upper packages like martian or grokcore.component ?15:48
theunitry martijn or philipp15:48
__gotchawill be mail then15:49
__gotchathx15:49
*** sp0cksbeard has joined #zope3-dev15:50
*** sp0cksbeard has left #zope3-dev15:50
*** lurkymclurkleton has joined #zope3-dev15:55
*** kursor has quit IRC15:58
*** jamur2 has joined #zope3-dev16:00
*** gstratton has quit IRC16:05
*** djohnson has joined #zope3-dev16:08
*** aaronv has joined #zope3-dev16:10
*** gstratton has joined #zope3-dev16:19
*** rocky has joined #zope3-dev16:20
*** svenn has quit IRC16:25
*** elro has quit IRC16:28
*** dunny has quit IRC16:29
*** lucielejard has joined #zope3-dev16:29
*** mkerrin has quit IRC16:32
*** srichter has quit IRC16:32
*** pcardune has quit IRC16:36
*** djohnson has quit IRC16:36
*** kursor has joined #zope3-dev16:36
*** ccomb has quit IRC16:39
*** ccomb has joined #zope3-dev16:39
*** rcrafton has joined #zope3-dev16:40
*** jsadjohnson has quit IRC16:44
*** __mac__ has quit IRC16:53
*** sm has joined #zope3-dev17:00
*** whit has joined #zope3-dev17:06
*** aclark|away is now known as aclark17:10
*** charith_para has joined #zope3-dev17:10
*** regebro has joined #zope3-dev17:13
*** philiKON has joined #zope3-dev17:14
*** romanofski has quit IRC17:17
*** jayaraj has joined #zope3-dev17:17
*** timte has quit IRC17:24
*** dobee has quit IRC17:25
*** aclark is now known as aclark|ploneday17:32
*** dobee has joined #zope3-dev17:35
*** timte has joined #zope3-dev17:35
*** timte has joined #zope3-dev17:36
*** aclark|ploneday is now known as aclark17:36
*** zagy_ has quit IRC17:40
*** gstratton has quit IRC17:43
*** elro has joined #zope3-dev17:45
*** Rolando has quit IRC17:45
*** seletz is now known as seletz|code17:46
*** afd_ has quit IRC17:52
*** nathany has joined #zope3-dev17:54
*** jhauser has quit IRC17:55
*** dobee has quit IRC17:55
*** ccomb has quit IRC18:01
*** alecm has joined #zope3-dev18:02
*** srichter has joined #zope3-dev18:03
*** mgedmin_ has joined #zope3-dev18:03
*** pcardune has joined #zope3-dev18:04
*** pcardune has quit IRC18:04
*** mgedmin has quit IRC18:05
*** vimes656 has quit IRC18:05
*** vimes656 has joined #zope3-dev18:07
*** pcardune has joined #zope3-dev18:07
*** menesis has joined #zope3-dev18:13
*** mgedmin_ is now known as mgedmin18:17
*** projekt01 has quit IRC18:19
*** aclark is now known as aclark|away18:29
*** andres_f has joined #zope3-dev18:32
*** andres has quit IRC18:32
*** menesis has quit IRC18:36
*** menesis1 has joined #zope3-dev18:36
*** menesis1 is now known as menesis18:36
*** kursor has quit IRC18:51
*** theuni1 has joined #zope3-dev18:52
*** theuni has quit IRC18:52
*** theuni1 is now known as theuni18:53
*** theuni has quit IRC18:53
*** zagy has joined #zope3-dev18:55
*** charith_para has quit IRC18:55
*** theuni has joined #zope3-dev19:01
*** dvschramm has joined #zope3-dev19:03
*** MrTopf has joined #zope3-dev19:06
*** lapinferoce has quit IRC19:08
*** tarek has quit IRC19:10
*** tarek has joined #zope3-dev19:24
*** yotaff has quit IRC19:27
*** tarek has quit IRC19:27
*** alecghica has quit IRC19:28
*** quodt_ has quit IRC19:29
*** romanofski has joined #zope3-dev19:34
*** timte has quit IRC19:38
*** theuni has quit IRC19:40
*** dobee has joined #zope3-dev19:42
*** reco has joined #zope3-dev19:47
*** seletz|code has quit IRC19:49
*** redir has joined #zope3-dev19:49
*** regebro has quit IRC19:50
*** alecm has quit IRC19:50
*** quodt has joined #zope3-dev19:52
*** jsadjohnson has joined #zope3-dev19:54
*** whit is now known as whit|lunch19:59
*** redir has quit IRC20:02
*** jayaraj has quit IRC20:03
*** dbfrombrc has joined #zope3-dev20:03
*** binseer has quit IRC20:04
*** dvschramm has quit IRC20:11
*** dvschramm has joined #zope3-dev20:12
*** mgedmin has quit IRC20:22
*** menesis has quit IRC20:22
*** afd_ has joined #zope3-dev20:24
*** sunew has quit IRC20:36
*** fcorrea has joined #zope3-dev20:41
*** gberdyshev has joined #zope3-dev20:46
*** theuni has joined #zope3-dev20:49
*** philiKON has quit IRC20:52
*** philiKON has joined #zope3-dev20:53
*** ARiKA has quit IRC20:56
*** ARiKA has joined #Zope3-Dev20:56
*** sunew has joined #zope3-dev21:06
*** rocky has quit IRC21:12
*** sunew has quit IRC21:13
*** sunew has joined #zope3-dev21:13
*** flox has joined #zope3-dev21:15
*** markusleist has quit IRC21:17
*** ccomb has joined #zope3-dev21:18
*** MrTopf has quit IRC21:18
*** jukart has quit IRC21:19
*** fcorrea has quit IRC21:19
*** fcorrea has joined #zope3-dev21:19
*** jukart has joined #zope3-dev21:19
*** rocky has joined #zope3-dev21:20
*** ignas has quit IRC21:22
*** sunew has quit IRC21:24
*** tarek has joined #zope3-dev21:24
*** malthe has quit IRC21:25
*** jukart has quit IRC21:32
*** theuni has quit IRC21:33
*** tarek has quit IRC21:35
*** theuni has joined #zope3-dev21:35
nathanyhey all... anyone know of issues running zope3 apps on a 64 platform?21:46
nathanywe recently transitioned a server to 64 bit and the app keeps segfaulting21:47
theuninot a problem in general21:48
theuniwhat's the specific platform?21:48
theunido you have any non-zope c-extensions installed?21:48
*** flox has left #zope3-dev21:49
nathanytheuni: it's Debian etch amd6421:51
nathanylxml is the only one that comes to mind21:51
theuniwhich version of it?21:52
nathanyof lxml?21:52
theunido you have a core fire?21:52
theunicore file?21:52
theuniyes, which version of lxml.21:52
nathanylxml 2.121:52
nathanyit doesn't seem to be dumping the core... strace just shows "killed by SIGSEGV"21:53
nathanywhen i attach strace and let it run to completion (death) the last few lines look like21:54
nathanyselect(16, [7 8 10 11 13 14 15], [12], [], {1, 492382}) = 2 (in [15], out [12], left {1, 492382})21:54
nathanyfutex(0x26b5150, FUTEX_WAIT, 0, NULL)   = 021:54
nathanyfutex(0x26b5150, FUTEX_WAKE, 1)         = 021:54
nathanyfutex(0x26b5150, FUTEX_WAKE, 1)         = 021:54
nathany+++ killed by SIGSEGV +++21:54
*** aclark|away is now known as aclark22:00
*** nathany is now known as nathany_curry22:02
*** mgeee has joined #zope3-dev22:06
*** timte has joined #zope3-dev22:07
*** dunny has joined #zope3-dev22:09
*** malthe has joined #zope3-dev22:16
mcdoncnathany_curry: if you run it under gdb you can usually do "run", then "info threads" to see what each thread is doing22:17
mcdoncthe strace is just showing you what the "main" thread is doing i think22:17
mcdoncwhich isn't very interesting22:17
*** gberdyshev has quit IRC22:20
*** b52laptop has quit IRC22:21
theunimcdonc: strace can be used with '-f' to follow subprocesses. which works for zdaemon/zope settings reasonably well.22:22
mcdoncah cool22:22
theunihowever, making zope dump core under zdaemon is quite hard22:23
mcdoncis the z3 equivalent of "runzope" named "runzope"?22:23
theuniyes22:24
theuni*g22:24
theunizdaemon's "fg" command works too22:24
mcdoncwhew ;-)22:24
mcdoncyup22:24
theuniwe spend at least half a year deciding that22:24
mcdonchehe22:24
mcdonctheuni: i sent your blueberry syrup back with philipp22:25
theunido i have to keep philipp?22:25
mcdonclol (literally)22:25
mcdoncno he's just the wrapper22:25
theuniliteral lol over here22:25
*** gberdyshev has joined #zope3-dev22:25
*** dobee has quit IRC22:32
benjiis that a llol?22:32
*** b52laptop has joined #zope3-dev22:35
*** flox has joined #zope3-dev22:36
*** gberdyshev_ has joined #zope3-dev22:41
*** whit|lunch is now known as whit22:41
*** nathany_curry is now known as nathany22:42
nathanytheuni: i tried running it with fg, but it just stops, no error message22:42
nathanyi'll look @ -f on strace, see if that gives more information22:43
*** ARiKA has quit IRC22:51
*** gberdyshev has quit IRC22:56
*** reco has quit IRC22:56
*** theuni has quit IRC22:56
*** ARiKA has joined #Zope3-Dev23:03
ARiKAHello.23:04
ARiKAEspetially to you afd_ hahahahaha :)23:04
afd_ARiKA: what did I do wrong? :)23:04
ARiKANothing nothing... simply being like the sensei old guy in karate kid for a moment23:05
ARiKAhahahahahahaha23:05
*** aclark is now known as aclark|away23:05
ARiKAafd_: working on the blog is more difficult...23:06
afd_any specific problems?23:06
ARiKAit has more php just to handle categories and so making them being pythonic... lol23:06
ARiKAhmm...23:06
ARiKAhave a doubt23:06
ARiKAevery persistent thing (a blog message, i.e.) has to be inherited from persistent.Persistent23:07
ARiKAisn't it?23:07
afd_it is not a "hard" requirement, but it's better if you do it like that23:07
ARiKAwhy you mean "hard"23:08
ARiKAyeah23:08
ARiKAI've read philip's book23:08
ARiKAthat it's less cost to modify a simple object rather than a big one23:08
afd_read the persistence chapter, you'll see why23:08
ARiKAll23:08
ARiKAlol23:08
ARiKAbut...23:08
ARiKAthe view that shows the directory listing in a BTreeContainer23:09
ARiKAis "content", I think, isn't it?23:09
ARiKAmodifying that view just to show messages23:09
afd_a view is never a content23:09
ARiKAah...23:09
ARiKAok ok ok...23:10
ARiKAI can change the view directory thing for a view posts and so, isn't it?23:10
afd_content is data saved in the database, with attached behaviour (because the database is object based)23:10
ARiKAaha23:10
afd_a view is just a way to view/interact with that data, usually through the browser23:11
*** timte has quit IRC23:11
ARiKAyeah23:11
afd_ARiKA: you can have many views for an object (content)23:11
*** timte has joined #zope3-dev23:11
ARiKAaha23:11
afd_that folder is just content23:11
afd_inside it it's just content23:12
ARiKAyup I saw that on directory listing...23:12
*** agroszer_ has joined #zope3-dev23:13
ARiKAanother thing is that if that I've been reading more in Zope3 Book and I've found something about something called "Dublin Core"... metadata information, lol23:14
ARiKAand I was always putting those 'title', 'description' and so by hand on my content components lol23:15
afd_Dublin Core is a standard on a set of "metadata" information that is to be held about content objects23:15
ARiKAyeah yeah23:15
afd_you shouldn't mess with it right now, from my point of view23:15
ARiKAI know...23:15
ARiKAbut I would change my vars when I get into it, isn't it? lol23:15
afd_you need to understand annotations, adapters, interfaces first23:16
ARiKAlong way... :)23:16
afd_ARiKA: you can do it the other way around, also. IZopeDublinCore(myobject).title will return myobject.title.23:16
*** vimes656 has quit IRC23:16
ARiKAaham23:17
afd_So that you don't have to change your object, just the way you implement IZDC for your object23:17
ARiKAlol23:17
ARiKAwell afd_ have to continue reading about python things and facts...23:19
ARiKAdoubt you a beer, take care ;)23:19
*** norro has joined #zope3-dev23:20
*** agroszer has quit IRC23:24
*** hexsprite has quit IRC23:32
*** timte has quit IRC23:33
*** tarek has joined #zope3-dev23:34
*** vimes656 has joined #zope3-dev23:35
*** quodt has quit IRC23:35
*** regebro has joined #zope3-dev23:37
*** elro has quit IRC23:39
*** zagy has quit IRC23:39
*** aaronv has quit IRC23:42
*** norro has quit IRC23:56

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