IRC log of #zope3-dev for Friday, 2005-08-19

*** lunarosity has joined #zope3-dev00:05
*** anguenot has joined #zope3-dev00:40
*** sashav has quit IRC00:45
*** sashav has joined #zope3-dev00:45
*** lunarosity has quit IRC00:48
*** sashav has quit IRC00:50
*** Alef has joined #zope3-dev00:51
*** MiUlEr has joined #zope3-dev00:57
*** niemeyer has quit IRC01:02
*** jinty has joined #zope3-dev01:19
*** dman13 is now known as dman13|away01:37
*** bradb is now known as bradb-away01:44
*** nisha_cgx has quit IRC01:47
*** yota has quit IRC01:47
*** lunarosity has joined #zope3-dev01:50
*** benji_york has quit IRC01:54
*** Alef has quit IRC02:06
*** mp has quit IRC02:08
*** mp has joined #zope3-dev02:11
*** RaAtBRC has quit IRC03:05
*** lunarosity has quit IRC03:51
*** stub has joined #zope3-dev04:22
*** jinty has quit IRC04:28
*** _projekt01 has joined #zope3-dev04:59
*** projekt01 has quit IRC04:59
*** _projekt01 has quit IRC05:00
*** lunarosity has joined #zope3-dev05:32
*** MiUlEr has quit IRC05:55
*** povbot has joined #zope3-dev06:04
*** anguenot has joined #zope3-dev06:13
*** tvon has quit IRC06:18
*** deo has quit IRC06:18
*** BjornT has quit IRC06:18
*** philiKON has quit IRC06:18
*** MJ has quit IRC06:18
*** srichter has quit IRC06:18
*** srichter has joined #zope3-dev06:18
*** tvon has joined #zope3-dev06:18
*** deo has joined #zope3-dev06:18
*** BjornT has joined #zope3-dev06:18
*** philiKON has joined #zope3-dev06:18
*** MJ has joined #zope3-dev06:18
*** irc.freenode.net sets mode: +o srichter06:18
*** hwo4 has joined #zope3-dev07:25
*** lunarosity has quit IRC07:44
*** RaFromBRC has joined #zope3-dev07:48
*** tanghus has joined #zope3-dev08:10
*** hwo4 has quit IRC08:11
*** zagy has quit IRC08:33
*** zagy has joined #zope3-dev08:35
*** RaFromBRC has quit IRC08:40
*** philiKON has quit IRC08:55
*** timte has joined #zope3-dev08:57
*** Nick1 has joined #zope3-dev09:07
bob2is anyone successfully using the ftp server on the trunk?09:21
bob2I get:09:21
bob2lftp 127.0.0.1:~> ls09:22
bob2ls: Fatal error: 500 Internal error: AttributeError: 'FTPRequest' object attribute '__provides__' is read-only09:22
bob2for basically any operation09:22
*** jhauser_ has joined #zope3-dev09:23
*** MJ has quit IRC09:25
*** Alef has joined #zope3-dev09:29
*** jhauser has quit IRC09:30
*** MJ has joined #zope3-dev09:31
*** zagy has joined #zope3-dev09:35
*** hdima has joined #zope3-dev09:38
*** _drzoltron has joined #zope3-dev10:24
_drzoltronstupid question: how do I refresh products / modules in Z3 ?10:24
jhauser_afaik, there is no refresh possible10:25
jhauser_you need to restart10:25
_drzoltronjhauser_:every time ?10:25
jhauser_yes10:25
_drzoltronthx, takes time10:25
_drzoltronat least you are forced to take some breaks ;)10:25
jhauser_better do it with tests, this is a shorter cycle10:25
_drzoltronjhauser_: yeah10:26
*** sashav has joined #zope3-dev10:37
*** yota has joined #zope3-dev10:47
*** MJ has quit IRC10:48
*** jinty has joined #zope3-dev11:00
*** MJ has joined #zope3-dev11:12
*** MrTopf has joined #zope3-dev11:44
*** projekt01 has joined #zope3-dev11:55
*** MrTopf has quit IRC12:26
*** yotaff has joined #zope3-dev13:02
andrew_mis there a standard module available to switch zope to cookie-based auth. or should i just follow the example in philipp's zope book?13:09
srichterandrew_m: I am pretty sure the new zope.app.authentication package comes with a cookie auth plugin13:11
andrew_msrichter: tnx. i'll look a bit closer then. couldn't see anything in its readme about cookies13:13
srichterlook at all the TXT file13:14
srichterlook at all the TXT files13:14
andrew_mcookies are only mentioned in session.py but that doesn't get me far13:15
srichterthe cookie version is implemented in session.py13:17
andrew_mhmm, ok.. i thought it might be as simple as changing some setting in zope.conf or so..13:21
andrew_mthe http auth is curently the main complaint our test users have13:21
*** mkerrin has joined #zope3-dev13:22
srichterandrew_m: you can look at SchoolTool for a production application that exclusively uses cookie authentication13:33
andrew_msrichter: tnx.. a real life example might help13:36
*** regebro has joined #zope3-dev13:37
*** faassen has joined #zope3-dev13:44
VladDracmogge faassen14:04
_drzoltronI'ver got a template which calls a method of the class, the method is defined in the interface and the class, why do I get a TransversalError ?14:05
faassenhoi14:10
VladDrachow do you call it?14:14
VladDracyou mean the view-class?14:14
srichter_drzoltron: can you provide code snippets?14:26
_drzoltroni call it from my template14:27
_drzoltroncontext/myMethod14:27
srichterI cannot tell off hand why it does not work for you14:28
_drzoltronsrichter: sure, looks as if I forgot something14:28
srichterare you sure the error is happening at this place?14:28
_drzoltronyes14:29
projekt01_drzoltron, use view/myMethod if you like to call it from your view class14:29
_drzoltronthe view class is the one defined in <pages class=""> right ?14:30
_drzoltronah, that was much better14:30
_drzoltronthanx projekt0114:30
projekt01Ok, then you have to call view/myMethod, context/myMethod would point to the object where the view adapts14:30
_drzoltronwhat do you mean by adapts ?14:31
_drzoltronhow do I get the class' methods ?14:32
projekt01the view adapts the object (usualy a content type in your case)...14:32
projekt01This means the view class has a constructor like __init__(context, request) where the context is the adapted object..14:33
projekt01..your content object instance14:33
_drzoltronok14:34
projekt01A view is a simply adapter, adapting context and request14:34
_drzoltronok14:34
_drzoltronah i see14:35
_drzoltronthanx14:35
projekt01btw, sorry the term "simply adapter" isn't right here, it's a multi adapter.14:38
_drzoltronheh14:38
*** mgedmin has joined #zope3-dev14:56
*** MiUlEr has joined #zope3-dev14:57
*** MrTopf has joined #zope3-dev15:07
*** sashav has quit IRC15:54
*** stub has quit IRC15:57
*** benji_york has joined #zope3-dev15:58
*** dman13|away is now known as dman1316:08
*** anguenot has quit IRC16:10
*** _drzoltron has quit IRC16:33
*** hdima has quit IRC17:00
*** alga has joined #zope3-dev17:12
*** bradb-away is now known as bradb17:20
*** sashav has joined #zope3-dev17:37
*** mgedmin has quit IRC17:40
*** regebro has quit IRC17:45
*** bradb has quit IRC17:56
*** M1 has joined #zope3-dev17:59
*** MJ has quit IRC17:59
*** M1 is now known as mj18:00
*** bradb has joined #zope3-dev18:08
*** mj has quit IRC18:20
*** MJ has joined #zope3-dev18:22
*** MrTopf has quit IRC18:35
*** MJ has quit IRC18:41
*** mgedmin has joined #zope3-dev18:54
*** MJ has joined #zope3-dev19:05
*** bradb is now known as bradb-lunch19:13
*** zagy has quit IRC19:24
*** jinty has quit IRC19:28
*** RaFromBRC has joined #zope3-dev20:17
*** RaFromBRC has joined #zope3-dev20:17
*** bradb-lunch is now known as bradb20:20
*** uakti has joined #zope3-dev20:20
uaktihello all! I think my zope3.1c1 in windows may have a problem20:28
uaktiwhen using <dtml-var somepage> I always get keyerror20:30
*** projekt01 has quit IRC20:33
srichterprobably not20:34
srichterwe really do not support TTW development in Zope 3 yet20:34
uaktiah ok, then it must be that20:35
*** MJ has quit IRC20:42
*** projekt01 has joined #zope3-dev20:43
*** uakti has quit IRC20:53
*** RaFromBRC has quit IRC20:55
*** RaFromBRC has joined #zope3-dev20:55
*** faassen has quit IRC21:08
*** Alef has quit IRC21:21
*** jinty has joined #zope3-dev21:24
*** mkerrin has quit IRC21:29
*** MJ has joined #zope3-dev21:41
*** Alef has joined #zope3-dev21:41
*** zagy has joined #zope3-dev21:44
*** RaFromBRC is now known as RaFromBRC|away22:00
*** Alef has quit IRC22:37
*** jinty has quit IRC22:38
*** jhauser_ has quit IRC22:51
*** jhauser has joined #zope3-dev22:57
*** mgedmin has quit IRC23:03
*** RaFromBRC has joined #zope3-dev23:03
*** hazmat has joined #zope3-dev23:31
*** jhauser has quit IRC23:38
*** alga has quit IRC23:48

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