*** ktwilight_ has joined #zope3-dev | 00:01 | |
*** tarek has quit IRC | 00:03 | |
*** ktenney has left #zope3-dev | 00:05 | |
*** tarek has joined #zope3-dev | 00:05 | |
*** malthe has quit IRC | 00:07 | |
*** ktwilight has quit IRC | 00:08 | |
*** ryanbard_ has joined #zope3-dev | 00:12 | |
*** ryanbard has quit IRC | 00:12 | |
*** flox has quit IRC | 00:26 | |
*** rcrafton has quit IRC | 00:32 | |
*** mweichert has quit IRC | 00:41 | |
*** ryanbard_ has quit IRC | 00:42 | |
*** alecm has quit IRC | 00:44 | |
*** benji has quit IRC | 00:47 | |
*** natea|boston has quit IRC | 00:47 | |
*** whit has quit IRC | 00:50 | |
*** deo has joined #zope3-dev | 00:50 | |
*** jukart has joined #zope3-dev | 00:57 | |
*** reco has quit IRC | 01:09 | |
*** jukart has quit IRC | 01:12 | |
*** alecm has joined #zope3-dev | 01:14 | |
*** danielblackburn_ has quit IRC | 01:16 | |
*** quodt has joined #zope3-dev | 01:18 | |
*** quodt_ has joined #zope3-dev | 01:21 | |
*** quodt has quit IRC | 01:21 | |
*** norro has quit IRC | 01:23 | |
*** sp0cksbeard has quit IRC | 01:31 | |
*** lucielejard has quit IRC | 01:32 | |
*** natea|boston has joined #zope3-dev | 01:40 | |
*** rcrafton has joined #zope3-dev | 01:44 | |
*** faassen has left #zope3-dev | 02:20 | |
*** bigkevmcd has quit IRC | 02:31 | |
*** mehemiah has joined #zope3-dev | 02:34 | |
mehemiah | why does zope use it's own database instead of an rdbm with an sql interfase? | 02:38 |
---|---|---|
mcdonc | mehemiah: hysterical raisins | 02:39 |
mehemiah | excuse me? | 02:39 |
mcdonc | historical reasons | 02:39 |
mehemiah | i c | 02:40 |
mehemiah | like they didn't exist? or something | 02:40 |
mcdonc | zope has been around for about 10 years now, and part of its development was ZODB | 02:40 |
srichter | mehemiah: well, also object databases map better to web sites | 02:40 |
mcdonc | but it's more hysterical raisins ;-) | 02:40 |
mehemiah | like why slackware doesn't use anyother package manager | 02:40 |
mcdonc | ndeed | 02:41 |
srichter | I disagree | 02:41 |
mcdonc | indeeed | 02:41 |
mehemiah | nice to see someone else with spelling issues | 02:41 |
mcdonc | haha | 02:41 |
srichter | I just converted an app from RDB to ZODB in my work and the data structures are much, much simpler now | 02:41 |
*** deo has quit IRC | 02:41 | |
mehemiah | but then nothing else can get at them | 02:42 |
mcdonc | it's mostly because jim was productive enough to make his own database, i suspect | 02:42 |
srichter | he he | 02:42 |
mehemiah | which is why i find it unsettteling | 02:42 |
srichter | mehemiah: that's not true; any python script can easily access it | 02:42 |
mehemiah | import zdbm? or somethign | 02:43 |
srichter | yep | 02:44 |
srichter | you can import the ZODB | 02:44 |
srichter | connect to a ZEO server (like you would connect to an RDB) | 02:44 |
srichter | and then browse through the database | 02:44 |
mcdonc | mehemiah: if you don't like zodb, don't fight your gut feeling, go with something else you do like | 02:44 |
mehemiah | im not familiar with python's back end, is importing big libraries costly? | 02:45 |
mehemiah | i mean libraries with lots of methods? | 02:45 |
mcdonc | nope | 02:45 |
*** J1m has quit IRC | 02:46 | |
mehemiah | thats good | 02:48 |
*** greenman has quit IRC | 02:49 | |
*** quodt_ has quit IRC | 02:52 | |
*** quodt has joined #zope3-dev | 02:52 | |
mehemiah | i've often wondered what are the differences between all these web frameworks and cgi | 02:53 |
mehemiah | i mean cgi + mod python | 02:53 |
srichter | high level features | 02:54 |
mehemiah | like | 02:54 |
mehemiah | ? | 02:54 |
srichter | Zope uses the cgi module in its guts | 02:54 |
srichter | transaction handling | 02:54 |
srichter | data storage transparency | 02:54 |
srichter | HTML templating | 02:54 |
mcdonc | chicks dig it too | 02:54 |
mehemiah | heh | 02:54 |
mehemiah | zope uses its own web server right? | 02:55 |
mcdonc | mehemiah: zope2: yes, zope3: no | 02:55 |
mehemiah | then what does it use to bypass cgi? | 02:55 |
*** quodt has quit IRC | 02:55 | |
mcdonc | it doesnt. | 02:55 |
*** quodt has joined #zope3-dev | 02:56 | |
mehemiah | so now what | 02:56 |
mehemiah | now what's the difference? | 02:56 |
mcdonc | it uses cgi in its implementation but abstracts it out | 02:56 |
mehemiah | hmm | 02:56 |
mcdonc | mehemiah: its sort of like asking whats the difference between an apple and a smorgasbord | 02:56 |
mehemiah | i c | 02:57 |
mcdonc | if you just want an apple, have an apple | 02:57 |
mehemiah | well at least that explains why i dont see the difference 'tween cgi and php | 02:57 |
mcdonc | indeed | 02:57 |
mcdonc | php is a cgi program itself | 02:58 |
mcdonc | and is still used that way today | 02:58 |
mcdonc | fwiw, i've found that usually if you have to ask the question "why would i use zope?" you dont really need zope, you need something far simpler. | 02:59 |
mehemiah | so i would ask when don't you use php cgi but not here | 02:59 |
mehemiah | i c | 02:59 |
mcdonc | others may disagree | 03:02 |
mcdonc | fwiw, "wsgi" is the cgi of python | 03:02 |
mcdonc | in fact it's not much more than cgi | 03:02 |
mehemiah | well, somehow they abstracted session handeling so you don't notice that | 03:03 |
mehemiah | in this respect its kind of like coldfusion | 03:04 |
mcdonc | mehemiah: who, the php people? | 03:04 |
*** tarek has quit IRC | 03:04 | |
mehemiah | yeah | 03:04 |
mehemiah | i mean | 03:04 |
mehemiah | you just say "session_create()" and that variable is passed on to the next page liike a get variable | 03:05 |
mcdonc | yup. | 03:06 |
mehemiah | but you can't quite do this in python | 03:06 |
mcdonc | in python it's a bit more complicated because there's more than one namespace | 03:06 |
mehemiah | exactly | 03:06 |
mehemiah | and cause python wasn't made for this | 03:07 |
mcdonc | mehemiah: so why not use php? | 03:07 |
mehemiah | they could jam that method into cgi | 03:07 |
*** quodt_ has joined #zope3-dev | 03:07 | |
pan_ | hoho. 2:00 am and somebody is not sleeping here ;-) | 03:07 |
mehemiah | im just speculating | 03:07 |
*** alecm has quit IRC | 03:07 | |
mehemiah | its 7:07 in the midwest of the USA | 03:07 |
pan_ | i see :-) | 03:07 |
mcdonc | mehemiah: sure. well, yep, python is definitely more general-purpose. | 03:08 |
mcdonc | you dont see many people writing window manager guis in php | 03:08 |
mehemiah | exactly | 03:08 |
mehemiah | wait what? | 03:08 |
mehemiah | what window manager is there in python? | 03:09 |
*** quodt__ has joined #zope3-dev | 03:09 | |
mehemiah | wait you mean a gui tk? | 03:09 |
*** quodt_ has quit IRC | 03:09 | |
mcdonc | eg. http://chandlerproject.org/ | 03:09 |
*** quodt has quit IRC | 03:10 | |
mehemiah | i thought that was just a groupware project | 03:10 |
mcdonc | or games | 03:10 |
mcdonc | http://www.pygame.org/news.html | 03:10 |
mehemiah | well that i get | 03:10 |
*** quodt__ has quit IRC | 03:11 | |
mcdonc | so... whats the question again? | 03:11 |
mehemiah | its just that it sounded like you mentionend a window manager made in python (shutter) | 03:12 |
mcdonc | but of course | 03:12 |
mcdonc | http://www.freenet.org.nz/python/pywm/ | 03:12 |
mcdonc | (although i did just mean programs meant to run in a window manager ;-) | 03:14 |
mehemiah | ... | 03:15 |
mehemiah | im somewhere between drooling and anguish | 03:15 |
mehemiah | i like fluxbox | 03:15 |
mehemiah | if fluxbox was scriptable (so you could generate the menues in python) it would be perfect | 03:16 |
mehemiah | i have often wanted to go to #fluxbox and ask them that | 03:16 |
mehemiah | i think i'll do that now | 03:16 |
mcdonc | http://sourceforge.net/docman/display_doc.php?docid=16036&group_id=76737 | 03:16 |
mcdonc | way old | 03:17 |
mehemiah | i don't quite get this doc | 03:24 |
mehemiah | i mean how his pertains to my question | 03:25 |
mehemiah | fluxspace? | 03:26 |
mehemiah | sorry just had to read | 03:27 |
*** mcdonc has quit IRC | 03:31 | |
mehemiah | thanks /part | 03:33 |
*** mehemiah has left #zope3-dev | 03:33 | |
*** alecm has joined #zope3-dev | 03:33 | |
*** run|home has joined #zope3-dev | 03:33 | |
*** mcdonc has joined #zope3-dev | 03:33 | |
*** pcardune has joined #zope3-dev | 03:34 | |
*** alecm has quit IRC | 03:34 | |
*** mcdonc has quit IRC | 03:34 | |
*** mcdonc has joined #zope3-dev | 03:36 | |
run|home | RaFromBRC: ? | 03:42 |
RaFromBRC | yeah | 03:42 |
RaFromBRC | run|home: | 03:42 |
run|home | http://www.enfoldsystems.com/Files/desktop-server-4.0.0-Beta-2-7914-py23.tar.gz | 03:43 |
run|home | http://www.enfoldsystems.com/Files/desktop-server-4.0.0-Beta-2-7914-py24.tar.gz | 03:43 |
run|home | http://www.enfoldsystems.com/Files/setup-desktop-4.0.0-beta-2-7918.exe | 03:43 |
run|home | desktop now fere | 03:43 |
run|home | free | 03:43 |
run|home | pls use it @ openplans ;) | 03:43 |
RaFromBRC | :) | 03:43 |
RaFromBRC | k | 03:43 |
run|home | need to get blob support working in plone better | 03:44 |
run|home | happy new year | 03:44 |
*** pbugni has quit IRC | 03:45 | |
*** RaFromBRC has quit IRC | 03:50 | |
*** RaFromBRC has joined #zope3-dev | 03:54 | |
*** J1m has joined #zope3-dev | 04:08 | |
*** J1m has quit IRC | 04:09 | |
*** rcrafton has quit IRC | 04:12 | |
*** jodok has quit IRC | 04:33 | |
*** niemeyer has quit IRC | 04:36 | |
*** jeffk has joined #zope3-dev | 04:38 | |
*** rcrafton has joined #zope3-dev | 04:38 | |
*** quodt has joined #zope3-dev | 04:45 | |
*** RaFromBRC has quit IRC | 05:15 | |
*** whit has joined #zope3-dev | 05:27 | |
*** natea|boston has quit IRC | 05:34 | |
*** pcardune has quit IRC | 05:34 | |
*** whitmo has joined #zope3-dev | 05:38 | |
*** whit has quit IRC | 05:38 | |
*** dunny has quit IRC | 05:46 | |
*** ktwilight_ has quit IRC | 05:48 | |
*** ktwilight_ has joined #zope3-dev | 05:49 | |
*** whitmo has quit IRC | 05:59 | |
*** natea|boston has joined #zope3-dev | 06:04 | |
*** natea_ has joined #zope3-dev | 06:06 | |
*** natea|boston has quit IRC | 06:06 | |
*** pcardune has joined #zope3-dev | 06:09 | |
*** natea|boston has joined #zope3-dev | 06:17 | |
*** rcrafton has quit IRC | 06:18 | |
*** natea_ has quit IRC | 06:19 | |
*** quodt_ has joined #zope3-dev | 06:21 | |
*** quodt has quit IRC | 06:21 | |
*** natea_ has joined #zope3-dev | 06:22 | |
*** jeffk has quit IRC | 06:23 | |
*** stub has joined #zope3-dev | 06:24 | |
*** natea__ has joined #zope3-dev | 06:25 | |
*** natea|boston has quit IRC | 06:29 | |
*** natea__ has quit IRC | 06:31 | |
*** natea|boston has joined #zope3-dev | 06:31 | |
*** natea_ has quit IRC | 06:34 | |
*** natea|boston has quit IRC | 06:36 | |
*** natea|boston has joined #zope3-dev | 06:37 | |
*** ktwilight_ has quit IRC | 06:37 | |
*** ktwilight_ has joined #zope3-dev | 06:40 | |
*** natea|boston has quit IRC | 07:02 | |
*** natea|boston has joined #zope3-dev | 07:05 | |
*** natea_ has joined #zope3-dev | 07:06 | |
*** natea|boston has quit IRC | 07:06 | |
*** natea_ has quit IRC | 07:06 | |
*** natea|boston has joined #zope3-dev | 07:08 | |
*** natea_ has joined #zope3-dev | 07:17 | |
*** natea|boston has quit IRC | 07:17 | |
*** pcardune_ has joined #zope3-dev | 07:25 | |
*** natea|boston has joined #zope3-dev | 07:35 | |
*** natea_ has quit IRC | 07:35 | |
*** natea|boston has quit IRC | 07:37 | |
*** natea|boston has joined #zope3-dev | 07:37 | |
*** natea|boston has joined #zope3-dev | 07:38 | |
*** natea|boston has quit IRC | 07:38 | |
*** natea|boston has joined #zope3-dev | 07:40 | |
*** quodt has joined #zope3-dev | 07:42 | |
*** quodt_ has quit IRC | 07:42 | |
*** natea_ has joined #zope3-dev | 07:43 | |
*** quodt has quit IRC | 07:43 | |
*** pcardune has quit IRC | 07:43 | |
*** quodt has joined #zope3-dev | 07:44 | |
*** ktwilight_ has quit IRC | 07:44 | |
*** natea_ has quit IRC | 07:44 | |
*** natea|boston has quit IRC | 07:45 | |
*** ktwilight_ has joined #zope3-dev | 07:45 | |
*** natea|boston has joined #zope3-dev | 07:45 | |
*** natea|boston has quit IRC | 07:47 | |
*** natea|boston has joined #zope3-dev | 07:48 | |
*** ktwilight_ has quit IRC | 07:54 | |
*** ktwilight_ has joined #zope3-dev | 07:55 | |
*** mcdonc has quit IRC | 08:01 | |
*** mcdonc has joined #zope3-dev | 08:01 | |
*** stub has quit IRC | 08:12 | |
*** doluu has quit IRC | 08:17 | |
*** afd_ has joined #zope3-dev | 08:30 | |
*** afd__ has joined #zope3-dev | 08:43 | |
*** b52laptop has quit IRC | 08:45 | |
*** b52laptop has joined #zope3-dev | 08:46 | |
*** lisppaste6 has quit IRC | 08:48 | |
*** stub has joined #zope3-dev | 08:53 | |
*** afd_ has quit IRC | 09:00 | |
*** greenman has joined #zope3-dev | 09:09 | |
*** lisppaste6 has joined #zope3-dev | 09:11 | |
*** jukart has joined #zope3-dev | 09:11 | |
*** afd__ has quit IRC | 09:52 | |
*** rmarianski has joined #zope3-dev | 10:04 | |
*** jodok has joined #zope3-dev | 10:08 | |
*** quodt_ has joined #zope3-dev | 10:11 | |
*** quodt has quit IRC | 10:11 | |
*** quodt has joined #zope3-dev | 10:12 | |
*** quodt_ has quit IRC | 10:12 | |
*** quodt_ has joined #zope3-dev | 10:19 | |
*** quodt has quit IRC | 10:19 | |
*** quodt_ has quit IRC | 10:20 | |
*** quodt has joined #zope3-dev | 10:21 | |
*** ktwilight_ has quit IRC | 10:26 | |
*** ktwilight_ has joined #zope3-dev | 10:26 | |
*** stub has quit IRC | 10:30 | |
*** jodok has quit IRC | 10:38 | |
*** pcardune_ has quit IRC | 10:39 | |
*** quodt has quit IRC | 10:39 | |
*** quodt has joined #zope3-dev | 10:39 | |
*** quodt_ has joined #zope3-dev | 10:43 | |
*** quodt has quit IRC | 10:43 | |
*** quodt has joined #zope3-dev | 10:46 | |
*** quodt_ has quit IRC | 10:46 | |
*** quodt has quit IRC | 10:47 | |
*** quodt has joined #zope3-dev | 10:48 | |
*** quodt_ has joined #zope3-dev | 10:51 | |
*** quodt has quit IRC | 10:51 | |
*** d2m has joined #zope3-dev | 10:56 | |
*** tarek has joined #zope3-dev | 10:57 | |
*** quodt has joined #zope3-dev | 10:59 | |
*** quodt_ has quit IRC | 10:59 | |
*** dobee has joined #zope3-dev | 11:09 | |
*** goschtl has joined #zope3-dev | 11:12 | |
*** timte has quit IRC | 11:13 | |
*** quodt has quit IRC | 11:13 | |
*** quodt has joined #zope3-dev | 11:13 | |
*** malthe has joined #zope3-dev | 11:17 | |
*** dobee has quit IRC | 11:17 | |
*** afd_ has joined #zope3-dev | 11:26 | |
*** timte has joined #zope3-dev | 11:37 | |
*** tarek has quit IRC | 11:42 | |
*** tarek has joined #zope3-dev | 11:44 | |
*** quodt has quit IRC | 11:50 | |
*** quodt has joined #zope3-dev | 11:51 | |
*** wreutz has joined #zope3-dev | 11:53 | |
*** stub has joined #zope3-dev | 12:05 | |
*** jukart has quit IRC | 12:08 | |
*** wreutz has quit IRC | 12:08 | |
*** dunny has joined #zope3-dev | 12:16 | |
*** flox has joined #zope3-dev | 12:16 | |
*** quodt has quit IRC | 12:16 | |
*** quodt has joined #zope3-dev | 12:17 | |
*** quodt_ has joined #zope3-dev | 12:19 | |
*** quodt has quit IRC | 12:19 | |
*** regebro has joined #zope3-dev | 12:20 | |
*** quodt has joined #zope3-dev | 12:21 | |
*** quodt_ has quit IRC | 12:21 | |
*** zagy has joined #zope3-dev | 12:24 | |
*** dobee has joined #zope3-dev | 12:30 | |
*** pcardune has joined #zope3-dev | 12:35 | |
*** quodt has quit IRC | 12:43 | |
*** stub has quit IRC | 12:45 | |
*** pcardune has quit IRC | 12:45 | |
*** faassen has joined #zope3-dev | 13:00 | |
*** greenman has quit IRC | 13:07 | |
*** norro has joined #zope3-dev | 13:09 | |
*** dunny has quit IRC | 13:12 | |
*** quodt has joined #zope3-dev | 13:20 | |
*** pcardune has joined #zope3-dev | 13:25 | |
*** malthe has quit IRC | 13:32 | |
*** jukart has joined #zope3-dev | 13:44 | |
*** wreutz has joined #zope3-dev | 13:44 | |
*** grahal has joined #zope3-dev | 13:48 | |
*** zagy has quit IRC | 13:52 | |
*** regebro has quit IRC | 14:15 | |
*** whitmo has joined #zope3-dev | 14:16 | |
*** stub has joined #zope3-dev | 14:18 | |
*** malthe has joined #zope3-dev | 14:19 | |
*** stub has quit IRC | 14:21 | |
*** stub has joined #zope3-dev | 14:21 | |
*** RB2 has joined #zope3-dev | 14:22 | |
*** zagy has joined #zope3-dev | 14:32 | |
*** Jell-O-Fishi has quit IRC | 14:44 | |
*** faassen has left #zope3-dev | 14:48 | |
*** wreutz has quit IRC | 14:50 | |
*** jukart has quit IRC | 14:56 | |
*** faassen has joined #zope3-dev | 14:59 | |
*** tarek has quit IRC | 15:01 | |
*** whitmo has quit IRC | 15:05 | |
*** goschtl has quit IRC | 15:06 | |
*** rmarianski has quit IRC | 15:06 | |
*** whit has joined #zope3-dev | 15:19 | |
*** jukart has joined #zope3-dev | 15:29 | |
*** goschtl has joined #zope3-dev | 15:43 | |
*** ktenney has joined #zope3-dev | 15:49 | |
*** romanofski has joined #zope3-dev | 15:58 | |
*** stub has quit IRC | 15:59 | |
*** reco has joined #zope3-dev | 16:05 | |
*** wreutz has joined #zope3-dev | 16:06 | |
*** jukart has quit IRC | 16:10 | |
*** rmarianski has joined #zope3-dev | 16:13 | |
*** foodels has quit IRC | 16:14 | |
*** whit has quit IRC | 16:14 | |
*** jukart has joined #zope3-dev | 16:15 | |
*** wreutz has quit IRC | 16:15 | |
*** foodels has joined #zope3-dev | 16:16 | |
*** jukart has quit IRC | 16:22 | |
*** romanofski has quit IRC | 16:27 | |
*** jpcw2002 has joined #zope3-dev | 16:31 | |
*** wreutz has joined #zope3-dev | 16:36 | |
*** jukart has joined #zope3-dev | 16:36 | |
*** jodok has joined #zope3-dev | 16:50 | |
*** alecm has joined #zope3-dev | 16:54 | |
*** whit has joined #zope3-dev | 16:57 | |
*** jodok has quit IRC | 16:59 | |
*** hazmat has joined #zope3-dev | 17:07 | |
*** ChanServ sets mode: +o hazmat | 17:07 | |
*** tarek has joined #zope3-dev | 17:14 | |
*** jukart has quit IRC | 17:45 | |
*** jukart has joined #zope3-dev | 17:56 | |
*** J1m has joined #zope3-dev | 17:56 | |
*** jukart has quit IRC | 18:02 | |
*** faassen has joined #zope3-dev | 18:11 | |
*** rmarianski has quit IRC | 18:17 | |
*** jodok has joined #zope3-dev | 18:20 | |
*** dunny has joined #zope3-dev | 19:02 | |
*** andres has joined #zope3-dev | 19:03 | |
*** rcrafton has joined #zope3-dev | 19:15 | |
*** rmarianski has joined #zope3-dev | 19:16 | |
*** jukart has joined #zope3-dev | 19:21 | |
*** danielblackburn has joined #zope3-dev | 19:23 | |
*** jodok has quit IRC | 19:41 | |
*** danielblackburn has quit IRC | 19:50 | |
*** kobold has quit IRC | 19:50 | |
*** kobold has joined #zope3-dev | 19:51 | |
*** alecm has quit IRC | 19:55 | |
*** alecm has joined #zope3-dev | 19:55 | |
*** dunny has quit IRC | 19:57 | |
*** jpcw2002 has quit IRC | 19:58 | |
*** mcdonc has quit IRC | 20:00 | |
*** mcdonc has joined #zope3-dev | 20:00 | |
*** hazmat has quit IRC | 20:00 | |
*** tarek has quit IRC | 20:01 | |
*** wreutz has quit IRC | 20:01 | |
*** jukart has quit IRC | 20:01 | |
*** quodt has quit IRC | 20:01 | |
*** tarek has joined #zope3-dev | 20:02 | |
*** romanofski has joined #zope3-dev | 20:05 | |
*** tarek has quit IRC | 20:13 | |
*** pcardune has quit IRC | 20:15 | |
*** jodok has joined #zope3-dev | 20:39 | |
*** mweichert has joined #zope3-dev | 20:41 | |
*** jodok has quit IRC | 20:41 | |
J1m | Theuni, ayt? | 20:53 |
J1m | Theuni, should I make a ZODB 3.8 final release? | 20:54 |
J1m | srichter, ? | 20:54 |
*** afd_ has quit IRC | 21:00 | |
*** quodt has joined #zope3-dev | 21:04 | |
*** tarek has joined #zope3-dev | 21:07 | |
*** wreutz has joined #zope3-dev | 21:08 | |
*** danielblackburn_ has joined #zope3-dev | 21:11 | |
malthe | what's this about: Download error: unknown url type: svn -- Some packages may not be found! | 21:13 |
malthe | 21:13 | |
*** jodok has joined #zope3-dev | 21:13 | |
*** danielblackburn_ has quit IRC | 21:20 | |
*** danielblackburn_ has joined #zope3-dev | 21:23 | |
Theuni | J1m: hmm. sure. nothing that really blocks it imho. | 21:25 |
J1m | OK, so I'lll go ahead and make a final release this weekend. (This is a long weekend here. Monday is Martin-Luther King day.) | 21:27 |
J1m | ot, I put the version arguments back in the storage interfaces. | 21:27 |
*** dunny has joined #zope3-dev | 21:27 | |
*** danielblackburn_ has quit IRC | 21:34 | |
*** wreutz has quit IRC | 21:34 | |
*** ccomb has quit IRC | 21:48 | |
*** ccomb has joined #zope3-dev | 21:55 | |
Theuni | J1m: ok cool. thanks for the version arguments. i didn't yet get around to do that. | 22:01 |
*** wreutz has joined #zope3-dev | 22:02 | |
Theuni | i'll be on the road next week and will try to work on the bugs we found in the last weeks | 22:03 |
*** jodok has quit IRC | 22:12 | |
*** danielblackburn has joined #zope3-dev | 22:13 | |
*** jodok has joined #zope3-dev | 22:15 | |
*** danielblackburn has quit IRC | 22:24 | |
*** greenman has joined #zope3-dev | 22:25 | |
*** zagy has quit IRC | 22:29 | |
J1m | Theuni, did you end up finding a cache bug? | 22:32 |
*** greenman has quit IRC | 22:32 | |
*** harobed has joined #zope3-dev | 22:43 | |
*** romanofski has quit IRC | 22:50 | |
*** greenman has joined #zope3-dev | 22:50 | |
*** J1m has quit IRC | 23:06 | |
*** danielblackburn has joined #zope3-dev | 23:08 | |
*** alecm_ has joined #zope3-dev | 23:17 | |
*** alecm has quit IRC | 23:18 | |
*** danielblackburn has quit IRC | 23:24 | |
*** ktenney has left #zope3-dev | 23:36 | |
*** J1m has joined #zope3-dev | 23:44 | |
*** reco has quit IRC | 23:44 | |
*** jukart has joined #zope3-dev | 23:53 |
Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!