*** pcardune has joined #zope3-dev | 00:02 | |
ayers | instantfoo: My function already returns a tempfile but I'm not quite sure what you mean by adding a @property decorator | 00:02 |
---|---|---|
*** natea_ has joined #zope3-dev | 00:05 | |
ayers | I've also tried returning a zope.app.file.file File with the same results | 00:09 |
philiKON | ayers: first of all you need to think of a reproducible URL of that temporary file | 00:11 |
*** b52lap has joined #zope3-dev | 00:11 | |
philiKON | let's say you have http://localhost/path/foo which resolves to this object that has the Bytes attribute | 00:11 |
philiKON | then you could make the Bytes contents available for download at e.g. http://localhost/path/foo/download | 00:12 |
philiKON | which means you want to write a view for the 'foo' object called 'download' | 00:12 |
*** b52lap has quit IRC | 00:12 | |
*** natea has quit IRC | 00:12 | |
philiKON | in that view, you simply return the bytes data to the client | 00:13 |
philiKON | an efficient way of doing that is to write the data to a temp file and simply return that tempfile | 00:13 |
philiKON | the zope publisher will efficiently stream the data to the client | 00:14 |
philiKON | this is explained in my book, for example. http://worldcookery.com | 00:14 |
ayers | philiKON: Thanks... but are you sure that the tempfile should work? (I tried to extrapolate from the PDF code in the book. | 00:15 |
philiKON | what do you mean am i sure? you think i write bollocks in my book? ;) | 00:15 |
ayers | But returning the tempfile gave me the TypeError | 00:15 |
ayers | No :-) | 00:16 |
ayers | I think I'm just missing some fundamental detail | 00:16 |
philiKON | show me the traceback pls | 00:16 |
ayers | sure: | 00:16 |
philiKON | not here please | 00:17 |
philiKON | please paste it somewhere | 00:17 |
ayers | ACK... the app just takes a few until it's up... | 00:20 |
philiKON | sure, np | 00:21 |
lisppaste6 | ayers pasted "tempfile rendering traceback" at http://paste.lisp.org/display/45413 | 00:27 |
*** rcrafton has quit IRC | 00:29 | |
*** benji has quit IRC | 00:29 | |
*** nerdalert has quit IRC | 00:30 | |
ayers | philiKON: does that help you already? | 00:32 |
* philiKON takes a look | 00:32 | |
philiKON | hmmm | 00:33 |
philiKON | NamedTemporaryFile | 00:33 |
philiKON | have you tried the not-named version? | 00:33 |
*** bigkevmcd has quit IRC | 00:33 | |
philiKON | i think it's called TemporaryFile | 00:33 |
philiKON | that should work | 00:33 |
philiKON | i'm surprised that NamedTemporaryFile doesn't work | 00:33 |
ayers | I can try with TemporaryFile just a sec.... | 00:34 |
philiKON | if so, that shoudl be fixed | 00:34 |
philiKON | but | 00:34 |
philiKON | you don't really need the NamedTempFile anyway | 00:34 |
philiKON | btw, this code is probably best put directly into the browser page | 00:35 |
*** ferrafox has joined #zope3-dev | 00:37 | |
ayers | Wow!!! that did make the difference! | 00:37 |
ayers | s/NamedTemporaryFile/TemporaryFile/ | 00:37 |
*** norro has quit IRC | 00:38 | |
ayers | I would love to have it in the browser page... | 00:38 |
*** RaFromBRC is now known as RaFromBRC|away | 00:50 | |
*** eldar has quit IRC | 00:50 | |
*** marianom has left #zope3-dev | 00:53 | |
*** torkel_ has joined #zope3-dev | 00:54 | |
*** lucielejard has quit IRC | 00:55 | |
*** AVN` has quit IRC | 01:04 | |
*** netshade_ has quit IRC | 01:05 | |
*** timte has quit IRC | 01:07 | |
*** fcorrea has quit IRC | 01:07 | |
*** romanofs1i has joined #zope3-dev | 01:07 | |
*** pcardune has quit IRC | 01:13 | |
*** sm-afk is now known as sm | 01:13 | |
*** rocky is now known as rocky|away | 01:13 | |
*** romanofski has quit IRC | 01:19 | |
*** RaFromBRC|away is now known as RaFromBRC | 01:21 | |
*** natea_ is now known as natea|away | 01:22 | |
*** oferw has joined #zope3-dev | 01:25 | |
*** faassen has quit IRC | 01:29 | |
*** whit_ has joined #zope3-dev | 01:30 | |
*** whit has quit IRC | 01:30 | |
*** csmiga has left #zope3-dev | 01:34 | |
edgordon | i am having a lot of trouble setting up a container constraint based on a local utility. my main problem is that the zcmi 'add' menu doesn't seem to respect my constraints. it still shows items as addable even though adding them will return the (correct) Invalid error. do i just need to make a custom menu to get this done? | 01:37 |
*** ktwilight_ has quit IRC | 01:39 | |
*** oferw has quit IRC | 01:39 | |
*** edgordon has quit IRC | 01:40 | |
*** ktwilight has joined #zope3-dev | 01:41 | |
*** edgordon has joined #zope3-dev | 01:42 | |
edgordon | ugh. love when my battery dies just after i ask a question | 01:42 |
instantfoo | :) | 01:42 |
nathany | anyone know of a buildout recipe for compiling .po files -> .mo files? | 01:43 |
*** whit_ has quit IRC | 01:45 | |
*** whit has joined #zope3-dev | 01:46 | |
*** nathany has quit IRC | 01:54 | |
*** nathany has joined #zope3-dev | 01:54 | |
ayers | philiKON: Thanks a lot... I've been able to reduce my code to the view that configures the response and returns the temporary file... know I'm trying to find a way to create a link to the uri as you mentioned above [the URI itself already works, I just would like I link in the object's form]... I suppose I need to play with a URI attribute in the schema... | 02:00 |
*** natea|away_ has joined #zope3-dev | 02:00 | |
philiKON | why so complicated? | 02:01 |
philiKON | just link to ${obj/@@absolute_url}/download | 02:01 |
philiKON | (provided that 'download' is the name of the view you wrote) | 02:01 |
*** jsadjohnson has quit IRC | 02:03 | |
* ayers is a newbie... and still needs to wade through lots of documentation... | 02:03 | |
ayers | Thanks for the pointer... let me see what I can come up with. | 02:04 |
*** natea|away has quit IRC | 02:07 | |
*** jodok has quit IRC | 02:09 | |
sm | wiki.zope.org going down for a sec | 02:14 |
*** nathany has quit IRC | 02:20 | |
ayers | philiKON: Thanks, I've got the link on the page... but actually I think I'd like to tie it in as a "custom widget" for the Bytes attribute [so that it is rendered at the 'correct' place with the rest of the attributes]. Let me see if I can do that by following the examples in Chapter 8... | 02:20 |
*** torkel_ has quit IRC | 02:25 | |
*** ktwilight_ has joined #zope3-dev | 02:30 | |
instantfoo | ayers: sorry for not answering you earlier, but I guess philiKON gave a decent answer ;) | 02:34 |
*** torkel_ has joined #zope3-dev | 02:36 | |
instantfoo | now I have a Q, before reloading a mo-file it displays one of my translations as "Save", as expected.. but.. | 02:38 |
instantfoo | when i reload the mo-file, not changing a single thing, it all of displays this translation as "heading-save" instead of the earlier "Save" | 02:39 |
instantfoo | any ideas what causes this? I didn't even change anything.. just reloaded mo-file | 02:39 |
*** sm is now known as ba1 | 02:39 | |
*** ba1 is now known as sm | 02:40 | |
*** jsadjohnson has joined #zope3-dev | 02:40 | |
instantfoo | btw, the default for this one is "Save" and the msgstr is "" | 02:40 |
*** ktwilight has quit IRC | 02:46 | |
instantfoo | i mean... the msgid shouldn't be displayed when there is a Default set? | 02:54 |
philiKON | right | 02:54 |
philiKON | sounds like a bug | 02:54 |
*** b52laptop has quit IRC | 02:56 | |
*** jinty_ has quit IRC | 03:00 | |
instantfoo | i'm gonna mess around some more here, see what happens | 03:02 |
*** torkel__ has joined #zope3-dev | 03:02 | |
*** torkel___ has joined #zope3-dev | 03:07 | |
*** huajie has joined #zope3-dev | 03:12 | |
*** torkel__1 has joined #zope3-dev | 03:15 | |
*** jsadjohnson has quit IRC | 03:16 | |
*** torkel_ has quit IRC | 03:19 | |
*** rocky|away has quit IRC | 03:22 | |
*** ayers has left #zope3-dev | 03:22 | |
*** torkel__ has quit IRC | 03:23 | |
*** torkel___ has quit IRC | 03:27 | |
*** jsadjohnson has joined #zope3-dev | 03:51 | |
*** huajie has quit IRC | 03:58 | |
*** natea|away has joined #zope3-dev | 04:01 | |
*** natea|away_ has quit IRC | 04:09 | |
*** huajie has joined #zope3-dev | 04:11 | |
*** jsadjohnson has quit IRC | 04:15 | |
*** ferrafox has quit IRC | 04:21 | |
*** RaFromBRC has quit IRC | 04:25 | |
*** AVN` has joined #zope3-dev | 04:28 | |
*** jsadjohnson has joined #zope3-dev | 04:45 | |
*** torkel__1 has quit IRC | 04:46 | |
*** jsadjohnson has quit IRC | 04:57 | |
*** whit has quit IRC | 05:38 | |
*** whit has joined #zope3-dev | 05:38 | |
*** niemeyer has quit IRC | 05:43 | |
*** whit has quit IRC | 05:52 | |
*** whit has joined #zope3-dev | 05:58 | |
*** natea|away_ has joined #zope3-dev | 06:04 | |
*** whit has quit IRC | 06:12 | |
*** natea|away has quit IRC | 06:12 | |
*** whit has joined #zope3-dev | 06:18 | |
*** philiKON_ has joined #zope3-dev | 06:22 | |
*** natea|away has joined #zope3-dev | 06:25 | |
*** whit has quit IRC | 06:33 | |
*** natea|away_ has quit IRC | 06:34 | |
*** jukart_ has quit IRC | 06:34 | |
*** whit has joined #zope3-dev | 06:38 | |
*** philiKON has quit IRC | 06:39 | |
*** run|home has joined #zope3-dev | 07:02 | |
*** run|home has quit IRC | 07:07 | |
*** natea|away_ has joined #zope3-dev | 07:22 | |
*** stub has joined #zope3-dev | 07:24 | |
*** natea|away has quit IRC | 07:29 | |
*** chacha_chaudhry has joined #zope3-dev | 07:38 | |
*** baijum has joined #zope3-dev | 07:45 | |
*** greenman has joined #zope3-dev | 07:48 | |
*** stub has quit IRC | 07:51 | |
*** stub has joined #zope3-dev | 07:52 | |
*** natea|away has joined #zope3-dev | 07:53 | |
*** natea|away_ has quit IRC | 08:02 | |
*** cursor has joined #zope3-dev | 08:08 | |
*** natea|away_ has joined #zope3-dev | 08:11 | |
*** kleist has joined #zope3-dev | 08:11 | |
*** natea|away has quit IRC | 08:18 | |
*** sorin has joined #zope3-dev | 08:35 | |
*** sorin is now known as sorindregan | 08:35 | |
*** CSWookie has joined #zope3-dev | 08:45 | |
*** natea|away has joined #zope3-dev | 08:46 | |
*** kleist is now known as kleist^lurking | 08:47 | |
*** pcardune has joined #zope3-dev | 08:49 | |
*** natea|away_ has quit IRC | 08:54 | |
*** stub has quit IRC | 09:14 | |
*** regebro has joined #zope3-dev | 09:21 | |
*** dobee has joined #zope3-dev | 09:35 | |
*** romanofski has joined #zope3-dev | 09:39 | |
romanofski | moin :) | 09:41 |
*** timte has joined #zope3-dev | 09:43 | |
*** romanofs1i has quit IRC | 09:46 | |
*** jfroche has quit IRC | 09:51 | |
*** natea|away_ has joined #zope3-dev | 09:55 | |
*** dobee has quit IRC | 09:55 | |
*** jodok has joined #zope3-dev | 09:57 | |
*** natea|away has quit IRC | 10:01 | |
*** schwendinger has joined #zope3-dev | 10:07 | |
*** dobee has joined #zope3-dev | 10:09 | |
*** febb has joined #zope3-dev | 10:11 | |
*** febb has quit IRC | 10:13 | |
*** dobee has quit IRC | 10:13 | |
*** jodok has quit IRC | 10:18 | |
huajie | good morning romanofski | 10:19 |
*** natea|away has joined #zope3-dev | 10:22 | |
*** romanofski has quit IRC | 10:23 | |
*** Theuni has quit IRC | 10:24 | |
*** zagy has quit IRC | 10:24 | |
regebro | I have a memory of somebody using a specific name for eggs that have dots in the name, like zope.app.testing, zope.app.debug and so on. Was that dotted-path eggs, or something else? | 10:25 |
* regebro thought it was dotted-path eggs, but can't find any references to that.... | 10:26 | |
*** natea|away_ has quit IRC | 10:28 | |
wiggy | namespace eggs? | 10:30 |
wiggy | or namespace packages | 10:30 |
*** zagy has joined #zope3-dev | 10:31 | |
regebro | wiggy: yeah, that might it... | 10:31 |
*** romanofski has joined #zope3-dev | 10:32 | |
*** Theuni has joined #zope3-dev | 10:33 | |
*** dobee has joined #zope3-dev | 10:33 | |
regebro | WingIDE 2.1 doesn't seem to support it, namely. I need to request that 3.0 does. :-) | 10:34 |
*** dobee has left #zope3-dev | 10:34 | |
*** jodok has joined #zope3-dev | 10:34 | |
*** jodok has left #zope3-dev | 10:34 | |
*** bigkevmcd has joined #zope3-dev | 10:35 | |
wiggy | I'm quite sure MJ has a Wing version that supports them | 10:36 |
*** cursor has quit IRC | 10:37 | |
regebro | wiggy: Oh, cool. Who is MJ. :-) | 10:42 |
wiggy | martijn pieters | 10:43 |
wiggy | currently on vacation :) | 10:43 |
*** malthe has joined #zope3-dev | 10:43 | |
regebro | OK, nice. I'll mail him and see. | 10:44 |
regebro | Thanks. | 10:44 |
*** natea|away_ has joined #zope3-dev | 10:51 | |
*** natea|away has quit IRC | 10:57 | |
*** SteveA has quit IRC | 11:01 | |
*** SteveA has joined #zope3-dev | 11:01 | |
*** projekt01 has joined #zope3-dev | 11:05 | |
*** stub has joined #zope3-dev | 11:09 | |
*** cursor has joined #zope3-dev | 11:13 | |
*** malthe_ has joined #zope3-dev | 11:14 | |
*** malthe has quit IRC | 11:14 | |
*** pelle_ has joined #zope3-dev | 11:16 | |
*** jfroche has joined #zope3-dev | 11:24 | |
*** greenman has quit IRC | 11:38 | |
*** jinty has joined #zope3-dev | 11:44 | |
*** tarek has joined #zope3-dev | 11:48 | |
*** mkerrin has joined #zope3-dev | 11:55 | |
*** whit has quit IRC | 12:13 | |
*** whit has joined #zope3-dev | 12:13 | |
*** malthe_ is now known as malthe | 12:14 | |
*** b52laptop has joined #zope3-dev | 12:26 | |
*** whit has quit IRC | 12:27 | |
*** richardkan has joined #zope3-dev | 12:29 | |
*** bauer has joined #zope3-dev | 12:31 | |
bauer | web component development with Zope 3. Second Edition Chapter 7 fig. 7.1 wont work ? | 12:31 |
*** greenman has joined #zope3-dev | 12:32 | |
bauer | Look like zcml is ignored | 12:33 |
*** whit has joined #zope3-dev | 12:33 | |
*** junkafarian has joined #zope3-dev | 12:39 | |
junkafarian | morning * | 12:39 |
bauer | Okey where do i report an error in web component development with Zope 3. Second Edition ? | 12:50 |
romanofski | bauer: you mean phillips book? | 12:54 |
CSWookie | bauer: Likely you'd report it to publisher or auther. | 12:54 |
bauer | yes | 12:54 |
romanofski | join #worldcookery | 12:54 |
romanofski | and tell it philikon | 12:54 |
bauer | okey thx | 12:54 |
philiKON_ | bauer: please write me an email | 12:54 |
CSWookie | Hah! | 12:54 |
romanofski | Hah! | 12:54 |
CSWookie | #worldcookery. | 12:54 |
romanofski | it's the philiKON_ | 12:54 |
*** bauer has left #zope3-dev | 12:55 | |
*** ignas has joined #zope3-dev | 12:56 | |
* junkafarian is still having trouble with his FTP permissions problem from yesterday | 13:00 | |
junkafarian | sorry to be a pain :S | 13:01 |
*** huajie has quit IRC | 13:02 | |
*** kleist^lurking has quit IRC | 13:02 | |
*** faassen has joined #zope3-dev | 13:07 | |
*** ignas has quit IRC | 13:10 | |
*** ignas has joined #zope3-dev | 13:16 | |
*** ferrafox has joined #zope3-dev | 13:33 | |
*** zagy has quit IRC | 13:34 | |
*** pelle_ has quit IRC | 13:41 | |
*** pelle_ has joined #zope3-dev | 13:42 | |
*** projekt01 has quit IRC | 13:51 | |
*** zagy has joined #zope3-dev | 13:54 | |
*** benji has joined #zope3-dev | 14:16 | |
*** malthe has quit IRC | 14:19 | |
*** Newfie2007 has joined #zope3-dev | 14:26 | |
*** d2m has joined #zope3-dev | 14:39 | |
d2m | justr a quick question: is this a joke )http://groups.google.com/group/zope-zope3-user/browse_thread/thread/4b0df2963e79e8d5/ee05714cc4dabfdf?q=zope&rnum=1#ee05714cc4dabfdf) is is there a real password sent to the list ? | 14:39 |
*** Aiste_ has joined #zope3-dev | 14:42 | |
benji | d2m: no joke; It looks like google groups is subscribed via that user with that password | 14:44 |
benji | I think I'll change the password to something stronger. | 14:44 |
benji | password changed; also turned off password notification | 14:46 |
*** d2m has left #zope3-dev | 14:46 | |
bigkevmcd | happy mailman day indeed :-) | 14:47 |
*** ktwilight_ has quit IRC | 14:50 | |
*** markusleist has quit IRC | 14:51 | |
*** afd has joined #zope3-dev | 14:53 | |
*** ktwilight has joined #zope3-dev | 14:55 | |
*** incorrect has joined #zope3-dev | 14:58 | |
*** dunny has quit IRC | 15:01 | |
*** greenman_ has joined #zope3-dev | 15:09 | |
*** Ariel_Calzada has joined #zope3-dev | 15:09 | |
*** niemeyer has joined #zope3-dev | 15:14 | |
*** ccomb has joined #zope3-dev | 15:16 | |
*** mgedmin has joined #zope3-dev | 15:16 | |
*** ferrafox_ has joined #zope3-dev | 15:19 | |
*** ccomb has quit IRC | 15:20 | |
*** ccomb has joined #zope3-dev | 15:20 | |
*** dtremea has joined #zope3-dev | 15:23 | |
*** jsadjohnson has joined #zope3-dev | 15:24 | |
*** deo has quit IRC | 15:25 | |
*** greenman has quit IRC | 15:27 | |
*** dtremea is now known as deo | 15:28 | |
*** mgedmin has quit IRC | 15:29 | |
*** mgedmin has joined #zope3-dev | 15:30 | |
*** markusleist has joined #zope3-dev | 15:30 | |
*** rocky has joined #zope3-dev | 15:32 | |
*** projekt01 has joined #zope3-dev | 15:33 | |
*** mkerrin has quit IRC | 15:34 | |
*** ferrafox has quit IRC | 15:36 | |
*** salfield has joined #zope3-dev | 15:39 | |
*** marianom has joined #zope3-dev | 15:47 | |
*** dokai has quit IRC | 15:54 | |
*** faassen has quit IRC | 15:58 | |
*** salfield has quit IRC | 16:01 | |
*** salfield has joined #zope3-dev | 16:02 | |
*** rocky has quit IRC | 16:03 | |
*** zagy has quit IRC | 16:04 | |
*** afd has quit IRC | 16:07 | |
*** jukart has joined #zope3-dev | 16:09 | |
*** mgedmin has quit IRC | 16:09 | |
*** Ariel_Calzada has quit IRC | 16:10 | |
*** rocky has joined #zope3-dev | 16:15 | |
*** ferrafox_ is now known as ferrafox | 16:20 | |
*** Aiste_ has quit IRC | 16:20 | |
*** ksmith99 has joined #zope3-dev | 16:26 | |
*** J1m has joined #zope3-dev | 16:27 | |
*** baijum has quit IRC | 16:31 | |
*** natea|away_ is now known as natea | 16:36 | |
*** dtremea has joined #zope3-dev | 16:47 | |
*** deo has quit IRC | 16:47 | |
*** dtremea is now known as deo | 16:47 | |
*** marianom has left #zope3-dev | 16:49 | |
*** netshade has joined #zope3-dev | 16:51 | |
srichter | J1m: I would like to release a new version of zc.zoep3recipes now that Roger has added Windows support; could you make me an owner of that package, please? | 16:52 |
J1m | sure, what is your pypi id? | 16:52 |
srichter | srichter | 16:53 |
srichter | J1m: ^ | 16:53 |
*** CSWookie has quit IRC | 16:58 | |
*** zagy has joined #zope3-dev | 17:05 | |
*** netshade has quit IRC | 17:11 | |
*** tdoggette has quit IRC | 17:16 | |
*** tdoggette has joined #zope3-dev | 17:17 | |
*** sorindregan has quit IRC | 17:18 | |
*** edgordon has quit IRC | 17:18 | |
*** chacha_chaudhry has quit IRC | 17:19 | |
*** natea has quit IRC | 17:25 | |
*** cursor has quit IRC | 17:26 | |
J1m | srichter, done | 17:27 |
*** edgordon has joined #zope3-dev | 17:40 | |
*** yvl has quit IRC | 17:40 | |
*** nateacyborg has joined #zope3-dev | 17:41 | |
*** nateacyborg has joined #zope3-dev | 17:42 | |
*** nateacyborg has quit IRC | 17:43 | |
*** nateacyborg has joined #zope3-dev | 17:44 | |
*** nerdalert has joined #zope3-dev | 17:47 | |
*** malthe has joined #zope3-dev | 17:51 | |
*** zagy has quit IRC | 18:05 | |
*** zagy has joined #zope3-dev | 18:05 | |
*** b52lap has joined #zope3-dev | 18:08 | |
*** b52laptop has quit IRC | 18:09 | |
*** mgedmin has joined #zope3-dev | 18:10 | |
*** dokai has joined #zope3-dev | 18:15 | |
*** fcorrea has joined #zope3-dev | 18:17 | |
*** malthe has quit IRC | 18:17 | |
*** alga has joined #zope3-dev | 18:20 | |
*** ignas has quit IRC | 18:27 | |
*** ignas has joined #zope3-dev | 18:28 | |
*** whit_ has joined #zope3-dev | 18:28 | |
*** whit has quit IRC | 18:29 | |
*** Aiste_ has joined #zope3-dev | 18:30 | |
*** pelle_ has quit IRC | 18:33 | |
*** Aiste_ has quit IRC | 18:35 | |
*** Aiste_ has joined #zope3-dev | 18:36 | |
*** whit_ is now known as whit | 18:47 | |
*** alga has quit IRC | 18:49 | |
*** nathany has joined #zope3-dev | 18:49 | |
*** nateacyborg is now known as natea | 18:56 | |
*** incorrect has quit IRC | 18:58 | |
*** dobee has joined #zope3-dev | 19:01 | |
*** projekt01 has quit IRC | 19:09 | |
*** RaFromBRC has joined #zope3-dev | 19:09 | |
*** ferrafox has quit IRC | 19:18 | |
*** romanofski has quit IRC | 19:18 | |
*** zagy has quit IRC | 19:19 | |
*** markusleist has quit IRC | 19:20 | |
*** malthe has joined #zope3-dev | 19:20 | |
*** edgordon has quit IRC | 19:33 | |
*** alecm has joined #zope3-dev | 19:49 | |
*** timte has quit IRC | 19:50 | |
*** dobee has quit IRC | 19:53 | |
*** pbugni has joined #zope3-dev | 19:58 | |
*** b52lap has quit IRC | 20:02 | |
*** jukart_ has joined #zope3-dev | 20:02 | |
*** timte has joined #zope3-dev | 20:04 | |
*** edgordon has joined #zope3-dev | 20:05 | |
*** Aiste_ has quit IRC | 20:06 | |
*** dobee has joined #zope3-dev | 20:08 | |
*** stub has quit IRC | 20:11 | |
*** jfroche has quit IRC | 20:18 | |
*** jukart has quit IRC | 20:19 | |
*** junkafarian has quit IRC | 20:19 | |
*** edgordon has quit IRC | 20:23 | |
*** edgordon has joined #zope3-dev | 20:23 | |
*** greenman has joined #zope3-dev | 20:24 | |
*** mgedmin has quit IRC | 20:26 | |
*** rocky has quit IRC | 20:28 | |
*** edgordon has quit IRC | 20:30 | |
*** pcardune has quit IRC | 20:35 | |
*** projekt01 has joined #zope3-dev | 20:36 | |
*** dobee has quit IRC | 20:39 | |
*** greenman_ has quit IRC | 20:39 | |
*** jukart_ has quit IRC | 20:40 | |
*** dobee has joined #zope3-dev | 21:00 | |
*** grahal has joined #zope3-dev | 21:00 | |
*** dobee has quit IRC | 21:01 | |
*** pcardune has joined #zope3-dev | 21:04 | |
*** malthe has quit IRC | 21:08 | |
*** jfroche has joined #zope3-dev | 21:10 | |
*** malthe has joined #zope3-dev | 21:11 | |
*** romanofski has joined #zope3-dev | 21:12 | |
*** csmiga has joined #zope3-dev | 21:15 | |
*** richardkan has quit IRC | 21:16 | |
*** rocky has joined #zope3-dev | 21:16 | |
*** markusleist has joined #zope3-dev | 21:21 | |
*** pelle_ has joined #zope3-dev | 21:23 | |
*** jinty has quit IRC | 21:33 | |
*** jinty has joined #zope3-dev | 21:34 | |
*** Ariel_Calzada has joined #zope3-dev | 21:35 | |
*** jbb666 has joined #zope3-dev | 21:46 | |
*** b52laptop has joined #zope3-dev | 21:47 | |
*** jbb666 has left #zope3-dev | 21:48 | |
*** alecm has quit IRC | 21:51 | |
*** whit has quit IRC | 21:52 | |
*** edgordon has joined #zope3-dev | 21:52 | |
*** whit has joined #zope3-dev | 21:53 | |
edgordon | is something funny going on w/ the cheeseshop? | 21:53 |
edgordon | i am having trouble w/ them having the cheese i want (zope.contentprovider) | 21:54 |
*** AVN` has quit IRC | 21:54 | |
*** alecm has joined #zope3-dev | 21:55 | |
*** Newfie2007 has quit IRC | 21:57 | |
edgordon | anyone care to try and see the cheeseshop website for me? i can't see it and i also can't grab packages | 21:58 |
*** salfield has quit IRC | 22:04 | |
benji | edgordon: yep, it's down | 22:06 |
edgordon | ok, thanks. glad it isn't my problem | 22:06 |
benji | I've reported the outage to catalog-sig (the keepers of PyPI) | 22:06 |
edgordon | the irony of the cheeseshop not carrying any cheeses is not lost on me | 22:06 |
benji | that's just the issue, it /is/ a problem for you | 22:06 |
benji | if you're using a buildout you can use ppix instead | 22:07 |
edgordon | i have no shortage of other work. it can wait | 22:07 |
*** dunny has joined #zope3-dev | 22:07 | |
edgordon | back up | 22:10 |
* benji backs up. | 22:10 | |
*** norro has joined #zope3-dev | 22:11 | |
*** afd_ has quit IRC | 22:15 | |
*** alecm has quit IRC | 22:15 | |
*** alecm has joined #zope3-dev | 22:18 | |
edgordon | is zope.contentprovider going away or something? i am having trouble finding it anywhere but svn.zope.org | 22:22 |
*** jfroche_ has joined #zope3-dev | 22:27 | |
*** Ariel_Calzada has quit IRC | 22:28 | |
*** fcorrea_ has joined #zope3-dev | 22:31 | |
*** fcorrea has quit IRC | 22:36 | |
*** jfroche has quit IRC | 22:40 | |
*** malthe has quit IRC | 22:43 | |
*** malthe_ has joined #zope3-dev | 22:43 | |
*** ignas has quit IRC | 22:46 | |
*** RaFromBRC is now known as RaFromBRC|lunch | 22:48 | |
*** pbugni has quit IRC | 22:54 | |
*** RaFromBRC|lunch is now known as RaFromBRC | 23:02 | |
*** alecm has left #zope3-dev | 23:03 | |
*** alecm has joined #zope3-dev | 23:04 | |
*** afd has joined #zope3-dev | 23:26 | |
*** jsadjohnson has quit IRC | 23:44 | |
*** romanofski has quit IRC | 23:58 | |
*** pbugni has joined #zope3-dev | 23:59 |
Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!