Options:
- # Session Start: Thu Mar 27 00:00:00 2014
- # Session Ident: #html-wg
- # [00:01] * Quits: plh (plehegar@public.cloak) ("Leaving")
- # [00:51] * Joins: lgombos (~gombos@public.cloak)
- # [01:02] * Quits: lgombos (~gombos@public.cloak) (Client closed connection)
- # [01:20] * Joins: lgombos (~gombos@public.cloak)
- # [01:39] * Quits: glenn (~gadams@public.cloak) (Client closed connection)
- # [01:40] * Joins: glenn (~gadams@public.cloak)
- # [01:47] * Quits: glenn (~gadams@public.cloak) (Ping timeout: 180 seconds)
- # [02:12] * heycam is now known as heycam|away
- # [02:12] * Joins: glenn (~gadams@public.cloak)
- # [02:15] * Quits: tantek (~tantek@public.cloak) (tantek)
- # [02:21] * Joins: tantek (~tantek@public.cloak)
- # [02:45] * Quits: glenn (~gadams@public.cloak) (Client closed connection)
- # [03:06] * Quits: lgombos (~gombos@public.cloak) (Ping timeout: 180 seconds)
- # [03:11] * Joins: lgombos (~gombos@public.cloak)
- # [03:26] * Quits: tantek (~tantek@public.cloak) (tantek)
- # [03:31] * Joins: tantek (~tantek@public.cloak)
- # [03:32] * Quits: lgombos (~gombos@public.cloak) (Client closed connection)
- # [04:08] * Quits: tantek (~tantek@public.cloak) (tantek)
- # [04:20] * Joins: glenn (~gadams@public.cloak)
- # [04:21] * Quits: glenn (~gadams@public.cloak) ("Leaving...")
- # [05:00] * heycam|away is now known as heycam
- # [05:35] * Quits: karl (~karlcow@public.cloak) (":tiuQ tiuq sah woclrak")
- # [06:35] * heycam is now known as heycam|away
- # [07:32] * Joins: mjs (~mjs@public.cloak)
- # [07:42] * Joins: tantek (~tantek@public.cloak)
- # [07:43] * Joins: stommepoes (~stommepoes@public.cloak)
- # [08:06] * Joins: Joshue (~Joshue@public.cloak)
- # [08:13] * Quits: Joshue (~Joshue@public.cloak) (Ping timeout: 180 seconds)
- # [08:28] * Joins: anchnk (~anchnk@public.cloak)
- # [09:02] * Joins: Joshue (~Joshue@public.cloak)
- # [09:10] * Joins: silvia (~Adium@public.cloak)
- # [09:16] * Quits: Joshue (~Joshue@public.cloak) ("Leaving...")
- # [09:27] * Joins: darobin (rberjon@public.cloak)
- # [09:35] * Quits: Lachy (~Lachy@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
- # [09:39] * Joins: Joshue (~Joshue@public.cloak)
- # [09:40] * Joins: Lachy (~Lachy@public.cloak)
- # [09:44] * Quits: Lachy (~Lachy@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
- # [09:57] * Quits: Joshue (~Joshue@public.cloak) ("Leaving...")
- # [10:01] * Quits: tantek (~tantek@public.cloak) (tantek)
- # [10:19] * Joins: Lachy (~Lachy@public.cloak)
- # [10:23] * Quits: silvia (~Adium@public.cloak) ("Leaving.")
- # [10:46] * Joins: Joshue (~Joshue@public.cloak)
- # [11:13] * Quits: Joshue (~Joshue@public.cloak) ("Leaving...")
- # [11:51] * Quits: mjs (~mjs@public.cloak) (mjs)
- # [12:05] * Joins: silvia (~Adium@public.cloak)
- # [12:32] * Quits: silvia (~Adium@public.cloak) ("Leaving.")
- # [12:50] * Quits: anchnk (~anchnk@public.cloak) ("")
- # [12:59] * Joins: plh (plehegar@public.cloak)
- # [13:20] <MikeSmith> darobin: btw I went a looked back at the code I wrote for handling the role attribute
- # [13:20] <MikeSmith> see https://github.com/validator/util/commit/3e43844e0b393ede73d4673795e283d1037b8ba6#diff-d1b5381649f22194389b47f8c1e7dfd7R165
- # [13:20] <MikeSmith> and https://github.com/validator/util/commit/3e43844e0b393ede73d4673795e283d1037b8ba6#diff-d1b5381649f22194389b47f8c1e7dfd7R181
- # [13:21] * darobin JavaReader loading up [== ]
- # [13:21] <MikeSmith> what it does is, it goes through the tokens in the role attribute value and if it finds a role that's actually defined in the ARIA spec, it sets the entire attribute value to tha
- # [13:21] <MikeSmith> *that
- # [13:21] <MikeSmith> and drops the rest of the tokens
- # [13:22] <darobin> interesting
- # [13:22] <MikeSmith> I guess I should mention, this is a SAX filter that responds to the parser events before the document is exposed to RelaxNG validation
- # [13:22] <darobin> that doesn't look like the messages I was getting
- # [13:22] <MikeSmith> this is what we also do for data-*
- # [13:22] <darobin> right
- # [13:22] <darobin> that's what I thought
- # [13:23] <darobin> oh, wait, but yes
- # [13:23] <MikeSmith> well if it doesn't find a defined aria role, then it just passes on the value as-is
- # [13:23] <darobin> the second one does more
- # [13:23] <MikeSmith> without tokeninizing it
- # [13:23] <darobin> it keeps track of unrecognised and superfluous tokens
- # [13:23] <darobin> which is exactly the behaviour I was seeing
- # [13:23] <MikeSmith> ok
- # [13:24] <MikeSmith> so the problem here is that if epub introduces other valid role values, then this code can't handle those
- # [13:24] <darobin> yes indeed
- # [13:24] <MikeSmith> we can't really do both
- # [13:25] <darobin> makes sense
- # [13:25] <MikeSmith> I mean we can't have role="e-pub-thing menu" or whatever
- # [13:25] <darobin> at least, not without adding all the book roles
- # [13:25] <MikeSmith> yeah
- # [13:25] <darobin> but that's probably not a good idea
- # [13:25] <darobin> I mean, they only have like 200 :)
- # [13:25] <darobin> (proposed ones, thankfully)
- # [13:26] <MikeSmith> yeah because we can only use one aria role
- # [13:26] <MikeSmith> oh geez
- # [13:26] <darobin> well books are indeed complicated
- # [13:26] <darobin> they initially used XML for a reason: it maps well to their needs
- # [13:26] <darobin> and I think that their use case of trying to capture more semantics in HTML is interesting
- # [13:26] <MikeSmith> yeah I think at this point we should try to get people to understand that @role is now @aria-role in practice
- # [13:26] <darobin> (and none of the RDFa, MD, etc. stuff matches that well)
- # [13:27] <MikeSmith> ok
- # [13:27] <darobin> they don't want to extract metadata from HTML like those things do, they want to actually decorate the tre
- # [13:27] <darobin> tree
- # [13:27] <MikeSmith> that makes some sense I guess
- # [13:28] <darobin> well yeah
- # [13:28] <darobin> extracting a list of chapters might be useful, but not as useful as actually having chapters in the document that you can read
- # [13:28] <MikeSmith> yeah, when you put it that way
- # [14:56] * Joins: glenn (~gadams@public.cloak)
- # [14:57] * Joins: anssik (~uid10742@public.cloak)
- # [15:49] * Joins: JonathanJ (~hollobit@public.cloak)
- # [15:53] * Quits: JonathanJ (~hollobit@public.cloak) (JonathanJ)
- # [16:14] * Joins: tantek (~tantek@public.cloak)
- # [16:28] * Joins: SteveF (~chatzilla@public.cloak)
- # [16:28] * Parts: stommepoes (~stommepoes@public.cloak) (stommepoes)
- # [16:42] * Joins: lgombos (~gombos@public.cloak)
- # [16:50] * Quits: lgombos (~gombos@public.cloak) (Client closed connection)
- # [16:53] * Joins: lgombos (~gombos@public.cloak)
- # [16:54] * Joins: paulc (~paulc@public.cloak)
- # [16:54] <paulc> trackbot, start meeting
- # [16:54] * trackbot is preparing a teleconference.
- # [16:54] * Joins: RRSAgent (rrsagent@public.cloak)
- # [16:54] <RRSAgent> logging to http://www.w3.org/2014/03/27-html-wg-irc
- # [16:54] <trackbot> RRSAgent, make logs public
- # [16:54] <RRSAgent> I have made the request, trackbot
- # [16:54] * Joins: Zakim (zakim@public.cloak)
- # [16:55] <trackbot> Zakim, this will be html_wg
- # [16:55] <Zakim> ok, trackbot; I see HTML_WG()12:00PM scheduled to start in 4 minutes
- # [16:55] <trackbot> Meeting: HTML Weekly Teleconference
- # [16:55] <trackbot> Date: 27 March 2014
- # [16:57] <paulc> zakim, what is the code?
- # [16:57] <Zakim> the conference code is 4865 (tel:+1.617.761.6200 sip:zakim@voip.w3.org), paulc
- # [16:57] * Joins: jaymunro (~jaymunro@public.cloak)
- # [16:58] <Zakim> HTML_WG()12:00PM has now started
- # [16:58] * plh zakim, call plh-work
- # [16:58] * Zakim ok, plh; the call is being made
- # [16:58] <Zakim> +Sam
- # [16:58] * Joins: rubys (~rubys@public.cloak)
- # [16:58] <rubys> trackbot, start meeting
- # [16:58] * trackbot is preparing a teleconference.
- # [16:58] <trackbot> RRSAgent, make logs public
- # [16:58] <RRSAgent> I have made the request, trackbot
- # [16:58] <trackbot> Zakim, this will be html_wg
- # [16:58] <Zakim> ok, trackbot, I see HTML_WG()12:00PM already started
- # [16:58] <trackbot> Meeting: HTML Weekly Teleconference
- # [16:58] <trackbot> Date: 27 March 2014
- # [16:58] <Zakim> +[Microsoft]
- # [16:58] * Joins: Eliot (~Eliot@public.cloak)
- # [16:58] <paulc> Sam: I started the meeting earlier.
- # [16:59] <Zakim> +Philippe
- # [16:59] <paulc> zakim, who is on the phone?
- # [16:59] <Zakim> On the phone I see Sam, [Microsoft], Philippe
- # [16:59] * Joins: krisk (~krisk@public.cloak)
- # [16:59] <paulc> zakim, [Microsoft] is me
- # [16:59] <Zakim> +paulc; got it
- # [16:59] <plh> scribe: plh
- # [16:59] <plh> agenda+ action items
- # [16:59] * Zakim notes agendum 1 added
- # [16:59] <Zakim> +[Microsoft]
- # [16:59] <plh> agenda+ decisions this week
- # [16:59] * Zakim notes agendum 2 added
- # [16:59] <Zakim> +??P10
- # [16:59] <Eliot> Zakim, Microsoft has me
- # [16:59] <Zakim> +Eliot; got it
- # [16:59] <plh> agenda+ task force reports
- # [16:59] * Zakim notes agendum 3 added
- # [16:59] <Zakim> +Daniel_Austin
- # [17:00] <plh> agenda+ Face-to-face
- # [17:00] * Zakim notes agendum 4 added
- # [17:00] * cwilso_ is now known as cwilso
- # [17:00] <Zakim> +[Microsoft.a]
- # [17:00] <plh> agenda+ AOB
- # [17:00] * Zakim notes agendum 5 added
- # [17:00] <jaymunro> zakim, microsoft.a has me
- # [17:00] <Zakim> +jaymunro; got it
- # [17:00] <Zakim> +glenn
- # [17:00] <Zakim> +[Microsoft.aa]
- # [17:00] <krisk> Zakim, Microsoft.aa is krisk
- # [17:00] <Zakim> +krisk; got it
- # [17:01] * Joins: pladd (~pladd@public.cloak)
- # [17:02] <Zakim> +??P19
- # [17:02] <Zakim> +pladd
- # [17:02] <janina> zakim, ??P19 is me
- # [17:02] <Zakim> +janina; got it
- # [17:02] <plh> zakim, move to next agendum
- # [17:02] <Zakim> agendum 1. "action items" taken up [from plh]
- # [17:02] <plh> Sam: none
- # [17:02] <plh> zakim, move to next agendum
- # [17:02] <Zakim> agendum 1 was just opened, plh
- # [17:02] <plh> zakim, close agendum 1
- # [17:02] <Zakim> agendum 1, action items, closed
- # [17:03] <Zakim> I see 4 items remaining on the agenda; the next one is
- # [17:03] <Zakim> 2. decisions this week [from plh]
- # [17:03] <plh> zakim, move to next agendum
- # [17:03] <Zakim> agendum 2. "decisions this week" taken up [from plh]
- # [17:03] <plh> Sam: issue-151
- # [17:03] <plh> ... by publishing a decision, this triggers responses
- # [17:03] <plh> ... those will either died down or turn into bug reports
- # [17:04] * Joins: jernoble (~jernoble@public.cloak)
- # [17:04] <plh> Glenn: I'm a bit surprised on the pushback to have clarity
- # [17:04] <Zakim> -glenn
- # [17:04] <plh> ... being told that this is not an issue isn't conducive to the discussion
- # [17:04] <glenn> oops lost my connection
- # [17:04] <plh> Sam: suggestion would be welcome
- # [17:04] <glenn> calling in again
- # [17:05] <plh> ... simply saying that references to whatwg needs to be removed isn't enough
- # [17:05] <Zakim> +glenn
- # [17:06] <plh> Glenn: my suggestion to remove was just a suggestion. I won't push for it
- # [17:06] * slightlyoff_ is now known as slightlyoff
- # [17:06] <plh> ... I'll try to document the risk of confusion might be
- # [17:06] <plh> ... but we don't have a problem with referencing whatwg, concern is about confusion
- # [17:07] <plh> zakim, move to next agendum
- # [17:07] <Zakim> agendum 3. "task force reports" taken up [from plh]
- # [17:07] <plh> Sam: Testing?
- # [17:08] <plh> Kris: possible to update canvas test results for IE11?
- # [17:08] <plh> Plh: if you have the results, yes
- # [17:11] <tantek> I am against removing references to WHATWG specs just because they're WHATWG.
- # [17:11] <plh> Plh: for html 5.0, we're still working on it
- # [17:11] <paulc> Canvas test results: http://www.w3.org/html/test/results/2dcontext/
- # [17:11] <paulc> HTML 5.0 test results: TBD
- # [17:11] <plh> Plh: we're targeting to have results by end of next week
- # [17:12] <paulc> Canvas: There is more than one page: http://www.w3.org/html/test/results/2dcontext/failures.html
- # [17:13] <plh> Kris: some tests are failing on all implementations for canvas
- # [17:14] <plh> Sam: the reports have 404
- # [17:15] <plh> A11Y task force
- # [17:15] <plh> Janina: we noted Sam's email on canvas
- # [17:15] <plh> ... would be good for us to answer next week on implementations
- # [17:15] <plh> ... and the spec does appear to be settling down
- # [17:16] <plh> ... until we look at the new draft on Monday
- # [17:16] <plh> ... hopefully, we should have it right then
- # [17:16] <plh> ... don't have an ETA from Chrome
- # [17:17] <plh> ... there is a bit of divergence between WHATWG on those functions. so some cycles needed
- # [17:18] <plh> ... we're making sure to go through our remaining items around alt text
- # [17:18] <plh> ... we'll need to be backported in 5.0
- # [17:18] <plh> ... and properly reflected in bugs
- # [17:18] <plh> ... we'll do our best to close on that next week, in advance of the f2f
- # [17:19] <Zakim> +??P29
- # [17:19] <tantek> Zakim, ??P29 is tantek
- # [17:19] <Zakim> +tantek; got it
- # [17:19] <plh> ... we should probably work in the 5.1 around the gap with table/summary and options for describing tables
- # [17:19] <tantek> Zakim, mute tantek
- # [17:19] <Zakim> tantek should now be muted
- # [17:19] * tantek has read the scrollback.
- # [17:20] <plh> ... if they get that done and not controversial, we might ask to port that into 5.0
- # [17:20] <plh> http://lists.w3.org/Archives/Public/public-test-infra/2014JanMar/0066.html
- # [17:21] <plh> plh: some of the tests are unstable
- # [17:22] * Quits: jernoble (~jernoble@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
- # [17:23] <plh> ... generating results on 5 different platforms, running 10 times each
- # [17:23] <plh> ... generating with the firefox test runner
- # [17:24] <krisk> Great information
- # [17:25] <krisk> For example http://w3c-test.org/html/browsers/history/the-location-interface/location-stringifier.html
- # [17:26] <krisk> Has test that everyone fails, would be great to talk about at the F2F
- # [17:27] <plh> Paul: how long will we need at the f2f?
- # [17:28] <SteveF> JS said we're making sure to go through our remaining items around alt text. we'll need to be backported in 5.0 and properly reflected in bugs
- # [17:28] <plh> Plh: we'll need to bound the discussion. too many test results otherwise. we'll have to rely on folks to tell us what tests to look at and use this to inform CR at rtisk discussion
- # [17:28] <plh> Media Taskf Force
- # [17:29] <SteveF> all done, on my part
- # [17:29] <plh> Paul: not much to report. we're meeting every 2 weeks, concentrating on EME. We're in stable state of 20+ bugs
- # [17:29] <plh> ... on MSE, we did have some initials from Google
- # [17:29] <plh> ... one other member is digging into the tests
- # [17:29] <Zakim> -Daniel_Austin
- # [17:30] * Quits: darobin (rberjon@public.cloak) (Client closed connection)
- # [17:30] <plh> ... so we may be ready to have that discussion for MSE tests at the f2f
- # [17:30] <plh> zakim, move to next agendum
- # [17:30] <Zakim> agendum 4. "Face-to-face" taken up [from plh]
- # [17:30] <plh> Sam: registration closes tomorrow
- # [17:30] <plh> ... https://www.w3.org/wiki/HTML/wg/2014-04-Agenda#Potential_Topics
- # [17:31] <plh> zakim, move to next agendum
- # [17:31] <Zakim> agendum 4 was just opened, plh
- # [17:31] <plh> zakim, close agendum 4
- # [17:31] <Zakim> agendum 4, Face-to-face, closed
- # [17:31] <plh> zakim, move to next agendum
- # [17:31] <Zakim> I see 1 item remaining on the agenda:
- # [17:31] <Zakim> 5. AOB [from plh]
- # [17:31] <Zakim> agendum 5. "AOB" taken up [from plh]
- # [17:31] <plh> Sam: polyglot status
- # [17:31] <plh> ... bug count is 0
- # [17:31] <plh> Eliott: hoping it's ready to be published
- # [17:32] <plh> ... will look at the test framework after that
- # [17:32] <rubys> s/Eliott/Eliot/
- # [17:32] <plh> Sam: on Canvas, was covered earlier
- # [17:32] <plh> ... goal is to report progress by mid next week
- # [17:33] <plh> ... Alt guidance work
- # [17:33] <plh> ... trying to get that done by f2f
- # [17:33] <plh> Paul: http://lists.w3.org/Archives/Public/public-html-a11y/2014Mar/0085.html
- # [17:33] <plh> ... only one bug that is in 5.1 that needs to be backported into 5.0
- # [17:34] <plh> ... the TF would need to discuss alt guidance future
- # [17:34] <plh> ... whether it needs to be dropped
- # [17:35] <plh> Janina: we're also tracking an other issue
- # [17:37] <krisk> I can scribe
- # [17:37] <plh> Topic: Next meeting
- # [17:37] <plh> Kris will scribe
- # [17:37] <plh> Paul will chair
- # [17:38] <Zakim> -[Microsoft]
- # [17:38] <Zakim> -pladd
- # [17:38] <tantek> thank you
- # [17:38] <Zakim> -[Microsoft.a]
- # [17:38] <plh> [adjourned]
- # [17:38] <Zakim> -glenn
- # [17:38] <Zakim> -janina
- # [17:38] <Zakim> -Sam
- # [17:38] <Zakim> -??P10
- # [17:38] <Zakim> -Philippe
- # [17:38] <Zakim> -tantek
- # [17:39] <Zakim> -krisk
- # [17:39] * Quits: jaymunro (~jaymunro@public.cloak) ("")
- # [17:40] <Zakim> -paulc
- # [17:40] <Zakim> HTML_WG()12:00PM has ended
- # [17:40] <Zakim> Attendees were Sam, Philippe, paulc, Eliot, Daniel_Austin, [Microsoft], jaymunro, glenn, krisk, pladd, janina, tantek
- # [17:41] * Quits: krisk (~krisk@public.cloak) ("Page closed")
- # [17:43] * Quits: Eliot (~Eliot@public.cloak) (Ping timeout: 180 seconds)
- # [17:53] * Quits: glenn (~gadams@public.cloak) (Client closed connection)
- # [17:54] * Joins: glenn (~gadams@public.cloak)
- # [18:01] * Quits: glenn (~gadams@public.cloak) (Ping timeout: 180 seconds)
- # [18:17] * Quits: lgombos (~gombos@public.cloak) (Ping timeout: 180 seconds)
- # [18:24] * Joins: glenn (~gadams@public.cloak)
- # [18:24] * Quits: paulc (~paulc@public.cloak) ("Page closed")
- # [18:30] * Joins: lgombos (~gombos@public.cloak)
- # [18:31] * Quits: pladd (~pladd@public.cloak) ("Page closed")
- # [18:31] * Quits: glenn (~gadams@public.cloak) (Ping timeout: 180 seconds)
- # [18:41] * Quits: rubys (~rubys@public.cloak) (Ping timeout: 180 seconds)
- # [18:52] * Joins: rubys (~rubys@public.cloak)
- # [18:57] * Joins: glenn (~gadams@public.cloak)
- # [19:01] * Quits: glenn (~gadams@public.cloak) (Client closed connection)
- # [19:02] * Joins: glenn (~gadams@public.cloak)
- # [19:02] * Quits: glenn (~gadams@public.cloak) (Client closed connection)
- # [19:02] * Joins: glenn_ (~gadams@public.cloak)
- # [19:02] * Quits: glenn_ (~gadams@public.cloak) (Client closed connection)
- # [19:03] * Joins: glenn (~gadams@public.cloak)
- # [19:07] * Quits: SteveF (~chatzilla@public.cloak) (Ping timeout: 180 seconds)
- # [19:08] * Quits: tantek (~tantek@public.cloak) (tantek)
- # [19:10] * Quits: glenn (~gadams@public.cloak) (Ping timeout: 180 seconds)
- # [19:14] * Quits: lgombos (~gombos@public.cloak) (Ping timeout: 180 seconds)
- # [19:36] * Joins: SteveF (~chatzilla@public.cloak)
- # [19:39] * Joins: lgombos (~gombos@public.cloak)
- # [19:56] * Quits: lgombos (~gombos@public.cloak) (Client closed connection)
- # [19:56] * Quits: SteveF (~chatzilla@public.cloak) ("ChatZilla 0.9.90.1 [Firefox 27.0.1/20140212131424]")
- # [20:00] * Joins: jernoble (~jernoble@public.cloak)
- # [20:03] * Joins: glenn (~gadams@public.cloak)
- # [20:05] * Quits: glenn (~gadams@public.cloak) (Client closed connection)
- # [20:05] * Joins: glenn (~gadams@public.cloak)
- # [20:06] * Quits: anssik (~uid10742@public.cloak) ("Connection closed for inactivity")
- # [20:10] * Joins: lgombos (~gombos@public.cloak)
- # [20:17] * Joins: tantek (~tantek@public.cloak)
- # [20:24] * Quits: glenn (~gadams@public.cloak) (Client closed connection)
- # [20:24] * Joins: glenn (~gadams@public.cloak)
- # [20:25] * Quits: glenn (~gadams@public.cloak) (Client closed connection)
- # [20:40] * Joins: glenn (~gadams@public.cloak)
- # [20:40] * Quits: glenn (~gadams@public.cloak) (Client closed connection)
- # [20:40] * Joins: glenn (~gadams@public.cloak)
- # [20:47] * Quits: glenn (~gadams@public.cloak) (Ping timeout: 180 seconds)
- # [21:01] * Joins: jernoble_ (~jernoble@public.cloak)
- # [21:03] * Quits: jernoble (~jernoble@public.cloak) (Ping timeout: 180 seconds)
- # [21:03] * Joins: mjs (~mjs@public.cloak)
- # [21:15] * Quits: jernoble_ (~jernoble@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
- # [21:21] * Quits: plh (plehegar@public.cloak) ("Leaving")
- # [21:24] * Joins: glenn (~gadams@public.cloak)
- # [21:24] * heycam|away is now known as heycam
- # [21:28] * Quits: Lachy (~Lachy@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
- # [21:30] * cabanier_ is now known as cabanier
- # [21:31] * Quits: glenn (~gadams@public.cloak) (Ping timeout: 180 seconds)
- # [21:46] * Quits: lgombos (~gombos@public.cloak) (Client closed connection)
- # [21:58] * Joins: lgombos (~gombos@public.cloak)
- # [22:06] * Quits: lgombos (~gombos@public.cloak) (Ping timeout: 180 seconds)
- # [22:19] * Joins: lgombos (~gombos@public.cloak)
- # [22:25] * Joins: glenn (~gadams@public.cloak)
- # [22:27] * Joins: jernoble (~jernoble@public.cloak)
- # [22:32] * Quits: glenn (~gadams@public.cloak) (Ping timeout: 180 seconds)
- # [22:43] * Quits: rubys (~rubys@public.cloak) ("Leaving.")
- # [22:53] * Joins: lgombos_ (~gombos@public.cloak)
- # [22:53] * Quits: lgombos (~gombos@public.cloak) (Client closed connection)
- # [22:54] * Joins: Lachy (~Lachy@public.cloak)
- # [23:26] * Joins: glenn (~gadams@public.cloak)
- # [23:33] * Joins: silvia (~Adium@public.cloak)
- # [23:33] * Quits: silvia (~Adium@public.cloak) (silvia)
- # [23:33] * Quits: glenn (~gadams@public.cloak) (Ping timeout: 180 seconds)
- # [23:39] * heycam is now known as heycam|away
- # [23:43] * heycam|away is now known as heycam
- # Session Close: Fri Mar 28 00:00:00 2014
The end :)