*** jpcw has quit IRC | 00:05 | |
*** strichter is now known as srichter | 00:07 | |
*** ChanServ sets mode: +o srichter | 00:07 | |
*** pelle_ has quit IRC | 00:07 | |
*** dbfrombrc has quit IRC | 00:08 | |
*** bigkevmcd_ has joined #zope3-dev | 00:09 | |
*** bigkevmcd has quit IRC | 00:09 | |
*** bigkevmcd_ is now known as bigkevmcd | 00:09 | |
*** tarek has joined #zope3-dev | 00:13 | |
*** aaronv has quit IRC | 00:16 | |
*** lisppaste6 has quit IRC | 00:17 | |
*** dbfrombrc has joined #zope3-dev | 00:19 | |
*** tarek has quit IRC | 00:24 | |
*** lisppaste6 has joined #zope3-dev | 00:24 | |
*** regebro has quit IRC | 00:27 | |
*** jhauser has quit IRC | 00:33 | |
*** romanofski has joined #zope3-dev | 00:41 | |
*** tarek has joined #zope3-dev | 00:44 | |
*** junkafarian has joined #zope3-dev | 00:47 | |
*** benji has quit IRC | 00:55 | |
*** strichter has joined #zope3-dev | 00:55 | |
*** srichter has quit IRC | 00:58 | |
*** tarek has quit IRC | 01:02 | |
*** J1m has joined #zope3-dev | 01:10 | |
*** jamur2 has quit IRC | 01:15 | |
*** lurkymclurkleton has quit IRC | 01:18 | |
*** J1m_ has quit IRC | 01:18 | |
*** nyo has joined #zope3-dev | 01:21 | |
nyo | strichter: ayt? | 01:21 |
---|---|---|
*** Theuni1 has joined #zope3-dev | 01:22 | |
*** redir has quit IRC | 01:25 | |
*** J1m has quit IRC | 01:26 | |
*** greenman_ has joined #zope3-dev | 01:27 | |
*** nathany has quit IRC | 01:32 | |
*** greenman has quit IRC | 01:41 | |
*** flox has left #zope3-dev | 01:44 | |
*** Theuni1 has quit IRC | 01:45 | |
*** rocky has quit IRC | 01:50 | |
*** _srichter has joined #zope3-dev | 02:02 | |
*** _srichter is now known as srichter | 02:03 | |
*** ChanServ sets mode: +o srichter | 02:03 | |
srichter | nyo: yep | 02:03 |
*** strichter has quit IRC | 02:19 | |
*** TheStig has joined #zope3-dev | 02:23 | |
*** SpeedyGhost has joined #zope3-dev | 02:24 | |
*** dbfrombrc has quit IRC | 02:26 | |
*** mgedmin has quit IRC | 02:38 | |
*** junkafarian has quit IRC | 02:41 | |
*** projekt01 has joined #zope3-dev | 02:44 | |
projekt01 | nyo, ayt? | 02:45 |
nyo | projekt01: hi | 02:49 |
projekt01 | nyo, do you have time to review my latest checkin for zope.publisher? | 02:50 |
nyo | hmm.. I'll try to check it out now | 02:51 |
projekt01 | I fixed some odd issues and implemented the default skin pattern within adapters | 02:51 |
nyo | oh, that sounds interesting | 02:51 |
projekt01 | I need to release the package because I have to maek more progress in zope.app.publisher for finishing the concept. | 02:52 |
projekt01 | It is wokring wihtout future changes in zope.app.publisher, but changes in zope.app.publihser will allow us to use it in z3c.jsonrpc without to depend on IBrowserRequest just for support default skins | 02:52 |
nyo | projekt01: I personally don't really use z3c.jsonrpc, so... | 02:55 |
* nyo is looking at the changes | 02:55 | |
projekt01 | no problem, this allows just to use the default skin pattern for non IBrowserRequest implementations | 02:56 |
projekt01 | I tested the implementation using z3.jsonrpc with a default skin, it works well for me | 02:57 |
nyo | projekt01: looks like the ISkinnable, IDefaultSkin and ISkinType should be moved out of .interfaces.browser to just .interfaces, or not? | 02:58 |
projekt01 | Yes | 02:59 |
projekt01 | do you think I should do that too? | 02:59 |
nyo | well, I guess. if it's not browser-only, it should be in plain interfaces or may be interfaces.http? | 03:00 |
*** kaeru has joined #zope3-dev | 03:00 | |
projekt01 | I was thinkin to move the if shane or others will split the browser, http, xmlrpc into own packages | 03:01 |
projekt01 | i think I was reading something about such a split | 03:01 |
nyo | btw, the ISkinChangedEvent is probably in that company as well now, so it should be moved, but with bbb import. | 03:01 |
nyo | projekt01: well, it's not very clear when that will be done | 03:02 |
projekt01 | Ok, I ll do that cleanup and provide the original imports | 03:02 |
projekt01 | what's the marker for BBB imports? did we define something? | 03:02 |
projekt01 | just a #BBB comment at the end | 03:03 |
*** troter has joined #zope3-dev | 03:03 | |
nyo | projekt01: i also write some comment after BBB, why it was moved, for example | 03:03 |
nyo | projekt01: btw, why use the named "default" adapter instead of just unnamed one? | 03:06 |
projekt01 | the default unnamed adapter is configured by a project | 03:06 |
projekt01 | the default named adapter is a fallback, right now only configured for IBrowserRequest | 03:07 |
projekt01 | IDefaultBrowserLayer is such a fallback default layer | 03:07 |
*** sm has quit IRC | 03:07 | |
nyo | ah, that's more clear to me now | 03:08 |
projekt01 | if you define a default skin in your project, you will use the defaultSkin zcml directive, this will register a unnamed adapter | 03:08 |
nyo | projekt01: the setDefaultSkin logic seems fishy :-) | 03:15 |
projekt01 | do you mean it doesn't raise errors if something is wrong? | 03:16 |
nyo | projekt01: yep. why silently ignore it? if wrong interface is registered, then something is wrong in the application. | 03:17 |
projekt01 | the concept before allows to apply any interface as skin, I don't know what others did with that implementation | 03:17 |
nyo | well, I think that others still use IBrowserSkinType'd interfaces as a defaultSkin, so we can check that more strictly... however this may be a topic to discuss on the ML) | 03:19 |
nyo | also, why calling and catching TypeError instead of simply checking on IInterface.providedBy(skin)? | 03:21 |
projekt01 | hehe, that's buggy | 03:23 |
projekt01 | the defaultSkin directive registers interfaces insted of adapter factory which will return the interface by adaption | 03:23 |
projekt01 | this interfaces are not adaptable and will end in TypeErrror somewhere in the adapter registry | 03:24 |
*** Doc_Dan has joined #zope3-dev | 03:24 | |
nyo | projekt01: but, we can check the skin object we got by adapter lookup if it's an interface or an adapter by simple IInterface.providedBy(skin) check instead of trying to call it as an adapter, no? | 03:25 |
projekt01 | yes, but exceptions are faster in python then check something | 03:26 |
*** stub has quit IRC | 03:27 | |
nyo | projekt01: hm.. really? how much faster? I just think that one can get really strange bug, if the request will be somehow adapted to the interface we get by IDefaultSkin lookup. | 03:28 |
nyo | projekt01: if it's not a gross "bottleneck", i think we can live with a providedBy check, which is also fast I believe. | 03:29 |
projekt01 | it will provide IDefaultSkin, I don't expect any other component then an adapter or interface | 03:29 |
projekt01 | or some wired thing must go on | 03:30 |
projekt01 | Ok, I'm fine with that | 03:30 |
projekt01 | I 'll write a mail to the list with some open questions | 03:31 |
nyo | projekt01: btw, I think that the skinType in the "applySkin" function can be determined from the skin itself | 03:32 |
*** dbfrombrc has joined #zope3-dev | 03:33 | |
projekt01 | do you mean IDefaultSkin(request) | 03:34 |
projekt01 | and getAdapter((request,), IDefaultSkin, name='default') | 03:34 |
projekt01 | if so, No because of the junk (plain interface) in the dapter registry | 03:35 |
projekt01 | if the defaultSkin directive whould register an adapter factory then yes | 03:35 |
nyo | projekt01: no. I mean that now the "zope.publisher.browser.applySkin" requires setting an skinType argument for applying non-browser skins | 03:36 |
nyo | well, at first, this function, as well as skinchangedevent is now not only for browser, so it should be moved to more general module | 03:36 |
projekt01 | yes | 03:36 |
nyo | and we don't need to explicitly set the skinType, because it can be easily determined from the "skin" argument we are passing | 03:37 |
projekt01 | how? | 03:37 |
projekt01 | the skin type for z3c.jsonrpc is IJSONRPCSkinType which is inherited from ISkinType | 03:38 |
nyo | hm, something like skinType = [iface for iface in providedBy(skin) if iface.isorExtends(ISkinType)][0] | 03:38 |
projekt01 | this whould require that we type the type or not? | 03:38 |
nyo | if skin supposed to provide only one ISkinType interface, this will work | 03:39 |
*** troter has quit IRC | 03:40 | |
projekt01 | Hm, no, each layer will provide ISkinType | 03:40 |
projekt01 | the real traversable skin is a named ISkinType e.g. IBrowserSkinType | 03:41 |
nyo | I mean, that single skin won't provide both IBrowserSkinType and IJSONRPCSkinType | 03:41 |
projekt01 | Yes | 03:41 |
nyo | then my example will work) | 03:41 |
nyo | hm.. wait | 03:42 |
nyo | ) | 03:42 |
projekt01 | each layer will provide a skin type not only one | 03:42 |
*** troter has joined #zope3-dev | 03:42 | |
projekt01 | IDivFormLayer or IFormLayer etc will provide ISkinType if someone registers them within the interface directive | 03:43 |
nyo | ah.. | 03:44 |
projekt01 | e.g. | 03:44 |
projekt01 | <interface | 03:44 |
projekt01 | interface="z3c.form.interfaces.IFormLayer" | 03:44 |
projekt01 | type="zope.publisher.interfaces.browser.IBrowserSkinType" | 03:44 |
projekt01 | /> | 03:44 |
nyo | hm.. this is IBrowserSkinType, not plain ISkinType) | 03:44 |
projekt01 | I think we can't find the right layer without the skinType argument | 03:45 |
projekt01 | yes, but right now only IBrowserSkinType is used anywhere | 03:46 |
projekt01 | some of my skins provide both skin types (if I use JSONRPC within z3c.form) | 03:47 |
projekt01 | the skin pattern is only there for make more views and adapters available at request level | 03:48 |
projekt01 | it has not really something to do with request types which we don't have | 03:49 |
nyo | projekt01: ah.. I thought you said "yes" when I asked about that both ISkinTypes in one skin won't present at once :) | 03:50 |
projekt01 | no I was wrong, only one of them is named | 03:51 |
projekt01 | but wait | 03:52 |
projekt01 | we have to remove ANY skin type | 03:52 |
projekt01 | doesn't matter what skin type because the result is a clean request with only the given skin applied | 03:53 |
nyo | projekt01: ah, then we don't need the skinType argument either ) | 03:54 |
projekt01 | setDefaultSkin applies a "default" skin if available and the applySkin aplies a given skin | 03:54 |
projekt01 | yes | 03:54 |
projekt01 | another question | 03:54 |
projekt01 | why do we not remove any skin in setDefaultSkin like done in applySkin? | 03:54 |
nyo | projekt01: I dunno, I guess it's because when setDefaultSkin is called, the request object don't have any "skins" applied yet, so there's nothing to clear. | 03:55 |
nyo | however, I'm not sure | 03:56 |
* nyo needs some sleep:) | 03:56 | |
projekt01 | I'm not sure too | 03:56 |
projekt01 | I also need some sleep ;-) | 03:56 |
projekt01 | Ill add them to the mail | 03:56 |
projekt01 | them = question | 03:56 |
nyo | :-) | 03:56 |
projekt01 | nyo, thanks a lot for your feedback | 03:57 |
nyo | i'll review the changes again when I'll awake, so I can be more constructive :) | 03:57 |
projekt01 | Ok, I'll write a mail to the list before I do more changes | 03:59 |
*** nyo has quit IRC | 04:06 | |
*** projekt01 has quit IRC | 04:06 | |
*** alecm has quit IRC | 04:07 | |
*** dbfrombrc has quit IRC | 04:18 | |
*** dunny has joined #zope3-dev | 04:37 | |
*** davisagli has left #zope3-dev | 04:45 | |
*** aclark_ has joined #zope3-dev | 05:04 | |
*** aclark has quit IRC | 05:15 | |
*** aclark_ is now known as aclark | 05:22 | |
*** greenman_ has quit IRC | 05:27 | |
*** davisagli has joined #zope3-dev | 05:37 | |
*** greenman has joined #zope3-dev | 06:30 | |
*** greenman has quit IRC | 06:47 | |
*** [1]Doc_Dan has joined #zope3-dev | 06:55 | |
*** Doc_Dan has quit IRC | 07:02 | |
*** [1]Doc_Dan is now known as Doc_Dan | 07:02 | |
*** dbfrombrc has joined #zope3-dev | 07:12 | |
*** alecm has joined #zope3-dev | 07:19 | |
*** baijum has joined #zope3-dev | 07:37 | |
*** afd__ has joined #zope3-dev | 07:39 | |
*** romanofski has quit IRC | 07:53 | |
*** jukart has joined #zope3-dev | 08:05 | |
*** jpcw has joined #zope3-dev | 08:12 | |
*** dbfrombrc has quit IRC | 08:20 | |
*** pcardune has joined #zope3-dev | 08:24 | |
*** jukart has quit IRC | 08:28 | |
*** agroszer_ has joined #zope3-dev | 08:36 | |
*** agroszer__ has joined #zope3-dev | 08:41 | |
*** Theuni1 has joined #zope3-dev | 08:52 | |
*** greenman has joined #zope3-dev | 08:55 | |
*** Theuni1 has quit IRC | 08:56 | |
*** Theuni2 has joined #zope3-dev | 08:56 | |
*** agroszer__ is now known as agroszer | 08:56 | |
*** JaRoel|4D has quit IRC | 08:57 | |
*** agroszer_ has quit IRC | 08:58 | |
*** __mac__ has joined #zope3-dev | 09:07 | |
*** jukart has joined #zope3-dev | 09:12 | |
*** __mac___ has joined #zope3-dev | 09:22 | |
*** quodt has joined #zope3-dev | 09:22 | |
*** malthe has joined #zope3-dev | 09:27 | |
*** jayaraj has joined #zope3-dev | 09:28 | |
*** zagy has quit IRC | 09:29 | |
*** __mac__ has quit IRC | 09:36 | |
*** JaRoel|4D has joined #zope3-dev | 09:40 | |
*** basti__ has joined #zope3-dev | 09:46 | |
*** basti__ has quit IRC | 09:47 | |
*** malthe has quit IRC | 09:50 | |
*** basti__ has joined #zope3-dev | 09:53 | |
*** MJ has joined #zope3-dev | 09:54 | |
*** mgedmin has joined #zope3-dev | 09:54 | |
*** MJ has quit IRC | 09:54 | |
*** MJ has joined #zope3-dev | 09:54 | |
afd__ | what's so special about the "zope.app.apidoc.UseAPIDoc" apidoc permission that it's not granted through a grantAll declaration? | 10:00 |
afd__ | <grantAll role="zope.Manager" /> | 10:00 |
afd__ | <grant permission="zope.app.apidoc.UseAPIDoc" role="zope.Manager" /> | 10:00 |
afd__ | Unless I do the second declaration, I get an Unauthorized screen | 10:00 |
*** JaRoel|4D has quit IRC | 10:02 | |
afd__ | nevermind, I didn't include it's zcml | 10:05 |
*** JaRoel|4D has joined #zope3-dev | 10:09 | |
*** regebro has joined #zope3-dev | 10:13 | |
*** goschtl has joined #zope3-dev | 10:14 | |
*** pelle_ has joined #zope3-dev | 10:23 | |
*** mkerrin has joined #zope3-dev | 10:24 | |
*** harobed has joined #zope3-dev | 10:40 | |
*** pyqwer has joined #zope3-dev | 10:46 | |
*** junkafarian has joined #zope3-dev | 10:55 | |
*** tarek has joined #zope3-dev | 10:56 | |
*** menesis has joined #zope3-dev | 11:08 | |
*** andycat has joined #zope3-dev | 11:08 | |
*** flox has joined #zope3-dev | 11:12 | |
*** alecm has quit IRC | 11:27 | |
*** junkafarian has quit IRC | 11:39 | |
*** DrogoNevets has joined #zope3-dev | 11:39 | |
DrogoNevets | is there a CookieCrumbler type product out there for Zope 3?? | 11:39 |
*** davisagli has left #zope3-dev | 11:45 | |
*** tarek has quit IRC | 11:46 | |
*** projekt01 has joined #zope3-dev | 11:47 | |
*** nyo has joined #zope3-dev | 11:49 | |
*** ignas has joined #zope3-dev | 11:52 | |
*** tarek has joined #zope3-dev | 11:53 | |
*** junkafarian has joined #zope3-dev | 12:08 | |
*** iham has quit IRC | 12:10 | |
*** iham has joined #zope3-dev | 12:11 | |
*** iham_ has joined #zope3-dev | 12:15 | |
*** romanofski has joined #zope3-dev | 12:20 | |
DrogoNevets | is there a CookieCrumbler type product out there for Zope 3?? | 12:28 |
*** iham has quit IRC | 12:33 | |
*** agroszer_ has joined #zope3-dev | 12:34 | |
*** jukart has quit IRC | 12:36 | |
*** agroszer has quit IRC | 12:36 | |
*** aclark has quit IRC | 12:36 | |
*** BjornT has quit IRC | 12:36 | |
*** agroszer_ is now known as agroszer | 12:36 | |
*** jukart has joined #zope3-dev | 12:36 | |
*** aclark has joined #zope3-dev | 12:36 | |
*** iham_ is now known as iham | 12:37 | |
*** BjornT has joined #zope3-dev | 12:37 | |
*** aclark has quit IRC | 12:45 | |
*** jukart has quit IRC | 12:45 | |
*** jukart has joined #zope3-dev | 12:49 | |
*** aclark has joined #zope3-dev | 12:53 | |
*** malthe has joined #zope3-dev | 13:00 | |
*** junkafarian_ has joined #zope3-dev | 13:06 | |
*** junkafarian has quit IRC | 13:21 | |
*** srichter has quit IRC | 13:46 | |
*** junkafarian_ has quit IRC | 13:48 | |
*** junkafarian__ has joined #zope3-dev | 13:48 | |
*** junkafarian__ is now known as junkafarian | 13:48 | |
*** srichter has joined #zope3-dev | 13:49 | |
*** runyaga_ has joined #zope3-dev | 13:51 | |
*** danfairs has joined #zope3-dev | 13:52 | |
*** troter has quit IRC | 13:53 | |
*** malthe has quit IRC | 13:54 | |
*** ktwilight_ has joined #zope3-dev | 13:58 | |
*** malthe has joined #zope3-dev | 14:03 | |
*** pelle__ has joined #zope3-dev | 14:04 | |
*** MrTopf has joined #zope3-dev | 14:06 | |
*** greenman has quit IRC | 14:09 | |
*** runyaga has quit IRC | 14:09 | |
*** ktwilight has quit IRC | 14:12 | |
*** romanofski has quit IRC | 14:18 | |
*** afd__ has quit IRC | 14:21 | |
*** pcardune has quit IRC | 14:23 | |
*** pelle_ has quit IRC | 14:25 | |
*** danfairs has quit IRC | 14:26 | |
*** MrTopf has quit IRC | 14:28 | |
*** pelle_ has joined #zope3-dev | 14:28 | |
*** afd_ has joined #zope3-dev | 14:31 | |
*** danfairs has joined #zope3-dev | 14:43 | |
*** baijum has quit IRC | 14:48 | |
*** pelle__ has quit IRC | 14:50 | |
*** JaRoel|4_ has joined #zope3-dev | 14:57 | |
*** JaRoel|4D has quit IRC | 15:02 | |
*** benji has joined #zope3-dev | 15:13 | |
*** ignas has quit IRC | 15:15 | |
*** danfairs_ has joined #zope3-dev | 15:15 | |
*** danfairs has quit IRC | 15:16 | |
*** sunoano has quit IRC | 15:19 | |
*** sunoano has joined #zope3-dev | 15:21 | |
*** thetet has joined #zope3-dev | 15:29 | |
*** danfairs_ has quit IRC | 15:43 | |
*** rocky has joined #zope3-dev | 15:44 | |
*** jfkw has joined #zope3-dev | 15:46 | |
*** danfairs has joined #zope3-dev | 15:55 | |
*** J1m has joined #zope3-dev | 15:57 | |
*** dunny has quit IRC | 16:00 | |
*** aaronv has joined #zope3-dev | 16:01 | |
*** danfairs has quit IRC | 16:03 | |
*** jamur2 has joined #zope3-dev | 16:04 | |
*** markusleist has quit IRC | 16:04 | |
*** danfairs has joined #zope3-dev | 16:06 | |
*** lurkymclurkleton has joined #zope3-dev | 16:18 | |
*** danfairs has quit IRC | 16:24 | |
*** danfairs has joined #zope3-dev | 16:25 | |
*** stub1 has joined #zope3-dev | 16:25 | |
*** danfairs_ has joined #zope3-dev | 16:28 | |
*** danfairs has quit IRC | 16:28 | |
*** Aiste has joined #zope3-dev | 16:37 | |
*** danfairs_ has quit IRC | 16:37 | |
*** danfairs has joined #zope3-dev | 16:40 | |
*** sp0cksbeard has joined #zope3-dev | 16:50 | |
*** agroszer has quit IRC | 16:50 | |
*** sp0cksbeard has left #zope3-dev | 16:55 | |
*** __mac___ has quit IRC | 16:58 | |
*** baijum has joined #zope3-dev | 16:58 | |
*** __mac__ has joined #zope3-dev | 16:59 | |
*** basti__ has quit IRC | 17:01 | |
*** danfairs has quit IRC | 17:05 | |
*** danfairs has joined #zope3-dev | 17:09 | |
*** regebro has quit IRC | 17:13 | |
*** regebro has joined #zope3-dev | 17:13 | |
*** redir has joined #zope3-dev | 17:14 | |
*** lurkymclurkleton has quit IRC | 17:17 | |
*** lurkymclurkleton has joined #zope3-dev | 17:18 | |
*** aaronv has quit IRC | 17:25 | |
*** alga has joined #zope3-dev | 17:26 | |
*** aaronv has joined #zope3-dev | 17:31 | |
*** jhauser has joined #zope3-dev | 17:33 | |
*** mcdonc has quit IRC | 17:33 | |
*** junkafarian_ has joined #zope3-dev | 17:37 | |
*** junkafarian has quit IRC | 17:42 | |
*** junkafarian_ is now known as junkafarian | 17:42 | |
*** danfairs has quit IRC | 17:43 | |
*** DrogoNevets has left #zope3-dev | 17:43 | |
*** MJ has quit IRC | 17:44 | |
*** projekt01 has quit IRC | 17:48 | |
*** philiKON has joined #zope3-dev | 18:01 | |
*** danfairs has joined #zope3-dev | 18:04 | |
*** baijum has quit IRC | 18:13 | |
*** baijum has joined #zope3-dev | 18:14 | |
*** danfairs has quit IRC | 18:15 | |
*** danfairs has joined #zope3-dev | 18:17 | |
*** baijum has quit IRC | 18:17 | |
*** philiKON_ has quit IRC | 18:17 | |
*** andycat has quit IRC | 18:18 | |
*** yvl has quit IRC | 18:22 | |
*** nathany has joined #zope3-dev | 18:30 | |
*** danfairs has quit IRC | 18:32 | |
*** goschtl has quit IRC | 18:33 | |
*** danfairs has joined #zope3-dev | 18:33 | |
*** thetet has left #zope3-dev | 18:37 | |
*** davisagli has joined #zope3-dev | 18:37 | |
*** danfairs has quit IRC | 18:45 | |
*** danfairs has joined #zope3-dev | 18:46 | |
*** zagy has joined #zope3-dev | 18:51 | |
*** jayaraj_ has joined #zope3-dev | 18:51 | |
*** danfairs has quit IRC | 18:58 | |
*** hexsprite has quit IRC | 19:00 | |
*** davisagli has quit IRC | 19:02 | |
*** nyo has quit IRC | 19:03 | |
*** agroszer has joined #zope3-dev | 19:04 | |
*** nyo has joined #zope3-dev | 19:08 | |
*** jayaraj_ has quit IRC | 19:09 | |
*** quodt has quit IRC | 19:15 | |
*** harobed has quit IRC | 19:15 | |
*** jayaraj has quit IRC | 19:16 | |
*** jayaraj_ has joined #zope3-dev | 19:21 | |
*** aaronv has quit IRC | 19:27 | |
*** jukart has quit IRC | 19:31 | |
*** dbfrombrc has joined #zope3-dev | 19:32 | |
*** davisagli has joined #zope3-dev | 19:32 | |
*** zagy_ has joined #zope3-dev | 19:41 | |
*** Aiste has quit IRC | 19:41 | |
*** alecm has joined #zope3-dev | 19:43 | |
*** zagy has quit IRC | 19:44 | |
*** zagy_ is now known as zagy | 19:45 | |
*** dbfrombrc has quit IRC | 19:46 | |
*** harobed has joined #zope3-dev | 19:53 | |
*** redir_ has joined #zope3-dev | 19:56 | |
*** sm has joined #zope3-dev | 19:58 | |
*** agroszer_ has joined #zope3-dev | 19:59 | |
*** jpcw has quit IRC | 20:01 | |
*** redir has quit IRC | 20:04 | |
*** redir_ is now known as redir | 20:06 | |
*** JaRoel|4_ has quit IRC | 20:13 | |
*** jpcw has joined #zope3-dev | 20:14 | |
*** agroszer has quit IRC | 20:15 | |
*** malthe has quit IRC | 20:17 | |
*** srichter has quit IRC | 20:20 | |
*** nyo has quit IRC | 20:21 | |
*** aaronv has joined #zope3-dev | 20:24 | |
*** mkerrin has quit IRC | 20:26 | |
*** tarek has quit IRC | 20:27 | |
*** tarek has joined #zope3-dev | 20:31 | |
*** mcdonc has joined #zope3-dev | 20:32 | |
*** srichter has joined #zope3-dev | 20:33 | |
*** ChanServ sets mode: +o srichter | 20:38 | |
*** zagy_ has joined #zope3-dev | 20:39 | |
*** mgedmin has quit IRC | 20:40 | |
*** Theuni1 has joined #zope3-dev | 20:42 | |
*** Theuni2 has quit IRC | 20:42 | |
*** nathany has quit IRC | 20:52 | |
*** nathany has joined #zope3-dev | 20:52 | |
*** dbfrombrc has joined #zope3-dev | 20:56 | |
*** tarek has quit IRC | 20:59 | |
*** jpcw_ has joined #zope3-dev | 20:59 | |
*** jpcw has quit IRC | 21:01 | |
*** zagy has quit IRC | 21:03 | |
*** markusleist has joined #zope3-dev | 21:03 | |
*** regebro has quit IRC | 21:11 | |
*** dbfrombrc has quit IRC | 21:13 | |
*** regebro has joined #zope3-dev | 21:16 | |
*** JaRoel|4D has joined #zope3-dev | 21:17 | |
*** zagy_ has quit IRC | 21:23 | |
*** nyo has joined #zope3-dev | 21:26 | |
*** quodt has joined #zope3-dev | 21:32 | |
*** jayaraj_ has quit IRC | 21:34 | |
*** __mac__ has quit IRC | 21:48 | |
*** Theuni1 has quit IRC | 21:49 | |
*** junkafarian has quit IRC | 21:51 | |
*** greenman has joined #zope3-dev | 22:02 | |
*** tarek has joined #zope3-dev | 22:05 | |
*** alga has quit IRC | 22:14 | |
*** tarek has quit IRC | 22:24 | |
*** alga has joined #zope3-dev | 22:26 | |
*** lucielejard has joined #zope3-dev | 22:27 | |
*** jpcw2002 has joined #zope3-dev | 22:28 | |
*** jpcw_ has quit IRC | 22:35 | |
*** dbfrombrc has joined #zope3-dev | 22:36 | |
*** menesis has quit IRC | 22:37 | |
*** pelle__ has joined #zope3-dev | 22:40 | |
*** dunny has joined #zope3-dev | 22:40 | |
*** JaRoel|4_ has joined #zope3-dev | 22:51 | |
*** JaRoel|4_ is now known as JaRoel|4D_ | 22:51 | |
*** dunny_ has joined #zope3-dev | 22:51 | |
*** pelle_ has quit IRC | 22:52 | |
*** JaRoel|4D has quit IRC | 22:52 | |
*** JaRoel|4D_ is now known as JaRoel|4D | 22:53 | |
*** agroszer_ has quit IRC | 22:55 | |
*** dunny has quit IRC | 22:59 | |
*** greenman has quit IRC | 23:06 | |
*** pyqwer has quit IRC | 23:11 | |
*** markusleist has quit IRC | 23:13 | |
*** afd_ has quit IRC | 23:19 | |
*** jpcw2002 has quit IRC | 23:20 | |
*** greenman has joined #zope3-dev | 23:23 | |
*** tarek has joined #zope3-dev | 23:29 | |
*** jpcw2002 has joined #zope3-dev | 23:37 | |
*** jhauser has quit IRC | 23:40 | |
*** aaronv has quit IRC | 23:43 | |
*** sunoano has quit IRC | 23:44 | |
*** dunny_ is now known as dunny | 23:44 | |
*** davisagli_ has joined #zope3-dev | 23:45 |
Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!