/irc-logs / w3c / #webapps / 2013-07-24 / end

Options:

  1. # Session Start: Wed Jul 24 00:00:00 2013
  2. # Session Ident: #webapps
  3. # [00:07] * Quits: tobie (tobie@public.cloak)
  4. # [00:12] * Quits: smaug (~chatzilla@public.cloak) ("Reconnecting…")
  5. # [00:42] * Quits: marcosc (~marcosc@public.cloak) (Ping timeout: 180 seconds)
  6. # [00:42] * Joins: marcosc (~marcosc@public.cloak)
  7. # [00:53] * Quits: marcosc (~marcosc@public.cloak) (Client closed connection)
  8. # [01:20] * Joins: sicking (~sicking@public.cloak)
  9. # [01:23] * Quits: sicking (~sicking@public.cloak) (sicking)
  10. # [01:29] * heycam|away|away is now known as heycam|away
  11. # [01:31] * Quits: cabanier (~cabanier@public.cloak) (Ping timeout: 180 seconds)
  12. # [01:51] * Joins: masayuki (~masayuki@public.cloak)
  13. # [01:58] * Joins: kochi_home (~kochi_home@public.cloak)
  14. # [02:00] * Joins: sicking (~sicking@public.cloak)
  15. # [02:02] <kochi_home> Is Travis here?
  16. # [02:02] * Joins: travis (~travis@public.cloak)
  17. # [02:03] * Parts: travis (~travis@public.cloak)
  18. # [02:05] * Joins: travis (~travis@public.cloak)
  19. # [02:06] * travis may have messed up the teleconference time
  20. # [02:06] <travis> Anyone here for the DOML3Events call?
  21. # [02:06] <kochi_home> yes?
  22. # [02:06] <masayuki> here.
  23. # [02:07] <kochi_home> I see no agenda posted this week...
  24. # [02:07] <travis> I think I messed up the call times, and am not seeing a bridge available :-(
  25. # [02:07] <travis> (It's probably setup for next week.)
  26. # [02:07] <kochi_home> yeah, i called in but 3663# didn't work
  27. # [02:07] <travis> Yeah, me too.
  28. # [02:07] <travis> Well, we can still use IRC to discuss issues...
  29. # [02:09] <kochi_home> ok, so my naive question: is this call for finalizing DOM3, and any addition will go to DOM Events or so-called d4e?
  30. # [02:09] <travis> I'm going to pull up the bug list...
  31. # [02:09] <kochi_home> "this call" = this telconference
  32. # [02:10] <travis> kochi_home: Gary and I have been using this call to 1) get DOM L3 Events finished and also 2) make progress on "UI Events" (d4e).
  33. # [02:10] <travis> ... our focus is definately on #1 though.
  34. # [02:11] <kochi_home> i see, thanks for clarification.
  35. # [02:11] <travis> https://www.w3.org/Bugs/Public/buglist.cgi?product=WebAppsWG&component=DOM3%20Events&resolution=---&list_id=21086
  36. # [02:11] <travis> I see 30 bugs
  37. # [02:13] <kochi_home> For 18931, I think there is corresponding bugs in webkit and chromium issue tracker.
  38. # [02:13] <travis> The last time I checked in with Gary, he was preparing the spec for a heartbeat publication.
  39. # [02:13] <masayuki> Some bugs for defining key values are moved to UI Events, though... (e.g., bug 21120)
  40. # [02:16] <kochi_home> https://bugs.webkit.org/show_bug.cgi?id=31902 and .
  41. # [02:16] <kochi_home> https://code.google.com/p/chromium/issues/detail?id=41945
  42. # [02:16] <travis> Let's talk briefly about 18931.
  43. # [02:16] <kochi_home> sure
  44. # [02:17] <travis> It looks like we're looking at making the compositionupdate event timed such that the data will be available in the input/textarea field during the handling of the event.
  45. # [02:17] <kochi_home> so modifying the editor's value and then firing compositionend event,
  46. # [02:17] <kochi_home> ah, 'compositionupdate' event
  47. # [02:18] <kochi_home> chromium and webkit bugs refer to 'compositionend' event.
  48. # [02:18] <kochi_home> so they are slightly different
  49. # [02:18] <travis> Perhaps this bug is also about compositionend?
  50. # [02:18] * Joins: sgalineau (~sgalineau@public.cloak)
  51. # [02:18] <kochi_home> I think so.
  52. # [02:19] <kochi_home> compositionend should be used for scripts to notice that all the composition activities are finished and the resulting data is ready.
  53. # [02:19] <masayuki> Gecko and WebKit: compositionupdate -> modified -> input
  54. # [02:19] <masayuki> IE: modified -> compositionupdate -> input
  55. # [02:20] * Joins: travis_ (~travis@public.cloak)
  56. # [02:20] <kochi_home> I think IE's behavior makes more sense.
  57. # [02:20] <masayuki> agree.
  58. # [02:21] <masayuki> Gecko can change the behavior so.
  59. # [02:21] <travis_> In looking through the latest spec, I don't see the order in relation to the composition defined
  60. # [02:21] <kochi_home> If Gecko/WebKit/Blink are fixed to follow IE's order, there's some concern about compatibility, though
  61. # [02:21] <travis_> https://dvcs.w3.org/hg/dom3events/raw-file/6cc9e60bf4b1/html/DOM3-Events.html#event-type-compositionupdate
  62. # [02:22] <kochi_home> probably apps that depends on the order are rare, I hope
  63. # [02:23] <travis_> Spec current says:
  64. # [02:23] <travis_> A user agent SHOULD dispatch this event during a composition session when a text composition system updates its active text passage with a new character, which is added to the string in CompositionEvent.data. Some text composition systems might not expose this information to the DOM, in which case this event will not fire during the composition process. If the composition session is canceled, this event will be fired immediately before the compositionen[CUT]
  65. # [02:23] <travis_> ... the CompositionEvent.data attribute will be set to the empty string.
  66. # [02:23] <masayuki> Basically, if web apps need the latest value of the editor, using 'input' event is simpler because it's fired for any input.
  67. # [02:23] <travis_> Proposed new spec text?
  68. # [02:25] * Quits: travis (~travis@public.cloak) (Ping timeout: 180 seconds)
  69. # [02:26] <kochi_home> related question: does any spec say .value should/may reflect IME's on-going composition?
  70. # [02:27] <travis_> Sorry, .value of what object?
  71. # [02:27] <kochi_home> <input> or <textarea> etc.
  72. # [02:27] <masayuki> no, but IIRC, IE, Gecko and WebKit includes the composition string to .value
  73. # [02:27] <kochi_home> I thought desktop browsers conventionally exposed IME's composition in .value, e.g. for Google Suggest
  74. # [02:29] <travis_> The spec's perspective is that a "text composition system" can, but may not be updating the actual control.
  75. # [02:29] <travis_> There are some IME's that are "separate" from the webpage, and do not provide the in-progress composition info back into the control, I believe, and the spec is trying to account for those cases...
  76. # [02:29] <kochi_home> travis_: sounds ok, so on some systems .value is not guaranteed to reflect the on-going composition.
  77. # [02:30] <travis_> However, most built-in IME's apparently do keep the composition in-line in the control, and the control's value are updated in real-time.
  78. # [02:31] <masayuki> Chinese IME typically doesn't expose composing string.
  79. # [02:31] <kochi_home> that's a security concern that may expose personalized dictionary order to the web, although this is a separate matter.
  80. # [02:32] <kochi_home> masayuki: in that case for Chinese IME, during the composition, compositionupdate events are fired?
  81. # [02:32] <kochi_home> (without modifying .value)
  82. # [02:32] <masayuki> kochi_home: no
  83. # [02:32] <kochi_home> i see.
  84. # [02:33] <masayuki> "Some text composition systems might not expose this information to the DOM, in which case this event will not fire during the composition process."
  85. # [02:33] <travis_> I updated the bug with some proposed spec text. Take a look.
  86. # [02:34] <masayuki> So, clearly, compositionupdate is defined for the event which notifies web apps of modifying composing string on DOM.
  87. # [02:35] <travis_> It sounds that way.
  88. # [02:35] <kochi_home> then firing compositionupdate after modifying DOM makes sense.
  89. # [02:35] <travis_> Other bugs or topics of interest?
  90. # [02:35] * Quits: sicking (~sicking@public.cloak) (sicking)
  91. # [02:36] <kochi_home> (but then in the existence of input event, what's the value of 'compositionupdate'?...)
  92. # [02:37] <travis_> For cases where the composition system doesn't keep the text in sync, yet the developer wants to know the changes to the composition string in real-time anyway. The "data" property would provide the updates...
  93. # [02:37] <masayuki> kochi_home: If web apps want to watch the change only during composition, it's easier to use compositionupdate rather than input.
  94. # [02:38] <travis_> (at least two reasons :-)
  95. # [02:39] <kochi_home> okay...
  96. # [02:39] <travis_> Is there 1 or 2 bugs that we should have Gary focus on next?
  97. # [02:40] <masayuki> I hope that https://www.w3.org/Bugs/Public/show_bug.cgi?id=22084 should be fixed.
  98. # [02:41] <travis_> Sounds good. I know Gary wanted to tackle separating the monolithic table into smaller groups for ease-of-readability and to start to address some of these consistency problems.
  99. # [02:41] <masayuki> IE and Gecko need to change the .key value, probably...
  100. # [02:42] <travis_> Yes, for a number of things I believe.
  101. # [02:43] <masayuki> And also, I want to see the draft of https://www.w3.org/Bugs/Public/show_bug.cgi?id=22070
  102. # [02:46] <travis_> Agree.
  103. # [02:46] * Joins: tobie (tobie@public.cloak)
  104. # [02:47] <travis_> So focus for next telco is 22084 and 22070--I'll see if I can inspire him to work on those.
  105. # [02:50] <travis_> 22070 still looks like it needs more info, but perhaps we can try to cut a draft.
  106. # [02:50] <kochi_home> btw, quick update on IME API: I'm drafting the next WD and will be posted to public-webapps soon.
  107. # [02:50] <travis_> Super!
  108. # [02:50] <masayuki> Excellent!
  109. # [02:50] <kochi_home> (sorry for hijacking D3E chat :)
  110. # [02:50] <travis_> :)
  111. # [02:51] <travis_> OK, time's almost up. Any last items to discuss?
  112. # [02:51] <masayuki> about "beforeinput".
  113. # [02:52] <masayuki> If beforeinput is fired only for user inputs, the name might not be good.
  114. # [02:52] <masayuki> E.g., if it's not fired for "undo", on the other hand, "input" is fired.
  115. # [02:52] <travis_> I know that some things like form auto-filling will put text into form fields. These should probably not fire beforeinput??
  116. # [02:53] <masayuki> this sounds strange...
  117. # [02:53] <travis_> Proposal? beforeinput should fire for all changes?
  118. # [02:54] <masayuki> No, I don't think so because if it's fired for Undo or something, it's difficult to cancel.
  119. # [02:55] <travis_> ...and cancellation is an important scenario, right? It's a new scenario, though, right?
  120. # [02:56] <masayuki> If it's not cancellable, I have no scenario of using beforeinput.
  121. # [02:56] <masayuki> (keypress is cancelable)
  122. # [02:57] <travis_> Ah, so not a new scenario, but a replacement for keypress.
  123. # [02:57] <masayuki> Yes, and how about for delete or backspace?
  124. # [02:58] <masayuki> "input" is fired for *any* changes but...
  125. # [02:58] <travis_> So, we want the "before" notice to be cancelable, and we want it to only apply to keyboard input?
  126. # [02:58] <masayuki> keyboard or IME? (perhaps, voice input or something is a part of IME)
  127. # [02:59] * Joins: cabanier (~cabanier@public.cloak)
  128. # [03:00] <masayuki> commands like paste, undo and redo shouldn't cause beforeinput, I think.
  129. # [03:01] <masayuki> That's all for now.
  130. # [03:02] <travis_> So, "input" is the catch-all for any changes (as it currently is), and beforeinput is the catch-all for all keyboard/IME input.
  131. # [03:02] <masayuki> I hope so.
  132. # [03:03] <travis_> OK. Thanks everyone for participating!
  133. # [03:03] <travis_> I think that next week we are back on track for our normal bi-weekly meetings again (with a phone bridge).
  134. # [03:03] <travis_> I will send out the reminders for that.
  135. # [03:05] <masayuki> OK, see you.
  136. # [03:06] <kochi_home> thanks, bye!
  137. # [03:07] * Quits: tobie (tobie@public.cloak)
  138. # [03:09] * Parts: masayuki (~masayuki@public.cloak)
  139. # [03:33] * Joins: karl (~karlcow@public.cloak)
  140. # [03:34] * Quits: kochi_home (~kochi_home@public.cloak) (Client closed connection)
  141. # [03:36] * Joins: kochi_home (~kochi_home@public.cloak)
  142. # [03:36] * Quits: kochi_home (~kochi_home@public.cloak) (Client closed connection)
  143. # [03:58] * Quits: travis_ (~travis@public.cloak) (Ping timeout: 180 seconds)
  144. # [04:07] * Joins: kochi_home (~kochi_home@public.cloak)
  145. # [04:11] * Quits: sgalineau (~sgalineau@public.cloak) ("Textual IRC Client: www.textualapp.com")
  146. # [04:14] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  147. # [04:23] * Quits: lmclister (~lmclister@public.cloak) (lmclister)
  148. # [04:51] * heycam|away is now known as heycam|away|away
  149. # [05:18] * Joins: lmclister (~lmclister@public.cloak)
  150. # [05:37] * Joins: kochi_home (~kochi_home@public.cloak)
  151. # [05:43] * heycam|away|away is now known as heycam|away
  152. # [05:44] * Quits: lmclister (~lmclister@public.cloak) (lmclister)
  153. # [05:44] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  154. # [06:37] * Joins: sicking (~sicking@public.cloak)
  155. # [06:37] * Joins: glenn (~gadams@public.cloak)
  156. # [07:08] * Joins: kochi_home (~kochi_home@public.cloak)
  157. # [07:15] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  158. # [07:16] * heycam|away is now known as heycam|away|away
  159. # [07:28] * heycam|away|away is now known as heycam|away
  160. # [07:38] * Joins: kochi_home (~kochi_home@public.cloak)
  161. # [07:45] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  162. # [08:39] * Joins: kochi_home (~kochi_home@public.cloak)
  163. # [08:39] * Quits: sicking (~sicking@public.cloak) (sicking)
  164. # [08:39] * Quits: kochi_home (~kochi_home@public.cloak) (Client closed connection)
  165. # [09:09] * Joins: Ms2ger (~Ms2ger@public.cloak)
  166. # [09:10] * Joins: kochi_home (~kochi_home@public.cloak)
  167. # [09:17] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  168. # [09:40] * Joins: kochi_home (~kochi_home@public.cloak)
  169. # [09:47] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  170. # [09:53] * Quits: Lachy (~Lachy@public.cloak) ("Computer has gone to sleep.")
  171. # [09:53] * Joins: opoto (~55733cb4@public.cloak)
  172. # [10:11] * heycam|away is now known as heycam|away|away
  173. # [10:17] * Joins: Lachy (~Lachy@public.cloak)
  174. # [10:41] * Joins: kochi_home (~kochi_home@public.cloak)
  175. # [10:48] * Quits: opoto (~55733cb4@public.cloak) ("http://www.mibbit.com ajax IRC Client")
  176. # [10:48] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  177. # [11:12] * Joins: kochi_home (~kochi_home@public.cloak)
  178. # [11:19] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  179. # [11:42] * Joins: kochi_home (~kochi_home@public.cloak)
  180. # [11:49] * Joins: marcosc (~marcosc@public.cloak)
  181. # [11:49] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  182. # [11:57] * Joins: chaals1 (~Adium@public.cloak)
  183. # [12:02] * Quits: chaals (~Adium@public.cloak) (Ping timeout: 180 seconds)
  184. # [12:13] * Joins: kochi_home (~kochi_home@public.cloak)
  185. # [12:20] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  186. # [12:29] * Quits: jgraham (~jgraham@public.cloak) (Ping timeout: 180 seconds)
  187. # [12:35] * Joins: jgraham (~jgraham@public.cloak)
  188. # [12:51] * Joins: skddc (~anonymous@public.cloak)
  189. # [13:13] * Joins: kochi_home (~kochi_home@public.cloak)
  190. # [13:16] * Joins: abarsto (~abarsto@public.cloak)
  191. # [13:16] * abarsto is now known as ArtB
  192. # [13:20] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  193. # [13:33] <ArtB> issue-1?
  194. # [13:33] * trackbot is looking up ISSUE-1.
  195. # [13:33] <trackbot> ISSUE-1 -- DOM3 Events is Unfinished -- pending review
  196. # [13:33] <trackbot> http://www.w3.org/2008/webapps/track/issues/1
  197. # [13:34] * Quits: skddc (~anonymous@public.cloak) (skddc)
  198. # [13:39] * Quits: marcosc (~marcosc@public.cloak) (Client closed connection)
  199. # [13:44] * Joins: kochi_home (~kochi_home@public.cloak)
  200. # [13:51] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  201. # [14:14] * Joins: kochi_home (~kochi_home@public.cloak)
  202. # [14:14] * Joins: tobie (tobie@public.cloak)
  203. # [14:21] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  204. # [14:23] * Joins: marcosc (~marcosc@public.cloak)
  205. # [14:30] * Quits: marcosc (~marcosc@public.cloak) (Ping timeout: 180 seconds)
  206. # [14:32] * Joins: chaals (~Adium@public.cloak)
  207. # [14:37] * Quits: chaals1 (~Adium@public.cloak) (Ping timeout: 180 seconds)
  208. # [14:38] * Joins: davidb (~davidb@public.cloak)
  209. # [14:45] * Joins: kochi_home (~kochi_home@public.cloak)
  210. # [14:52] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  211. # [14:54] * Quits: chaals (~Adium@public.cloak) ("Leaving.")
  212. # [15:15] * Joins: kochi_home (~kochi_home@public.cloak)
  213. # [15:17] * Joins: marcosc (~marcosc@public.cloak)
  214. # [15:22] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  215. # [15:24] * Quits: marcosc (~marcosc@public.cloak) (Ping timeout: 180 seconds)
  216. # [15:31] * Joins: marcosc (~marcosc@public.cloak)
  217. # [15:34] * Joins: fjh (~fhirsch3@public.cloak)
  218. # [15:43] * Joins: skddc (~anonymous@public.cloak)
  219. # [15:46] * Joins: kochi_home (~kochi_home@public.cloak)
  220. # [15:53] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  221. # [15:58] * Quits: marcosc (~marcosc@public.cloak) (Client closed connection)
  222. # [16:10] * Joins: richt_ (~richt@public.cloak)
  223. # [16:11] * Joins: marcosc (~marcosc@public.cloak)
  224. # [16:16] * Joins: kochi_home (~kochi_home@public.cloak)
  225. # [16:23] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  226. # [16:34] * Joins: kochi_home (~kochi_home@public.cloak)
  227. # [16:58] * Quits: jgraham (~jgraham@public.cloak) (Ping timeout: 180 seconds)
  228. # [17:02] * Quits: skddc (~anonymous@public.cloak) (Ping timeout: 180 seconds)
  229. # [17:13] * Quits: kochi_home (~kochi_home@public.cloak) (Client closed connection)
  230. # [17:40] * Quits: richt_ (~richt@public.cloak) ("Leaving...")
  231. # [17:41] * Joins: jgraham (~jgraham@public.cloak)
  232. # [17:43] * Quits: cabanier (~cabanier@public.cloak) ("Leaving.")
  233. # [17:43] * Joins: kochi_home (~kochi_home@public.cloak)
  234. # [17:44] * Joins: sgalineau (~sgalineau@public.cloak)
  235. # [17:50] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  236. # [17:52] * Joins: divya (~Adium@public.cloak)
  237. # [17:52] * Joins: lmclister (~lmclister@public.cloak)
  238. # [17:58] * Quits: jgraham (~jgraham@public.cloak) (Ping timeout: 180 seconds)
  239. # [18:00] * Quits: divya (~Adium@public.cloak) ("Leaving.")
  240. # [18:07] * Joins: divya (~Adium@public.cloak)
  241. # [18:10] * Joins: cabanier (~cabanier@public.cloak)
  242. # [18:10] * Joins: jgraham (~jgraham@public.cloak)
  243. # [18:11] * Quits: tobie (tobie@public.cloak)
  244. # [18:25] * Joins: skddc (~anonymous@public.cloak)
  245. # [18:57] * Joins: sicking (~sicking@public.cloak)
  246. # [19:13] * Quits: glenn (~gadams@public.cloak) (Client closed connection)
  247. # [19:14] * Joins: kochi_home (~kochi_home@public.cloak)
  248. # [19:21] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  249. # [19:36] * Quits: skddc (~anonymous@public.cloak) (skddc)
  250. # [19:50] * Joins: tobie (tobie@public.cloak)
  251. # [19:59] * Quits: Lachy (~Lachy@public.cloak) ("Computer has gone to sleep.")
  252. # [20:24] * Joins: glenn (~gadams@public.cloak)
  253. # [20:31] * Quits: glenn (~gadams@public.cloak) (Ping timeout: 180 seconds)
  254. # [20:44] * Joins: kochi_home (~kochi_home@public.cloak)
  255. # [20:51] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  256. # [21:15] * Joins: kochi_home (~kochi_home@public.cloak)
  257. # [21:17] * Quits: divya (~Adium@public.cloak) ("Leaving.")
  258. # [21:18] * Quits: tobie (tobie@public.cloak)
  259. # [21:22] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  260. # [21:24] * Quits: fjh (~fhirsch3@public.cloak) (Ping timeout: 180 seconds)
  261. # [21:24] * Joins: skddc (~anonymous@public.cloak)
  262. # [21:28] * Quits: marcosc (~marcosc@public.cloak) (Client closed connection)
  263. # [21:31] * Joins: glenn (~gadams@public.cloak)
  264. # [21:31] * Joins: marcosc (~marcosc@public.cloak)
  265. # [21:32] * Quits: marcosc (~marcosc@public.cloak) (Client closed connection)
  266. # [21:35] * Quits: Ms2ger (~Ms2ger@public.cloak) ("nn")
  267. # [21:45] * Joins: divya (~Adium@public.cloak)
  268. # [21:51] * Quits: divya (~Adium@public.cloak) ("Leaving.")
  269. # [21:52] * Quits: glenn (~gadams@public.cloak) (Client closed connection)
  270. # [21:57] * Joins: fjh (~fhirsch3@public.cloak)
  271. # [21:59] * Joins: divya (~Adium@public.cloak)
  272. # [22:10] * Joins: tobie (tobie@public.cloak)
  273. # [22:11] * Quits: ArtB (~abarsto@public.cloak) (Ping timeout: 180 seconds)
  274. # [22:11] * Joins: abarsto (~abarsto@public.cloak)
  275. # [22:11] * abarsto is now known as ArtB
  276. # [22:16] * Joins: kochi_home (~kochi_home@public.cloak)
  277. # [22:20] * Quits: lmclister (~lmclister@public.cloak) (lmclister)
  278. # [22:23] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  279. # [22:24] * Joins: glenn (~gadams@public.cloak)
  280. # [22:25] * Joins: lmclister (~lmclister@public.cloak)
  281. # [22:29] * Joins: divya1 (~Adium@public.cloak)
  282. # [22:30] * Joins: Lachy (~Lachy@public.cloak)
  283. # [22:33] * Quits: divya (~Adium@public.cloak) (Ping timeout: 180 seconds)
  284. # [22:35] * Quits: tobie (tobie@public.cloak)
  285. # [22:38] * Quits: sicking (~sicking@public.cloak) (sicking)
  286. # [22:44] * Quits: davidb (~davidb@public.cloak) (davidb)
  287. # [22:46] * Joins: kochi_home (~kochi_home@public.cloak)
  288. # [22:46] * Quits: karl (~karlcow@public.cloak) (":tiuQ tiuq sah woclrak")
  289. # [22:53] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  290. # [23:17] * Joins: kochi_home (~kochi_home@public.cloak)
  291. # [23:24] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  292. # [23:28] * Joins: skddc_ (~anonymous@public.cloak)
  293. # [23:33] * Quits: skddc (~anonymous@public.cloak) (Ping timeout: 180 seconds)
  294. # [23:33] * skddc_ is now known as skddc
  295. # [23:47] * Joins: kochi_home (~kochi_home@public.cloak)
  296. # [23:54] * Quits: kochi_home (~kochi_home@public.cloak) (Ping timeout: 180 seconds)
  297. # [23:55] * Quits: divya1 (~Adium@public.cloak) ("Leaving.")
  298. # [23:58] * Joins: divya (~Adium@public.cloak)
  299. # Session Close: Thu Jul 25 00:00:00 2013

The end :)