*** tarek_ has quit IRC | 00:04 | |
*** Aiste has joined #zope3-dev | 00:35 | |
*** bskahan has joined #zope3-dev | 00:36 | |
*** admp has quit IRC | 00:38 | |
*** Aiste has quit IRC | 00:45 | |
*** admp has joined #zope3-dev | 00:54 | |
*** admp has quit IRC | 00:56 | |
*** MiUlEr has joined #zope3-dev | 01:07 | |
*** ignas has quit IRC | 01:07 | |
*** bskahan has quit IRC | 01:10 | |
*** BjornT has quit IRC | 02:14 | |
*** bskahan has joined #zope3-dev | 02:55 | |
*** philiKON has joined #zope3-dev | 03:00 | |
*** C8N has quit IRC | 03:12 | |
*** projekt01 has left #zope3-dev | 03:16 | |
*** d2m has quit IRC | 03:55 | |
*** MiUlEr has quit IRC | 04:00 | |
*** bskahan has quit IRC | 04:40 | |
*** stub has joined #zope3-dev | 05:28 | |
*** bskahan has joined #zope3-dev | 05:41 | |
*** `anthony has quit IRC | 06:10 | |
*** bskahan has quit IRC | 06:13 | |
*** `anthony has joined #zope3-dev | 07:23 | |
*** viyyer has joined #zope3-dev | 08:17 | |
*** stub has quit IRC | 08:17 | |
*** RaFromBRC has joined #zope3-dev | 08:25 | |
*** zagy has quit IRC | 08:35 | |
*** zagy has joined #zope3-dev | 08:35 | |
zagy | morning | 08:36 |
---|---|---|
*** stub has joined #zope3-dev | 08:48 | |
*** RaFromBRC has quit IRC | 09:03 | |
*** hdima has joined #zope3-dev | 09:33 | |
*** Aiste has joined #zope3-dev | 09:49 | |
*** hazmat has joined #zope3-dev | 09:58 | |
*** stub has quit IRC | 10:15 | |
*** stub has joined #zope3-dev | 10:16 | |
*** projekt01 has joined #zope3-dev | 10:37 | |
*** tarek_ has joined #zope3-dev | 10:43 | |
*** lunatik has joined #zope3-dev | 10:45 | |
*** Aiste has quit IRC | 10:50 | |
*** sashav has joined #zope3-dev | 11:10 | |
*** Aiste has joined #zope3-dev | 11:27 | |
*** mooded has joined #zope3-dev | 11:27 | |
projekt01 | srichter, ayt? | 11:50 |
*** alga has joined #zope3-dev | 11:51 | |
projekt01 | Can somebody tell me why we use a RegistrationManager and not only use the items in the RegisterableContainer??? | 11:54 |
*** d2m has joined #zope3-dev | 11:55 | |
*** htd has joined #zope3-dev | 11:57 | |
*** apoirier has joined #zope3-dev | 11:59 | |
*** efge has joined #zope3-dev | 11:59 | |
*** Theuni has joined #zope3-dev | 12:00 | |
*** sarca has joined #zope3-dev | 12:06 | |
*** viyyer has quit IRC | 12:06 | |
*** vlado has joined #zope3-dev | 12:09 | |
Aiste | hi Theuni | 12:11 |
Theuni | jo | 12:12 |
Theuni | came back alive? | 12:12 |
*** sarca is now known as viyyer | 12:12 | |
*** mgedmin has joined #zope3-dev | 12:13 | |
Aiste | Theuni: just about :) was totally dead the whole sunday | 12:19 |
Theuni | hehe | 12:19 |
Theuni | pretty much the same over here | 12:19 |
*** viyyer has quit IRC | 12:23 | |
*** htd has quit IRC | 12:52 | |
*** hazmat has quit IRC | 13:07 | |
*** tarek_ is now known as tarek | 13:32 | |
*** faassen has joined #zope3-dev | 13:42 | |
*** ignas has joined #zope3-dev | 14:00 | |
*** `anthony has quit IRC | 14:08 | |
srichter | projekt01: because registrations are independent of the object | 14:11 |
srichter | also, not all objects inside a registerable container must be registerable/registered | 14:12 |
srichter | that said, Jim has some ideas on how to simplify this even more | 14:12 |
*** bskahan has joined #zope3-dev | 14:14 | |
*** MiUlEr has joined #zope3-dev | 14:14 | |
SteveA | argh | 14:17 |
SteveA | if you start up zope with a command line option | 14:17 |
SteveA | python z3.py -C zope.conf.in | 14:17 |
SteveA | then any HTTP requests that lack a query string in the URL will get "-C":"" as an item in request.form | 14:18 |
SteveA | this is because the request uses python's cgi.py | 14:18 |
SteveA | which has an INSANE use of sys.argv | 14:18 |
SteveA | if method == 'GET' or method == 'HEAD': | 14:18 |
SteveA | if 'QUERY_STRING' in environ: | 14:18 |
SteveA | qs = environ['QUERY_STRING'] | 14:18 |
SteveA | elif sys.argv[1:]: | 14:18 |
SteveA | qs = sys.argv[1] | 14:18 |
SteveA | else: | 14:18 |
SteveA | qs = "" | 14:18 |
SteveA | line 444 onwards | 14:19 |
SteveA | i mean, WTF | 14:19 |
SteveA | ? | 14:19 |
srichter | just check in a fix :-) | 14:28 |
*** lunatik has left #zope3-dev | 14:28 | |
SteveA | i don't know what the fix is | 14:28 |
*** srichter has quit IRC | 14:28 | |
SteveA | and it needs a test | 14:28 |
*** viyyer has joined #zope3-dev | 14:29 | |
SteveA | and it should probably be fixed in python | 14:30 |
*** sashav has quit IRC | 14:44 | |
*** sashav has joined #zope3-dev | 15:03 | |
*** `anthony has joined #zope3-dev | 15:05 | |
hdima | SteveA: can we just check for 'QUERY_STRING' presence and set it to "" if needed? | 15:07 |
*** srichter has joined #zope3-dev | 15:09 | |
SteveA | hdima: yeah, guess so | 15:15 |
hdima | SteveA: ok, I'll try to fix it with tests | 15:15 |
*** __gotcha has joined #zope3-dev | 15:16 | |
*** vlado has quit IRC | 15:16 | |
*** vlado_ has joined #zope3-dev | 15:16 | |
*** ChanServ sets mode: +o srichter | 15:17 | |
*** regebro has joined #zope3-dev | 15:19 | |
SteveA | hdima: cool! | 15:34 |
*** mgedmin has quit IRC | 15:36 | |
*** FarcePest has joined #zope3-dev | 15:40 | |
*** alga has quit IRC | 15:44 | |
hdima | SteveA: fixed on trunk at rev 29941 | 15:54 |
SteveA | cool, thanks | 15:54 |
SteveA | http://www.zope.org/Collectors/Zope3-dev/394 | 15:55 |
SteveA | you can have the kudos of closing the bug the same day it was opened! | 15:55 |
hdima | :-) thanks! | 15:56 |
*** [apoirier] has joined #zope3-dev | 16:00 | |
*** apoirier has quit IRC | 16:01 | |
*** alga has joined #zope3-dev | 16:08 | |
*** niemeyer has joined #zope3-dev | 16:12 | |
*** viyyer has quit IRC | 16:16 | |
*** __gotcha has quit IRC | 16:22 | |
*** MiUlEr has quit IRC | 16:31 | |
*** MiUlEr has joined #zope3-dev | 16:41 | |
*** sashav has quit IRC | 16:59 | |
*** MiUlEr has quit IRC | 17:05 | |
*** alga has quit IRC | 17:05 | |
*** hdima has quit IRC | 17:14 | |
*** mwh2 has joined #zope3-dev | 17:15 | |
*** mgedmin has joined #zope3-dev | 17:18 | |
*** alga has joined #zope3-dev | 17:24 | |
mwh2 | http://www.zope.org/Wikis/DevSite/Projects/ComponentArchitecture/FAQ is somewhat out of date | 17:27 |
mwh2 | i guess that's not surprising | 17:27 |
srichter | mwh2: yes it is | 17:28 |
srichter | it should get the Outdated status flag | 17:28 |
mwh2 | the roadmap is too? | 17:29 |
mwh2 | it says something about X3.1 last december... | 17:29 |
srichter | it probably is | 17:29 |
srichter | yeah, definitely | 17:30 |
mwh2 | ho hum | 17:30 |
mwh2 | is there any way to work out what the status is? | 17:30 |
mwh2 | i suppose mailing lists... | 17:30 |
srichter | if you are a zope.org poweruser, then you can just change the status yourself | 17:34 |
mwh2 | not exactly :) | 17:34 |
mwh2 | i'm not sure i even have an account there any more | 17:35 |
srichter | I see | 17:35 |
srichter | then sending a mail to the list will be most fruitful | 17:35 |
mwh2 | well, i'm guessing that some of the zope3 introductory documents are a touch out of date isn't exactly news? | 17:41 |
srichter | well, there are so many, so I am just not surprised they are | 17:41 |
*** gintas has joined #zope3-dev | 17:53 | |
*** mwh2 has quit IRC | 17:59 | |
*** tvon has joined #zope3-dev | 18:10 | |
*** tvon has quit IRC | 18:15 | |
*** tvon|x31 has joined #zope3-dev | 18:18 | |
*** tvon|x31 is now known as tvon | 18:20 | |
*** `anthony has quit IRC | 18:31 | |
*** `anthony has joined #zope3-dev | 18:32 | |
*** srichter has quit IRC | 18:39 | |
*** srichter has joined #zope3-dev | 18:39 | |
*** ChanServ sets mode: +o srichter | 18:39 | |
*** admp has joined #zope3-dev | 18:40 | |
*** hazmat has joined #zope3-dev | 18:43 | |
*** stub has quit IRC | 18:47 | |
*** regebro has quit IRC | 18:47 | |
*** efge has quit IRC | 18:48 | |
*** regebro has joined #zope3-dev | 18:51 | |
*** [apoirier] has quit IRC | 18:53 | |
*** mooded has quit IRC | 18:55 | |
*** efge has joined #zope3-dev | 19:05 | |
*** gintas has quit IRC | 19:16 | |
*** gintas has joined #zope3-dev | 19:17 | |
*** hazmat has quit IRC | 19:22 | |
*** Theuni has quit IRC | 19:22 | |
*** bradb has quit IRC | 19:27 | |
*** bskahan has quit IRC | 19:27 | |
*** _projekt01 has joined #zope3-dev | 19:32 | |
*** projekt01 has quit IRC | 19:32 | |
philiKON | srichter, we need a better web presence for zope3 | 19:39 |
philiKON | not a longish URL that is hard-to-navigate wiki | 19:39 |
philiKON | not a longish URL that is a hard-to-navigate wiki | 19:40 |
Damascene | philiKON: you mean http://www.zope.org/DevHome/Wikis/DevSite/Projects/ComponentArchitecture/FrontPage ? | 19:41 |
*** faassen has left #zope3-dev | 19:42 | |
philiKON | err, right | 19:42 |
*** vlado_ is now known as vlado|away | 19:42 | |
philiKON | we need a dogbowl | 19:43 |
philiKON | zope3.org run on a z3 site | 19:43 |
*** faassen has joined #zope3-dev | 19:43 | |
Damascene | that would be nice. ;) | 19:46 |
philiKON | and maybe a little too ambitious | 19:47 |
Damascene | actually, is content meant to be managed completely in zodb? also, what ist he primary interface for managing content? only the web? is zsync still going to be in use? or is it deprecated? | 19:47 |
*** tarek has quit IRC | 19:47 | |
Damascene | well if zope x3 is as usable as claimed, it should be easy, right? :) | 19:47 |
philiKON | no | 19:47 |
philiKON | it shouldn't and it isn't | 19:47 |
philiKON | it hopefully will in the future, though | 19:48 |
Damascene | sorry i asked too many questions at once. is your no, it shouldn't, etc with regards to zsync or the zopex3 being usable? | 19:48 |
philiKON | the latter | 19:48 |
philiKON | not sure what the story about zsync's future is | 19:48 |
philiKON | as for data storage in zodb or not: you decide | 19:49 |
Damascene | philiKON: it doesn't seem that clear to easily separate it from zodb though? | 19:49 |
philiKON | as for the user interface for managing content: you decide :) (most probalby the web, though, but you can have WebDAV, XML-RPC, FTP, etc.) | 19:49 |
Damascene | well i like doing it via ssh/vim on teh filesystem. | 19:49 |
*** bskahan has joined #zope3-dev | 19:49 | |
philiKON | Damascene, separate what from zodb? | 19:50 |
Damascene | philiKON: general content. | 19:50 |
philiKON | ssh? | 19:50 |
philiKON | Damascene, well, it's very easy; just don't inherit from "Persistent" but manage data in another way | 19:50 |
*** tarek has joined #zope3-dev | 19:57 | |
*** xenru has joined #zope3-dev | 19:57 | |
*** hazmat has joined #zope3-dev | 20:00 | |
*** xenru has quit IRC | 20:02 | |
Damascene | philiKON: hm i suppose so. i tried looking into sqlos, but i remember running into a lot of little issues since i like braeking out my data into a lot of tables heh. | 20:02 |
*** deo has joined #zope3-dev | 20:33 | |
*** gintas has quit IRC | 20:37 | |
*** bradb has joined #zope3-dev | 20:57 | |
*** alga has quit IRC | 21:02 | |
*** faassen has quit IRC | 21:08 | |
*** ignas has quit IRC | 21:36 | |
*** mgedmin has quit IRC | 21:51 | |
*** __gotcha has joined #zope3-dev | 21:54 | |
srichter | philiKON: I am not really interested on working a zope3.org site anymore, unless we have some HTML/CSS design people on board to make it good looking | 22:02 |
*** mkerrin has joined #zope3-dev | 22:11 | |
*** bradb has quit IRC | 22:38 | |
*** efge has left #zope3-dev | 22:42 | |
*** regebro has quit IRC | 22:58 | |
*** tvon has quit IRC | 23:06 | |
*** bradb has joined #zope3-dev | 23:21 | |
*** mkerrin has quit IRC | 23:37 | |
*** th1a has quit IRC | 23:41 | |
*** th1a has joined #zope3-dev | 23:47 |
Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!