| *** edgordon has quit IRC | 00:02 | |
| *** gumpa has left #zope3-dev | 00:17 | |
| *** pcardune has quit IRC | 00:20 | |
| *** dunny has joined #zope3-dev | 00:21 | |
| *** zagy has quit IRC | 00:25 | |
| *** TresEquis has joined #zope3-dev | 00:28 | |
| *** jinty has quit IRC | 00:29 | |
| *** rocky has joined #zope3-dev | 01:00 | |
| *** mgedmin has quit IRC | 02:03 | |
| *** TresEquis has quit IRC | 02:25 | |
| *** tvw has quit IRC | 02:29 | |
| *** rocky is now known as rocky|away | 02:34 | |
| *** dunny has quit IRC | 02:47 | |
| *** benji has quit IRC | 03:03 | |
| *** oferw has joined #zope3-dev | 03:18 | |
| *** hannosch has joined #zope3-dev | 03:28 | |
| *** MJ has quit IRC | 03:52 | |
| *** hannosch has quit IRC | 03:53 | |
| *** guruz_ has joined #zope3-dev | 04:07 | |
| *** guruz has quit IRC | 04:07 | |
| *** rocky|away has quit IRC | 04:16 | |
| *** dunny has joined #zope3-dev | 04:38 | |
| *** oferw has quit IRC | 04:54 | |
| *** benji has joined #zope3-dev | 05:04 | |
| *** stub has joined #zope3-dev | 05:50 | |
| *** roym has quit IRC | 06:38 | |
| *** dunny has quit IRC | 07:22 | |
| *** dunny has joined #zope3-dev | 07:30 | |
| *** dunny has quit IRC | 07:50 | |
| *** febb has joined #zope3-dev | 08:03 | |
| *** eins has joined #zope3-dev | 08:53 | |
| *** dunny has joined #zope3-dev | 09:27 | |
| *** Theuni has joined #zope3-dev | 09:28 | |
| *** dobee_ has joined #zope3-dev | 10:14 | |
| *** dunny has quit IRC | 10:24 | |
| *** dobee_ has quit IRC | 10:44 | |
| *** MJ has joined #zope3-dev | 10:46 | |
| *** The|uni has joined #zope3-dev | 10:59 | |
| *** Theuni has quit IRC | 11:00 | |
| *** philiKON has joined #zope3-dev | 11:00 | |
| *** The|uni has quit IRC | 11:03 | |
| *** stub has quit IRC | 11:11 | |
| *** febb has quit IRC | 11:12 | |
| *** dunny has joined #zope3-dev | 11:18 | |
| *** faassen has joined #zope3-dev | 11:33 | |
| philiKON | bon jour faassen | 11:40 | 
|---|---|---|
| *** dunny has quit IRC | 11:44 | |
| *** dunny has joined #zope3-dev | 11:50 | |
| *** philiKON has quit IRC | 11:52 | |
| *** romanofski has joined #zope3-dev | 11:58 | |
| *** admp has joined #zope3-dev | 12:02 | |
| *** faassen has quit IRC | 12:13 | |
| *** dobee_ has joined #zope3-dev | 12:15 | |
| *** batlogg has joined #zope3-dev | 12:17 | |
| *** philiKON has joined #zope3-dev | 12:31 | |
| *** admp has quit IRC | 12:31 | |
| *** dobee_ has quit IRC | 12:40 | |
| *** alga has joined #zope3-dev | 12:41 | |
| *** zagy has joined #zope3-dev | 12:50 | |
| *** hannosch has joined #zope3-dev | 12:51 | |
| *** dunny has quit IRC | 12:57 | |
| *** dunny has joined #zope3-dev | 12:59 | |
| *** philiKON has quit IRC | 13:22 | |
| *** philiKON has joined #zope3-dev | 13:22 | |
| *** romanofski has quit IRC | 13:31 | |
| *** srichter has quit IRC | 13:32 | |
| *** srichter has joined #zope3-dev | 13:40 | |
| *** baijum has joined #zope3-dev | 13:57 | |
| *** philiKON has quit IRC | 14:01 | |
| *** regebro has joined #zope3-dev | 14:04 | |
| *** ignas has joined #zope3-dev | 14:06 | |
| *** dunny has quit IRC | 14:09 | |
| *** dobee_ has joined #zope3-dev | 14:11 | |
| d2m | how would i add an additional field to forms already configured in zcml ? | 14:28 | 
| *** rocky has joined #zope3-dev | 14:31 | |
| baijum | d2m, are you asking about zope.formlib ? | 14:33 | 
| d2m | lets say, i want to secure 'add' and 'editforms' through an extra 'captcha' field, non persistent, only for validation | 14:34 | 
| baijum | What about this: class AView(form.AddForm): form_fields = (form.Fields(IFirst) + form.Fields(TextLine(__name__='testfield', title=u"Test Field"))) | 14:36 | 
| d2m | baijum: i see, seems to work fine with zope.formlib, but i'd need to override every existing form | 14:37 | 
| d2m | it would be easier if i could register an additional schema for all classes | 14:40 | 
| rocky | d2m: hm? sounds like you want to use an adapter | 14:43 | 
| d2m | thought about that, but then did not know how to configure it | 14:43 | 
| baijum | What about refactoring your code to add a base interface with the extra field? I think that will be simple and clean? | 14:46 | 
| d2m | would be nice to configure an additional schema on a class and have all forms extemded automatically | 14:51 | 
| * baijum thinks it's more or less like modern monkey patching :) | 14:54 | |
| rocky | d2m: you can use adapters to do that, but it won't solve your form problem | 14:54 | 
| d2m | don't know, its just another implements(...) | 14:54 | 
| *** batlogg has quit IRC | 15:04 | |
| *** zagy has quit IRC | 15:14 | |
| *** whit has quit IRC | 15:23 | |
| *** romanofski has joined #zope3-dev | 15:23 | |
| *** philiKON has joined #zope3-dev | 15:30 | |
| regebro | So, is there any sprinting going on? | 15:44 | 
| *** flox has quit IRC | 15:52 | |
| philiKON | regebro, sorta | 15:53 | 
| *** faassen has joined #zope3-dev | 15:58 | |
| *** MJ has quit IRC | 16:01 | |
| *** MJ has joined #zope3-dev | 16:04 | |
| *** hannosch has quit IRC | 16:16 | |
| *** faassen has quit IRC | 16:18 | |
| *** vazhipokkan has joined #zope3-dev | 16:26 | |
| *** vazhipokkan has left #zope3-dev | 16:27 | |
| *** MJ has quit IRC | 16:35 | |
| *** baijum has quit IRC | 16:36 | |
| *** MJ has joined #zope3-dev | 16:36 | |
| *** MJ has joined #zope3-dev | 16:39 | |
| *** MJ has quit IRC | 16:40 | |
| *** MJ has joined #zope3-dev | 16:41 | |
| *** faassen has joined #zope3-dev | 16:54 | |
| *** regebro has quit IRC | 16:54 | |
| *** oferw has joined #zope3-dev | 16:57 | |
| oferw | philiKON: hi | 16:57 | 
| oferw | philiKON: have you seen the game? | 16:58 | 
| *** dobee_ has quit IRC | 18:12 | |
| *** whit has joined #zope3-dev | 18:18 | |
| *** eins has quit IRC | 18:27 | |
| *** faassen has quit IRC | 18:31 | |
| *** philiKON has quit IRC | 18:37 | |
| *** oferw has quit IRC | 18:39 | |
| *** philiKON has joined #zope3-dev | 18:49 | |
| *** rocky is now known as rocky|away | 18:51 | |
| *** d2m has quit IRC | 19:50 | |
| *** alga has quit IRC | 20:15 | |
| *** d2m has joined #zope3-dev | 20:48 | |
| *** philiKON has quit IRC | 20:58 | |
| *** ignas has quit IRC | 21:30 | |
| *** pcardune has joined #zope3-dev | 21:44 | |
| *** BjornT has joined #zope3-dev | 22:51 | |
| *** regebro has joined #zope3-dev | 22:53 | |
| regebro | Ooh, pretty empty here.... | 22:54 | 
| regebro | Just a quick Q, if anybody is awake. | 22:54 | 
| regebro | Is there a common/recommended way of creating unique ids in zope3? | 22:55 | 
| regebro | Hmm. I founs zope.app.intids. I'll take a look. | 22:59 | 
| *** regebro has quit IRC | 22:59 | |
| *** dunny has joined #zope3-dev | 23:00 | |
| whit | regebro: check out keyreferences | 23:01 | 
| *** pcardune has quit IRC | 23:02 | |
| *** dunny has quit IRC | 23:37 | |
Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!