Options:
- # Session Start: Sat Nov 17 00:00:00 2007
- # Session Ident: #whatwg
- # [00:00] * Joins: weinig (n=weinig@17.203.15.140)
- # [00:12] * Joins: othermaciej (n=mjs@17.255.100.220)
- # [00:16] * othermaciej is now known as om_coffee
- # [00:29] * Quits: gavin_ (n=gavin@firefox/developer/gavin) (Read error: 113 (No route to host))
- # [00:39] * Joins: jgraham__ (n=jgraham@81-86-212-70.dsl.pipex.com)
- # [00:39] * Quits: kingryan (n=kingryan@corp.technorati.com)
- # [00:56] * Quits: jgraham_ (n=james@81-86-209-13.dsl.pipex.com) (Read error: 110 (Connection timed out))
- # [00:56] * Joins: jgraham_ (n=james@81-86-212-70.dsl.pipex.com)
- # [00:56] * Quits: jgraham (n=jgraham@81-86-209-13.dsl.pipex.com) (Read error: 110 (Connection timed out))
- # [01:22] * Quits: billmason (n=billmaso@ip156.unival.com) (Read error: 104 (Connection reset by peer))
- # [01:31] * Quits: KevinMarks (i=KevinMar@nat/google/x-8a6a4a1848d65d5e) ("The computer fell asleep")
- # [01:31] * Joins: KevinMarks (i=KevinMar@nat/google/x-cdad751fc5a5edc3)
- # [01:47] * Quits: KevinMarks (i=KevinMar@nat/google/x-cdad751fc5a5edc3) (Read error: 110 (Connection timed out))
- # [01:55] * Joins: kfish (n=conrad@61.194.21.25)
- # [02:02] * Quits: dbaron (n=dbaron@corp-241.mountainview.mozilla.com) ("8403864 bytes have been tenured, next gc will be global.")
- # [02:17] * Quits: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no) ("Leaving")
- # [02:18] * Joins: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no)
- # [02:18] * Quits: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no) (Client Quit)
- # [02:19] * Joins: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no)
- # [02:24] * Quits: tndH (i=Rob@87.102.12.217) ("ChatZilla 0.9.79-rdmsoft [XULRunner 1.8.0.9/2006120508]")
- # [02:35] * om_coffee is now known as othermaciej
- # [02:38] * Quits: othermaciej (n=mjs@17.255.100.220)
- # [02:42] * Quits: weinig (n=weinig@17.203.15.140) (Read error: 110 (Connection timed out))
- # [02:56] * Quits: jgraham_ (n=james@81-86-212-70.dsl.pipex.com) ("This computer has gone to sleep")
- # [03:07] * Joins: dglazkov (n=dglazkov@adsl-074-229-248-021.sip.bhm.bellsouth.net)
- # [03:11] * Quits: aroben (i=aroben@unaffiliated/aroben) ("Leaving")
- # [03:11] * Joins: KevinMarks (n=KevinMar@12.sub-75-208-51.myvzw.com)
- # [03:13] * Quits: dglazkov (n=dglazkov@adsl-074-229-248-021.sip.bhm.bellsouth.net) ("ChatZilla 0.9.79 [Firefox 2.0.0.9/2007102514]")
- # [03:15] * Joins: othermaciej (n=mjs@adsl-75-36-149-182.dsl.pltn13.sbcglobal.net)
- # [03:16] * Joins: weinig (n=weinig@c-71-198-185-169.hsd1.ca.comcast.net)
- # [03:16] * Quits: KevinMarks (n=KevinMar@12.sub-75-208-51.myvzw.com) (Client Quit)
- # [03:17] * Quits: weinig (n=weinig@c-71-198-185-169.hsd1.ca.comcast.net) (Remote closed the connection)
- # [03:17] * Joins: weinig (n=weinig@c-71-198-185-169.hsd1.ca.comcast.net)
- # [03:19] * Joins: dglazkov (n=dglazkov@adsl-074-229-248-021.sip.bhm.bellsouth.net)
- # [03:20] <dglazkov> ok, another SQL spec question..
- # [03:21] <dglazkov> the spec doesn't mention what I should do about multiple transactions:
- # [03:22] <othermaciej> in what regard?
- # [03:22] <dglazkov> db.transaction(function() { ... }); // 1
- # [03:22] <dglazkov> db.transaction(function() { ... }); //2
- # [03:22] <dglazkov> are these queued up? is 2 blocked until 1 is finished
- # [03:23] <dglazkov> since both tx callbacks are executed asynchronously, what's the expected behavior
- # [03:34] <othermaciej> the locking isn't specified in detail, but they have to follow the lock requirements
- # [03:34] <othermaciej> if both only do reads they can likely execute in parallel
- # [03:34] <othermaciej> if they write, then they will get serialized
- # [03:40] * Quits: dglazkov (n=dglazkov@adsl-074-229-248-021.sip.bhm.bellsouth.net) ("ChatZilla 0.9.79 [Firefox 2.0.0.9/2007102514]")
- # [03:49] * Joins: dglazkov (n=dglazkov@adsl-074-229-248-021.sip.bhm.bellsouth.net)
- # [03:49] <dglazkov> sorry, had to restart ff
- # [03:50] <dglazkov> so, in SQLite-speak, you're saying that transaction is BEGIN DEFERRED, not BEGIN IMMEDIATE
- # [03:51] <dglazkov> because BEGIN IMMEDIATE won't let another BEGIN IMMEDIATE happen until it's committed
- # [03:51] * Quits: csarven (n=nevrasc@81-5-133-33.static.nfwebsolutions.com) ("http://www.csarven.ca")
- # [03:56] <othermaciej> well I don't know, the spec is unclear on this
- # [03:56] <othermaciej> we've been discussing what it should be
- # [03:57] <othermaciej> dglazkov: are you looking to implement the spec?
- # [03:57] <dglazkov> I think I am just going to go with BEGIN IMMEDIATE for now and sort it out later
- # [03:57] <dglazkov> yes, I already have it pretty much working
- # [03:57] <othermaciej> cool
- # [03:57] <othermaciej> native implementation for Gecko?
- # [03:59] <dglazkov> cheating w/Gears :)
- # [04:16] * Quits: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no) ("This computer has gone to sleep")
- # [04:22] * Joins: auk (n=scott@h-68-165-22-123.lsanca54.dynamic.covad.net)
- # [04:36] * Quits: dglazkov (n=dglazkov@adsl-074-229-248-021.sip.bhm.bellsouth.net) ("ChatZilla 0.9.79 [Firefox 2.0.0.9/2007102514]")
- # [04:49] * weinig is now known as weinig|away
- # [04:50] * Quits: othermaciej (n=mjs@adsl-75-36-149-182.dsl.pltn13.sbcglobal.net)
- # [04:53] * Joins: roc (n=roc@121-72-48-235.dsl.telstraclear.net)
- # [05:51] * Quits: roc (n=roc@121-72-48-235.dsl.telstraclear.net)
- # [06:12] * Joins: mpt_ (n=mpt@222-152-137-123.jetstream.xtra.co.nz)
- # [06:19] * Quits: mpt (n=mpt@canonical/launchpad/mpt) (Read error: 110 (Connection timed out))
- # [06:28] * Joins: zcorpan (n=zcorpan@c-cb21e353.1451-1-64736c12.cust.bredbandsbolaget.se)
- # [06:41] * Quits: jruderman (n=jruderma@corp-241.mountainview.mozilla.com)
- # [07:07] * Quits: zcorpan (n=zcorpan@c-cb21e353.1451-1-64736c12.cust.bredbandsbolaget.se) (Read error: 110 (Connection timed out))
- # [07:10] * Joins: othermaciej (n=mjs@adsl-75-36-149-182.dsl.pltn13.sbcglobal.net)
- # [07:15] * Quits: othermaciej (n=mjs@adsl-75-36-149-182.dsl.pltn13.sbcglobal.net)
- # [07:20] * Quits: csarven- (n=nevrasc@modemcable130.251-202-24.mc.videotron.ca) ("http:/www.csarven.ca")
- # [07:23] * Joins: jruderman (n=jruderma@c-67-180-15-227.hsd1.ca.comcast.net)
- # [07:38] * Joins: roc (n=roc@121-72-37-136.dsl.telstraclear.net)
- # [07:44] * Joins: mpt__ (n=mpt@222-152-132-116.jetstream.xtra.co.nz)
- # [07:52] * Quits: mpt_ (n=mpt@222-152-137-123.jetstream.xtra.co.nz) (Read error: 110 (Connection timed out))
- # [08:15] * Quits: auk (n=scott@h-68-165-22-123.lsanca54.dynamic.covad.net) ("Ex-Chat")
- # [08:16] * Quits: hober (n=ted@unaffiliated/hober) ("ERC Version 5.3 (devel) (IRC client for Emacs)")
- # [09:01] * Quits: kfish (n=conrad@61.194.21.25) ("Pike!")
- # [09:17] * Quits: roc (n=roc@121-72-37-136.dsl.telstraclear.net)
- # [09:22] * Joins: tantek (n=tantek@70.13.83.194)
- # [09:38] * Quits: tantek (n=tantek@70.13.83.194)
- # [10:13] * Joins: ROBOd (n=robod@89.122.216.38)
- # [10:31] * Joins: roc (n=roc@121-72-27-118.dsl.telstraclear.net)
- # [11:06] * Quits: roc (n=roc@121-72-27-118.dsl.telstraclear.net)
- # [11:14] * Joins: webben (n=benh@81.168.106.209)
- # [11:46] * Joins: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no)
- # [11:59] * Quits: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no) ("This computer has gone to sleep")
- # [12:02] * Joins: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [12:10] * Joins: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no)
- # [12:18] * Quits: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no) ("This computer has gone to sleep")
- # [12:26] * Quits: hasather (n=hasather@90-231-107-133-no62.tbcn.telia.com) ("leaving")
- # [12:26] * Joins: maikmerten (n=maikmert@T7c27.t.pppool.de)
- # [12:34] * Joins: tndH_ (i=Rob@87.102.12.217)
- # [12:34] * tndH_ is now known as tndH
- # [12:37] * Quits: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [13:10] * Joins: hasather (n=hasather@90-231-107-133-no62.tbcn.telia.com)
- # [13:14] * Joins: zcorpan (n=zcorpan@c-cb21e353.1451-1-64736c12.cust.bredbandsbolaget.se)
- # [14:07] * Quits: zcorpan (n=zcorpan@c-cb21e353.1451-1-64736c12.cust.bredbandsbolaget.se) (Read error: 110 (Connection timed out))
- # [14:26] * Joins: webben_ (n=benh@dip5-fw.corp.ukl.yahoo.com)
- # [14:42] * Parts: annevk (n=annevk@86.90.70.28)
- # [14:44] * Quits: webben (n=benh@81.168.106.209) (Read error: 110 (Connection timed out))
- # [14:46] * Joins: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no)
- # [14:46] * Quits: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no) (Remote closed the connection)
- # [14:46] * Joins: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no)
- # [15:10] * Joins: jgraham_ (n=jgraham@81-86-210-2.dsl.pipex.com)
- # [15:12] * Quits: jgraham__ (n=jgraham@81-86-212-70.dsl.pipex.com) (Read error: 110 (Connection timed out))
- # [15:19] * Joins: mpt_ (n=mpt@222-152-129-163.jetstream.xtra.co.nz)
- # [15:20] * Quits: gsnedders (n=gsnedder@host86-145-188-131.range86-145.btcentralplus.com)
- # [15:21] * Joins: Lachy_ (n=Lachlan@ti200710a340-2585.bb.online.no)
- # [15:21] * Quits: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no) (Read error: 104 (Connection reset by peer))
- # [15:27] * Quits: mpt__ (n=mpt@222-152-132-116.jetstream.xtra.co.nz) (Read error: 110 (Connection timed out))
- # [15:32] * Joins: gsnedders (n=gsnedder@host86-145-188-131.range86-145.btcentralplus.com)
- # [15:39] * Joins: KevinMarks (n=KevinMar@c-98-207-134-151.hsd1.ca.comcast.net)
- # [16:14] * Quits: webben_ (n=benh@dip5-fw.corp.ukl.yahoo.com) (Read error: 110 (Connection timed out))
- # [16:33] * Quits: Lachy_ (n=Lachlan@ti200710a340-2585.bb.online.no) (Read error: 110 (Connection timed out))
- # [17:21] * Joins: webben (n=benh@81.168.106.209)
- # [17:21] * Joins: zcorpan (n=zcorpan@c-cb21e353.1451-1-64736c12.cust.bredbandsbolaget.se)
- # [17:26] * Quits: webben (n=benh@81.168.106.209) (Client Quit)
- # [17:30] <zcorpan> anyone know where the demo this is a screenshot of is? http://annevankesteren.nl/2006/05/canvas-3d
- # [17:30] <zcorpan> (is that correct english?)
- # [17:37] <zcorpan> or other 3d canvas demos
- # [17:37] <zcorpan> found this http://files.myopera.com/grafio/files/demo1.html
- # [17:39] <hsivonen> is the experimental build already available for Mac PPC?
- # [17:47] <zcorpan> don't think so
- # [17:50] <zcorpan> http://www.svgopen.org/papers/abstract3/wowslides+demos.zip has a 3d canvas demo
- # [17:50] * Joins: csarven (n=nevrasc@modemcable130.251-202-24.mc.videotron.ca)
- # [17:55] * Quits: mpt_ (n=mpt@222-152-129-163.jetstream.xtra.co.nz) ("This computer has gone to sleep")
- # [18:14] * Quits: hasather (n=hasather@90-231-107-133-no62.tbcn.telia.com) ("Lost terminal")
- # [18:19] * Joins: webben (n=benh@dip5-fw.corp.ukl.yahoo.com)
- # [18:35] * Joins: jgraham (n=james@81-86-210-2.dsl.pipex.com)
- # [18:44] <Philip`> http://philip.html5.org/demos/canvas/opera-3d/textured-cube.html has a totally exciting cube demo
- # [18:45] * Joins: weinig (n=weinig@c-71-198-185-169.hsd1.ca.comcast.net)
- # [18:49] * Joins: maikmerten_ (n=maikmert@T7d8f.t.pppool.de)
- # [18:49] <zcorpan> apart from the 3d snake game, all demos are a rotating cube, it seems :)
- # [18:50] <Philip`> I'm not really sure what else you could do with it :-p
- # [18:50] <zcorpan> heh
- # [18:51] <Philip`> As far as I can tell, it can't do anything like http://canvex.lazyilluminati.com/misc/3d.html since there's no lighting
- # [18:52] <Philip`> and the addVertex(...) API doesn't scale very well when vertexes have coordinates, optionally texture coordinates, optionally normals, and optionally whatever else is added later
- # [18:54] * Quits: grimboy (n=grimboy@85.211.235.116) (Read error: 110 (Connection timed out))
- # [18:55] * Joins: grimboy (n=grimboy@85.211.238.27)
- # [18:57] * Joins: jwalden (n=waldo@RANDOM-SIX-FIFTY.MIT.EDU)
- # [19:01] * Quits: weinig|away (n=weinig@c-71-198-185-169.hsd1.ca.comcast.net) (Read error: 110 (Connection timed out))
- # [19:05] * Joins: Lachy_ (n=Lachlan@ti200710a340-2585.bb.online.no)
- # [19:05] * Quits: Lachy_ (n=Lachlan@ti200710a340-2585.bb.online.no) (Client Quit)
- # [19:05] * Joins: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no)
- # [19:07] * Quits: maikmerten (n=maikmert@T7c27.t.pppool.de) (Read error: 110 (Connection timed out))
- # [19:08] * Quits: jgraham (n=james@81-86-210-2.dsl.pipex.com) ("This computer has gone to sleep")
- # [19:37] * Joins: grimeboy (n=grimboy@85.211.237.68)
- # [19:50] * Joins: aroben (n=aroben@unaffiliated/aroben)
- # [19:52] * Quits: grimboy (n=grimboy@85.211.238.27) (Read error: 110 (Connection timed out))
- # [19:58] * Quits: maikmerten_ (n=maikmert@T7d8f.t.pppool.de) (Remote closed the connection)
- # [20:04] * Quits: weinig (n=weinig@c-71-198-185-169.hsd1.ca.comcast.net) (Remote closed the connection)
- # [20:05] * Joins: weinig (n=weinig@c-71-198-185-169.hsd1.ca.comcast.net)
- # [20:06] * Quits: zcorpan (n=zcorpan@c-cb21e353.1451-1-64736c12.cust.bredbandsbolaget.se) (Read error: 110 (Connection timed out))
- # [20:12] * Philip` wishes the OpenGL spec was developed more openly
- # [20:18] * Quits: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no) ("This computer has gone to sleep")
- # [21:00] * Joins: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no)
- # [21:13] * Quits: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no) ("This computer has gone to sleep")
- # [21:27] * Quits: ROBOd (n=robod@89.122.216.38) ("http://www.robodesign.ro")
- # [22:23] * Quits: aroben (n=aroben@unaffiliated/aroben) (Read error: 110 (Connection timed out))
- # [22:25] * Quits: weinig (n=weinig@c-71-198-185-169.hsd1.ca.comcast.net)
- # [22:29] * Joins: aroben (n=aroben@unaffiliated/aroben)
- # [22:30] * Joins: othermaciej (n=mjs@dsl081-048-145.sfo1.dsl.speakeasy.net)
- # [22:48] * Joins: mpt (n=mpt@222-152-142-216.jetstream.xtra.co.nz)
- # [23:03] * Joins: Lachy (n=Lachlan@ti200710a340-2585.bb.online.no)
- # [23:17] * Joins: jgraham (n=james@81-86-210-2.dsl.pipex.com)
- # [23:28] * Joins: weinig (n=weinig@c-71-198-185-169.hsd1.ca.comcast.net)
- # [23:29] * Joins: annevk (n=annevk@86.90.70.28)
- # [23:29] * Quits: weinig (n=weinig@c-71-198-185-169.hsd1.ca.comcast.net) (Remote closed the connection)
- # [23:30] * Joins: weinig (n=weinig@c-71-198-185-169.hsd1.ca.comcast.net)
- # [23:47] * Quits: jgraham (n=james@81-86-210-2.dsl.pipex.com) ("This computer has gone to sleep")
- # Session Close: Sun Nov 18 00:00:01 2007
The end :)