03:24:28 shapr: ping! 04:34:16 stepcut: pong 11:27:40 Build for ghc-6.8.3 failed. Check http://buildbot.happstack.com/ for details. 11:28:50 Build for ghc-6.10.2 failed. Check http://buildbot.happstack.com/ for details. 11:31:30 Build for ghc-6.12.1 OK. Test suite ran. 7/75 test cases failed. Check http://buildbot.happstack.com/ for details. 11:35:40 Build for ghc-6.8.3 failed. Check http://buildbot.happstack.com/ for details. 12:56:45 hello there 14:23:41 HugoDaniel: hello.. 14:45:00 hi stepcut 14:45:16 did you manage to find someone to work out the apache look-alike interface for dir browsing ? 14:53:02 HugoDaniel: not yet 14:54:55 are there any benchmarks of happs vs other http servers ? like apache, lighty, cherokee, etc... ? 14:56:14 nope 14:56:35 well, maybe, but I do not know of any 14:57:48 though, for serving static files off the disk, it is hopefully pretty fast now that we got sendfile() :p 15:04:20 :) 15:04:31 cherokee has a nice feature along with sendfile 15:04:44 where it limits the max size of a file to send 15:05:22 anyway, i could try to give a hand on that apache lookalike page 15:32:29 HugoDaniel: yay! go for it! 15:34:26 I can answer any questions you have 15:44:00 ok nice 15:44:35 was it clear what I meant about trying to split it into two pieces? the core and the renderer? 16:04:22 yes 16:04:41 sweet 16:04:41 im going to answer the e-mail you sent 16:48:35 i get a lot of this with happs: 16:48:38 tcp4 0 0 10.7.7.9.8080 10.7.7.8.50721 TIME_WAIT 16:49:10 I have no idea what that means 17:01:52 in netstat 17:03:21 yes, I recognized netstat, but I don't know what TIME_WAIT means or if it should be concerning 17:03:51 it means that the socket was closed but the protocol still requires it to be open because it was not closed properly 17:03:55 the connection was just dropped 17:04:12 so its just there waiting for a timeout to happen 17:04:42 ah 17:05:07 yeah, I see happstack sometimes spit out errors about that too.. something about 'resource vanished' or something 17:05:21 would be nice to get to the bottom of that 17:05:29 hmm yes 17:05:36 its probably an OS thing 17:05:39 im not sure 17:05:41 maybe 17:05:55 perhaps the remote side is closing the connection, but happstack is not? 17:06:56 the web browser will typically close the connection once it has received all the bytes it was expecting (based on the HTTP headers). But perhaps happstack is not closing the connection after sending all the bytes for some reason? 17:07:22 (there is also some keep-alive stuff that comes into play as well..)