/irc-logs / w3c / #webapps / 2014-10-29 / end
Options:
- # Session Start: Wed Oct 29 00:00:00 2014
- # Session Ident: #webapps
- # [00:00] <timeless> chaals: you're doing that in IndieUI
- # [00:00] <timeless> ... keep doing it
- # [00:00] <timeless> ... we're happy not to take work from you
- # [00:00] <timeless> ... that it?
- # [00:00] <timeless> Topic: Intentions
- # [00:00] * Quits: smaug (~chatzilla@public.cloak) (Ping timeout: 180 seconds)
- # [00:00] <timeless> benjamp: yesterday we talked about a common shape for our API
- # [00:00] <timeless> ... having thought about that a bit more
- # [00:00] <timeless> ... the goal of the extensions explainer
- # [00:01] <timeless> ... 1) explain to browsers/standards bodies how things should work
- # [00:01] <timeless> ... selection, scrolling, input
- # [00:01] <chaals> s/extension/intention
- # [00:01] <timeless> ... a unified concept
- # [00:01] <timeless> ... 2) explain to web developers what they are
- # [00:01] <timeless> ... how they should build their sites
- # [00:01] <timeless> ... how to deal w/ new input modalities
- # [00:01] * Joins: Cyril (~chatzilla@public.cloak)
- # [00:01] <timeless> ... how to make their sites accessible
- # [00:01] <timeless> ... w/o doing more work
- # [00:01] <timeless> ... if the explainer can do this, i think that's good
- # [00:01] <timeless> chaals: +1
- # [00:01] <timeless> janina: +1
- # [00:01] <jcraig> +1
- # [00:02] * timeless ?
- # [00:02] <timeless> ArtB: +1
- # [00:02] <timeless> benjamp: alright
- # [00:02] <timeless> Topic: Editing
- # [00:02] <timeless> benjamp: how Editing plays into Intentions
- # [00:02] <timeless> ... how we're going to solve Editing
- # [00:02] <timeless> ... Editing was the original thing that came up here, it was on a lot of people's minds
- # [00:02] <timeless> ... we've been discussing contentEditable
- # [00:02] <timeless> ... the next version of that, or something to replace it
- # [00:02] <timeless> ... darobin suggested keeping "true" as a value
- # [00:03] <timeless> ... but adding new values
- # [00:03] <timeless> ... to enable various levels of behavior
- # [00:03] <timeless> ... or various intentions that have default behavior from the browser
- # [00:03] * Joins: kbx (~kbx@public.cloak)
- # [00:03] <timeless> ... X.contentEditable = "cursor"
- # [00:03] <timeless> ... just a blinking cursor, no enter, no delete
- # [00:03] <timeless> ... just gives you events
- # [00:03] <timeless> ... downside is inline-IMEs would not work
- # [00:03] * Joins: jcdufourd (~jcdufourd@public.cloak)
- # [00:03] <timeless> ... you'd get a partial composition, and it won't be connected back to the IME
- # [00:04] <timeless> ... to finish the composition
- # [00:04] <timeless> ... in CJK
- # [00:04] <timeless> ... we may be able to solve the problem
- # [00:04] * Joins: rubys (~Adium@public.cloak)
- # [00:04] <timeless> ... there are some web developers interested in this w/o an interaction to that
- # [00:04] <timeless> ... next
- # [00:04] <timeless> ... X.contentEditbable = "typing"
- # [00:04] <timeless> ... no newlines, no formatting, no deleting
- # [00:04] <jcraig> s/X.contentEditbable/X.contentEditable/
- # [00:04] * Quits: Zefa (~Zefa@public.cloak) (Ping timeout: 180 seconds)
- # [00:04] * timeless thx
- # [00:04] <timeless> ... that's a happy medium
- # [00:04] <timeless> ... we do the hard parts, IMEs, text insertion
- # [00:05] * Parts: rubys (~Adium@public.cloak) (rubys)
- # [00:05] <timeless> ... w/o dealing w/ standardizing/being consistent on newline/delete/etc.
- # [00:05] * Quits: kinjim (~kinjim@public.cloak) (Ping timeout: 180 seconds)
- # [00:05] <timeless> chaals: my understanding is, there are developers of Plugins, RichTextEditors on blogging
- # [00:05] * Joins: miterho (~miterho@public.cloak)
- # [00:05] <timeless> ... the 5, 6, or 9 groups of developers making that horrible mess of JS code
- # [00:05] <timeless> ... not millions of individuals
- # [00:05] <timeless> ... but a handful of projects
- # [00:05] <timeless> benjamp: yes, a handful of projects used by many sites
- # [00:06] <timeless> chaals: not to preclude another individual from writing an editing system
- # [00:06] <timeless> benjamp: X.contentEditable="multiline"
- # [00:06] <timeless> ... X.contentEditable="deletion"
- # [00:06] <timeless> ... these names are random, we can change them
- # [00:06] <timeless> ... they're here to talk about
- # [00:06] <timeless> ... X.contentEditable="formatting"
- # [00:06] <timeless> ... XXX or "formating"
- # [00:07] <timeless> ... cursor/typing/multiline/deletion
- # [00:07] <timeless> ... we need to think about the order in which to tackle them
- # [00:07] <timeless> ... is typing the one to tackle first?
- # [00:07] <timeless> ... typing is harder to spec than cursor, but more useful
- # [00:07] <Norbert> q+
- # [00:07] * Zakim sees Norbert on the speaker queue
- # [00:07] <timeless> ... feedback?
- # [00:07] <timeless> rniwa: difference between typing/multiline?
- # [00:07] <timeless> benjamp: X.contentEditable="typing multiline deletion"
- # [00:07] <timeless> [ like X.classList ]
- # [00:08] <timeless> benjamp: typing is basically "insertion works, like <input type=text>"
- # [00:08] <timeless> ... but the element itself supports full html/css but only modifiable by script, not by user input
- # [00:08] <timeless> ... paste would have to be handled separately
- # [00:08] <timeless> rniwa: i have a hard time believing you want these different types
- # [00:08] <timeless> ... i feel there are very few UCs where you want typing
- # [00:08] <timeless> ... but not ...
- # [00:09] <timeless> ... i feel like it would be better to have "multiline" and then offer cancel for newlines
- # [00:09] <timeless> chaals: +1
- # [00:09] <timeless> ... seems to be the logical place to start
- # [00:09] <timeless> benjamp: the reason i'm considering typing
- # [00:09] <timeless> ... we don't have Intention events
- # [00:09] <timeless> ... it will take time to spec those
- # [00:09] <timeless> ... even if we spec those
- # [00:09] * Quits: Jingwang_qi (~Jingwang_qi@public.cloak) (Ping timeout: 180 seconds)
- # [00:09] <timeless> ... if we could get typing
- # [00:09] * Quits: brendaneich (~brendaneich1@public.cloak) (brendaneich)
- # [00:09] * Quits: charles_engelke (~charles_engelke@public.cloak) ("Page closed")
- # [00:09] <timeless> ... people could use existing dom apis
- # [00:09] <timeless> ... typing is easier to spec
- # [00:09] <timeless> ... true is supported, and you get intention events
- # [00:10] * Joins: Shige (~Shige@public.cloak)
- # [00:10] <timeless> ... cancel some events, and let it run
- # [00:10] <timeless> rniwa: i don't think "typing is easy"
- # [00:10] <timeless> ... it's very hard
- # [00:10] <timeless> ... typing includes IME, spellcheck, autocorrection, grammar, dictation, accessibility
- # [00:10] <timeless> ... specing typing would take as much time as typing if not more
- # [00:10] <timeless> ... IMO, it doesn't make much sense to spec type=typing concurrent w/ Intention
- # [00:11] <timeless> ... hoping that Intention is before intentions
- # [00:11] <timeless> ... I think typing is much harder than Intentions
- # [00:11] <timeless> chaals: Intentions is "generate an event"
- # [00:11] * Joins: Noriya (~Noriya@public.cloak)
- # [00:11] <timeless> ... that seems simpler than "specing typing"
- # [00:11] <timeless> ... i'm w/ rniwa
- # [00:11] <timeless> Travis: benjamp can you clarify the difference between
- # [00:11] <timeless> ... X.contentEditable="typing" and what you get w/ <input>
- # [00:12] <timeless> benjamp: they're similar, except you deal w/ HTML
- # [00:12] <timeless> ... X.contentEditable="typing" would be an input tag except
- # [00:12] <timeless> ... pressing <enter> does nothing
- # [00:12] <timeless> ... selection and replacing does nothing
- # [00:12] * Joins: Jingwang_qi (~Jingwang_qi@public.cloak)
- # [00:12] <timeless> ... the developer would have to figure out what to do
- # [00:13] <timeless> chaals: you select across a boundary involving <b>
- # [00:13] <timeless> ... and press <del>
- # [00:13] <timeless> ... the editor has to decide what to do
- # [00:13] <timeless> benjamp: which would be the case if you handled the keys and canceled events
- # [00:13] <timeless> ... if you handle only delete, you could
- # [00:13] * Joins: charles_engelke (~uid50049@public.cloak)
- # [00:13] <timeless> ... -- you can't insert over a non-empty-selection
- # [00:14] <timeless> q?
- # [00:14] * Zakim sees Norbert on the speaker queue
- # [00:14] <timeless> ack Norbert
- # [00:14] * Zakim sees no one on the speaker queue
- # [00:14] <timeless> Norbert: my experience is that
- # [00:14] <timeless> ... typing itself is often very hard
- # [00:14] <timeless> ... spellchecking is hard/spell correction
- # [00:14] <timeless> ... an application can not add much value
- # [00:14] <timeless> ... whether it would make sense
- # [00:14] * Quits: anssik (~uid10742@public.cloak) ("Connection closed for inactivity")
- # [00:14] <timeless> ... to draw a boundary around typing
- # [00:14] <timeless> ... say that typing w/in one #TextNode is handled by the browser
- # [00:14] <timeless> ... anything around it is handled by my application
- # [00:15] <timeless> benjamp: that's what x.contentEditable="typing" is
- # [00:15] <timeless> Norbert: if you say <backspace> is not part of "typing"
- # [00:15] <timeless> ... but <backspace> w/in a #TextNode is
- # [00:15] <timeless> benjamp: that's ambiguous
- # [00:15] * Quits: wooglae (~wooglae@public.cloak) (Ping timeout: 180 seconds)
- # [00:15] * Quits: jcraig (~jcraig@public.cloak) (jcraig)
- # [00:15] <timeless> Norbert: we'd have to define when control returns from the Platform to the page
- # [00:15] <chaals> q+
- # [00:15] * Zakim sees chaals on the speaker queue
- # [00:15] <timeless> rniwa: suppose you type "hello"
- # [00:15] * Joins: jcraig (~jcraig@public.cloak)
- # [00:15] <timeless> ... <space>
- # [00:15] <timeless> ... <ctrl>+b
- # [00:16] <timeless> ... type "world"
- # [00:16] * Quits: paulliu (~paul@public.cloak) (paulliu)
- # [00:16] <timeless> ... now you hit <del>
- # [00:16] * Joins: seo (~seo@public.cloak)
- # [00:16] <timeless> ... maybe it's in the #TextNode
- # [00:16] <timeless> ... when you've deleted the "world"
- # [00:16] * Quits: miterho (~miterho@public.cloak) (Ping timeout: 180 seconds)
- # [00:16] <timeless> ... what happens when you press <del> again (near <ctrl>+b)
- # [00:16] <timeless> ack chaals
- # [00:16] * Zakim sees no one on the speaker queue
- # [00:16] <timeless> chaals: if you hit <del> and you're not trying to delete w/in a node
- # [00:16] <timeless> ... it should be handled
- # [00:17] <timeless> ... we generate a <del> intention when the browser won't handle the text on its own
- # [00:17] <timeless> ... when you're in the element, you hit delete
- # [00:17] <timeless> ... as soon as the element is empty, it deletes the text
- # [00:17] <timeless> ... now you have <del> event fired and the application has to figure out what to do
- # [00:17] <timeless> ... <span>[hello]</>[ ]<b><span>[world]</span></b>
- # [00:17] <timeless> rniwa: the browser has to understand the state
- # [00:17] <timeless> benjamp: if we do this
- # [00:18] <timeless> ... we're doing the easy parts, and leaving the hard parts to the frameworks
- # [00:18] <timeless> ... if it's inconsistent and sometimes don't fire events, that's really confusing
- # [00:18] <jcraig> q+
- # [00:18] * Zakim sees jcraig on the speaker queue
- # [00:18] <timeless> chaals: conservatively do deleting
- # [00:18] <timeless> ... if you know where you are, and you can be really sure,
- # [00:18] <timeless> ... not perfectly interoperable
- # [00:18] <jcraig> q+ to ask how opt+delete would be handled?
- # [00:18] * Zakim sees jcraig on the speaker queue
- # [00:18] <timeless> ... then you delete
- # [00:18] <timeless> ... user presses <del> at end of <b/>
- # [00:18] <timeless> ... you fire off intention
- # [00:18] <timeless> ... and the web page looks at where you are
- # [00:19] <timeless> ... and the web page decides what to do
- # [00:19] <timeless> benjamp: we've talked about having the Delete Intention say what it would delete
- # [00:19] <timeless> ... browser makes a guess
- # [00:19] <timeless> ... gives it to the app
- # [00:19] <timeless> ... if the page disagrees, it can change it
- # [00:19] <jcraig> q-
- # [00:19] * Zakim sees no one on the speaker queue
- # [00:19] <timeless> ... and then it can be modified
- # [00:19] * Joins: notbenjamin (~textual@public.cloak)
- # [00:19] <timeless> rniwa: <span>[heello]</>[ ]<b><span>[world]</span></b>
- # [00:19] <timeless> ... if i go back to heello, i should be able to go back
- # [00:20] <timeless> ... the browser needs to know that it was something that the user just typed
- # [00:20] <timeless> q+ to ask why?
- # [00:20] * Zakim sees timeless on the speaker queue
- # [00:20] * timeless constantly pastes to get correction
- # [00:20] <timeless> rniwa: there's contextual information the user needs to get out of the text
- # [00:20] <jcraig> q+
- # [00:20] * Zakim sees timeless, jcraig on the speaker queue
- # [00:20] <timeless> benjamp: this is why we want to include "what we're about to insert"
- # [00:20] <timeless> ... if you hit <ctrl>-b, we should include an empty thing
- # [00:20] <timeless> ... we need to provide the contextual data
- # [00:21] <timeless> ... may-be more contextual data
- # [00:21] <timeless> ... they just typed it, we need to spellcheck it
- # [00:21] * Quits: jhund (~jhund@public.cloak) (Ping timeout: 180 seconds)
- # [00:21] <timeless> ... crazy UCs, like end-of-word and spellchecking
- # [00:21] <timeless> ... we need to think about it
- # [00:21] <timeless> ... as long as we handle each individual action
- # [00:21] <timeless> ... typing character
- # [00:21] <timeless> ... deletion
- # [00:21] <timeless> ... handle each of them, it should be clear what we're supposed to be doing
- # [00:21] <timeless> q?
- # [00:21] * Zakim sees timeless, jcraig on the speaker queue
- # [00:21] <timeless> ack me
- # [00:21] <Zakim> timeless, you wanted to ask why?
- # [00:21] * Zakim sees jcraig on the speaker queue
- # [00:22] <rniwa> q+
- # [00:22] * Zakim sees jcraig, rniwa on the speaker queue
- # [00:22] * Joins: adrianba (~adrianba@public.cloak)
- # [00:23] <timeless> timeless: Just because the user didn't write something
- # [00:23] <timeless> ... doesn't mean they don't want spelling corrections
- # [00:23] <timeless> ... i frequently copy other peoples' texts
- # [00:23] <timeless> ... and use spell correction
- # [00:23] <timeless> ack jcraig
- # [00:23] * Zakim sees rniwa on the speaker queue
- # [00:23] <timeless> jcraig: on Contextual information
- # [00:23] <timeless> ... sometimes, what's available is
- # [00:23] <timeless> ... what's misspelled
- # [00:23] <timeless> ... the contexts of what they've typed
- # [00:23] <timeless> ... the candidates of what they've typed
- # [00:24] <timeless> ... likewise w/ dictation
- # [00:24] <timeless> ... similar phonemes vs. keyboard shifts
- # [00:24] <timeless> ack rniwa
- # [00:24] * Zakim sees no one on the speaker queue
- # [00:24] <timeless> rniwa: not putting autocorrection is a feature is a specific feature we added
- # [00:24] <timeless> ... we keep track of which pieces the user typed and which the user didn't
- # [00:24] <timeless> ... we specifically avoid it
- # [00:24] <timeless> ... it isn't that we're treating text as typed differently
- # [00:24] <timeless> ... because we were careless
- # [00:25] <timeless> ... it was intentional
- # [00:25] <timeless> [ timeless thinks this is stupdi ]
- # [00:25] <timeless> s/stupdi/stupid/
- # [00:25] <timeless> rniwa: to avoid autocorrecting a reply
- # [00:25] <timeless> ... to an email
- # [00:25] <timeless> ... i don't think it's sufficient for a browser to know
- # [00:25] <timeless> ... just the surrounding text
- # [00:25] <timeless> ... in the case of auto correction on a mac
- # [00:25] <timeless> ... you should be able to select any text, and the browser should be able to correct the text
- # [00:26] <timeless> ... the browser needs context
- # [00:26] <timeless> ... the browser needs to be able to initiate where to start correcting
- # [00:26] <timeless> chaals: that's an important UC
- # [00:26] <timeless> ... but is that problematic?
- # [00:27] <timeless> ... yes i should be able to deal w/ that
- # [00:27] <timeless> ... but i don't see where
- # [00:27] <timeless> ... this is cases where you're sure
- # [00:27] <timeless> rniwa: to benjamp 's earlier point
- # [00:27] <timeless> ... giving context of where things are typed
- # [00:27] <timeless> [ scribe clarifies, benjamp 's context is to the webapp ]
- # [00:27] <timeless> [ the browser has everything ]
- # [00:28] <timeless> chaals: the webapp can autocorrect what it sees
- # [00:28] <timeless> ... but do we need to provide this ... as a v1 thing
- # [00:28] <timeless> benjamp: when a browser makes a decision about what it's about to do
- # [00:28] <timeless> ... user types a letter [A]
- # [00:28] <timeless> ... browser knows what's selection
- # [00:28] <timeless> ... we need to provide the webapp what the browser planned to already do
- # [00:29] <timeless> ... they need the context data that the browser was using to make these decisions
- # [00:29] <timeless> ... context data = {current word, what's selected, ... }
- # [00:29] <timeless> ... we can figure out what that is
- # [00:29] <timeless> ... hand it to the web app as an Intention event
- # [00:29] * Joins: jcdufourd_ (~jcdufourd@public.cloak)
- # [00:29] <timeless> ... the web app can decide to change it
- # [00:29] <timeless> rniwa: apps need to inform browsers what parts are / aren't editable
- # [00:30] <timeless> benjamp: then it should be X.contentEditable=false
- # [00:30] <timeless> [ chaals goes to drawing board ]
- # [00:30] <timeless> chaals@[yandex.ru] <- browser inserted this
- # [00:30] * Quits: jcdufourd (~jcdufourd@public.cloak) (Ping timeout: 180 seconds)
- # [00:31] <timeless> chaals: app needs a way to tell browser don't let delete
- # [00:31] <timeless> benjamp: that's what X.contentEditable=false
- # [00:31] * Quits: sam (osamu@public.cloak) (Ping timeout: 180 seconds)
- # [00:31] <timeless> chaals: it's selectable because it's text
- # [00:31] <timeless> benjamp: it's selectable unless it's a picture
- # [00:31] <timeless> [ or if it's CSS selectable:false ]
- # [00:31] * Joins: stepsteg (~uid50053@public.cloak)
- # [00:31] * Quits: tantek (~tantek@public.cloak) (Ping timeout: 180 seconds)
- # [00:31] <timeless> rniwa: we don't let users select across editing boundary
- # [00:32] <timeless> [ is that a bug? ]
- # [00:32] <timeless> chaals: we use :after{content"yandex.ru}
- # [00:32] <timeless> s/"yandex.ru/:"yandex.ru"/
- # [00:32] * Joins: tantek (~tantek@public.cloak)
- # [00:33] <timeless> ... this is how we handle identities on our Intranet
- # [00:33] <timeless> benjamp: maybe we should have a session on problems to solve
- # [00:33] <timeless> ... if people think there's a problem w/ having the context the browser would use
- # [00:33] <jcraig> q+
- # [00:33] * Zakim sees jcraig on the speaker queue
- # [00:33] <timeless> ... apps can make the decisions they want to make
- # [00:33] <timeless> chaals: i think so
- # [00:33] <timeless> ... it seems like there's a model for typing which works
- # [00:33] * Quits: Shige (~Shige@public.cloak) (Ping timeout: 180 seconds)
- # [00:34] <timeless> ... we need to sit down w/ UCs and check the model
- # [00:34] * Quits: arunranga (~arunranga@public.cloak) (arunranga)
- # [00:34] <timeless> ... everytime you're not sure, give the app an intention event
- # [00:34] <timeless> ... everytime you're sure, the browser should be able to just-do-it
- # [00:34] <timeless> ... it's unclear there'd be any problems
- # [00:34] <timeless> Travis: i think it will screw up a JS state machine
- # [00:35] <timeless> ... if you're a web app and you're managing this experience
- # [00:35] <timeless> ... and you only get things for the hard case
- # [00:35] * Joins: sam (osamu@public.cloak)
- # [00:35] <timeless> ... you're probably missing context
- # [00:35] <timeless> ... i support giving the context for the simple thing
- # [00:35] <timeless> benjamp: agreed
- # [00:35] <jcraig> q-
- # [00:35] * Zakim sees no one on the speaker queue
- # [00:35] <timeless> chaals: simple thing is text-inserted; text-inserted; text-removed
- # [00:35] <timeless> ... i agree you should get events when things change
- # [00:35] <timeless> ... complicated
- # [00:35] <timeless> benjamp: before-input "inserttext"
- # [00:35] <timeless> ... vs. "format"
- # [00:36] <timeless> ... or "insertnewline"
- # [00:36] <timeless> Norbert: it sounds like you want complete state
- # [00:36] <timeless> benjamp: i'm planning to give context data
- # [00:36] * Joins: sicking (~sicking@public.cloak)
- # [00:36] <timeless> ... spelling should be handled by the browser
- # [00:36] <timeless> ... unless you want to handle it in the app
- # [00:36] <jcraig> q+ to mention the IME and dictation examples
- # [00:36] * Zakim sees jcraig on the speaker queue
- # [00:36] <timeless> chaals: we're trying to make it possible to build an editor
- # [00:36] <timeless> ... where the ordinary stuff (Text in/out) is handled by the browser
- # [00:37] <timeless> ... and editors handle everything else
- # [00:37] <timeless> q+ to ask about an extra filter for "text-in-out"
- # [00:37] * Zakim sees jcraig, timeless on the speaker queue
- # [00:37] <timeless> chaals: if you want to screw up the basic stuff, we won't make that easy in this version
- # [00:37] <timeless> ack jcraig
- # [00:37] <Zakim> jcraig, you wanted to mention the IME and dictation examples
- # [00:37] * Zakim sees timeless on the speaker queue
- # [00:37] <timeless> jcraig: selection crosses a boundary
- # [00:37] <timeless> ... a case where you handle stuff to the webapp
- # [00:38] <timeless> ... in IME/dictation case
- # [00:38] <timeless> ... there's a psuedo entering selection that comes and goes away
- # [00:38] <timeless> ... Romaji, "toayou", there's a candidate for "to, kyo"
- # [00:38] * Quits: sicking (~sicking@public.cloak) (sicking)
- # [00:38] <timeless> ... while you're talking, it's rendering things
- # [00:38] <timeless> ... but the whole insertion is rendered
- # [00:38] <timeless> ... but if you're selected over a word boundary
- # [00:38] <timeless> ... the app will perform a change
- # [00:38] <timeless> ... the way i'm hearing this
- # [00:39] <timeless> ... nothing would happen while you're typing
- # [00:39] <timeless> ... you wouldn't see visual feedback
- # [00:39] * Joins: tantek_ (~tantek@public.cloak)
- # [00:39] <timeless> chaals: you'd see the IME
- # [00:39] <timeless> ... you'd see the input method has control
- # [00:39] <timeless> ... when the IME hands the text back, you'd get the event
- # [00:39] <timeless> ... you'd have to decide how to deal w/ the text
- # [00:39] <timeless> jcraig: we'd render it as if we're changing the dom?
- # [00:39] <timeless> chaals: no
- # [00:40] <timeless> [C]haals
- # [00:40] <timeless> [4]
- # [00:40] <timeless> [h]
- # [00:40] <timeless> [x]
- # [00:40] <timeless> chaals: you'd see the browsers IME saying here's stuff
- # [00:40] <timeless> ... until you select the character you want
- # [00:40] <timeless> ... the cursor sits there waiting until you're done w/ the IME
- # [00:40] <timeless> jcraig: i understand the characters
- # [00:41] * Joins: adrianba_ (~adrianba@public.cloak)
- # [00:41] * Joins: sam_ (osamu@public.cloak)
- # [00:42] * Quits: tantek (~tantek@public.cloak) (Ping timeout: 180 seconds)
- # [00:42] * tantek_ is now known as tantek
- # [00:42] <timeless> chaals: we're not talking about client imes
- # [00:42] <timeless> ... only Host IMEs
- # [00:42] <timeless> benjamp: this UC can be solved w/ inline updates
- # [00:42] <timeless> ... if we're firing ALL intentions
- # [00:42] <timeless> ... IME, or other input-method
- # [00:42] <timeless> ... it inserts and removes text many times
- # [00:42] <timeless> ... they can handle it, or let us handle it
- # [00:42] <timeless> q?
- # [00:42] * Zakim sees timeless on the speaker queue
- # [00:43] <timeless> Katie: what about an Observe?
- # [00:43] <timeless> benjamp: all events are Observe unless you interfere
- # [00:43] <timeless> rniwa: when user types, there are specific underlines, and that needs to be done by the browser
- # [00:43] <timeless> chaals: absolutely
- # [00:44] <jcraig> s/Katie/Katie Haritos-Shea/
- # [00:44] * Joins: brendaneich (~brendaneich1@public.cloak)
- # [00:44] <timeless> s/Katie Haritos/Katie_Haritos/
- # [00:44] <timeless> chaals: IME is figuring out what i want
- # [00:44] <timeless> ... the intention is "replace this" with
- # [00:45] <jcraig> s/Katie_Haritos/Katie_Haritos_Shea/
- # [00:46] * Quits: sam (osamu@public.cloak) (Ping timeout: 180 seconds)
- # [00:47] <timeless> benjamp: when you get a text-input event
- # [00:47] * Quits: a12u (~androirc@public.cloak) (Client closed connection)
- # [00:47] <timeless> ... you normally let it happen
- # [00:47] <timeless> ... if you want to insert extra stuff
- # [00:47] <timeless> ... you can do that, because you know text was just inserted
- # [00:47] * Quits: adrianba (~adrianba@public.cloak) (Ping timeout: 180 seconds)
- # [00:47] <timeless> ... but generally you let the text insertion happen
- # [00:47] <timeless> ... there's an editor at microsoft
- # [00:48] <timeless> ... Visual Studio Online Code Editor
- # [00:48] <timeless> ... they're using a floating text area to do insertion
- # [00:48] <timeless> ... they can't style it
- # [00:48] <timeless> ... we need to provide them to let them monitor what gets inserted, but style it
- # [00:48] <timeless> ... they want IMEs to be handled
- # [00:48] <timeless> ... we're all in agreement about that
- # [00:48] <timeless> rniwa: i think darobin's proposal
- # [00:48] <timeless> ... using Shadow DOM
- # [00:48] <timeless> ... create hidden node
- # [00:48] * Quits: plh (plehegar@public.cloak) ("Leaving")
- # [00:49] <timeless> ... into which the browser inserts text nodes
- # [00:49] <timeless> ... might be something close to a workable solution
- # [00:49] <timeless> benjamp: 12 mins
- # [00:49] <timeless> ... next steps
- # [00:49] * Parts: charles_engelke (~uid50049@public.cloak)
- # [00:49] <timeless> ... obviously lots of problems to solve
- # [00:49] <timeless> ... one of the big ones is Input
- # [00:49] <timeless> ... input is incredibly complicated
- # [00:49] <timeless> ... before-input and input are in DOM Level 3
- # [00:49] <timeless> [ Travis is laughing ]
- # [00:50] <timeless> benjamp: i want to propose to them
- # [00:50] <timeless> ... that we take that in the Editing TF
- # [00:50] <timeless> ... because we're solving these problems
- # [00:50] <timeless> ... I don't care what spec it's in
- # [00:50] <darobin> s/using Shadow DOM/using a Shadow DOM attached to the caret/
- # [00:50] <timeless> ... we should be solving them in intentions
- # [00:50] <darobin> s/... create hidden node//
- # [00:50] <timeless> Travis: don't look at me
- # [00:50] <timeless> chaals: what's the problem?
- # [00:50] <timeless> ... not done until DOM3 (heat death)
- # [00:50] <timeless> ... it's not done until (heat death of next universe)
- # [00:51] <timeless> benjamp: alright, see what we can do
- # [00:51] <timeless> ... next, priorities
- # [00:51] <timeless> ... what do we want to go solve
- # [00:51] <timeless> ... in what order?
- # [00:51] <timeless> ... X.contentEditable = typing
- # [00:51] * Quits: npdoty (npdoty@public.cloak)
- # [00:51] <timeless> ... as a concept, i think it's the baseline
- # [00:51] <timeless> ... it enables IMEs, spellchecking
- # [00:51] <timeless> ... disables formatting, newlines
- # [00:52] <timeless> [ Agreed ]
- # [00:52] <timeless> benjamp: Developer Momentum
- # [00:52] <timeless> ... CK Editor is a group we're working w/
- # [00:52] <timeless> ... we need to continue to build, get feedback, UCs, testing
- # [00:52] <timeless> ... i'm working on that @MS
- # [00:52] <timeless> ... i'm sure the others are working on this in their own companies
- # [00:52] * Joins: Dong-Young (~Dong-Young@public.cloak)
- # [00:52] <timeless> ... @Extensible Web last month
- # [00:52] <timeless> ... two groups came to me
- # [00:53] <timeless> ... we need a strategy
- # [00:53] * Joins: a12u (~androirc@public.cloak)
- # [00:53] <timeless> chaals: if we start doing the work and say "you're welcome to come do this"
- # [00:53] <timeless> ... and they want this to happen
- # [00:53] <timeless> ... hopefully they'll come
- # [00:53] * Joins: jhund (~jhund@public.cloak)
- # [00:53] <timeless> ... we can't force them to come
- # [00:53] * MichaelC your staff contact can help with outreach / recruiting mehanisms
- # [00:53] <timeless> ... we can't force them to spend time
- # [00:53] <timeless> benjamp: everyone interested in this, please tell them to come
- # [00:54] <timeless> chaals: usual thing at the end of a meeting
- # [00:54] <timeless> benjamp: what do we do with these documents?
- # [00:55] <timeless> chaals: when ready, publish as notes
- # [00:55] <timeless> ... we can publish as drafts first
- # [00:55] * Quits: darobin (rberjon@public.cloak) (Client closed connection)
- # [00:55] <timeless> ... when we're done scribbling on it, we publish as a note
- # [00:55] <timeless> benjamp: not yet
- # [00:55] * Joins: darobin (rberjon@public.cloak)
- # [00:55] <timeless> darobin: you publish to get feedback
- # [00:55] <timeless> chaals: a group of editors in a room
- # [00:55] <timeless> ... would be pleased if they had a stable-ish draft that didn't change every day
- # [00:55] <timeless> ... so they could give comments
- # [00:56] <timeless> benjamp: target that a couple of months out
- # [00:56] <timeless> Topic: Next Meeting
- # [00:56] * Quits: jyasskin (~textual@public.cloak) (Ping timeout: 180 seconds)
- # [00:56] <timeless> chaals: somewhere in north in spring
- # [00:57] <timeless> benjamp: we have Friday calls, we don't use it regularly
- # [00:57] <timeless> ... it's been once every month or two
- # [00:57] <timeless> ... it's 8am this time zone (Pacific)
- # [00:57] <timeless> ... we can do adhoc
- # [00:57] <timeless> ... we use #webapps
- # [00:57] <timeless> [ Adjourned ]
- # [00:57] <timeless> ArtB: thanks timeless
- # [00:57] * Quits: benjamp (~benjamp@public.cloak) ("Page closed")
- # [00:57] <timeless> chaals: thanks timeless
- # [00:57] <timeless> [ Applause ]
- # [00:57] <timeless> RRSAgent, draft minutes
- # [00:57] <RRSAgent> I have made the request to generate http://www.w3.org/2014/10/28-webapps-minutes.html timeless
- # [00:57] * Quits: jcraig (~jcraig@public.cloak) (jcraig)
- # [00:57] * Quits: forty4 (~forty4@public.cloak) ("Leaving.")
- # [00:57] * Quits: tomoyuki (~tomoyuki@public.cloak) (tomoyuki)
- # [00:58] * Quits: rniwa (~rniwa@public.cloak) (rniwa)
- # [00:58] * Joins: jcraig (~jcraig@public.cloak)
- # [00:58] * Quits: Noriya (~Noriya@public.cloak) (Ping timeout: 180 seconds)
- # [00:58] * Quits: a12u (~androirc@public.cloak) ("AndroIRC - Android IRC Client ( http://www.androirc.com )")
- # [00:59] * Quits: jcraig (~jcraig@public.cloak) (jcraig)
- # [01:00] * Quits: chaals (~Adium@public.cloak) ("Leaving.")
- # [01:01] * Quits: youngwoojo (~youngwoojo@public.cloak) (Ping timeout: 180 seconds)
- # [01:01] * Joins: jcraig (~jcraig@public.cloak)
- # [01:01] * Joins: sicking (~sicking@public.cloak)
- # [01:02] * Joins: gludi|2 (~kvirc@public.cloak)
- # [01:02] * Quits: kbx (~kbx@public.cloak) (Ping timeout: 180 seconds)
- # [01:02] * Joins: npdoty (npdoty@public.cloak)
- # [01:02] * Quits: darobin (rberjon@public.cloak) (Ping timeout: 180 seconds)
- # [01:03] * Quits: yosuke (yfunahas@public.cloak) (Ping timeout: 180 seconds)
- # [01:03] * Quits: seo (~seo@public.cloak) (Ping timeout: 180 seconds)
- # [01:03] * Quits: shinwoo (~shinwoo@public.cloak) (Ping timeout: 180 seconds)
- # [01:03] * Quits: hiroto__ (~hiroto@public.cloak) (Ping timeout: 180 seconds)
- # [01:03] * Quits: Dong-Young (~Dong-Young@public.cloak) (Ping timeout: 180 seconds)
- # [01:03] <Zakim> -Portland
- # [01:03] <Zakim> RWC_WAPI()12:00PM has ended
- # [01:03] <Zakim> Attendees were +1.617.225.aaaa, Laszlo, Portland.a, chaals, ArtB, timeless, Yves, sicking, Olli_Pettay, anssik, +1.781.428.aabb, lgombos
- # [01:03] * Quits: Jingwang_qi (~Jingwang_qi@public.cloak) (Ping timeout: 180 seconds)
- # [01:04] * Quits: jcdufourd_ (~jcdufourd@public.cloak) (Ping timeout: 180 seconds)
- # [01:04] * Quits: sicking (~sicking@public.cloak) (sicking)
- # [01:04] * Quits: jhund (~jhund@public.cloak) (Ping timeout: 180 seconds)
- # [01:06] * Quits: jsbell_ (~jsbell@public.cloak) ("There's no place like home...")
- # [01:07] * Joins: gludi|3 (~kvirc@public.cloak)
- # [01:07] * Quits: MichaelC (cooper@public.cloak) (Ping timeout: 180 seconds)
- # [01:08] * Quits: ArtB (~abarsto@public.cloak) ("Leaving.")
- # [01:09] * Joins: jyasskin (~textual@public.cloak)
- # [01:11] * Joins: Zefa (~Zefa@public.cloak)
- # [01:11] * Quits: jcraig (~jcraig@public.cloak) (jcraig)
- # [01:11] * Quits: Zefa (~Zefa@public.cloak) ("")
- # [01:11] * Joins: Zefa (~Zefa@public.cloak)
- # [01:12] * Quits: gludi|2 (~kvirc@public.cloak) (Ping timeout: 180 seconds)
- # [01:14] * Quits: npdoty (npdoty@public.cloak)
- # [01:15] * Parts: zcorpan_ (~zcorpan@public.cloak) (Leaving...)
- # [01:15] * Quits: notbenjamin (~textual@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
- # [01:18] * Quits: shepazu (schepers@public.cloak) ("is sleepy")
- # [01:18] * Quits: kurosawa (~chatzilla@public.cloak) (Ping timeout: 180 seconds)
- # [01:21] * Quits: kn2 (~k.n@public.cloak) (Ping timeout: 180 seconds)
- # [01:22] * Quits: fjh (~fhirsch3@public.cloak) (fjh)
- # [01:25] * Quits: brendaneich (~brendaneich1@public.cloak) (Ping timeout: 180 seconds)
- # [01:25] * Joins: arunranga (~arunranga@public.cloak)
- # [01:26] * Quits: Norbert (~Norbert@public.cloak) (Ping timeout: 180 seconds)
- # [01:32] * Joins: shepazu (schepers@public.cloak)
- # [01:32] * Joins: fjh (~fhirsch3@public.cloak)
- # [01:38] * Joins: forty4 (~forty4@public.cloak)
- # [01:38] * Quits: dka (~dka@public.cloak) (dka)
- # [01:38] * Joins: wooglae (~Adium@public.cloak)
- # [01:40] * Joins: jcraig (~jcraig@public.cloak)
- # [01:42] * Quits: jcraig (~jcraig@public.cloak) (jcraig)
- # [01:42] * Joins: shepazutu (schepers@public.cloak)
- # [01:45] * Quits: jrossi (~jrossi@public.cloak) (Ping timeout: 180 seconds)
- # [01:47] * Quits: shepazu (schepers@public.cloak) (Ping timeout: 180 seconds)
- # [01:47] * shepazutu is now known as shepazu
- # [01:48] * Joins: dka (~dka@public.cloak)
- # [01:48] * Joins: forty41 (~forty4@public.cloak)
- # [01:48] * Quits: forty4 (~forty4@public.cloak) (Client closed connection)
- # [01:52] * Quits: marcosc (~marcosc@public.cloak) (Client closed connection)
- # [01:52] * Quits: fjh (~fhirsch3@public.cloak) (fjh)
- # [01:54] * Quits: dka (~dka@public.cloak) (dka)
- # [01:57] * Joins: kbx (~kbx@public.cloak)
- # [01:58] * Quits: glenn (~gadams@public.cloak) (Client closed connection)
- # [02:02] * Joins: chaals (~Adium@public.cloak)
- # [02:02] * Quits: forty41 (~forty4@public.cloak) ("Leaving.")
- # [02:04] * Quits: tantek (~tantek@public.cloak) (tantek)
- # [02:04] * Joins: jcraig (~jcraig@public.cloak)
- # [02:05] * Quits: chaals (~Adium@public.cloak) ("Leaving.")
- # [02:06] * Quits: gludi|3 (~kvirc@public.cloak) (Ping timeout: 180 seconds)
- # [02:07] * Quits: kbx (~kbx@public.cloak) (Ping timeout: 180 seconds)
- # [02:07] * Joins: fjh (~fhirsch3@public.cloak)
- # [02:08] * Quits: Cyril (~chatzilla@public.cloak) (Ping timeout: 180 seconds)
- # [02:13] * Quits: arunranga (~arunranga@public.cloak) (arunranga)
- # [02:14] * Quits: jyasskin (~textual@public.cloak) ("My computer has gone to sleep. ZZZzzz…")
- # [02:16] * Joins: arunranga (~arunranga@public.cloak)
- # [02:17] * Quits: jcraig (~jcraig@public.cloak) (jcraig)
- # [02:17] * Quits: myakura (~myakura@public.cloak) (Client closed connection)
- # [02:19] * Joins: fjh_ (~fhirsch3@public.cloak)
- # [02:22] * Quits: fjh (~fhirsch3@public.cloak) (Ping timeout: 180 seconds)
- # [02:22] * fjh_ is now known as fjh
- # [02:26] * Quits: fjh (~fhirsch3@public.cloak) (fjh)
- # [02:27] * Quits: jungkees (~uid24208@public.cloak) ("Connection closed for inactivity")
- # [02:30] * Joins: marcosc (~marcosc@public.cloak)
- # [02:30] * Quits: marcosc (~marcosc@public.cloak) (Client closed connection)
- # [02:30] * Joins: marcosc (~marcosc@public.cloak)
- # [02:32] * Joins: jcraig (~jcraig@public.cloak)
- # [02:32] * Quits: marcosc (~marcosc@public.cloak) (Client closed connection)
- # [02:33] * Joins: marcosc (~marcosc@public.cloak)
- # [02:35] * Quits: jcraig (~jcraig@public.cloak) (jcraig)
- # [02:40] * Quits: marcosc (~marcosc@public.cloak) (Ping timeout: 180 seconds)
- # [02:43] * Joins: TNK (~KIMWOOGLAE@public.cloak)
- # [02:51] * Quits: shepazu (schepers@public.cloak) ("is sleepy")
- # [02:51] * Quits: TNK (~KIMWOOGLAE@public.cloak) (Ping timeout: 180 seconds)
- # [02:52] * Joins: TNK (~KIMWOOGLAE@public.cloak)
- # [02:53] * Joins: jyasskin (~textual@public.cloak)
- # [03:06] * Quits: jyasskin (~textual@public.cloak) ("My computer has gone to sleep. ZZZzzz…")
- # [03:09] * Parts: arunranga (~arunranga@public.cloak) (arunranga)
- # [03:19] * Joins: jyasskin (~textual@public.cloak)
- # [03:21] * Quits: jyasskin (~textual@public.cloak) ("My computer has gone to sleep. ZZZzzz…")
- # [03:22] * Joins: lgombos_ (~gombos@public.cloak)
- # [03:33] * Joins: notbenjamin (~textual@public.cloak)
- # [03:37] * Joins: estellevw (~estellevw@public.cloak)
- # [03:44] * Quits: notbenjamin (~textual@public.cloak) ("")
- # [03:58] * Joins: weinig (~weinig@public.cloak)
- # [03:58] * Quits: weinig (~weinig@public.cloak) (weinig)
- # [04:14] * Quits: Zefa (~Zefa@public.cloak) ("")
- # [04:14] * Joins: Zefa (~Zefa@public.cloak)
- # [04:15] * Quits: Zefa (~Zefa@public.cloak) ("")
- # [04:15] * Joins: Zefa (~Zefa@public.cloak)
- # [04:15] * Parts: Zefa (~Zefa@public.cloak) (Zefa)
- # [04:41] * Quits: bkardell_ (~uid10373@public.cloak) ("Connection closed for inactivity")
- # [04:43] * Quits: TNK (~KIMWOOGLAE@public.cloak) (Ping timeout: 180 seconds)
- # [05:00] * Joins: tantek (~tantek@public.cloak)
- # [05:01] * Joins: jyasskin (~textual@public.cloak)
- # [05:07] * Quits: tantek (~tantek@public.cloak) (tantek)
- # [05:29] * Joins: fjh (~fhirsch3@public.cloak)
- # [05:30] * Quits: adrianba_ (~adrianba@public.cloak) (Ping timeout: 180 seconds)
- # [05:34] * Joins: fjh_ (~fhirsch3@public.cloak)
- # [05:36] * Quits: fjh (~fhirsch3@public.cloak) (Ping timeout: 180 seconds)
- # [05:36] * fjh_ is now known as fjh
- # [05:50] * Joins: myakura (~myakura@public.cloak)
- # [05:54] * Joins: sicking (~sicking@public.cloak)
- # [06:03] * Quits: sicking (~sicking@public.cloak) (sicking)
- # [06:04] * Joins: TNK (~KIMWOOGLAE@public.cloak)
- # [06:06] * Quits: jyasskin (~textual@public.cloak) ("My computer has gone to sleep. ZZZzzz…")
- # [06:10] * Joins: kbx (~kbx@public.cloak)
- # [06:17] * Joins: glenn (~gadams@public.cloak)
- # [06:24] * Quits: fjh (~fhirsch3@public.cloak) (fjh)
- # [06:25] * Quits: myakura (~myakura@public.cloak) (Client closed connection)
- # [06:27] * Quits: TNK (~KIMWOOGLAE@public.cloak) (Ping timeout: 180 seconds)
- # [06:31] * Quits: lgombos_ (~gombos@public.cloak) (Ping timeout: 180 seconds)
- # [06:37] * Joins: myakura (~myakura@public.cloak)
- # [06:44] * Joins: tantek (~tantek@public.cloak)
- # [06:45] * Joins: npdoty (npdoty@public.cloak)
- # [06:58] * Joins: forty4 (~forty4@public.cloak)
- # [07:20] * Quits: forty4 (~forty4@public.cloak) ("Leaving.")
- # [07:39] * Quits: kbx (~kbx@public.cloak) (Ping timeout: 180 seconds)
- # [07:47] * Parts: npdoty (npdoty@public.cloak) (npdoty)
- # [07:54] * Joins: forty4 (~forty4@public.cloak)
- # [07:57] * Quits: tantek (~tantek@public.cloak) (tantek)
- # [08:06] * Joins: forty41 (~forty4@public.cloak)
- # [08:07] * Quits: forty4 (~forty4@public.cloak) (Ping timeout: 180 seconds)
- # [08:07] * Joins: jrossi (~jrossi@public.cloak)
- # [08:08] * Joins: forty4 (~forty4@public.cloak)
- # [08:08] * Quits: forty41 (~forty4@public.cloak) (Client closed connection)
- # [08:12] * Quits: forty4 (~forty4@public.cloak) ("Leaving.")
- # [08:14] * Quits: glenn (~gadams@public.cloak) (Client closed connection)
- # [08:18] * Quits: estellevw (~estellevw@public.cloak) (Ping timeout: 180 seconds)
- # [08:21] * Joins: estellevw (~estellevw@public.cloak)
- # [08:33] * Joins: forty4 (~forty4@public.cloak)
- # [08:34] * Quits: forty4 (~forty4@public.cloak) ("Leaving.")
- # [09:01] * Quits: jrossi (~jrossi@public.cloak) (Ping timeout: 180 seconds)
- # [09:09] * Joins: shepazu (schepers@public.cloak)
- # [09:47] * Quits: schuki (~quassel@public.cloak) ("No Ping reply in 180 seconds.")
- # [09:53] * Quits: richt (~richt@public.cloak) ("bye")
- # [10:37] * Quits: shepazu (schepers@public.cloak) ("is sleepy")
- # [11:16] * Zakim excuses himself; his presence no longer seems to be needed
- # [11:16] * Parts: Zakim (zakim@public.cloak) (Zakim)
- # [11:40] * Joins: fjh (~fhirsch3@public.cloak)
- # [11:48] * Quits: fjh (~fhirsch3@public.cloak) (fjh)
- # [11:53] * Joins: Lachy (~Lachy@public.cloak)
- # [11:56] * Joins: smaug (~chatzilla@public.cloak)
- # [12:00] * Quits: Lachy (~Lachy@public.cloak) ("Textual IRC Client: www.textualapp.com")
- # [12:25] * Joins: Lachy (~Lachy@public.cloak)
- # [12:31] * Quits: myakura (~myakura@public.cloak) (Client closed connection)
- # [13:11] * Joins: fjh (~fhirsch3@public.cloak)
- # [13:14] * Joins: fjh_ (~fhirsch3@public.cloak)
- # [13:19] * Quits: fjh (~fhirsch3@public.cloak) (Ping timeout: 180 seconds)
- # [13:19] * fjh_ is now known as fjh
- # [13:29] * Joins: lgombos_ (~gombos@public.cloak)
- # [13:32] * Quits: smaug (~chatzilla@public.cloak) (Ping timeout: 180 seconds)
- # [13:35] * Joins: TNK (~KIMWOOGLAE@public.cloak)
- # [13:48] * Quits: lgombos_ (~gombos@public.cloak) (Client closed connection)
- # [14:01] * Joins: lgombos_ (~gombos@public.cloak)
- # [14:20] * Joins: myakura (~myakura@public.cloak)
- # [14:25] * Quits: Lachy (~Lachy@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
- # [14:34] * Joins: Lachy (~Lachy@public.cloak)
- # [14:41] * Joins: Lachy_ (~Lachy@public.cloak)
- # [14:41] * Quits: Lachy (~Lachy@public.cloak) (Client closed connection)
- # [14:44] * Joins: Lachy (~Lachy@public.cloak)
- # [14:44] * Quits: Lachy_ (~Lachy@public.cloak) (Client closed connection)
- # [14:48] * Quits: fjh (~fhirsch3@public.cloak) (fjh)
- # [14:56] * Quits: lgombos_ (~gombos@public.cloak) (Ping timeout: 180 seconds)
- # [15:04] * Quits: Lachy (~Lachy@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
- # [15:05] * Joins: fjh (~fhirsch3@public.cloak)
- # [15:07] * Joins: fjh_ (~fhirsch3@public.cloak)
- # [15:10] * Joins: Lachy (~Lachy@public.cloak)
- # [15:12] * Quits: fjh (~fhirsch3@public.cloak) (Ping timeout: 180 seconds)
- # [15:12] * fjh_ is now known as fjh
- # [15:16] * Joins: smaug (~chatzilla@public.cloak)
- # [15:18] * Joins: forty4 (~forty4@public.cloak)
- # [15:20] * Joins: forty41 (~forty4@public.cloak)
- # [15:20] * Quits: forty4 (~forty4@public.cloak) (Client closed connection)
- # [15:24] * Quits: TNK (~KIMWOOGLAE@public.cloak) (Ping timeout: 180 seconds)
- # [15:27] * Joins: forty4 (~forty4@public.cloak)
- # [15:27] * Quits: forty41 (~forty4@public.cloak) (Client closed connection)
- # [15:34] * Joins: jrossi (~jrossi@public.cloak)
- # [15:37] * Quits: forty4 (~forty4@public.cloak) (Ping timeout: 180 seconds)
- # [15:58] * Quits: fjh (~fhirsch3@public.cloak) (fjh)
- # [16:05] * Joins: gludi|3 (~kvirc@public.cloak)
- # [16:07] * Joins: gludi|2 (~kvirc@public.cloak)
- # [16:07] * Joins: adrianba_ (~adrianba@public.cloak)
- # [16:09] * Joins: fjh (~fhirsch3@public.cloak)
- # [16:11] * Quits: jrossi (~jrossi@public.cloak) (Ping timeout: 180 seconds)
- # [16:12] * Quits: gludi|3 (~kvirc@public.cloak) (Ping timeout: 180 seconds)
- # [16:12] * Joins: anssik (~uid10742@public.cloak)
- # [16:16] * Quits: adrianba_ (~adrianba@public.cloak) ("Leaving")
- # [16:22] * Joins: jyasskin (~textual@public.cloak)
- # [16:24] * Joins: forty4 (~forty4@public.cloak)
- # [16:31] * Joins: abarsto (~abarsto@public.cloak)
- # [16:31] * abarsto is now known as ArtB
- # [16:33] * Quits: forty4 (~forty4@public.cloak) (Ping timeout: 180 seconds)
- # [16:33] * Joins: forty4 (~forty4@public.cloak)
- # [16:37] * Quits: gludi|2 (~kvirc@public.cloak) (Ping timeout: 180 seconds)
- # [16:39] * Quits: forty4 (~forty4@public.cloak) (Ping timeout: 180 seconds)
- # [16:42] * Joins: gludi|2 (~kvirc@public.cloak)
- # [16:44] * Joins: kbx (~kbx@public.cloak)
- # [16:44] * Quits: fjh (~fhirsch3@public.cloak) (fjh)
- # [16:45] * Quits: myakura (~myakura@public.cloak) (Client closed connection)
- # [16:45] * Joins: myakura (~myakura@public.cloak)
- # [16:48] * Joins: Lachy_ (~Lachy@public.cloak)
- # [16:50] * Joins: fjh (~fhirsch3@public.cloak)
- # [16:50] * Quits: Lachy_ (~Lachy@public.cloak) (Client closed connection)
- # [16:51] * Joins: Lachy__ (~Lachy@public.cloak)
- # [16:52] * Joins: forty4 (~forty4@public.cloak)
- # [16:52] * Quits: Lachy__ (~Lachy@public.cloak) (Client closed connection)
- # [16:53] * Quits: ArtB (~abarsto@public.cloak) ("Leaving.")
- # [16:53] * Quits: Lachy (~Lachy@public.cloak) (Ping timeout: 180 seconds)
- # [16:55] * Joins: Lachy (~Lachy@public.cloak)
- # [16:55] * Quits: kbx (~kbx@public.cloak) (Ping timeout: 180 seconds)
- # [16:58] * Quits: bryan (~uid15860@public.cloak) ("Connection closed for inactivity")
- # [16:59] * Quits: forty4 (~forty4@public.cloak) (Ping timeout: 180 seconds)
- # [17:03] * Quits: fjh (~fhirsch3@public.cloak) (fjh)
- # [17:04] * Quits: wooglae (~Adium@public.cloak) ("Leaving.")
- # [17:05] * Joins: forty4 (~forty4@public.cloak)
- # [17:06] * Quits: myakura (~myakura@public.cloak) (Client closed connection)
- # [17:08] * Joins: forty41 (~forty4@public.cloak)
- # [17:08] * Joins: abarsto (~abarsto@public.cloak)
- # [17:08] * abarsto is now known as ArtB
- # [17:09] * Joins: wooglae (~Adium@public.cloak)
- # [17:10] * Quits: wooglae (~Adium@public.cloak) ("Leaving.")
- # [17:10] * Joins: JonathanJ1 (~hollobit@public.cloak)
- # [17:12] * Quits: forty4 (~forty4@public.cloak) (Ping timeout: 180 seconds)
- # [17:12] * Joins: forty4 (~forty4@public.cloak)
- # [17:13] * Quits: forty41 (~forty4@public.cloak) (Client closed connection)
- # [17:14] * Joins: lgombos_ (~gombos@public.cloak)
- # [17:14] * Joins: forty41 (~forty4@public.cloak)
- # [17:15] * Parts: joanie (~joanmarie@public.cloak) (joanie)
- # [17:15] * Joins: kbx (~kbx@public.cloak)
- # [17:18] * Joins: wooglae (~Adium@public.cloak)
- # [17:18] * Joins: shepazu (schepers@public.cloak)
- # [17:18] * Quits: wooglae (~Adium@public.cloak) ("Leaving.")
- # [17:19] * Quits: forty4 (~forty4@public.cloak) (Ping timeout: 180 seconds)
- # [17:21] * Joins: jrossi (~jrossi@public.cloak)
- # [17:21] * Parts: forty41 (~forty4@public.cloak) (forty41)
- # [17:22] * Quits: lgombos_ (~gombos@public.cloak) (Client closed connection)
- # [17:22] * Quits: JonathanJ1 (~hollobit@public.cloak) (Client closed connection)
- # [17:22] * Joins: JonathanJ1 (~hollobit@public.cloak)
- # [17:22] * Quits: Lachy (~Lachy@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
- # [17:24] * Joins: dka (~dka@public.cloak)
- # [17:24] * Quits: gludi|2 (~kvirc@public.cloak) ("Changing server...")
- # [17:24] * Joins: gludi|2 (~kvirc@public.cloak)
- # [17:24] * Joins: bryan (~uid15860@public.cloak)
- # [17:25] * Quits: gludi|2 (~kvirc@public.cloak) ("Changing server...")
- # [17:25] * Joins: gludi|2 (~kvirc@public.cloak)
- # [17:26] * Joins: wooglae (~Adium@public.cloak)
- # [17:27] * Quits: gludi|2 (~kvirc@public.cloak) ("Changing server...")
- # [17:27] * Joins: gludi|2 (~kvirc@public.cloak)
- # [17:28] * Joins: rniwa (~rniwa@public.cloak)
- # [17:28] * Joins: jrossi1 (~jrossi@public.cloak)
- # [17:31] * Joins: chaals (~Adium@public.cloak)
- # [17:32] * Joins: wooglae1 (~Adium@public.cloak)
- # [17:32] * Quits: jrossi (~jrossi@public.cloak) (Ping timeout: 180 seconds)
- # [17:33] * Quits: jyasskin (~textual@public.cloak) ("My computer has gone to sleep. ZZZzzz…")
- # [17:34] * Quits: JonathanJ1 (~hollobit@public.cloak) (Ping timeout: 180 seconds)
- # [17:36] * Joins: gludi|3 (~kvirc@public.cloak)
- # [17:36] * Parts: gludi|3 (~kvirc@public.cloak) (Once you know what it is you want to be true, instinct is a very useful device for enabling you to know that it is)
- # [17:36] * Quits: wooglae (~Adium@public.cloak) (Ping timeout: 180 seconds)
- # [17:36] * Joins: gludi|3 (~kvirc@public.cloak)
- # [17:38] * Quits: estellevw (~estellevw@public.cloak) ("Snuggling with the puppies")
- # [17:38] * Quits: mihnea_____ (~sid16310@public.cloak) (Ping timeout: 180 seconds)
- # [17:38] * Joins: lgombos_ (~gombos@public.cloak)
- # [17:39] * Quits: lgombos_ (~gombos@public.cloak) (Client closed connection)
- # [17:39] * Quits: kbx (~kbx@public.cloak) (Ping timeout: 180 seconds)
- # [17:39] * Quits: igrigorik (~sid16869@public.cloak) (Ping timeout: 180 seconds)
- # [17:40] * Quits: tyoshino (~sid19222@public.cloak) (Ping timeout: 180 seconds)
- # [17:42] * Quits: gludi|2 (~kvirc@public.cloak) (Ping timeout: 180 seconds)
- # [17:42] * Joins: estellevw (~estellevw@public.cloak)
- # [17:44] * Joins: fjh (~fhirsch3@public.cloak)
- # [17:44] * Quits: rniwa (~rniwa@public.cloak) (rniwa)
- # [17:45] * Parts: jrossi1 (~jrossi@public.cloak) (jrossi1)
- # [17:48] * Quits: skddc (~skddc@public.cloak) ("ZNC - http://znc.in")
- # [17:48] * Joins: kbx (~kbx@public.cloak)
- # [17:49] * Quits: wooglae1 (~Adium@public.cloak) ("Leaving.")
- # [17:49] * Quits: fjh (~fhirsch3@public.cloak) (fjh)
- # [17:50] * Joins: fjh (~fhirsch3@public.cloak)
- # [17:54] * Joins: rniwa (~rniwa@public.cloak)
- # [17:55] * Joins: fjh_ (~fhirsch3@public.cloak)
- # [17:56] * Joins: jyasskin (~textual@public.cloak)
- # [17:57] * Joins: rniwa_ (~rniwa@public.cloak)
- # [17:57] * Quits: fjh (~fhirsch3@public.cloak) (Ping timeout: 180 seconds)
- # [17:57] * fjh_ is now known as fjh
- # [17:58] * Quits: ArtB (~abarsto@public.cloak) ("Leaving.")
- # [18:01] * Joins: darobin (rberjon@public.cloak)
- # [18:01] * Quits: estellevw (~estellevw@public.cloak) ("Snuggling with the puppies")
- # [18:01] * Quits: rniwa (~rniwa@public.cloak) (Ping timeout: 180 seconds)
- # [18:01] * rniwa_ is now known as rniwa
- # [18:02] * Joins: chaals1 (~Adium@public.cloak)
- # [18:03] * Quits: chaals (~Adium@public.cloak) (Client closed connection)
- # [18:06] * Joins: darobin_ (rberjon@public.cloak)
- # [18:07] * Joins: chaals (~Adium@public.cloak)
- # [18:09] * Quits: darobin (rberjon@public.cloak) (Ping timeout: 180 seconds)
- # [18:12] * Quits: chaals1 (~Adium@public.cloak) (Ping timeout: 180 seconds)
- # [18:15] * Quits: fjh (~fhirsch3@public.cloak) (fjh)
- # [18:19] * Joins: wooglae (~Adium@public.cloak)
- # [18:19] * Quits: rniwa (~rniwa@public.cloak) (rniwa)
- # [18:19] * Quits: chaals (~Adium@public.cloak) ("Leaving.")
- # [18:19] * Joins: jsbell_ (~jsbell@public.cloak)
- # [18:20] * Quits: darobin_ (rberjon@public.cloak) (Client closed connection)
- # [18:21] * Joins: darobin (rberjon@public.cloak)
- # [18:21] * Quits: kbx (~kbx@public.cloak) (Ping timeout: 180 seconds)
- # [18:25] * Joins: myakura (~myakura@public.cloak)
- # [18:26] * Quits: wooglae (~Adium@public.cloak) (Ping timeout: 180 seconds)
- # [18:27] * Joins: mihnea_____ (~sid16310@public.cloak)
- # [18:28] * Joins: masatakayakura (~myakura@public.cloak)
- # [18:28] * Quits: darobin (rberjon@public.cloak) (Ping timeout: 180 seconds)
- # [18:28] * Joins: kbx (~kbx@public.cloak)
- # [18:28] * Quits: dka (~dka@public.cloak) (dka)
- # [18:29] * Joins: jcraig (~jcraig@public.cloak)
- # [18:30] * Joins: igrigorik (~sid16869@public.cloak)
- # [18:31] * Quits: shepazu (schepers@public.cloak) ("is sleepy")
- # [18:32] * Quits: myakura (~myakura@public.cloak) (Ping timeout: 180 seconds)
- # [18:35] * Joins: tyoshino (~sid19222@public.cloak)
- # [18:36] * Joins: myakura (~myakura@public.cloak)
- # [18:39] * Joins: TNK (~KIMWOOGLAE@public.cloak)
- # [18:40] * Quits: masatakayakura (~myakura@public.cloak) (Ping timeout: 180 seconds)
- # [18:40] * Joins: abarsto (~abarsto@public.cloak)
- # [18:40] * abarsto is now known as ArtB
- # [18:41] * Joins: a12u (~androirc@public.cloak)
- # [18:44] * Joins: jhund (~jhund@public.cloak)
- # [18:45] * Joins: tantek (~tantek@public.cloak)
- # [18:45] * Joins: masatakayakura (~myakura@public.cloak)
- # [18:45] * Joins: marcosc (~marcosc@public.cloak)
- # [18:46] * Joins: Lachy (~Lachy@public.cloak)
- # [18:46] * Joins: bkardell_ (~uid10373@public.cloak)
- # [18:47] * Joins: myakura_ (~myakura@public.cloak)
- # [18:47] * Joins: jhund_ (~jhund@public.cloak)
- # [18:49] * Quits: sam_ (osamu@public.cloak) (Ping timeout: 180 seconds)
- # [18:49] * Joins: dka (~dka@public.cloak)
- # [18:49] * Joins: tantek_ (~tantek@public.cloak)
- # [18:50] * Quits: myakura (~myakura@public.cloak) (Ping timeout: 180 seconds)
- # [18:51] * Quits: Lachy (~Lachy@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
- # [18:52] * Quits: tantek (~tantek@public.cloak) (Ping timeout: 180 seconds)
- # [18:52] * tantek_ is now known as tantek
- # [18:52] * Quits: masatakayakura (~myakura@public.cloak) (Ping timeout: 180 seconds)
- # [18:52] * Quits: jhund (~jhund@public.cloak) (Ping timeout: 180 seconds)
- # [18:56] * Joins: richt (~richt@public.cloak)
- # [18:57] * Joins: rniwa (~rniwa@public.cloak)
- # [18:57] * Joins: wonsuk_ (~uid27693@public.cloak)
- # [18:57] * Joins: fjh (~fhirsch3@public.cloak)
- # [18:58] * Joins: chaals (~Adium@public.cloak)
- # [18:58] * Quits: fjh (~fhirsch3@public.cloak) (fjh)
- # [18:59] * Joins: jungkees (~uid24208@public.cloak)
- # [19:00] * Joins: fjh (~fhirsch3@public.cloak)
- # [19:03] * Quits: richt (~richt@public.cloak) (Client closed connection)
- # [19:03] * Joins: rniwa_ (~rniwa@public.cloak)
- # [19:04] * Quits: rniwa (~rniwa@public.cloak) (Ping timeout: 180 seconds)
- # [19:04] * rniwa_ is now known as rniwa
- # [19:05] * Joins: fjh_ (~fhirsch3@public.cloak)
- # [19:06] * Joins: shepazu (schepers@public.cloak)
- # [19:06] * Joins: richt (~richt@public.cloak)
- # [19:07] * Quits: fjh (~fhirsch3@public.cloak) (Ping timeout: 180 seconds)
- # [19:07] * fjh_ is now known as fjh
- # [19:09] * Quits: richt (~richt@public.cloak) (Client closed connection)
- # [19:11] * Quits: fjh (~fhirsch3@public.cloak) (fjh)
- # [19:13] * Joins: richt_ (~richt@public.cloak)
- # [19:15] * Joins: glenn (~gadams@public.cloak)
- # [19:16] * Joins: wooglae (~Adium@public.cloak)
- # [19:18] * Joins: sam (osamu@public.cloak)
- # [19:24] * Joins: fjh (~fhirsch3@public.cloak)
- # [19:25] * Joins: sam_ (osamu@public.cloak)
- # [19:25] * Quits: kbx (~kbx@public.cloak) (Ping timeout: 180 seconds)
- # [19:26] * Joins: abarsto (~abarsto@public.cloak)
- # [19:26] * Quits: ArtB (~abarsto@public.cloak) (ArtB)
- # [19:26] * abarsto is now known as ArtB
- # [19:26] * Joins: sam__ (osamu@public.cloak)
- # [19:26] * Joins: richt (~richt@public.cloak)
- # [19:27] * Joins: richt__ (~richt@public.cloak)
- # [19:27] * Quits: richt_ (~richt@public.cloak) (Client closed connection)
- # [19:27] * Quits: marcosc (~marcosc@public.cloak) (Client closed connection)
- # [19:27] * Joins: marcosc (~marcosc@public.cloak)
- # [19:27] * Quits: wooglae (~Adium@public.cloak) (Ping timeout: 180 seconds)
- # [19:27] * Joins: shepazutu (schepers@public.cloak)
- # [19:27] * Quits: shepazu (schepers@public.cloak) (Client closed connection)
- # [19:27] * shepazutu is now known as shepazu
- # [19:27] * Joins: gludi|2 (~kvirc@public.cloak)
- # [19:29] * Quits: richt (~richt@public.cloak) (Client closed connection)
- # [19:29] * Joins: a1zu (~androirc@public.cloak)
- # [19:29] * Joins: tantek_ (~tantek@public.cloak)
- # [19:29] * Joins: wooglae (~Adium@public.cloak)
- # [19:29] * Quits: a12u (~androirc@public.cloak) (Client closed connection)
- # [19:29] * Quits: sam (osamu@public.cloak) (Ping timeout: 180 seconds)
- # [19:30] * Quits: wooglae (~Adium@public.cloak) ("Leaving.")
- # [19:31] * Quits: rniwa (~rniwa@public.cloak) (Ping timeout: 180 seconds)
- # [19:31] * Quits: jhund_ (~jhund@public.cloak) (Ping timeout: 180 seconds)
- # [19:32] * Quits: a1zu (~androirc@public.cloak) (Client closed connection)
- # [19:32] * Quits: myakura_ (~myakura@public.cloak) (Ping timeout: 180 seconds)
- # [19:32] * Joins: a1zu (~androirc@public.cloak)
- # [19:32] * Quits: gludi|3 (~kvirc@public.cloak) (Ping timeout: 180 seconds)
- # [19:32] * Quits: tantek (~tantek@public.cloak) (Ping timeout: 180 seconds)
- # [19:32] * tantek_ is now known as tantek
- # [19:33] * Quits: chaals (~Adium@public.cloak) (Ping timeout: 180 seconds)
- # [19:33] * Quits: sam_ (osamu@public.cloak) (Ping timeout: 180 seconds)
- # [19:33] * Joins: richt (~richt@public.cloak)
- # [19:33] * Joins: marcosc__ (~marcosc@public.cloak)
- # [19:33] * Joins: sam (osamu@public.cloak)
- # [19:35] * Joins: abarsto (~abarsto@public.cloak)
- # [19:35] * Quits: richt (~richt@public.cloak) (Client closed connection)
- # [19:35] * Joins: wooglae (~Adium@public.cloak)
- # [19:36] * Joins: richt (~richt@public.cloak)
- # [19:36] * Quits: ArtB (~abarsto@public.cloak) (Ping timeout: 180 seconds)
- # [19:37] * Quits: marcosc (~marcosc@public.cloak) (Ping timeout: 180 seconds)
- # [19:37] * Quits: sam__ (osamu@public.cloak) (Ping timeout: 180 seconds)
- # [19:38] * Joins: richt_ (~richt@public.cloak)
- # [19:38] * Joins: sam_ (osamu@public.cloak)
- # [19:38] * Quits: richt (~richt@public.cloak) (Client closed connection)
- # [19:39] * Joins: shepazutu (schepers@public.cloak)
- # [19:39] * Joins: sam__ (osamu@public.cloak)
- # [19:42] * Quits: richt__ (~richt@public.cloak) (Ping timeout: 180 seconds)
- # [19:42] * Quits: sam (osamu@public.cloak) (Ping timeout: 180 seconds)
- # [19:42] * Quits: shepazu (schepers@public.cloak) (Ping timeout: 180 seconds)
- # [19:42] * shepazutu is now known as shepazu
- # [19:42] * marcosc__ is now known as marcosc
- # [19:43] * Quits: jyasskin (~textual@public.cloak) ("My computer has gone to sleep. ZZZzzz…")
- # [19:44] * Quits: glenn (~gadams@public.cloak) (Client closed connection)
- # [19:45] * Quits: sam_ (osamu@public.cloak) (Ping timeout: 180 seconds)
- # [19:45] * Quits: TNK (~KIMWOOGLAE@public.cloak) (Ping timeout: 180 seconds)
- # [19:46] * Quits: richt_ (~richt@public.cloak) (Client closed connection)
- # [19:46] * Quits: dka (~dka@public.cloak) (dka)
- # [19:46] * Joins: richt (~richt@public.cloak)
- # [19:46] * Joins: richt_ (~richt@public.cloak)
- # [19:47] * Quits: shepazu (schepers@public.cloak) ("is sleepy")
- # [19:48] * Quits: richt (~richt@public.cloak) (Client closed connection)
- # [19:51] * Quits: marcosc (~marcosc@public.cloak) (Client closed connection)
- # [19:51] * Quits: tantek (~tantek@public.cloak) (tantek)
- # [19:51] * Quits: a1zu (~androirc@public.cloak) ("AndroIRC - Android IRC Client ( http://www.androirc.com )")
- # [19:52] * Quits: abarsto (~abarsto@public.cloak) ("Leaving.")
- # [19:54] * Quits: richt_ (~richt@public.cloak) (Ping timeout: 180 seconds)
- # [19:58] * Quits: gludi|2 (~kvirc@public.cloak) (Ping timeout: 180 seconds)
- # [19:59] * Quits: wooglae (~Adium@public.cloak) ("Leaving.")
- # [20:02] * Quits: fjh (~fhirsch3@public.cloak) (fjh)
- # [20:05] * Joins: jyasskin (~textual@public.cloak)
- # [20:18] * Joins: dgrogan (~dgrogan@public.cloak)
- # [20:29] * Joins: dgrogan_ (~dgrogan@public.cloak)
- # [20:29] * Quits: dgrogan_ (~dgrogan@public.cloak) ("Leaving")
- # [20:29] * Quits: dgrogan (~dgrogan@public.cloak) (Client closed connection)
- # [20:32] * Quits: jyasskin (~textual@public.cloak) ("My computer has gone to sleep. ZZZzzz…")
- # [20:34] * Joins: skddc (~skddc@public.cloak)
- # [20:38] * Joins: myakura (~myakura@public.cloak)
- # [20:40] * Joins: dka (~dka@public.cloak)
- # [20:40] * Joins: marcosc (~marcosc@public.cloak)
- # [20:45] * Quits: myakura (~myakura@public.cloak) (Ping timeout: 180 seconds)
- # [20:47] * Quits: marcosc (~marcosc@public.cloak) (Ping timeout: 180 seconds)
- # [20:48] * Joins: marcosc (~marcosc@public.cloak)
- # [20:50] * Joins: abarsto (~abarsto@public.cloak)
- # [20:50] * abarsto is now known as ArtB
- # [20:51] * Quits: dka (~dka@public.cloak) (Ping timeout: 180 seconds)
- # [20:53] * Joins: estellevw_ (~estellevw@public.cloak)
- # [21:01] * Quits: estellevw_ (~estellevw@public.cloak) ("Snuggling with the puppies")
- # [21:02] * Quits: ArtB (~abarsto@public.cloak) (Ping timeout: 180 seconds)
- # [21:02] * Joins: abarsto (~abarsto@public.cloak)
- # [21:02] * abarsto is now known as ArtB
- # [21:03] * Quits: jcraig (~jcraig@public.cloak) (Ping timeout: 180 seconds)
- # [21:04] * Quits: wonsuk_ (~uid27693@public.cloak) ("Connection closed for inactivity")
- # [21:04] * Joins: estellevw_ (~estellevw@public.cloak)
- # [21:05] * Quits: ArtB (~abarsto@public.cloak) ("Leaving.")
- # [21:10] * Joins: gludi|2 (~kvirc@public.cloak)
- # [21:12] * Quits: marcosc (~marcosc@public.cloak) (Client closed connection)
- # [21:13] * Quits: estellevw_ (~estellevw@public.cloak) ("Snuggling with the puppies")
- # [21:14] * Joins: wooglae (~Adium@public.cloak)
- # [21:15] * Joins: marcosc (~marcosc@public.cloak)
- # [21:21] * Quits: wooglae (~Adium@public.cloak) (Ping timeout: 180 seconds)
- # [21:24] * Joins: wooglae (~Adium@public.cloak)
- # [21:24] * Joins: rniwa (~rniwa@public.cloak)
- # [21:27] * Joins: wooglae1 (~Adium@public.cloak)
- # [21:32] * Joins: Cyril (~chatzilla@public.cloak)
- # [21:32] * Quits: wooglae (~Adium@public.cloak) (Ping timeout: 180 seconds)
- # [21:34] * Joins: Cyril_ (~chatzilla@public.cloak)
- # [21:37] * Joins: tantek (~tantek@public.cloak)
- # [21:40] * Quits: Cyril (~chatzilla@public.cloak) (Ping timeout: 180 seconds)
- # [21:40] * Cyril_ is now known as Cyril
- # [21:41] * Joins: abarsto (~abarsto@public.cloak)
- # [21:41] * abarsto is now known as ArtB
- # [21:42] * Quits: gludi|2 (~kvirc@public.cloak) (Client closed connection)
- # [21:42] * Joins: gludi|2 (~kvirc@public.cloak)
- # [21:44] * Joins: gludi|3 (~kvirc@public.cloak)
- # [21:45] * Joins: JonathanJ1 (~hollobit@public.cloak)
- # [21:45] * Joins: kbx (~kbx@public.cloak)
- # [21:49] * Quits: gludi|2 (~kvirc@public.cloak) (Ping timeout: 180 seconds)
- # [21:51] * Joins: sicking (~sicking@public.cloak)
- # [21:51] * Joins: fjh (~fhirsch3@public.cloak)
- # [21:54] * Quits: ArtB (~abarsto@public.cloak) (Ping timeout: 180 seconds)
- # [21:57] * Joins: abarsto (~abarsto@public.cloak)
- # [21:57] * abarsto is now known as ArtB
- # [21:59] * Quits: sicking (~sicking@public.cloak) (sicking)
- # [22:00] * Quits: smaug (~chatzilla@public.cloak) (Client closed connection)
- # [22:00] * Joins: smaug (~chatzilla@public.cloak)
- # [22:00] * Joins: sicking (~sicking@public.cloak)
- # [22:03] * Joins: chaals (~Adium@public.cloak)
- # [22:03] * Quits: skddc (~skddc@public.cloak) ("ZNC - http://znc.in")
- # [22:05] * Joins: fjh_ (~fhirsch3@public.cloak)
- # [22:06] * Quits: marcosc (~marcosc@public.cloak) (Client closed connection)
- # [22:07] * Quits: fjh (~fhirsch3@public.cloak) (Ping timeout: 180 seconds)
- # [22:07] * fjh_ is now known as fjh
- # [22:10] * Quits: kbx (~kbx@public.cloak) (Ping timeout: 180 seconds)
- # [22:11] * Quits: rniwa (~rniwa@public.cloak) (rniwa)
- # [22:11] * Quits: wooglae1 (~Adium@public.cloak) ("Leaving.")
- # [22:11] * Quits: ArtB (~abarsto@public.cloak) ("Leaving.")
- # [22:12] * Quits: fjh (~fhirsch3@public.cloak) (fjh)
- # [22:13] * Quits: Cyril (~chatzilla@public.cloak) (Client closed connection)
- # [22:14] * Joins: Cyril (~chatzilla@public.cloak)
- # [22:15] * Quits: Cyril (~chatzilla@public.cloak) (Client closed connection)
- # [22:15] * Quits: tantek (~tantek@public.cloak) (tantek)
- # [22:15] * Joins: wooglae (~Adium@public.cloak)
- # [22:15] * Joins: Cyril (~chatzilla@public.cloak)
- # [22:16] * Joins: Cyril_ (~chatzilla@public.cloak)
- # [22:17] * Quits: jungkees (~uid24208@public.cloak) ("Connection closed for inactivity")
- # [22:18] * Joins: kbx (~kbx@public.cloak)
- # [22:20] * Quits: gludi|3 (~kvirc@public.cloak) (Client closed connection)
- # [22:20] * Joins: gludi|3 (~kvirc@public.cloak)
- # [22:21] * Quits: sam__ (osamu@public.cloak) (Ping timeout: 180 seconds)
- # [22:21] * Quits: JonathanJ1 (~hollobit@public.cloak) (Ping timeout: 180 seconds)
- # [22:22] * Quits: Cyril (~chatzilla@public.cloak) (Ping timeout: 180 seconds)
- # [22:24] * Quits: Cyril_ (~chatzilla@public.cloak) (Ping timeout: 180 seconds)
- # [22:27] * Quits: kbx (~kbx@public.cloak) (Ping timeout: 180 seconds)
- # [22:27] * Quits: wooglae (~Adium@public.cloak) ("Leaving.")
- # [22:27] * Joins: wooglae (~Adium@public.cloak)
- # [22:29] * Joins: sam (osamu@public.cloak)
- # [22:32] * Joins: wooglae1 (~Adium@public.cloak)
- # [22:32] * Joins: sam_ (osamu@public.cloak)
- # [22:34] * Quits: wooglae (~Adium@public.cloak) (Ping timeout: 180 seconds)
- # [22:35] * Quits: gludi|3 (~kvirc@public.cloak) (Ping timeout: 180 seconds)
- # [22:35] * Joins: wooglae (~Adium@public.cloak)
- # [22:37] * Quits: sam (osamu@public.cloak) (Ping timeout: 180 seconds)
- # [22:39] * Quits: wooglae1 (~Adium@public.cloak) (Ping timeout: 180 seconds)
- # [22:39] * Quits: sam_ (osamu@public.cloak) (Ping timeout: 180 seconds)
- # [22:42] * Joins: sam (osamu@public.cloak)
- # [22:47] * Joins: gludi|3 (~kvirc@public.cloak)
- # [22:53] * Joins: JonathanJ1 (~hollobit@public.cloak)
- # [22:56] * Joins: Cyril (~chatzilla@public.cloak)
- # [23:01] * Quits: JonathanJ1 (~hollobit@public.cloak) (Ping timeout: 180 seconds)
- # [23:02] * Joins: jyasskin (~textual@public.cloak)
- # [23:02] * Quits: wooglae (~Adium@public.cloak) ("Leaving.")
- # [23:02] * Joins: wooglae (~Adium@public.cloak)
- # [23:02] * Joins: fjh (~fhirsch3@public.cloak)
- # [23:04] * Joins: wooglae1 (~Adium@public.cloak)
- # [23:08] * Joins: darobin (rberjon@public.cloak)
- # [23:09] * Quits: wooglae (~Adium@public.cloak) (Ping timeout: 180 seconds)
- # [23:12] * Quits: fjh (~fhirsch3@public.cloak) (fjh)
- # [23:13] * Joins: darobin_ (rberjon@public.cloak)
- # [23:13] * Quits: sicking (~sicking@public.cloak) (sicking)
- # [23:13] * Quits: sam (osamu@public.cloak) (Ping timeout: 180 seconds)
- # [23:15] * Joins: dka (~dka@public.cloak)
- # [23:17] * Quits: darobin (rberjon@public.cloak) (Ping timeout: 180 seconds)
- # [23:20] * Joins: sam (osamu@public.cloak)
- # [23:20] * Joins: dka_ (~dka@public.cloak)
- # [23:22] * Quits: dka (~dka@public.cloak) (Ping timeout: 180 seconds)
- # [23:22] * dka_ is now known as dka
- # [23:23] * Joins: fjh (~fhirsch3@public.cloak)
- # [23:25] * Joins: fjh_ (~fhirsch3@public.cloak)
- # [23:27] * Joins: sicking (~sicking@public.cloak)
- # [23:27] * Quits: sam (osamu@public.cloak) (Ping timeout: 180 seconds)
- # [23:29] * Quits: gludi|3 (~kvirc@public.cloak) (Ping timeout: 180 seconds)
- # [23:30] * Joins: marcosc (~marcosc@public.cloak)
- # [23:30] * Quits: sicking (~sicking@public.cloak) (sicking)
- # [23:30] * Quits: fjh (~fhirsch3@public.cloak) (Ping timeout: 180 seconds)
- # [23:30] * fjh_ is now known as fjh
- # [23:31] * Quits: marcosc (~marcosc@public.cloak) (Client closed connection)
- # [23:32] * Joins: skddc (~skddc@public.cloak)
- # [23:32] * Joins: marcosc (~marcosc@public.cloak)
- # [23:32] * Joins: richt (~richt@public.cloak)
- # [23:33] * Quits: fjh (~fhirsch3@public.cloak) (fjh)
- # [23:35] * Quits: Cyril (~chatzilla@public.cloak) (Client closed connection)
- # [23:35] * Joins: fjh (~fhirsch3@public.cloak)
- # [23:35] * Quits: fjh (~fhirsch3@public.cloak) (fjh)
- # [23:35] * Joins: Cyril (~chatzilla@public.cloak)
- # [23:41] * Joins: myakura (~myakura@public.cloak)
- # [23:41] * Joins: sam (osamu@public.cloak)
- # [23:46] * darobin_ is now known as darobin
- # [23:47] * Joins: tantek (~tantek@public.cloak)
- # [23:48] * Joins: gludi|3 (~kvirc@public.cloak)
- # [23:49] * Joins: fjh (~fhirsch3@public.cloak)
- # [23:49] * Quits: Cyril (~chatzilla@public.cloak) (Ping timeout: 180 seconds)
- # [23:54] * Quits: fjh (~fhirsch3@public.cloak) (fjh)
- # [23:54] * Quits: smaug (~chatzilla@public.cloak) (Ping timeout: 180 seconds)
- # [23:56] * Joins: fjh (~fhirsch3@public.cloak)
- # [23:56] * Quits: fjh (~fhirsch3@public.cloak) (fjh)
- # Session Close: Thu Oct 30 00:00:00 2014
The end :)