IRC log of #zope3-dev for Sunday, 2005-07-17

*** douglasc has quit IRC00:10
*** jinty has quit IRC00:11
*** jinty has joined #zope3-dev00:13
*** palmTree has quit IRC00:14
*** ChanServ sets mode: +o srichter00:15
*** stub has quit IRC00:18
*** ignas has quit IRC00:27
*** roym has joined #zope3-dev01:05
roymfolks, has anyone had problems doing an ftp to zope3?01:05
roymI get the following error:01:05
roym192.168.1.100 - roy [16/Jul/2005:18:03:51 -0400] "PASS /"01:06
roymerror: uncaptured python exception, closing channel <zope.server.ftp.server.FTPServerChannel connected 192.168.1.100:2350 at 0x4127cbcc> (exceptions.AttributeError:'_socketobject' object has no attribute 'sock' [/usr/local/Zope3/src/zope/server/linereceiver/linetask.py|service|43] [/usr/local/Zope3/src/zope/server/ftp/server.py|cmd_list|235] [/usr/local/Zope3/src/zope/server/ftp/server.py|write|887] [/usr/local/Zope3/src/zope01:06
roym/server/ftp/server.py|_open|881] [/usr/local/Zope3/src/zope/server/ftp/server.py|asyncConnectData|583] [/usr/local/Zope3/src/zope/server/ftp/server.py|connectPort|758] [/usr/lib/python2.3/asyncore.py|__getattr__|365])01:06
*** roym has quit IRC01:20
*** timte has quit IRC01:21
*** yota has quit IRC01:59
srichterroym: usually the FTP server works for people, but we know it has hickups02:21
*** wiggy has joined #zope3-dev02:21
* wiggy waves02:21
srichterroym: we are not fixing the FTP server anymore, since we are going to switch to Twisted in 3.202:22
wiggyis it a known problem that the zope 3.1.0b1 release fails to find its own modules in some situations?02:23
wiggylike make check and zopectl start02:23
wiggyhm, zope 3.2 on twisted?02:24
wiggythat would mean not having to port a few things02:24
wiggyhm, svn trunk has a completely different install method it seems02:37
*** jinty has left #zope3-dev02:53
*** tim2p has quit IRC03:49
srichterwiggy: it is not known to us that 3.1.0b1 does not find its own modules04:18
srichterwiggy: the SVN checkout does not have any install method; just make && make run04:18
*** douglasc has joined #zope3-dev04:40
*** douglasc has quit IRC05:10
wiggysrichter: are you interested in a bugreport?10:08
wiggyor more interested in me messing with svn trunk?10:08
bob2srichter: where would I look to configure a PAU statically (ie without using ZMI)10:53
bob2er, s/srichter: //11:17
*** d2m has joined #zope3-dev11:23
*** Theuni has joined #zope3-dev12:18
*** projekt01 has joined #zope3-dev12:43
*** ignas has joined #zope3-dev13:10
*** Theuni is now known as the|plansch13:57
*** J1m has joined #zope3-dev13:59
*** the|plansch is now known as theuni14:10
*** erral has joined #zope3-dev14:15
*** erral has left #zope3-dev14:17
*** jinty has joined #zope3-dev14:27
srichterbob2: look at the *.txt files in zope.app.authentication14:35
srichterwiggy: if you are sure what you are doing, fixing the problem on the trunk would be better (don't forget to write tests)14:36
*** yota has joined #zope3-dev14:49
*** mgedmin has joined #zope3-dev15:11
*** roym has joined #zope3-dev15:38
roymfolks - is it me or is ftp broken in the  ZopeX3-3.0/ branch? It appears to work ok in the srichter-twisted-integration/ branch.16:07
roymI get:16:08
roymreceive aborted16:08
roymwaiting for remote to finish abort16:08
roym500 Internal error: AttributeError: '_socketobject' object has no attribute 'soc16:08
roymk'16:08
*** J1m has quit IRC16:10
*** timte has joined #zope3-dev16:16
*** jinty has quit IRC16:44
*** mgedmin has quit IRC16:52
roymok - never mind - the trunk version works fine...17:07
roymDoes anyone know if sqlos will work w/trunk?17:07
*** horizon5 has joined #zope3-dev17:29
horizon5hi, i'm following the tutorial in Stephen's book, using svn zope3.1. @ step 8 i hit  a problem, but up to that point everything worked as expected. is this a known issue?17:30
bob2which is step 8?17:30
horizon5AttributeError: 'object' object has no attribute 'getProcessDefinitionNamesForObject'17:30
horizon5step08 deals with adding workflow to the messageboard17:31
bob2did you install the workflow package?17:31
* horizon5 blushes17:31
horizon5sorry, was rash17:31
bob2hah17:31
bob2I only suggest it because I forgot :)17:32
horizon5thanks  bob2 :p17:32
horizon5bob2, where did u download the wf addon?17:35
bob2let me see...17:35
horizon5checked zope3 wiki, but doesn't seem to be up there... :s17:35
bob2hm, I don't know17:36
bob2hm, it seems to be in the svn checkout17:37
bob2zope.app.workflow17:37
horizon5yep, just checked, and i do have it (since i installed from svn)17:38
horizon5:\17:38
srichterhorizon5: I have not updated the book for the trunk17:48
srichteriow, the trunk must be fixed for the book17:48
srichterI have not looked at the workflow support for a long time; it surely needs fixing17:49
*** projekt01 has quit IRC17:53
*** jinty has joined #zope3-dev18:06
*** jinty has left #zope3-dev18:27
*** ignas has quit IRC18:39
*** MrTopf has joined #zope3-dev18:45
MrTopfhi18:45
srichterhi18:50
MrTopfhi srichter!18:52
roymFolks, How do I (in zcml) specify default values for a property that18:53
roymis a 'List' of 'TextLine'... here is what I tried (without luck)18:53
roym  | answers = List(18:53
roym  |     title=u"Answers",18:53
roym  |     description=u"List of possible answers to this question.",18:53
roym  |     required=True,18:53
roym  |     default=[u"text of answer1", u"text of answer2", u"text of answer3"],18:53
roym  |     value_type=TextLine(title=u"Answer")18:53
roym  |     )18:53
roym18:53
roymSorry - not zcml, but in the interface...18:54
*** MrTopf has quit IRC19:07
srichterwhat was the traceback you got?19:08
*** MiUlEr has joined #zope3-dev19:09
roymsrichter, I got no error - just that the default values never showed up...19:11
srichterthey did not show up where?19:12
roymsorry, I meant in the "Add" page UI19:13
*** MiUlEr has left #zope3-dev19:13
srichterI am pretty sure you must have a choice or so available; otherwise there is no widget for a list19:13
srichtersearch through the code to see examples19:14
roymIf my value_type is a Choice, then the following works19:15
roym  | hxDxTx = List(19:15
roym  |     title=u"HxDxTx",19:15
roym  |     description=u"whether in Hx, Dx or Tx",19:15
roym  |     required=False,19:15
roym  |     value_type=Choice(vocabulary="hx/dx/tx"),19:15
roym  |     default=[u'Hx'],19:15
roym  |     )19:15
roymHowever, for a TextLine, I don't see how to specify the default.19:15
srichterTextLine will not work with Forms anyway, as far as I remember19:16
*** MiUlEr has joined #zope3-dev19:17
srichteryou would have to write your own widget for that19:17
roymCurrently, for Textline, a button shows up - clicking it causes a checkbox+entry widget to appear19:17
roymThis can be done multiple times...19:17
roymCan I not force it to initially display some entry-fields with text in them?19:18
*** theuni has quit IRC19:39
wiggysrichter: trunk seems to be 3.2; I'll probably tinker with the 3.1 bit first to make sure to have something that ships working20:28
srichterwiggy: trunk is 3.120:47
srichterroym: probably; we have not explored this type of use case much20:48
wiggysrichter: ah, ok20:51
wiggyI figured it would be 3.2 since doc/CHANGES.txt documents new features for 3.2.020:51
wiggyI have this crazy idea of maybe rewriting gforge on top of zope320:52
wiggyso I'll probably be poking a fair amount at things in the nearish future20:52
*** wiggy is now known as w1ggy20:57
*** w1ggy has quit IRC21:00
*** wiggy has joined #zope3-dev21:00
*** SteveA has joined #zope3-dev21:28
*** MiUlEr has quit IRC21:32
*** stub has joined #zope3-dev21:37
*** tvon|x31 has joined #zope3-dev21:51
*** tvon has quit IRC21:53
roymsrichter, thanks for letting me know.22:04
*** MrTopf has joined #zope3-dev22:27
*** bskahan has joined #zope3-dev23:14
*** timte has quit IRC23:14
*** tvon|x31 has quit IRC23:22
*** Aiste has quit IRC23:35
*** Aiste has joined #zope3-dev23:36
*** Aiste has quit IRC23:41
*** horizon5 has quit IRC23:41
*** Aiste has joined #zope3-dev23:42
*** Aiste has quit IRC23:43

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