/irc-logs / freenode / #whatwg / 2015-10-18 / end

Options:

Previous day, Next day

  1. # Session Start: Sun Oct 18 00:00:00 2015
  2. # Session Ident: #whatwg
  3. # [00:04] * Quits: JeanCarloMachado (~jean@179.176.176.159.dynamic.adsl.gvt.net.br) (Ping timeout: 240 seconds)
  4. # [00:14] * Joins: JeanCarloMachado (~jean@179.176.176.159.dynamic.adsl.gvt.net.br)
  5. # [00:39] * Joins: aretecode (~aretecode@64.120.6.170)
  6. # [00:42] * Quits: tantek (~tantek@70-36-139-190.dsl.dynamic.fusionbroadband.com) (Quit: tantek)
  7. # [00:46] * Quits: fredy (~fredy@snf-535807.vm.okeanos.grnet.gr) (Excess Flood)
  8. # [00:47] * Joins: fredy (~fredy@snf-535807.vm.okeanos.grnet.gr)
  9. # [00:53] * Joins: darobin (~darobin@cpe-74-64-41-253.nyc.res.rr.com)
  10. # [00:56] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  11. # [00:59] * Quits: igoroliveira (uid20755@gateway/web/irccloud.com/x-xxuygywelbcjjnzr) (Quit: Connection closed for inactivity)
  12. # [01:02] * Quits: darobin (~darobin@cpe-74-64-41-253.nyc.res.rr.com) (Remote host closed the connection)
  13. # [01:04] * Joins: darobin (~darobin@cpe-74-64-41-253.nyc.res.rr.com)
  14. # [01:08] * Quits: ^esc (~esc-ape@178.165.130.229.wireless.dyn.drei.com) (Ping timeout: 260 seconds)
  15. # [01:16] * Quits: benwerd (~benwerd@67.180.159.135) (Remote host closed the connection)
  16. # [01:31] * Quits: Jayflux (~Jayflux@unaffiliated/jayflux) (Read error: Connection reset by peer)
  17. # [01:39] * Quits: darobin (~darobin@cpe-74-64-41-253.nyc.res.rr.com) (Remote host closed the connection)
  18. # [01:42] * Quits: Hory (Hory@2a02:2f0a:b04f:ffff::567c:c7c3) (Read error: Connection reset by peer)
  19. # [01:43] * Quits: espadrine (~tyl@dan75-7-88-166-187-54.fbx.proxad.net) (Ping timeout: 255 seconds)
  20. # [01:48] * Joins: tantek (~tantek@70-36-139-190.dsl.dynamic.fusionbroadband.com)
  21. # [01:48] * Joins: jensnockert (~jensnocke@84.219.248.21)
  22. # [01:49] * Quits: tantek (~tantek@70-36-139-190.dsl.dynamic.fusionbroadband.com) (Client Quit)
  23. # [01:49] * Quits: JeanCarloMachado (~jean@179.176.176.159.dynamic.adsl.gvt.net.br) (Ping timeout: 240 seconds)
  24. # [01:50] * Joins: JeanCarloMachado (~jean@179.176.176.159.dynamic.adsl.gvt.net.br)
  25. # [01:51] * Joins: aleray (~aleray@ip-83-101-52-164.customer.schedom-europe.net)
  26. # [01:52] <aleray> hi, I'm having troubles with html5lib python and lxml. I get the message `ValueError: All strings must be XML compatible: Unicode or ASCII, no NULL bytes or control characters` with my script which is here: http://dpaste.com/1AWKEG8
  27. # [01:53] <aleray> it is a python 2 script
  28. # [01:53] * Quits: jensnockert (~jensnocke@84.219.248.21) (Ping timeout: 240 seconds)
  29. # [01:55] * Joins: sicking (~sicking@c-98-210-157-231.hsd1.ca.comcast.net)
  30. # [01:56] * Quits: JeanCarloMachado (~jean@179.176.176.159.dynamic.adsl.gvt.net.br) (Ping timeout: 256 seconds)
  31. # [01:57] * Joins: JeanCarloMachado (~jean@179.176.176.159.dynamic.adsl.gvt.net.br)
  32. # [02:02] * Quits: JeanCarloMachado (~jean@179.176.176.159.dynamic.adsl.gvt.net.br) (Ping timeout: 264 seconds)
  33. # [02:05] <MikeSmith> aleray: if that is in fact a message coming from the html5lib module and not lxml itself, gsnedders might have a clue
  34. # [02:07] <MikeSmith> aleray: a code grep indicates that it's an lxml message
  35. # [02:07] * Joins: JeanCarloMachado (~jean@179.176.176.159.dynamic.adsl.gvt.net.br)
  36. # [02:07] <MikeSmith> src/lxml/lxml.etree.c
  37. # [02:09] <aleray> MikeSmith, thanks. I found this solution: `html = ''.join(c for c in html if valid_xml_char_ordinal(c))` on a forum
  38. # [02:09] <MikeSmith> ah, that's a generated file
  39. # [02:10] <MikeSmith> ah OK
  40. # [02:10] <aleray> not sure if it strips any important thing though
  41. # [02:10] <aleray> or just junk characters (the HTML is generated with ckeditor from word documents)
  42. # [02:10] * Quits: ASGuerrero (~ASGuerrer@94.10.240.197)
  43. # [02:11] <aleray> Here is the link to the forum: http://www.itsprite.com/pythonfiltering-out-certain-bytes-in-python/
  44. # [02:11] * MikeSmith looks
  45. # [02:12] <MikeSmith> looks like http://stackoverflow.com/questions/8733233/filtering-out-certain-bytes-in-python might also be useful
  46. # [02:13] <aleray> MikeSmith, same post actually. thanks for pointing ti the source though
  47. # [02:13] <MikeSmith> ah ok
  48. # [02:13] <MikeSmith> these days I always go to StackOverflow first
  49. # [02:16] <aleray> MikeSmith, so it seems to work. I have another small issue: I parse an html fragment with no root element. my code fails because of that because it is expecting a root node and I get a list of elements instead
  50. # [02:17] <MikeSmith> aleray: yeah I understand that problem there but can't be of much help just at the moment. Will be freed up in about 2 hours if you're still around
  51. # [02:17] <aleray> MikeSmith, thanks. i'll be sleeping probably. Any direction to search myself?
  52. # [02:20] * Quits: JeanCarloMachado (~jean@179.176.176.159.dynamic.adsl.gvt.net.br) (Ping timeout: 240 seconds)
  53. # [02:21] * Joins: JeanCarloMachado (~jean@179.176.176.159.dynamic.adsl.gvt.net.br)
  54. # [02:34] * Quits: JeanCarloMachado (~jean@179.176.176.159.dynamic.adsl.gvt.net.br) (Ping timeout: 250 seconds)
  55. # [02:34] * Joins: JeanCarloMachado (~jean@179.176.176.159.dynamic.adsl.gvt.net.br)
  56. # [02:36] * Joins: tantek (~tantek@70-36-139-190.dsl.dynamic.fusionbroadband.com)
  57. # [02:43] <gsnedders> aleray: known bug, but kinda horrible to fix accurately and hence not done yet :\
  58. # [02:43] <gsnedders> aleray: I'm increasingly leaning towards just hacking together some horrible fix for it that should at least /mostly/ fix it
  59. # [02:46] * Quits: jsx (uid48919@fsf/intern/jsx) (Quit: Connection closed for inactivity)
  60. # [02:49] * Quits: tantek (~tantek@70-36-139-190.dsl.dynamic.fusionbroadband.com) (Quit: tantek)
  61. # [02:53] * Joins: annevk_ (~annevk@195.12.41.182)
  62. # [02:53] * Quits: annevk (~annevk@195.12.41.182) (Read error: Connection reset by peer)
  63. # [02:57] * Joins: tantek (~tantek@70-36-139-190.dsl.dynamic.fusionbroadband.com)
  64. # [02:58] * Quits: tantek (~tantek@70-36-139-190.dsl.dynamic.fusionbroadband.com) (Client Quit)
  65. # [03:02] <aleray> gsnedders, Hi; talking about the invalid xml characters?
  66. # [03:03] <aleray> I'm glad the solution I found seems working at least
  67. # [03:04] <aleray> gsnedders, may be you could help me with the other thig, that is to be able to parse a fragment with lxml and get an tree rather than a list of elements
  68. # [03:06] <aleray> the code here: http://dpaste.com/0XQHK9D raises an `AttributeError: 'list' object has no attribute 'xpath'`
  69. # [03:06] * Quits: annevk_ (~annevk@195.12.41.182) (Ping timeout: 260 seconds)
  70. # [03:06] <aleray> because `tree = parser.parseFragment(html)` returns a list
  71. # [03:07] <aleray> because my fragment contains several elements
  72. # [03:12] * Quits: JeanCarloMachado (~jean@179.176.176.159.dynamic.adsl.gvt.net.br) (Ping timeout: 244 seconds)
  73. # [03:13] <aleray> etree and lxml behave differently. See http://dpaste.com/3SE8103 and http://dpaste.com/3G7N7JS
  74. # [03:13] <aleray> I'd like the etree behaviour with lxml, So I could use xpath on it
  75. # [03:13] * Joins: JeanCarloMachado (~jean@179.176.176.159.dynamic.adsl.gvt.net.br)
  76. # [03:18] * Joins: aleray_ (~aleray@ip-83-101-52-219.customer.schedom-europe.net)
  77. # [03:18] * Joins: tantek (~tantek@70-36-139-190.dsl.dynamic.fusionbroadband.com)
  78. # [03:22] * Quits: aleray (~aleray@ip-83-101-52-164.customer.schedom-europe.net) (Ping timeout: 252 seconds)
  79. # [03:22] * Quits: tantek (~tantek@70-36-139-190.dsl.dynamic.fusionbroadband.com) (Client Quit)
  80. # [03:22] * Quits: aleray_ (~aleray@ip-83-101-52-219.customer.schedom-europe.net) (Client Quit)
  81. # [03:22] * Joins: aleray (~aleray@ip-83-101-52-219.customer.schedom-europe.net)
  82. # [03:28] * Quits: Mateon1 (~Mateon1@unaffiliated/mateon1) (Ping timeout: 252 seconds)
  83. # [03:34] * Joins: Mateon1 (~Mateon1@unaffiliated/mateon1)
  84. # [03:38] * Quits: ttepasse (~ttepasse@ip-178-200-61-79.hsi07.unitymediagroup.de) (Quit: Textual IRC Client: www.textualapp.com)
  85. # [03:49] * Joins: jensnockert (~jensnocke@84.219.248.21)
  86. # [03:54] * Quits: jensnockert (~jensnocke@84.219.248.21) (Ping timeout: 240 seconds)
  87. # [03:58] * Joins: jyasskin (~jyasskin@173-228-80-34.dsl.static.fusionbroadband.com)
  88. # [03:59] * Quits: aleray (~aleray@ip-83-101-52-219.customer.schedom-europe.net) (Ping timeout: 265 seconds)
  89. # [04:13] * Joins: frivoal (~frivoal@2400:2650:86c0:a500:e579:a5d2:6654:b99a)
  90. # [04:19] * Quits: jyasskin (~jyasskin@173-228-80-34.dsl.static.fusionbroadband.com) (Ping timeout: 255 seconds)
  91. # [04:22] * Quits: JeanCarloMachado (~jean@179.176.176.159.dynamic.adsl.gvt.net.br) (Ping timeout: 252 seconds)
  92. # [04:38] * Joins: jyasskin (~jyasskin@173-228-80-34.dsl.static.fusionbroadband.com)
  93. # [04:44] * Joins: annevk (~annevk@195.12.41.182)
  94. # [05:04] * Quits: scott_gonzalez (~gonzasi0@gateway/shell/jquery.com/x-qzpzruinpnwmbbai) (Ping timeout: 240 seconds)
  95. # [05:07] * Joins: scott_gonzalez (gonzasi0@gateway/shell/jquery.com/x-losrkdksuwzaihot)
  96. # [05:28] * Quits: frivoal (~frivoal@2400:2650:86c0:a500:e579:a5d2:6654:b99a) (Remote host closed the connection)
  97. # [05:37] * Joins: j_wright (~jwright@unaffiliated/j-wright/x-9145068)
  98. # [05:40] * Quits: sicking (~sicking@c-98-210-157-231.hsd1.ca.comcast.net) (Quit: sicking)
  99. # [05:49] * Quits: jyasskin (~jyasskin@173-228-80-34.dsl.static.fusionbroadband.com) (Quit: My computer has gone to sleep. ZZZzzz…)
  100. # [05:50] * Joins: jensnockert_ (~jensnocke@84.219.248.21)
  101. # [05:55] * Quits: jensnockert_ (~jensnocke@84.219.248.21) (Ping timeout: 255 seconds)
  102. # [06:06] * Joins: sicking (~sicking@c-98-210-157-231.hsd1.ca.comcast.net)
  103. # [06:29] * Joins: frivoal (~frivoal@2400:2650:86c0:a500:fdff:f351:6a9f:56d8)
  104. # [06:40] * Quits: aretecode (~aretecode@64.120.6.170) (Ping timeout: 265 seconds)
  105. # [06:54] * Joins: tav_ (~tav`@host86-161-106-217.range86-161.btcentralplus.com)
  106. # [06:56] * Joins: frivoal_ (~frivoal@2400:2650:86c0:a500:fdff:f351:6a9f:56d8)
  107. # [06:57] * Joins: hsivonen_ (~hsivonen@hsivonen.com)
  108. # [06:57] * Joins: wilhelm_ (~wilhelm@178.255.149.100)
  109. # [06:57] * Joins: rektide_ (~rektide@eldergods.com)
  110. # [07:03] * Quits: frivoal (~frivoal@2400:2650:86c0:a500:fdff:f351:6a9f:56d8) (*.net *.split)
  111. # [07:03] * Quits: tav (~tav`@host86-161-106-217.range86-161.btcentralplus.com) (*.net *.split)
  112. # [07:03] * Quits: sarri (~sari@unaffiliated/sarri) (*.net *.split)
  113. # [07:03] * Quits: beverloo (beverloo@nat/google/x-qziqrvxaoritjsng) (*.net *.split)
  114. # [07:03] * Quits: johnme (johnme@nat/google/x-dqjipxuwmdgslhmj) (*.net *.split)
  115. # [07:03] * Quits: mpt (~mpt@canonical/mpt) (*.net *.split)
  116. # [07:03] * Quits: ajpiano (~ajpiano@li98-57.members.linode.com) (*.net *.split)
  117. # [07:03] * Quits: bret (sid12421@gateway/web/irccloud.com/x-vvgmzpazdfjzvpch) (*.net *.split)
  118. # [07:03] * Quits: hallvors (~sid83@2620:101:8016:74::4:53) (*.net *.split)
  119. # [07:03] * Quits: jyasskin_w (jyasskin@nat/google/x-oukyiuvdmhogqemv) (*.net *.split)
  120. # [07:03] * Quits: globbot (~logbot@lump.glob.com.au) (*.net *.split)
  121. # [07:03] * Quits: kochi (~kochi@2401:fa00:4:1000:6cb7:d856:3366:8f) (*.net *.split)
  122. # [07:03] * Quits: birtles (sid16523@gateway/web/irccloud.com/x-zsgoepfbvqevksrq) (*.net *.split)
  123. # [07:03] * Quits: dgrogan (dgrogan@nat/google/x-qgooinklytcxhsfc) (*.net *.split)
  124. # [07:03] * Quits: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley) (*.net *.split)
  125. # [07:04] * Quits: rektide (~rektide@eldergods.com) (*.net *.split)
  126. # [07:04] * Quits: sarrri (~sari@unaffiliated/sarri) (*.net *.split)
  127. # [07:04] * Quits: caitp (~green@ec2-52-88-18-7.us-west-2.compute.amazonaws.com) (*.net *.split)
  128. # [07:04] * Quits: hayato (sid20728@gateway/web/irccloud.com/x-pfklbrzdlqdhuyuw) (*.net *.split)
  129. # [07:04] * Quits: abarth (sid5294@gateway/web/irccloud.com/x-nrykheuqwbenjioh) (*.net *.split)
  130. # [07:04] * Quits: hsivonen (~hsivonen@hsivonen.com) (*.net *.split)
  131. # [07:04] * Quits: sspi (sid34681@gateway/web/irccloud.com/x-wndztdgaajlthjlj) (*.net *.split)
  132. # [07:04] * Quits: dada_ (~dada@149-210-161-177.colo.transip.net) (*.net *.split)
  133. # [07:04] * Quits: dveditz (~sid522@2620:101:8016:74::4:20a) (*.net *.split)
  134. # [07:04] * Quits: manu (~manu@mail.digitalbazaar.com) (*.net *.split)
  135. # [07:04] * Quits: wilhelm (~wilhelm@178.255.149.100) (*.net *.split)
  136. # [07:04] * Quits: rbyers (sid31141@gateway/web/irccloud.com/x-etjneizbasivxzdb) (*.net *.split)
  137. # [07:04] * Quits: moo-_- (miohtama@lakka.kapsi.fi) (*.net *.split)
  138. # [07:04] * Quits: pdr (sid7901@gateway/web/irccloud.com/x-ugijrozobyqvsbpz) (*.net *.split)
  139. # [07:04] * Quits: jamesr (jamesr@gateway/web/irccloud.com/x-yfegsdukfupnfpgm) (*.net *.split)
  140. # [07:04] * tav_ is now known as tav
  141. # [07:04] * Joins: [sarri] (~sari@p50995cae.dip0.t-ipconnect.de)
  142. # [07:04] * Joins: sarrri (~sari@2a01:238:4329:1400:d20b:3dde:63aa:b36f)
  143. # [07:04] * Quits: sarrri (~sari@2a01:238:4329:1400:d20b:3dde:63aa:b36f) (Changing host)
  144. # [07:04] * Joins: sarrri (~sari@unaffiliated/sarri)
  145. # [07:04] * Joins: caitp (~green@ec2-52-88-18-7.us-west-2.compute.amazonaws.com)
  146. # [07:04] * Joins: globbot (~logbot@lump.glob.com.au)
  147. # [07:05] * Joins: aretecode (~aretecode@64.120.6.170)
  148. # [07:06] * Joins: manu (~manu@mail.digitalbazaar.com)
  149. # [07:08] * Joins: ajpiano (~ajpiano@li98-57.members.linode.com)
  150. # [07:09] * Joins: johnme (johnme@nat/google/x-vkuiiauyhghfbeof)
  151. # [07:09] * Joins: rbyers (sid31141@gateway/web/irccloud.com/x-fvrofvdjxyrtcoks)
  152. # [07:10] * Joins: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley)
  153. # [07:10] * Joins: sspi (sid34681@gateway/web/irccloud.com/x-lyntktusmtzjyzjj)
  154. # [07:10] * Joins: moo-_- (miohtama@lakka.kapsi.fi)
  155. # [07:11] * Joins: beverloo (beverloo@nat/google/x-woscraiicrktimbd)
  156. # [07:11] * Joins: hallvors (~sid83@2620:101:8016:74::4:53)
  157. # [07:11] * Joins: mpt (~mpt@2001:67c:1560:a003:648f:11c9:f85b:c1c0)
  158. # [07:11] * Quits: mpt (~mpt@2001:67c:1560:a003:648f:11c9:f85b:c1c0) (Changing host)
  159. # [07:11] * Joins: mpt (~mpt@canonical/mpt)
  160. # [07:11] * Joins: dveditz (~sid522@2620:101:8016:74::4:20a)
  161. # [07:12] * Joins: kochi (~kochi@2401:fa00:4:1000:29e0:9f32:bfa9:a954)
  162. # [07:12] * Joins: dgrogan (dgrogan@nat/google/x-lxslocichgljclyy)
  163. # [07:12] * Joins: jyasskin_w (jyasskin@nat/google/x-dfyfypivnfyhawap)
  164. # [07:13] * Joins: jamesr (jamesr@gateway/web/irccloud.com/x-rtrgorqwppppraeh)
  165. # [07:13] * Joins: birtles (sid16523@gateway/web/irccloud.com/x-mgcrvikdjbzdeeuk)
  166. # [07:14] * Joins: pdr (sid7901@gateway/web/irccloud.com/x-ufgoyaesthhxjdxk)
  167. # [07:14] * Joins: abarth (sid5294@gateway/web/irccloud.com/x-sfcuviqbvafojwhe)
  168. # [07:14] * Joins: bret (sid12421@gateway/web/irccloud.com/x-btxlybuvtbokikfq)
  169. # [07:15] * Joins: hayato (sid20728@gateway/web/irccloud.com/x-yakaofdxeirmdaqe)
  170. # [07:51] * Joins: jensnockert (~jensnocke@84.219.248.21)
  171. # [07:53] * Joins: dada_ (~dada@149-210-161-177.colo.transip.net)
  172. # [07:56] * Quits: jensnockert (~jensnocke@84.219.248.21) (Ping timeout: 264 seconds)
  173. # [07:58] * Joins: jsx (uid48919@fsf/intern/jsx)
  174. # [08:53] * Joins: ap (~ap@c-24-130-61-31.hsd1.ca.comcast.net)
  175. # [09:02] * Joins: tantek (~tantek@70-36-139-190.dsl.dynamic.fusionbroadband.com)
  176. # [09:03] * Quits: ap (~ap@c-24-130-61-31.hsd1.ca.comcast.net) (Quit: ap)
  177. # [09:12] * Joins: JonathanC (~JonathanC@105-237-54-80.access.mtnbusiness.co.za)
  178. # [09:34] * Quits: tantek (~tantek@70-36-139-190.dsl.dynamic.fusionbroadband.com) (Quit: tantek)
  179. # [09:34] * Quits: Mikaela (mikaela@unaffiliated/mikaela) (Quit: ZNC 1.7.x-git-451-1c54550 🃁 https://mikaela.info/)
  180. # [09:35] * Joins: Mikaela (mikaela@unaffiliated/mikaela)
  181. # [09:38] * Joins: zdobersek (~zan@gateway/vpn/privateinternetaccess/zdobersek)
  182. # [09:47] * Quits: Goplat (~goplat@reactos/developer/Goplat) (Remote host closed the connection)
  183. # [09:52] * Joins: jensnockert (~jensnocke@84.219.248.21)
  184. # [09:56] * Joins: wbe (~textual@port-93695.pppoe.wtnet.de)
  185. # [09:57] * Quits: Mikaela (mikaela@unaffiliated/mikaela) (Remote host closed the connection)
  186. # [09:57] * Joins: Mikaela (mikaela@unaffiliated/mikaela)
  187. # [09:57] * Quits: jensnockert (~jensnocke@84.219.248.21) (Ping timeout: 256 seconds)
  188. # [10:13] * Joins: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net)
  189. # [10:13] * Quits: dbaron (~dbaron@70-36-140-3.dsl.dynamic.fusionbroadband.com) (Ping timeout: 260 seconds)
  190. # [10:18] * Quits: [sarri] (~sari@p50995cae.dip0.t-ipconnect.de) (Ping timeout: 250 seconds)
  191. # [10:18] * Quits: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net) (Remote host closed the connection)
  192. # [10:19] * Joins: ^esc (~esc-ape@178.165.128.250.wireless.dyn.drei.com)
  193. # [10:21] * Joins: sarri (~sari@unaffiliated/sarri)
  194. # [10:24] * Joins: alrra (uid62345@gateway/web/irccloud.com/x-igpncjnjofmgenqs)
  195. # [10:30] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
  196. # [10:39] <zewt_> "filename.zip may harm your browsing experience, so Chrome has blocked it" nice of Chrome to ask my permission before "blocking it" a harmless file that I now have to download again in firefox
  197. # [10:39] <zewt_> all browsers have turned to crap
  198. # [10:50] <zewt_> when did it become okay for browsers to override the user on his own system, bodes deeply ill for the future of the web
  199. # [10:51] * Joins: jdaggett_ (~jdaggett@ae021089.dynamic.ppp.asahi-net.or.jp)
  200. # [10:54] <JonathanC> https://www.w3.org/community/ DataSheets - need members
  201. # [11:08] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Read error: Connection reset by peer)
  202. # [11:09] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
  203. # [11:12] * Joins: Hory (Hory@2a02:2f0a:b08f:ffff::5679:8242)
  204. # [11:24] * Quits: jdaggett_ (~jdaggett@ae021089.dynamic.ppp.asahi-net.or.jp) (Quit: jdaggett_)
  205. # [11:29] * Joins: aleray (~aleray@206.253-136-217.adsl-static.isp.belgacom.be)
  206. # [11:41] * Quits: sicking (~sicking@c-98-210-157-231.hsd1.ca.comcast.net) (Quit: sicking)
  207. # [11:46] * Quits: frivoal_ (~frivoal@2400:2650:86c0:a500:fdff:f351:6a9f:56d8) (Remote host closed the connection)
  208. # [11:47] * Joins: frivoal (~frivoal@2400:2650:86c0:a500:fdff:f351:6a9f:56d8)
  209. # [11:47] * Quits: frivoal (~frivoal@2400:2650:86c0:a500:fdff:f351:6a9f:56d8) (Remote host closed the connection)
  210. # [11:53] * Joins: jensnockert (~jensnocke@84.219.248.21)
  211. # [11:58] * Quits: jensnockert (~jensnocke@84.219.248.21) (Ping timeout: 252 seconds)
  212. # [12:09] * Joins: ASGuerrero (~ASGuerrer@94.10.240.197)
  213. # [12:10] * Joins: blooberry2 (Brian@nat/intel/x-rdjbgzeefxpzqksv)
  214. # [12:10] * Quits: blooberry (Brian@nat/intel/x-cdsehhrnaotshonm) (Ping timeout: 256 seconds)
  215. # [12:19] <aleray> I'm stuck with my problem from yesterday: using lxml the parseFragment methods gives me a list of nodes
  216. # [12:19] <aleray> with etree it gives me one single element
  217. # [12:20] <aleray> because I have a list, I can't use methods like "xpath"
  218. # [12:40] * Quits: aretecode (~aretecode@64.120.6.170) (Ping timeout: 265 seconds)
  219. # [12:41] * Joins: JoWie (uid93456@gateway/web/irccloud.com/x-aqlbvbyhrfkmrqly)
  220. # [12:48] * Joins: frivoal (~frivoal@2400:2650:86c0:a500:fdff:f351:6a9f:56d8)
  221. # [12:52] * Quits: frivoal (~frivoal@2400:2650:86c0:a500:fdff:f351:6a9f:56d8) (Ping timeout: 240 seconds)
  222. # [12:58] * Joins: Jayflux (~Jayflux@unaffiliated/jayflux)
  223. # [13:03] * Joins: xiinotulp (~q@node-jfk.pool-101-108.dynamic.totbb.net)
  224. # [13:07] * Quits: plutoniix (~q@113.53.151.108) (Ping timeout: 265 seconds)
  225. # [13:08] * xiinotulp is now known as plutoniix
  226. # [13:10] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Remote host closed the connection)
  227. # [13:19] * Joins: frivoal (~frivoal@softbank126142063093.bbtec.net)
  228. # [13:19] * Quits: frivoal (~frivoal@softbank126142063093.bbtec.net) (Remote host closed the connection)
  229. # [13:24] * Joins: frivoal (~frivoal@2400:2650:86c0:a500:6d4b:457a:49d8:7ceb)
  230. # [13:26] * Quits: aleray (~aleray@206.253-136-217.adsl-static.isp.belgacom.be) (Ping timeout: 240 seconds)
  231. # [13:40] <annevk> 2016 is close and the Location object is still poorly understood and defined: https://lists.w3.org/Archives/Public/www-archive/2015Oct/0051.html
  232. # [13:41] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
  233. # [13:46] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Ping timeout: 246 seconds)
  234. # [13:51] * Joins: JeanCarloMachado (~jean@179.176.176.159.dynamic.adsl.gvt.net.br)
  235. # [13:55] * Quits: frivoal (~frivoal@2400:2650:86c0:a500:6d4b:457a:49d8:7ceb) (Remote host closed the connection)
  236. # [13:55] * Joins: frivoal (~frivoal@2400:2650:86c0:a500:6d4b:457a:49d8:7ceb)
  237. # [13:59] * Quits: frivoal (~frivoal@2400:2650:86c0:a500:6d4b:457a:49d8:7ceb) (Ping timeout: 240 seconds)
  238. # [14:01] * Joins: aleray (~aleray@206.253-136-217.adsl-static.isp.belgacom.be)
  239. # [14:10] * Joins: tantek (~tantek@70-36-139-190.dsl.dynamic.fusionbroadband.com)
  240. # [14:15] * Quits: hgl (~hgl@unaffiliated/hgl) (Ping timeout: 240 seconds)
  241. # [14:17] <gsnedders> aleray: hmm… both options seem kinda bad :\
  242. # [14:29] * Joins: frivoal (~frivoal@2400:2650:86c0:a500:608e:3b08:a5cf:11ff)
  243. # [14:31] * Quits: alrra (uid62345@gateway/web/irccloud.com/x-igpncjnjofmgenqs) (Quit: Connection closed for inactivity)
  244. # [14:33] * Quits: JeanCarloMachado (~jean@179.176.176.159.dynamic.adsl.gvt.net.br) (Ping timeout: 260 seconds)
  245. # [14:52] * Quits: tantek (~tantek@70-36-139-190.dsl.dynamic.fusionbroadband.com) (Quit: tantek)
  246. # [15:08] * Joins: howdoi (uid224@gateway/web/irccloud.com/x-qecvxhzcskhzdesb)
  247. # [15:33] * Joins: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net)
  248. # [15:34] * Quits: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net) (Remote host closed the connection)
  249. # [15:35] * Joins: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net)
  250. # [15:39] * Quits: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net) (Remote host closed the connection)
  251. # [15:43] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
  252. # [15:48] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Ping timeout: 250 seconds)
  253. # [15:55] * Joins: jensnockert (~jensnocke@84.219.248.21)
  254. # [16:00] * Quits: jensnockert (~jensnocke@84.219.248.21) (Ping timeout: 252 seconds)
  255. # [16:05] * Quits: fredy (~fredy@snf-535807.vm.okeanos.grnet.gr) (Excess Flood)
  256. # [16:06] * Quits: Hory (Hory@2a02:2f0a:b08f:ffff::5679:8242) (Read error: Connection reset by peer)
  257. # [16:07] * Joins: fredy (~fredy@snf-535807.vm.okeanos.grnet.gr)
  258. # [16:21] * Quits: frivoal (~frivoal@2400:2650:86c0:a500:608e:3b08:a5cf:11ff) (Remote host closed the connection)
  259. # [16:21] * Quits: howitdo (~howitdo@unaffiliated/howitdo) (Ping timeout: 250 seconds)
  260. # [16:21] * Joins: frivoal (~frivoal@2400:2650:86c0:a500:608e:3b08:a5cf:11ff)
  261. # [16:25] * Quits: frivoal (~frivoal@2400:2650:86c0:a500:608e:3b08:a5cf:11ff) (Ping timeout: 240 seconds)
  262. # [16:27] <aleray> gsnedders, hi, what do you meean?
  263. # [16:33] * Joins: jyasskin (~jyasskin@172.56.31.121)
  264. # [16:34] * Joins: howitdo (~howitdo@unaffiliated/howitdo)
  265. # [16:44] * Quits: jyasskin (~jyasskin@172.56.31.121) (Quit: My computer has gone to sleep. ZZZzzz…)
  266. # [17:19] * Joins: ttepasse (~ttepasse@ip-178-200-61-79.hsi07.unitymediagroup.de)
  267. # [17:23] * Joins: OmarProgrammer (~omaroujdi@196.206.236.248)
  268. # [17:23] * Quits: OmarProgrammer (~omaroujdi@196.206.236.248) (Client Quit)
  269. # [17:26] * Joins: jyasskin (~jyasskin@216.9.110.1)
  270. # [17:46] * Quits: jyasskin (~jyasskin@216.9.110.1) (Quit: My computer has gone to sleep. ZZZzzz…)
  271. # [17:56] * Joins: jensnockert (~jensnocke@84.219.248.21)
  272. # [18:00] * Quits: jensnockert (~jensnocke@84.219.248.21) (Ping timeout: 250 seconds)
  273. # [18:08] * Joins: jyasskin (~jyasskin@172.56.17.33)
  274. # [18:09] * Quits: kevinmarks (~kevinmark@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
  275. # [18:11] * Joins: kevinmarks (~kevinmark@c-67-164-14-200.hsd1.ca.comcast.net)
  276. # [18:16] * Joins: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net)
  277. # [18:25] * Quits: jyasskin (~jyasskin@172.56.17.33) (Ping timeout: 264 seconds)
  278. # [18:51] * Joins: benwerd (~benwerd@67.180.159.135)
  279. # [18:57] * Joins: dbaron (~dbaron@70-36-140-3.dsl.dynamic.fusionbroadband.com)
  280. # [18:58] * Quits: yoav (~yoav@sdo26-1-78-245-148-181.fbx.proxad.net) (Remote host closed the connection)
  281. # [19:03] * Joins: aretecode (~aretecode@64.120.6.170)
  282. # [19:15] * Quits: aleray (~aleray@206.253-136-217.adsl-static.isp.belgacom.be) (Ping timeout: 246 seconds)
  283. # [19:18] * Joins: sicking (~sicking@c-98-210-157-231.hsd1.ca.comcast.net)
  284. # [19:25] * Quits: benwerd (~benwerd@67.180.159.135) (Remote host closed the connection)
  285. # [19:32] * Joins: rniwa (~rniwa@c-24-6-160-249.hsd1.ca.comcast.net)
  286. # [19:34] * Joins: Maurice` (~copyman@unaffiliated/maurice)
  287. # [19:40] * Quits: rniwa (~rniwa@c-24-6-160-249.hsd1.ca.comcast.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
  288. # [19:41] * Joins: Goplat (~goplat@reactos/developer/Goplat)
  289. # [19:43] * Joins: rniwa (~rniwa@c-24-6-160-249.hsd1.ca.comcast.net)
  290. # [19:57] * Joins: jensnockert (~jensnocke@84.219.248.21)
  291. # [19:59] * Joins: JeanCarloMachado (~jean@187.255.229.138)
  292. # [20:02] * Quits: jensnockert (~jensnocke@84.219.248.21) (Ping timeout: 256 seconds)
  293. # [20:02] * Quits: rniwa (~rniwa@c-24-6-160-249.hsd1.ca.comcast.net) (Quit: My Mac has gone to sleep. ZZZzzz…)
  294. # [20:14] * Quits: JeanCarloMachado (~jean@187.255.229.138) (Ping timeout: 256 seconds)
  295. # [20:19] * Joins: JeanCarloMachado (~jean@187.255.229.138)
  296. # [20:21] * Quits: Guest58751 (~c74d3a4eb@2002:4404:712c:0:76de:2bff:fed4:2766) (Read error: Connection reset by peer)
  297. # [20:25] * Joins: Guest58751 (~c74d3a4eb@2002:4404:712c:0:76de:2bff:fed4:2766)
  298. # [20:28] * Quits: JeanCarloMachado (~jean@187.255.229.138) (Ping timeout: 244 seconds)
  299. # [20:34] * Joins: JeanCarloMachado (~jean@187.255.229.138)
  300. # [21:17] * Quits: sicking (~sicking@c-98-210-157-231.hsd1.ca.comcast.net) (Quit: sicking)
  301. # [21:24] <nox> annevk: Should an url object's query become null again when its URLSearchParams becomes empty?
  302. # [21:26] * Quits: bterlson (sid23757@gateway/web/irccloud.com/x-jcruczytegfvcmhu) (Ping timeout: 268 seconds)
  303. # [21:28] * Joins: bterlson (sid23757@gateway/web/irccloud.com/x-vdlsvbimpimihhiw)
  304. # [21:31] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
  305. # [21:32] * Joins: uP|Slave (~ASGuerrer@90.194.50.198)
  306. # [21:33] * Quits: ASGuerrero (~ASGuerrer@94.10.240.197) (Ping timeout: 240 seconds)
  307. # [21:34] * Joins: ASGuerrero (~ASGuerrer@90.194.50.198)
  308. # [21:36] * Quits: JeanCarloMachado (~jean@187.255.229.138) (Ping timeout: 255 seconds)
  309. # [21:39] * Quits: zdobersek (~zan@gateway/vpn/privateinternetaccess/zdobersek) (Quit: Leaving.)
  310. # [21:44] * Joins: JeanCarloMachado (~jean@179.176.176.159.dynamic.adsl.gvt.net.br)
  311. # [21:49] * Quits: ttepasse (~ttepasse@ip-178-200-61-79.hsi07.unitymediagroup.de) (Ping timeout: 244 seconds)
  312. # [21:54] * Joins: ttepasse (~ttepasse@ip-178-200-61-79.hsi07.unitymediagroup.de)
  313. # [21:58] * Joins: jensnockert (~jensnocke@84.219.248.21)
  314. # [21:59] * Quits: uP|Slave (~ASGuerrer@90.194.50.198)
  315. # [21:59] * Quits: ASGuerrero (~ASGuerrer@90.194.50.198)
  316. # [22:02] * Quits: jensnockert (~jensnocke@84.219.248.21) (Ping timeout: 240 seconds)
  317. # [22:15] * Quits: JonathanC (~JonathanC@105-237-54-80.access.mtnbusiness.co.za) (Quit: Leaving)
  318. # [22:29] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
  319. # [22:34] * Quits: howdoi (uid224@gateway/web/irccloud.com/x-qecvxhzcskhzdesb) (Quit: Connection closed for inactivity)
  320. # [22:39] * Joins: beaconwriter (~beaconwri@128.90.93.63)
  321. # [22:39] * Quits: dbaron (~dbaron@70-36-140-3.dsl.dynamic.fusionbroadband.com) (Ping timeout: 260 seconds)
  322. # [22:40] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
  323. # [22:42] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
  324. # [22:46] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 272 seconds)
  325. # [22:47] * Quits: malcolmva (~malcolmva@c-67-180-198-144.hsd1.ca.comcast.net) (Ping timeout: 250 seconds)
  326. # [23:00] * Joins: malcolmva (~malcolmva@c-67-180-198-144.hsd1.ca.comcast.net)
  327. # [23:14] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  328. # [23:17] * Joins: JeanCarl1Machado (~jean@179.176.176.159.dynamic.adsl.gvt.net.br)
  329. # [23:18] * Quits: JeanCarloMachado (~jean@179.176.176.159.dynamic.adsl.gvt.net.br) (Ping timeout: 256 seconds)
  330. # [23:22] * Quits: Maurice` (~copyman@unaffiliated/maurice)
  331. # [23:23] * Quits: beaconwriter (~beaconwri@128.90.93.63) (Quit: Leaving)
  332. # [23:34] * Quits: Goplat (~goplat@reactos/developer/Goplat) (Remote host closed the connection)
  333. # [23:39] * Quits: JeanCarl1Machado (~jean@179.176.176.159.dynamic.adsl.gvt.net.br) (Remote host closed the connection)
  334. # [23:42] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
  335. # [23:42] * Joins: roc (~chatzilla@121.98.90.209)
  336. # [23:45] * Quits: wbe (~textual@port-93695.pppoe.wtnet.de) (Quit: My computer has gone to sleep. ZZZzzz…)
  337. # [23:46] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 246 seconds)
  338. # [23:48] * Joins: smaug____ (~chatzilla@dyxxlkyyyyyyyyyyyyyby-3.rev.dnainternet.fi)
  339. # [23:58] * Quits: fredy (~fredy@snf-535807.vm.okeanos.grnet.gr) (Excess Flood)
  340. # [23:59] * Joins: jensnockert (~jensnocke@84.219.248.21)
  341. # Session Close: Mon Oct 19 00:00:00 2015

Previous day, Next day

Think these logs are useful? Then please donate to show your gratitude (and keep them up, of course). Thanks! — Krijn