Options:
- # Session Start: Mon Feb 04 00:00:00 2013
- # Session Ident: #html5
- # [00:00] * Quits: machicola (~tteofgoih@74.197.247.103) (Ping timeout: 244 seconds)
- # [00:02] * Joins: Ariel_Calzada (~aricalso@201.184.245.87)
- # [00:03] * Joins: divya (~Adium@50-0-136-242.dsl.dynamic.sonic.net)
- # [00:03] <Mosselman> $.ajax({'dataType' : 'script', 'url': "http://somefile.js"})
- # [00:03] <Mosselman> not really non-executable
- # [00:03] <Mosselman> but you could then set some window.variable, or something more fancy like triggering an event
- # [00:04] <Mosselman> with the required data
- # [00:04] <Mosselman> quidnunc: ^^
- # [00:04] <Mosselman> otherwise: http://msgpack.org/
- # [00:05] * Quits: Andre_designer (~Thunderbi@82-170-146-165.ip.telfort.nl) (Remote host closed the connection)
- # [00:05] * Quits: factor (~factor@r74-193-21-107.cnrocmta01.conrtx.tl.dh.suddenlink.net) (Read error: Connection reset by peer)
- # [00:06] * Joins: factor (~factor@74.196.174.229)
- # [00:09] * Joins: machicola (~tteofgoih@74.197.247.103)
- # [00:10] * Quits: machicola (~tteofgoih@74.197.247.103) (Read error: Connection reset by peer)
- # [00:10] * Joins: mishugana (~mishugana@pool-108-39-211-161.pitbpa.fios.verizon.net)
- # [00:11] * Quits: divya (~Adium@50-0-136-242.dsl.dynamic.sonic.net) (Ping timeout: 255 seconds)
- # [00:14] * Quits: prudnikov (~prudnikov@nat-17.starnet.cz) (Quit: Leaving...)
- # [00:15] * Joins: prudnikov (~prudnikov@nat-17.starnet.cz)
- # [00:20] * Quits: populvuh (~populvuh@unaffiliated/populvuh) (Ping timeout: 260 seconds)
- # [00:20] * Quits: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net) (Read error: Connection timed out)
- # [00:28] * Quits: obert (~quassel@host221-22-dynamic.3-87-r.retail.telecomitalia.it) (Remote host closed the connection)
- # [00:28] <quidnunc> Mosselman: Doesn't that violate the same-origin policy?
- # [00:29] <Mosselman> quidnunc: which of all?
- # [00:29] <Mosselman> the script or msgpack?
- # [00:29] <quidnunc> script
- # [00:29] <Mosselman> doesn't with me
- # [00:29] <Mosselman> it is like appending a script tag to the head
- # [00:30] <Mosselman> which is how bookmarklets work
- # [00:30] <Mosselman> if you go to my site: bookmarkify.it you can see that when you create a bookmarklet, I append a script to the head that then calls the script you created from my server.
- # [00:31] <Mosselman> only issues that arise then are with SSL
- # [00:31] <Mosselman> (sometimes)
- # [00:31] <quidnunc> Mosselman: I'm interested in binary data not scripts. Can I download binary data from another origin?
- # [00:31] <quidnunc> where the other origin is not under my control?
- # [00:32] <Mosselman> xml works
- # [00:32] <Mosselman> or the aforementioned msgpack
- # [00:32] <quidnunc> arbitrary binary dat
- # [00:32] <Mosselman> which is supposedly faster than json
- # [00:32] <Mosselman> quidnunc: can you give an example?
- # [00:33] <quidnunc> Mosselman: Download an mp3 from a blog
- # [00:33] <Mosselman> I see
- # [00:33] <Mosselman> through javascript?
- # [00:33] <quidnunc> and then process it in javascript
- # [00:33] <quidnunc> Mosselman: Client side, not necessarily javascript but I don't see another way
- # [00:33] <Mosselman> shouldn't you be able to 'download' it with html(-ish)
- # [00:33] <quidnunc> Mosselman: url is dynamic
- # [00:33] <Mosselman> like with images
- # [00:33] <Mosselman> you can append an html tag
- # [00:34] <quidnunc> Mosselman: and I want to process the data
- # [00:35] <Mosselman> quidnunc: http://stackoverflow.com/questions/6165266/downloading-mp3-files-using-html5-blobs-in-a-chrome-extension
- # [00:35] * Joins: populvuh (~populvuh@unaffiliated/populvuh)
- # [00:35] * Joins: Boydy (~Emma@unaffiliated/boydy)
- # [00:37] * Joins: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net)
- # [00:39] <quidnunc> Mosselman: I think those examples need Access-Control-Allow-Origin. I guess I will have to use that
- # [00:40] * Quits: populvuh (~populvuh@unaffiliated/populvuh) (Ping timeout: 260 seconds)
- # [00:40] <Mosselman> normally your browser should be able to download most files
- # [00:40] <Mosselman> do you have a link to an mp3 file that I can try?
- # [00:40] <Mosselman> maybe I can find something
- # [00:47] * Quits: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net) (Read error: Connection reset by peer)
- # [00:47] <quidnunc> Mosselman: http://www.tonycuffe.com/mp3/tailtoddle_lo.mp3
- # [00:50] * Joins: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net)
- # [00:50] <Mosselman> yep, I get a access-control-allow-origin too
- # [00:51] <Mosselman> with jquery that is
- # [00:51] <Mosselman> quidnunc: ^^
- # [00:51] <Mosselman> let me try something else
- # [00:53] <quidnunc> Mosselman: I don't think there is a way around it.
- # [00:53] * Quits: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net) (Read error: Connection reset by peer)
- # [00:53] <Mosselman> quidnunc: how do you want to process the mp3
- # [00:53] <Mosselman> ?
- # [00:54] <Mosselman> a lib or something like that?
- # [00:54] <quidnunc> Mosselman: Process that data in javascript
- # [00:54] <Mosselman> line by line?
- # [00:55] <Mosselman> either way, doing this: jQuery('body').append("<audio><source src='http://www.tonycuffe.com/mp3/tailtoddle_lo.mp3' type='audio/mpeg'></audio>")
- # [00:55] <Mosselman> will make the browser download the file
- # [00:57] <Mosselman> http://www.sitepoint.com/3-breakthrough-ways-to-visualize-html5-audio/ under "There are also limitations..."
- # [00:58] <quidnunc> But how would I access the data in javascript?
- # [01:01] * Quits: OnlyMax (~OnlyMax@187-126-251-54.user.veloxzone.com.br)
- # [01:02] * Joins: JiKeidan (~JiKeidan@74-128-170-35.dhcp.insightbb.com)
- # [01:03] <moo-_-> quidnunc: you don't use <audio> tag, you use Web Audio API
- # [01:03] <moo-_-> for programmatically access of audio data
- # [01:03] * Joins: llamapixel (~llamapixe@123-243-224-99.static.tpgi.com.au)
- # [01:04] <moo-_-> quidnunc: check html5rocks.com web audio
- # [01:04] <Mosselman> moo-_-: the problem he is having is with access control
- # [01:05] <Mosselman> moo-_-: would the web audio api be a way around that?
- # [01:05] * Joins: DreadKnight (~dread@5-14-155-249.residential.rdsnet.ro)
- # [01:05] * Quits: DreadKnight (~dread@5-14-155-249.residential.rdsnet.ro) (Changing host)
- # [01:05] * Joins: DreadKnight (~dread@unaffiliated/dreadknight)
- # [01:07] * Joins: divya (~Adium@50-0-136-242.dsl.dynamic.sonic.net)
- # [01:09] * Joins: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net)
- # [01:12] * Quits: divya (~Adium@50-0-136-242.dsl.dynamic.sonic.net) (Ping timeout: 260 seconds)
- # [01:15] <moo-_-> Mosselman: nothing is way around CORS
- # [01:15] <moo-_-> that's how web is designed
- # [01:15] <moo-_-> otherwise you could steal arbitary binary data from facebook
- # [01:15] <moo-_-> unless the remote server is co-operative you set up your own proxy
- # [01:16] * Quits: Gahhruuba (~Dave@209-188-73-250-host.drtel.net) (Read error: Connection reset by peer)
- # [01:16] <Mosselman> moo-_-: what do you mean with proxy?
- # [01:16] <moo-_-> Mosselman: a server which serves your own JS would also do proxy requests from audio
- # [01:16] <moo-_-> a middle man server
- # [01:17] <Mosselman> moo-_-: ah yes of course
- # [01:17] <moo-_-> http://stackoverflow.com/questions/3076414/ways-to-circumvent-the-same-origin-policy
- # [01:17] <Mosselman> seems like the most obvious choice
- # [01:17] <Mosselman> increased traffic, but alas
- # [01:17] <Mosselman> mp3 files are that way
- # [01:17] <Mosselman> quidnunc: ^^
- # [01:18] <moo-_-> and if the remote doesn't like you they can simple ban your proxy server IP
- # [01:19] * EHLOVader[afk] is now known as EHLOvader[afk]
- # [01:21] <quidnunc> moo-_-: thanksw
- # [01:24] * Quits: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net) (Read error: Connection reset by peer)
- # [01:24] <Mosselman> moo-_-: that is where cloud servers come in ;)
- # [01:24] <Mosselman> but yeah, you should at least have some sort of throttling
- # [01:25] * Joins: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net)
- # [01:27] * Quits: EHLOvader[afk] (~EHLOVader@198.12.68.114) (Ping timeout: 256 seconds)
- # [01:27] * Quits: liquid-silence_ (uid5351@gateway/web/irccloud.com/x-hhvnsjgnrvlingix) (Ping timeout: 256 seconds)
- # [01:29] * Quits: guyz (~digifiv5e@unaffiliated/digifiv5e) (Ping timeout: 264 seconds)
- # [01:29] * Joins: EHLOvader[afk] (~EHLOVader@198.12.68.114)
- # [01:29] * EHLOvader[afk] is now known as EHLOVader
- # [01:31] * Joins: jaequery (~jaequery@cpe-198-72-230-152.socal.res.rr.com)
- # [01:33] * Quits: jaequery (~jaequery@cpe-198-72-230-152.socal.res.rr.com) (Client Quit)
- # [01:34] * Joins: digifiv5e (~digifiv5e@blk-89-212-82.eastlink.ca)
- # [01:34] * digifiv5e is now known as Guest75147
- # [01:34] * Quits: Mosselman (~Mosselman@vhe-451801.sshn.net) (Quit: Mosselman)
- # [01:35] * Joins: Konboi (~Konboi@113x36x238x27.ap113.ftth.ucom.ne.jp)
- # [01:36] * Joins: asher^ (asher@101.166.147.73)
- # [01:36] * Quits: asher^ (asher@101.166.147.73) (Changing host)
- # [01:36] * Joins: asher^ (asher@unaffiliated/asher/x-9381395)
- # [01:37] * Quits: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net) (Read error: Connection reset by peer)
- # [01:41] * Joins: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp)
- # [01:41] * Quits: Jayflux (~jay_knows@host-92-29-9-209.as13285.net) (Quit: ( www.nnscript.com :: NoNameScript 4.22 :: www.esnation.com ))
- # [01:42] * Joins: jaequery (~jaequery@cpe-198-72-230-152.socal.res.rr.com)
- # [01:44] * Joins: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net)
- # [01:46] * Joins: martisj (~martisj@ppp154-95.static.internode.on.net)
- # [01:47] * Quits: kadiks (~kadiks@APuteaux-652-1-101-179.w90-2.abo.wanadoo.fr) (Ping timeout: 245 seconds)
- # [01:48] * Joins: Gahhruuba (~Dave@209-188-73-250-host.drtel.net)
- # [01:49] * Joins: kholladay (~kholladay@66.219.204.98.provo.dynamic.broadweavenetworks.net)
- # [01:49] * Quits: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net) (Read error: Connection reset by peer)
- # [01:53] * Joins: PaulCapestany (~PaulCapes@204.28.124.82)
- # [01:53] * Quits: kholladay (~kholladay@66.219.204.98.provo.dynamic.broadweavenetworks.net) (Ping timeout: 252 seconds)
- # [01:59] * Joins: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net)
- # [02:00] * Joins: muyyatin (~jon@108-75-14-162.lightspeed.sndgca.sbcglobal.net)
- # [02:04] * Joins: soypirate (~soypirate@75.94.81.12)
- # [02:05] * Quits: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net) (Read error: Connection reset by peer)
- # [02:08] * Joins: divya (~Adium@50-0-136-242.dsl.dynamic.sonic.net)
- # [02:08] * Joins: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net)
- # [02:12] * Quits: divya (~Adium@50-0-136-242.dsl.dynamic.sonic.net) (Ping timeout: 260 seconds)
- # [02:18] * Quits: Ariel_Calzada (~aricalso@201.184.245.87) (Quit: Leaving.)
- # [02:20] * Quits: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net) (Read error: Connection reset by peer)
- # [02:21] * Joins: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net)
- # [02:22] * Quits: asher^ (asher@unaffiliated/asher/x-9381395)
- # [02:23] * Joins: Thalisson (~Thalisson@unaffiliated/talssn3l)
- # [02:28] * Parts: tw2113 (~tw2113@fedora/tw2113) ("yar! I be gone exited!")
- # [02:28] * Quits: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net) (Read error: Connection reset by peer)
- # [02:28] * Quits: Boydy (~Emma@unaffiliated/boydy) (Remote host closed the connection)
- # [02:29] * Quits: dhaber (~dhaber@c-76-28-237-222.hsd1.wa.comcast.net) (Ping timeout: 255 seconds)
- # [02:31] * Joins: dhaber (~dhaber@c-76-28-237-222.hsd1.wa.comcast.net)
- # [02:36] * Joins: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net)
- # [02:40] * Joins: abraxas (~abraxas@113x33x180x18.ap113.ftth.ucom.ne.jp)
- # [02:40] * Quits: owzim_ (~owzim@e178105011.adsl.alicedsl.de) (Remote host closed the connection)
- # [02:41] * Quits: jaequery (~jaequery@cpe-198-72-230-152.socal.res.rr.com) (Quit: Computer has gone to sleep.)
- # [02:43] * Joins: jaequery (~jaequery@cpe-198-72-230-152.socal.res.rr.com)
- # [02:45] * Quits: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net) (Read error: Connection reset by peer)
- # [02:47] * Quits: Thalisson (~Thalisson@unaffiliated/talssn3l) (Remote host closed the connection)
- # [02:49] * Quits: jaequery (~jaequery@cpe-198-72-230-152.socal.res.rr.com) (Quit: Computer has gone to sleep.)
- # [02:50] * Quits: AskMP (~AskMP@CPE185933f3b92e-CM185933f3b92b.cpe.net.cable.rogers.com) (Remote host closed the connection)
- # [02:51] * Joins: AskMP (~AskMP@CPE185933f3b92e-CM185933f3b92b.cpe.net.cable.rogers.com)
- # [02:52] * Joins: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net)
- # [02:53] * Joins: Thalisson (~Thalisson@unaffiliated/talssn3l)
- # [02:59] * Joins: carminec (~user@96.127.214.133)
- # [03:08] * Joins: divya (~Adium@50-0-136-242.dsl.dynamic.sonic.net)
- # [03:10] * Quits: PaulCapestany (~PaulCapes@204.28.124.82) (Quit: Computer has gone to sleep.)
- # [03:10] * Joins: bmac (~textual@209-6-84-205.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com)
- # [03:13] * Quits: divya (~Adium@50-0-136-242.dsl.dynamic.sonic.net) (Ping timeout: 245 seconds)
- # [03:13] * Quits: bmac (~textual@209-6-84-205.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com) (Client Quit)
- # [03:19] * Quits: dhaber (~dhaber@c-76-28-237-222.hsd1.wa.comcast.net) (Ping timeout: 255 seconds)
- # [03:20] * Joins: dhaber (~dhaber@c-76-28-237-222.hsd1.wa.comcast.net)
- # [03:25] * Joins: liquid-silence_ (uid5351@gateway/web/irccloud.com/x-glzwghvdxpcdoncc)
- # [03:28] * Quits: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net) (Read error: Connection reset by peer)
- # [03:29] * Joins: Ariel_Calzada (~aricalso@201.184.245.87)
- # [03:29] * Parts: Ariel_Calzada (~aricalso@201.184.245.87)
- # [03:30] * Joins: jaequery (~jaequery@cpe-198-72-230-152.socal.res.rr.com)
- # [03:33] * Quits: Sendoushi (~Musok@cm2-84-91-84-50.netvisao.pt) (Read error: Connection reset by peer)
- # [03:33] * Joins: shoogz (~shoogz@unaffiliated/shoogz)
- # [03:33] * Joins: Sendoushi (~Musok@cm2-84-91-84-50.netvisao.pt)
- # [03:35] * Joins: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net)
- # [03:37] * Quits: muyyatin (~jon@108-75-14-162.lightspeed.sndgca.sbcglobal.net) (Remote host closed the connection)
- # [03:44] * Quits: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net) (Read error: Connection reset by peer)
- # [03:46] * Joins: siriuz (~siriuz@cl-626.leo-01.de.sixxs.net)
- # [03:49] * Joins: kholladay (~kholladay@66.219.204.98.provo.dynamic.broadweavenetworks.net)
- # [03:51] * Joins: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net)
- # [03:54] * Quits: kholladay (~kholladay@66.219.204.98.provo.dynamic.broadweavenetworks.net) (Ping timeout: 252 seconds)
- # [03:55] * Quits: rfoust (~rfoust@cpe-098-026-007-087.nc.res.rr.com) (Read error: No route to host)
- # [03:55] * Quits: techlife (techlife@112.249.91.29) (Ping timeout: 255 seconds)
- # [03:56] * Quits: Xarthok (~Xarthok@5addafd9.bb.sky.com)
- # [03:57] * Joins: techlife (techlife@112.249.91.29)
- # [03:57] * Quits: shoogz (~shoogz@unaffiliated/shoogz) (Quit: Leaving...)
- # [04:00] * Quits: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net) (Read error: Connection reset by peer)
- # [04:02] * Joins: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net)
- # [04:05] * Joins: ML74 (~ML74@5e0c6133.bb.sky.com)
- # [04:07] * Quits: imatt711 (~imatt711@ip70-171-43-103.ga.at.cox.net) (Remote host closed the connection)
- # [04:10] * Joins: roadt_ (~roadt@60.168.91.104)
- # [04:11] * Joins: beeeviz (~beevi2@p57BD6554.dip0.t-ipconnect.de)
- # [04:12] * Quits: Gahhruuba (~Dave@209-188-73-250-host.drtel.net) (Quit: Leaving)
- # [04:13] * Quits: codingkevin (~mote@unaffiliated/codingkevin) (Ping timeout: 276 seconds)
- # [04:13] * Quits: Thalisson (~Thalisson@unaffiliated/talssn3l) (Remote host closed the connection)
- # [04:15] * Quits: beeviz (~beevi2@p57BD6A39.dip0.t-ipconnect.de) (Ping timeout: 240 seconds)
- # [04:16] * Quits: moshee (~moshee@unaffiliated/moshee) (Ping timeout: 264 seconds)
- # [04:16] * Joins: moshee (~moshee@unaffiliated/moshee)
- # [04:16] * Joins: Vennril2 (~vennril@p4FEB0A11.dip0.t-ipconnect.de)
- # [04:16] * Quits: Vennril (~vennril@p4FEB01DA.dip0.t-ipconnect.de) (Ping timeout: 245 seconds)
- # [04:26] * Joins: PaulCapestany (~PaulCapes@204.28.124.82)
- # [04:34] * Quits: Sendoushi (~Musok@cm2-84-91-84-50.netvisao.pt) (Remote host closed the connection)
- # [04:40] * Quits: jetienne (~jerome@ivr94-10-88-177-169-62.fbx.proxad.net) (Quit: jetienne)
- # [04:41] * Quits: ML74 (~ML74@5e0c6133.bb.sky.com) (Ping timeout: 244 seconds)
- # [04:48] * Parts: JiKeidan (~JiKeidan@74-128-170-35.dhcp.insightbb.com)
- # [04:49] * Joins: kerozene (~kerozene@unaffiliated/kerozene)
- # [04:53] * Parts: carminec (~user@96.127.214.133) ("ERC Version 5.3 (IRC client for Emacs)")
- # [04:54] * Quits: dhaber (~dhaber@c-76-28-237-222.hsd1.wa.comcast.net) (Ping timeout: 255 seconds)
- # [04:56] * Joins: dhaber (~dhaber@c-76-28-237-222.hsd1.wa.comcast.net)
- # [05:01] * Quits: dhaber (~dhaber@c-76-28-237-222.hsd1.wa.comcast.net) (Ping timeout: 255 seconds)
- # [05:03] * Joins: dhaber (~dhaber@c-76-28-237-222.hsd1.wa.comcast.net)
- # [05:04] * Joins: austincheney (~quassel@62.150.91.10)
- # [05:09] * Quits: prudnikov (~prudnikov@nat-17.starnet.cz) (Quit: Leaving...)
- # [05:09] * Joins: divya (~Adium@50-0-136-242.dsl.dynamic.sonic.net)
- # [05:14] * Quits: divya (~Adium@50-0-136-242.dsl.dynamic.sonic.net) (Ping timeout: 244 seconds)
- # [05:18] * Quits: Zauberfisch (~Zauberfis@2a01:4f8:100:73c3::3) (Ping timeout: 246 seconds)
- # [05:18] * Quits: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp) (Remote host closed the connection)
- # [05:19] * Joins: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp)
- # [05:20] * Joins: Zauberfisch (~Zauberfis@2a01:4f8:100:73c3::3)
- # [05:33] * Quits: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp) (Remote host closed the connection)
- # [05:33] * Joins: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp)
- # [05:36] * Quits: Wildblue (~guy@c-69-140-154-17.hsd1.md.comcast.net) (Quit: Terabytes are termite-like desert insects.)
- # [05:36] * Joins: codingkevin (~mote@unaffiliated/codingkevin)
- # [05:39] * Joins: _dc (~dc@c-98-253-247-27.hsd1.in.comcast.net)
- # [05:49] * Joins: kholladay (~kholladay@66.219.204.98.provo.dynamic.broadweavenetworks.net)
- # [05:51] * Quits: soypirate (~soypirate@75.94.81.12) (Remote host closed the connection)
- # [05:51] * Quits: _dc (~dc@c-98-253-247-27.hsd1.in.comcast.net) (Remote host closed the connection)
- # [05:52] * Joins: Andre_designer (~Thunderbi@82-170-146-165.ip.telfort.nl)
- # [05:54] * Quits: kholladay (~kholladay@66.219.204.98.provo.dynamic.broadweavenetworks.net) (Ping timeout: 264 seconds)
- # [05:54] * Quits: PaulCapestany (~PaulCapes@204.28.124.82) (Quit: Computer has gone to sleep.)
- # [06:01] * Quits: _cheney_ (~cheney@nat.sierrabravo.net) (Read error: Connection reset by peer)
- # [06:01] * Joins: _cheney (~cheney@nat.sierrabravo.net)
- # [06:01] * Quits: mishugana (~mishugana@pool-108-39-211-161.pitbpa.fios.verizon.net) (Quit: HydraIRC -> http://www.hydrairc.com <- It'll be on slashdot one day...)
- # [06:03] * Joins: hpoxel (~df@unaffiliated/bnxsgu8w)
- # [06:03] <hpoxel> fsd
- # [06:08] * Quits: revolve (~luke@199.19.119.133) (Remote host closed the connection)
- # [06:08] * Quits: DreadKnight (~dread@unaffiliated/dreadknight) (Quit: #Ancient Beast - Master Your Beasts ( http://AncientBeast.com ))
- # [06:10] * Joins: Tabrenus (~Tabrenus@213.211.132.86.static.edpnet.net)
- # [06:14] * Joins: Wildblue (~guy@c-69-140-154-17.hsd1.md.comcast.net)
- # [06:16] * Quits: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t) (Read error: Connection reset by peer)
- # [06:19] * Joins: DreadKnight (~dread@unaffiliated/dreadknight)
- # [06:20] * Joins: arcanis (~Mael@bas1-montreal07-2925060433.dsl.bell.ca)
- # [06:21] * hpoxel slaps Wildblue around a bit with a large trout
- # [06:23] * Quits: AskMP (~AskMP@CPE185933f3b92e-CM185933f3b92b.cpe.net.cable.rogers.com) (Ping timeout: 248 seconds)
- # [06:23] * Quits: arcanin (~Mael@174.88.225.81) (Ping timeout: 245 seconds)
- # [06:23] * Joins: arcanin (~Mael@bas1-montreal07-2925060433.dsl.bell.ca)
- # [06:24] * Joins: AskMP (~AskMP@CPE185933f3b92e-CM185933f3b92b.cpe.net.cable.rogers.com)
- # [06:25] * Quits: arcanis (~Mael@bas1-montreal07-2925060433.dsl.bell.ca) (Ping timeout: 248 seconds)
- # [06:28] * Quits: Me1000 (~Me1000@74.143.221.15) (Quit: Leaving...)
- # [06:28] <Wildblue> ouch
- # [06:29] <hpoxel> hello
- # [06:29] <hpoxel> chat
- # [06:30] * Quits: quidnunc (~user@bas6-montreal45-1176366660.dsl.bell.ca) (Remote host closed the connection)
- # [06:32] * Joins: Boydy (~Emma@unaffiliated/boydy)
- # [06:32] * Quits: zenoamaro (~zenoamaro@93-39-16-48.ip73.fastwebnet.it)
- # [06:32] * Joins: arcane (~Mael@bas1-montreal07-2925060433.dsl.bell.ca)
- # [06:33] * Quits: arcanin (~Mael@bas1-montreal07-2925060433.dsl.bell.ca) (Read error: Connection reset by peer)
- # [06:33] * Joins: zenoamaro (~zenoamaro@93.51.241.20)
- # [06:33] * Quits: zenoamaro (~zenoamaro@93.51.241.20) (Max SendQ exceeded)
- # [06:34] * Joins: zenoamaro (~zenoamaro@93.51.241.20)
- # [06:34] * Quits: zenoamaro (~zenoamaro@93.51.241.20) (Max SendQ exceeded)
- # [06:34] * Joins: zenoamaro (~zenoamaro@93-36-99-221.ip59.fastwebnet.it)
- # [06:39] * Quits: DreadKnight (~dread@unaffiliated/dreadknight) (Quit: #Ancient Beast - Master Your Beasts ( http://AncientBeast.com ))
- # [06:48] * Joins: mokush (~cc@82.208.133.70)
- # [06:49] * Quits: AskMP (~AskMP@CPE185933f3b92e-CM185933f3b92b.cpe.net.cable.rogers.com) (Ping timeout: 248 seconds)
- # [06:49] * Joins: _gambit (~prajwalit@61.12.96.226)
- # [06:53] * Joins: DreadKnight (~dread@5-14-137-89.residential.rdsnet.ro)
- # [06:53] * Quits: DreadKnight (~dread@5-14-137-89.residential.rdsnet.ro) (Changing host)
- # [06:53] * Joins: DreadKnight (~dread@unaffiliated/dreadknight)
- # [07:01] * Quits: Andre_designer (~Thunderbi@82-170-146-165.ip.telfort.nl) (Quit: Andre_designer)
- # [07:01] * Quits: suderman (~suderman@S0106002436a413cb.cg.shawcable.net) (Quit: ZNC - http://znc.in)
- # [07:03] * Quits: myx (~myx@188.232.25.203) (Ping timeout: 245 seconds)
- # [07:04] * Quits: peol (~andree@unaffiliated/peol) (Quit: Be back later)
- # [07:10] * Quits: _gambit (~prajwalit@61.12.96.226) (Quit: Computer has gone to sleep.)
- # [07:16] * Quits: mangoman (~elliott@pool-173-61-173-108.cmdnnj.fios.verizon.net) (Ping timeout: 264 seconds)
- # [07:24] * Quits: DreadKnight (~dread@unaffiliated/dreadknight) (Read error: Operation timed out)
- # [07:25] * Joins: divya (~Adium@50-0-136-242.dsl.dynamic.sonic.net)
- # [07:25] * Joins: kitallis (~kitallis@122.178.249.127)
- # [07:30] * Joins: Ariel_Calzada (~aricalso@201.184.245.87)
- # [07:30] * Quits: Boydy (~Emma@unaffiliated/boydy) (Remote host closed the connection)
- # [07:36] * Quits: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp) (Remote host closed the connection)
- # [07:36] * Joins: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp)
- # [07:38] * Quits: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp) (Remote host closed the connection)
- # [07:38] * Joins: longbeach (~mike@AFontenayssB-152-1-2-176.w82-121.abo.wanadoo.fr)
- # [07:38] * Joins: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp)
- # [07:38] * Quits: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp) (Remote host closed the connection)
- # [07:38] * Joins: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp)
- # [07:40] * Joins: _gambit (~prajwalit@61.12.96.226)
- # [07:45] * Joins: shoogz (~shoogz@unaffiliated/shoogz)
- # [07:46] * Joins: DreadKnight (~dread@5-14-137-89.residential.rdsnet.ro)
- # [07:46] * Quits: DreadKnight (~dread@5-14-137-89.residential.rdsnet.ro) (Changing host)
- # [07:46] * Joins: DreadKnight (~dread@unaffiliated/dreadknight)
- # [07:50] * Joins: kholladay (~kholladay@66.219.204.98.provo.dynamic.broadweavenetworks.net)
- # [07:50] * Joins: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t)
- # [07:52] * Quits: martisj (~martisj@ppp154-95.static.internode.on.net) (Remote host closed the connection)
- # [07:54] * Quits: kholladay (~kholladay@66.219.204.98.provo.dynamic.broadweavenetworks.net) (Read error: Operation timed out)
- # [07:56] * Quits: shoogz (~shoogz@unaffiliated/shoogz) (Quit: Leaving...)
- # [07:57] * Joins: dekiss (~jason@89.205.75.230)
- # [07:57] <dekiss> how much old old browsers support title attribute
- # [07:57] <dekiss> how much backward compatible is?
- # [08:01] * Joins: myx (~myx@188.232.25.203)
- # [08:04] * Quits: hpoxel (~df@unaffiliated/bnxsgu8w)
- # [08:07] * Joins: Trisox (~Tri_sox@dw87236798.amsterdam-tc.dataweb.net)
- # [08:11] * Quits: arcane (~Mael@bas1-montreal07-2925060433.dsl.bell.ca) (Ping timeout: 248 seconds)
- # [08:11] * Joins: danbeam (~bitlbee@unaffiliated/danbeam)
- # [08:24] * Quits: techlife (techlife@112.249.91.29) (Ping timeout: 244 seconds)
- # [08:24] * Quits: Ariel_Calzada (~aricalso@201.184.245.87) (Quit: Leaving.)
- # [08:25] * Parts: djQuery (~djQuery@cpe-76-184-183-76.tx.res.rr.com) ("Leaving")
- # [08:30] * Quits: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp) (Remote host closed the connection)
- # [08:30] * Joins: techlife (techlife@112.249.91.29)
- # [08:30] * Quits: techlife (techlife@112.249.91.29) (Max SendQ exceeded)
- # [08:31] * Joins: Boldewyn (~Thunderbi@188-192-131-103-dynip.superkabel.de)
- # [08:31] * Quits: Boldewyn (~Thunderbi@188-192-131-103-dynip.superkabel.de) (Remote host closed the connection)
- # [08:31] * Joins: Boldewyn (~Thunderbi@188-192-131-103-dynip.superkabel.de)
- # [08:32] * Joins: techlife (techlife@112.249.91.29)
- # [08:32] * Joins: roel (~quassel@d54C236E3.access.telenet.be)
- # [08:34] * Joins: vlad_starkov (~vlad_star@178.176.231.67)
- # [08:37] * Joins: dhruvasagar (~dhruvasag@122.178.230.215)
- # [08:38] * Quits: dhruvasagar (~dhruvasag@122.178.230.215) (Client Quit)
- # [08:38] * Joins: dhruvasagar (~dhruvasag@122.178.230.215)
- # [08:38] * Quits: vlad_starkov (~vlad_star@178.176.231.67) (Ping timeout: 252 seconds)
- # [08:40] * Joins: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp)
- # [08:42] * Quits: Tabrenus (~Tabrenus@213.211.132.86.static.edpnet.net) (Quit: Tabrenus)
- # [08:47] * Quits: moshee (~moshee@unaffiliated/moshee) (Ping timeout: 252 seconds)
- # [08:47] * Joins: moshee (~moshee@c-24-16-118-62.hsd1.wa.comcast.net)
- # [08:47] * Quits: moshee (~moshee@c-24-16-118-62.hsd1.wa.comcast.net) (Changing host)
- # [08:47] * Joins: moshee (~moshee@unaffiliated/moshee)
- # [09:01] * Joins: main_ (~main@ip-94-113-12-74.net.upcbroadband.cz)
- # [09:01] * Joins: shoogz (~shoogz@unaffiliated/shoogz)
- # [09:02] * Joins: squeakytoy_ (~chatzilla@smtp.qliktech.com)
- # [09:03] <squeakytoy_> Hey all. This is maybe a stupid question, but if a user selects a file via a file input, is there no way I can get the full path of that file?
- # [09:03] * Quits: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t) (Ping timeout: 245 seconds)
- # [09:04] * Joins: thomasFre (~toto@159.71.64.86.rev.sfr.net)
- # [09:06] <Trisox> no because of browser security
- # [09:06] <squeakytoy_> i was really sure there *was* a way in the new html 5
- # [09:06] <squeakytoy_> api
- # [09:06] <Trisox> hmm not that i know of but didnt dive deep in ot it
- # [09:07] <Trisox> pre html5 it was not posible that i know of :)
- # [09:07] * Joins: mstalfoort (~manuchill@83.232.96.217)
- # [09:09] * Joins: mitemitreski (~mitemitre@212.120.17.179)
- # [09:12] * Quits: shoogz (~shoogz@unaffiliated/shoogz) (Quit: Leaving...)
- # [09:14] * Quits: main_ (~main@ip-94-113-12-74.net.upcbroadband.cz) (Ping timeout: 276 seconds)
- # [09:14] * Quits: mitemitreski (~mitemitre@212.120.17.179) (Read error: Connection reset by peer)
- # [09:17] * Joins: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t)
- # [09:19] * Joins: coellobranco (~FoRcEr@228.Red-83-34-21.dynamicIP.rima-tde.net)
- # [09:20] * Parts: liquid-silence_ (uid5351@gateway/web/irccloud.com/x-glzwghvdxpcdoncc)
- # [09:20] <squeakytoy_> if anyone knows a way to get the file path, please pm me :-) how strange the idea might be
- # [09:24] * Joins: shoogz (~shoogz@unaffiliated/shoogz)
- # [09:29] * Quits: kitallis (~kitallis@122.178.249.127) (Ping timeout: 248 seconds)
- # [09:31] * Quits: andredieb (~andredieb@unaffiliated/andredieb) (Ping timeout: 264 seconds)
- # [09:32] <zenoamaro> it's not really possible. Also, the new FS api is heavily sandboxed
- # [09:32] * Joins: andredieb (~andredieb@ec2-54-232-98-53.sa-east-1.compute.amazonaws.com)
- # [09:32] * Quits: andredieb (~andredieb@ec2-54-232-98-53.sa-east-1.compute.amazonaws.com) (Changing host)
- # [09:32] * Joins: andredieb (~andredieb@unaffiliated/andredieb)
- # [09:32] * Quits: clouder`grr (~clouder@67.10.223.91) (Ping timeout: 245 seconds)
- # [09:33] * Quits: cgcardona (~cgcardona@unaffiliated/cgcardona) (Quit: zzzzz)
- # [09:33] <zenoamaro> squeakytoy_: do you have a specific use case for that?
- # [09:33] <squeakytoy_> yea
- # [09:33] * Joins: kitallis (~kitallis@106.51.149.153)
- # [09:33] <squeakytoy_> the server computer is within the network and should access it, hence we need the path
- # [09:33] <squeakytoy_> :-)
- # [09:34] * Joins: pn0 (~pn0@95-31-214-222.broadband.corbina.ru)
- # [09:34] * Joins: sedovsek (~robert@89.143.12.238)
- # [09:36] * Quits: shoogz (~shoogz@unaffiliated/shoogz) (Quit: Leaving...)
- # [09:37] * Quits: kerozene (~kerozene@unaffiliated/kerozene) (Quit: leaving)
- # [09:38] * Quits: niloy (~niloy@203.196.177.156) (Ping timeout: 255 seconds)
- # [09:41] * Quits: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp) (Remote host closed the connection)
- # [09:42] * Joins: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp)
- # [09:44] * Joins: exoon (~exoon@p4FD38B91.dip0.t-ipconnect.de)
- # [09:48] * Joins: miChou (~mibalan@193.104.215.13)
- # [09:48] * Quits: beeeviz (~beevi2@p57BD6554.dip0.t-ipconnect.de) (Ping timeout: 240 seconds)
- # [09:49] * Joins: KewinWang (~Kewin@219.142.118.237)
- # [09:50] * Joins: kholladay (~kholladay@66.219.204.98.provo.dynamic.broadweavenetworks.net)
- # [09:50] * Quits: _moon (~moon@20-91-190-109.dsl.ovh.fr) (Remote host closed the connection)
- # [09:52] <KewinWang> test
- # [09:55] * Joins: Ms2ger (~Ms2ger@218.200-242-81.adsl-dyn.isp.belgacom.be)
- # [09:55] * Quits: kholladay (~kholladay@66.219.204.98.provo.dynamic.broadweavenetworks.net) (Ping timeout: 276 seconds)
- # [09:57] * Joins: SAngeli (~SAngeli@host242-77-static.82-94-b.business.telecomitalia.it)
- # [09:58] * Joins: OnlyMax (~OnlyMax@187-126-251-54.user.veloxzone.com.br)
- # [10:00] * Quits: EHLOVader (~EHLOVader@198.12.68.114) (Ping timeout: 248 seconds)
- # [10:02] * Joins: EHLOvader[afk] (~EHLOVader@198.12.68.114)
- # [10:02] * EHLOvader[afk] is now known as EHLOVader
- # [10:08] * Quits: myx (~myx@188.232.25.203) (Quit: ัััะป)
- # [10:10] * Joins: valgrind (~valgrind@193.144.6.250)
- # [10:10] * Quits: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t) (Ping timeout: 245 seconds)
- # [10:11] * Joins: niloy (~niloy@61.12.96.242)
- # [10:12] * Joins: nonge_ (~nonge@p5082AE8B.dip.t-dialin.net)
- # [10:14] * Quits: jaequery (~jaequery@cpe-198-72-230-152.socal.res.rr.com) (Quit: Computer has gone to sleep.)
- # [10:15] * Quits: nonge (~nonge@p5082948F.dip.t-dialin.net) (Ping timeout: 252 seconds)
- # [10:16] * Joins: main_ (~main@customer-79-127-150-148.net.angelnet.cz)
- # [10:17] * Quits: Konboi (~Konboi@113x36x238x27.ap113.ftth.ucom.ne.jp) (Remote host closed the connection)
- # [10:25] * Quits: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp) (Remote host closed the connection)
- # [10:25] * Joins: kfenn (~kfenn@ip-81-23-63-6.ask4internet.com)
- # [10:25] * Joins: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp)
- # [10:26] * Joins: Mosselman (~Mosselman@vhe-451801.sshn.net)
- # [10:29] * Quits: niloy (~niloy@61.12.96.242) (Ping timeout: 264 seconds)
- # [10:31] * Joins: owzim (~owzim@e178105011.adsl.alicedsl.de)
- # [10:33] * Joins: vlad_starkov (~vlad_star@194.186.53.218)
- # [10:33] * Quits: techlife (techlife@112.249.91.29) (Ping timeout: 252 seconds)
- # [10:34] * Joins: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t)
- # [10:35] * Quits: llamapixel (~llamapixe@123-243-224-99.static.tpgi.com.au) (Quit: -=[. _ .]=- waves bye..)
- # [10:36] * Joins: techlife (techlife@112.249.91.29)
- # [10:38] * Quits: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t) (Ping timeout: 248 seconds)
- # [10:39] * Quits: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp) (Remote host closed the connection)
- # [10:39] * Joins: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp)
- # [10:40] * Joins: Savvy (~Thunderbi@unaffiliated/savvy)
- # [10:41] * Joins: Somatt_wrk (~somattwrk@darkstar2.fullsix.com)
- # [10:43] * Quits: techlife (techlife@112.249.91.29) (Ping timeout: 252 seconds)
- # [10:47] * Joins: manuelbieh (~beeevi2@p50997681.dip0.t-ipconnect.de)
- # [10:47] * Quits: KewinWang (~Kewin@219.142.118.237) (Quit: Leaving)
- # [10:49] * Quits: SAngeli (~SAngeli@host242-77-static.82-94-b.business.telecomitalia.it) (Quit: Sto andando via)
- # [10:49] * Joins: niloy (~niloy@203.196.177.156)
- # [10:50] * Joins: MCHammer (~mchammer@212.48.107.10)
- # [10:51] * Joins: rickibalboa (~ricki@84.19.104.118)
- # [10:52] * Joins: Kolombiken (~Adium@217.13.228.226)
- # [10:52] * Quits: MCHammer (~mchammer@212.48.107.10) (Remote host closed the connection)
- # [10:52] * Joins: MCHammer (~mchammer@212.48.107.10)
- # [10:53] * Quits: pn0 (~pn0@95-31-214-222.broadband.corbina.ru) (Quit: Be back later)
- # [10:53] * Quits: main_ (~main@customer-79-127-150-148.net.angelnet.cz) (Ping timeout: 264 seconds)
- # [10:54] * Joins: mitemitreski (~mitemitre@212.120.17.179)
- # [10:56] * Joins: techlife (techlife@112.249.91.29)
- # [10:57] * Joins: main (~main@customer-79-127-150-148.net.angelnet.cz)
- # [10:58] * Joins: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t)
- # [11:03] * Quits: vlad_starkov (~vlad_star@194.186.53.218) (Read error: Connection reset by peer)
- # [11:07] * Joins: arcane (~Mael@bas1-montreal07-2925060433.dsl.bell.ca)
- # [11:10] * Joins: Ariel_Calzada (~aricalso@201.184.245.87)
- # [11:16] * Joins: vlad_starkov (~vlad_star@178.176.27.59)
- # [11:20] * Quits: MCHammer (~mchammer@212.48.107.10) (Remote host closed the connection)
- # [11:21] * Joins: MCHammer (~mchammer@212.48.107.10)
- # [11:21] * Quits: main (~main@customer-79-127-150-148.net.angelnet.cz) (Remote host closed the connection)
- # [11:24] * Joins: main (~main@customer-79-127-150-148.net.angelnet.cz)
- # [11:25] * Quits: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp) (Remote host closed the connection)
- # [11:25] * Joins: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp)
- # [11:26] * Joins: prassel (nothing@h-252-255.a158.priv.bahnhof.se)
- # [11:28] * Quits: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp) (Remote host closed the connection)
- # [11:28] * Joins: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp)
- # [11:28] * Joins: soee (~soee@83-238-167-52.ip.netia.com.pl)
- # [11:29] * Joins: nkr (~nkr@189.120.65.122)
- # [11:30] * Joins: Me1000 (~Me1000@74-143-221-15.static.insightbb.com)
- # [11:33] * Quits: MCHammer (~mchammer@212.48.107.10) (Remote host closed the connection)
- # [11:34] * Joins: MCHammer (~mchammer@212.48.107.10)
- # [11:35] * Joins: manuelbieh_ (~beeevi2@p50997681.dip0.t-ipconnect.de)
- # [11:35] * Joins: jetienne (~jerome@188.165.109.82)
- # [11:36] * Quits: manuelbieh (~beeevi2@p50997681.dip0.t-ipconnect.de) (Ping timeout: 248 seconds)
- # [11:36] * Joins: llamapixel (~llamapixe@123-243-224-99.static.tpgi.com.au)
- # [11:39] * Quits: austincheney (~quassel@62.150.91.10) (Quit: No Ping reply in 180 seconds.)
- # [11:40] * Joins: austincheney (~quassel@62.150.91.10)
- # [11:41] * Quits: MCHammer (~mchammer@212.48.107.10) (Remote host closed the connection)
- # [11:42] * Joins: MCHammer (~mchammer@212.48.107.10)
- # [11:42] * Joins: kristofers (~kristofer@27.79-160-186.customer.lyse.net)
- # [11:45] * Quits: austincheney (~quassel@62.150.91.10) (Quit: No Ping reply in 180 seconds.)
- # [11:45] * Joins: austincheney (~quassel@62.150.91.10)
- # [11:46] * Quits: Savvy (~Thunderbi@unaffiliated/savvy) (Quit: Savvy)
- # [11:49] * Quits: Ariel_Calzada (~aricalso@201.184.245.87) (Quit: Leaving.)
- # [11:51] * Joins: kholladay (~kholladay@66.219.204.98.provo.dynamic.broadweavenetworks.net)
- # [11:51] * Quits: exoon (~exoon@p4FD38B91.dip0.t-ipconnect.de) (Remote host closed the connection)
- # [11:52] * Quits: techlife (techlife@112.249.91.29) (Ping timeout: 245 seconds)
- # [11:54] * Joins: asher^ (asher@unaffiliated/asher/x-9381395)
- # [11:55] * Quits: kholladay (~kholladay@66.219.204.98.provo.dynamic.broadweavenetworks.net) (Read error: Operation timed out)
- # [11:58] * Joins: mklappstuhl (~martin@p578bd3e9.dip0.t-ipconnect.de)
- # [11:59] * Joins: techlife (techlife@112.249.91.29)
- # [12:09] * Quits: kristofers (~kristofer@27.79-160-186.customer.lyse.net)
- # [12:14] * Joins: barneybook_work (~Thunderbi@220-132-176-96.HINET-IP.hinet.net)
- # [12:19] * Joins: stephenplusplus (~Adium@ql1fwhide.rockfin.com)
- # [12:20] * Quits: _gambit (~prajwalit@61.12.96.226) (Quit: Computer has gone to sleep.)
- # [12:21] * Joins: _gambit (~prajwalit@61.12.96.226)
- # [12:23] * Quits: barneybook_work (~Thunderbi@220-132-176-96.HINET-IP.hinet.net) (Ping timeout: 255 seconds)
- # [12:24] * Quits: jetienne (~jerome@188.165.109.82) (Quit: jetienne)
- # [12:24] * Joins: CCK (57fa2528@gateway/web/freenode/ip.87.250.37.40)
- # [12:24] * Quits: divya (~Adium@50-0-136-242.dsl.dynamic.sonic.net) (Quit: Leaving.)
- # [12:25] * Joins: jetienne (~jerome@188.165.109.82)
- # [12:25] * Quits: austincheney (~quassel@62.150.91.10) (Quit: No Ping reply in 180 seconds.)
- # [12:25] * Joins: j4hr0m (~j4hr0m@dslb-094-220-090-226.pools.arcor-ip.net)
- # [12:28] * Joins: vlad_sta_ (~vlad_star@79.104.6.203)
- # [12:29] * Joins: austincheney (~quassel@62.150.91.10)
- # [12:30] * Quits: techlife (techlife@112.249.91.29) (Ping timeout: 244 seconds)
- # [12:31] * Quits: vlad_starkov (~vlad_star@178.176.27.59) (Ping timeout: 248 seconds)
- # [12:34] * Joins: Xarthok (~Xarthok@5addafd9.bb.sky.com)
- # [12:34] * Quits: austincheney (~quassel@62.150.91.10) (Quit: No Ping reply in 180 seconds.)
- # [12:35] * Joins: techlife (techlife@112.249.91.29)
- # [12:35] * Quits: factor (~factor@74.196.174.229) (Read error: Connection reset by peer)
- # [12:37] * Joins: Sendoushi (~Musok@cm2-84-91-84-50.netvisao.pt)
- # [12:38] * Joins: austincheney (~quassel@62.150.91.10)
- # [12:39] * Joins: Thalisson (~Thalisson@unaffiliated/talssn3l)
- # [12:43] * Quits: austincheney (~quassel@62.150.91.10) (Quit: No Ping reply in 180 seconds.)
- # [12:45] * Quits: vlad_sta_ (~vlad_star@79.104.6.203) (Read error: Connection reset by peer)
- # [12:46] * Joins: vlad_starkov (~vlad_star@79.104.6.203)
- # [12:50] * Quits: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t) (Ping timeout: 260 seconds)
- # [12:54] * Joins: factor (~factor@74.196.174.229)
- # [12:57] * Joins: charlesroper (~CharlesR@susseac1.miniserver.com)
- # [12:57] * Quits: charlesroper (~CharlesR@susseac1.miniserver.com) (Changing host)
- # [12:57] * Joins: charlesroper (~CharlesR@unaffiliated/charlesroper)
- # [12:59] * Joins: Sendoush_ (~Musok@cm2-84-91-84-50.netvisao.pt)
- # [12:59] * Quits: vlad_starkov (~vlad_star@79.104.6.203) (Remote host closed the connection)
- # [13:00] * Quits: mykul (~mykul@c-24-8-101-84.hsd1.co.comcast.net) (Quit: gg)
- # [13:01] * Quits: Sendoushi (~Musok@cm2-84-91-84-50.netvisao.pt) (Ping timeout: 264 seconds)
- # [13:01] * Joins: Jon47 (~Adium@pool-108-18-206-254.washdc.fios.verizon.net)
- # [13:05] * Sendoush_ is now known as Sendoushi
- # [13:07] * Joins: dragoonis (~dragoonis@unaffiliated/dr4g)
- # [13:07] * Quits: llamapixel (~llamapixe@123-243-224-99.static.tpgi.com.au) (Quit: -=[. _ .]=- waves bye..)
- # [13:10] * Quits: mstalfoort (~manuchill@83.232.96.217) (Ping timeout: 245 seconds)
- # [13:11] * Joins: kerozene (~kerozene@unaffiliated/kerozene)
- # [13:18] * Quits: b-ot (~b-ot@aether.gf3.ca) (Ping timeout: 264 seconds)
- # [13:18] * Quits: manuelbieh_ (~beeevi2@p50997681.dip0.t-ipconnect.de) (Ping timeout: 256 seconds)
- # [13:20] * Quits: Wildblue (~guy@c-69-140-154-17.hsd1.md.comcast.net) (Quit: Terabytes are termite-like desert insects.)
- # [13:20] * Quits: ben` (b3n@gateway/shell/blinkenshell.org/x-pwxlhyrhybodqapp) (Ping timeout: 276 seconds)
- # [13:23] * Joins: manuelbieh (~beeevi2@p50997681.dip0.t-ipconnect.de)
- # [13:24] * Joins: mstalfoort (~manuchill@83.232.96.217)
- # [13:28] * Joins: quest88_ (~quest88@c-67-170-219-133.hsd1.ca.comcast.net)
- # [13:28] * Quits: owzim (~owzim@e178105011.adsl.alicedsl.de) (Remote host closed the connection)
- # [13:30] * Joins: Jon471 (~Adium@pool-108-18-206-254.washdc.fios.verizon.net)
- # [13:31] * Quits: quest88 (~quest88@c-67-170-219-133.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [13:31] * quest88_ is now known as quest88
- # [13:31] * Quits: Jon47 (~Adium@pool-108-18-206-254.washdc.fios.verizon.net) (Read error: Connection reset by peer)
- # [13:31] * Joins: ben` (b3n@gateway/shell/blinkenshell.org/x-mufrboytosfccvou)
- # [13:31] * Quits: matthewt (matthew@namibia.aviation.fi) (Ping timeout: 252 seconds)
- # [13:31] * Quits: ironfroggy (~ironfrogg@ec2-50-16-218-141.compute-1.amazonaws.com) (Quit: ZNC - http://znc.sourceforge.net)
- # [13:32] * Joins: matthewt (matthew@namibia.aviation.fi)
- # [13:32] * Quits: zenoamaro (~zenoamaro@93-36-99-221.ip59.fastwebnet.it)
- # [13:33] * Joins: ironfroggy (~ironfrogg@ec2-50-16-218-141.compute-1.amazonaws.com)
- # [13:36] * Joins: bmac (~textual@209-6-84-205.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com)
- # [13:36] * Quits: Sendoushi (~Musok@cm2-84-91-84-50.netvisao.pt) (Remote host closed the connection)
- # [13:37] * Joins: Wildblue (~male@c-69-140-154-17.hsd1.md.comcast.net)
- # [13:37] * Quits: bmac (~textual@209-6-84-205.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com) (Client Quit)
- # [13:43] * Joins: Kolombiken1 (~Adium@217.13.228.226)
- # [13:45] * Quits: Kolombiken (~Adium@217.13.228.226) (Ping timeout: 245 seconds)
- # [13:51] * Quits: Me1000 (~Me1000@74-143-221-15.static.insightbb.com) (Quit: Leaving...)
- # [13:51] * Joins: kholladay (~kholladay@66.219.204.98.provo.dynamic.broadweavenetworks.net)
- # [13:53] * Joins: ole (~ole@ole.im)
- # [13:55] * Quits: kholladay (~kholladay@66.219.204.98.provo.dynamic.broadweavenetworks.net) (Ping timeout: 245 seconds)
- # [13:56] * Joins: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t)
- # [14:02] * Joins: Boydy (~Emma@CPE602ad06cbfe0-CM602ad06cbfdd.cpe.net.cable.rogers.com)
- # [14:02] * Quits: Boydy (~Emma@CPE602ad06cbfe0-CM602ad06cbfdd.cpe.net.cable.rogers.com) (Changing host)
- # [14:02] * Joins: Boydy (~Emma@unaffiliated/boydy)
- # [14:03] * Joins: Savvy (~Thunderbi@unaffiliated/savvy)
- # [14:05] * Joins: austincheney (~quassel@62.150.91.10)
- # [14:08] * Quits: Kolombiken1 (~Adium@217.13.228.226) (Quit: Leaving.)
- # [14:11] * Joins: Kolombiken (~Adium@217.13.228.226)
- # [14:15] * Joins: WebDragon (~webdragon@c-69-253-237-123.hsd1.de.comcast.net)
- # [14:15] <moo-_-> squeakytoy_: I suggest you push your luck with https://duckduckgo.com/?q=!mdn+file+api ----> https://developer.mozilla.org/en-US/docs/DOM/File
- # [14:15] * Quits: WebDragon (~webdragon@c-69-253-237-123.hsd1.de.comcast.net) (Client Quit)
- # [14:15] <moo-_-> squeakytoy_: Firefox seems to expose full path
- # [14:18] * Quits: prassel (nothing@h-252-255.a158.priv.bahnhof.se) (Quit: Quit)
- # [14:18] * Joins: prassel (nothing@h-252-255.a158.priv.bahnhof.se)
- # [14:20] * Joins: MisterSpeaker (~MisterSpe@62.129.6.2)
- # [14:22] * Quits: mklappstuhl (~martin@p578bd3e9.dip0.t-ipconnect.de) (Quit: WeeChat 0.3.7)
- # [14:23] * Quits: factor (~factor@74.196.174.229) (Quit: Leaving)
- # [14:23] * Quits: jetienne (~jerome@188.165.109.82) (Ping timeout: 252 seconds)
- # [14:30] * Quits: charlesroper (~CharlesR@unaffiliated/charlesroper) (Remote host closed the connection)
- # [14:33] * Quits: dhruvasagar (~dhruvasag@122.178.230.215) (Read error: Operation timed out)
- # [14:35] * Quits: OnlyMax (~OnlyMax@187-126-251-54.user.veloxzone.com.br)
- # [14:35] * Quits: Martijnc (~Martijn@is-aweso.me) (Ping timeout: 272 seconds)
- # [14:36] * Joins: WebDragon (~webdragon@c-69-253-237-123.hsd1.de.comcast.net)
- # [14:38] * Joins: Martijnc (~Martijn@is-aweso.me)
- # [14:42] * Joins: globbot (~logbot@lump.glob.com.au)
- # [14:44] * Quits: huntercool (~huntercoo@plz.ddos.secureshellz.com) (Read error: Operation timed out)
- # [14:44] * Joins: huntercool (~huntercoo@plz.ddos.secureshellz.com)
- # [14:44] * Quits: mstalfoort (~manuchill@83.232.96.217) (Ping timeout: 276 seconds)
- # [14:45] * Quits: Martijnc (~Martijn@is-aweso.me) (Read error: Operation timed out)
- # [14:46] * Quits: globbot (~logbot@lump.glob.com.au) (Remote host closed the connection)
- # [14:47] * Joins: globbot (~logbot@lump.glob.com.au)
- # [14:49] * Quits: yuya_ (~yuya@113x36x238x27.ap113.ftth.ucom.ne.jp) (Remote host closed the connection)
- # [14:49] * Joins: factor (~factor@74.196.174.229)
- # [14:54] * Joins: Martijnc (~Martijn@is-aweso.me)
- # [14:54] * Quits: niloy (~niloy@203.196.177.156) (Quit: Leaving)
- # [14:56] <squeakytoy_> did try it though, but without luck
- # [14:57] * Joins: DeltaHeavy (~DeltaHeav@d24-204-219-104.home4.cgocable.net)
- # [14:57] <Ms2ger> moo-_-, the full path shouldn't be exposed to web pages
- # [14:57] * Joins: fleeting (~fleeting@108-253-244-91.lightspeed.austtx.sbcglobal.net)
- # [14:59] * Quits: Boldewyn (~Thunderbi@188-192-131-103-dynip.superkabel.de) (Quit: Boldewyn)
- # [14:59] * Joins: mstalfoort (~manuchill@83.232.96.217)
- # [15:01] * Joins: decotii (~decotii@hq.croscon.com)
- # [15:02] * Quits: stephenplusplus (~Adium@ql1fwhide.rockfin.com) (Read error: Operation timed out)
- # [15:03] * Joins: jetienne (~jerome@188.165.109.82)
- # [15:06] * Quits: coellobranco (~FoRcEr@228.Red-83-34-21.dynamicIP.rima-tde.net) (Quit: http://www.juanantoniomosquera.com)
- # [15:08] * Joins: niloy (~niloy@203.196.177.156)
- # [15:08] * Quits: b1rkh0ff (~b1rkh0ff@178.77.21.150) (Ping timeout: 245 seconds)
- # [15:11] * Quits: jetienne (~jerome@188.165.109.82) (Quit: jetienne)
- # [15:13] * Quits: niloy (~niloy@203.196.177.156) (Quit: Leaving)
- # [15:14] * Quits: Thalisson (~Thalisson@unaffiliated/talssn3l) (Remote host closed the connection)
- # [15:16] * Quits: Savvy (~Thunderbi@unaffiliated/savvy) (Quit: Savvy)
- # [15:20] <moo-_-> aaa
- # [15:20] <moo-_-> it's chrome only
- # [15:20] <moo-_-> "chrome" as in "gecko chrome"
- # [15:21] * Quits: prassel (nothing@h-252-255.a158.priv.bahnhof.se) (Quit: Quit)
- # [15:21] * Joins: prassel (nothing@h-252-255.a158.priv.bahnhof.se)
- # [15:21] * Quits: MCHammer (~mchammer@212.48.107.10) (Remote host closed the connection)
- # [15:23] * Joins: b1rkh0ff (~b1rkh0ff@178.77.13.80)
- # [15:27] * Joins: MCHammer (~mchammer@212.48.107.10)
- # [15:28] * Quits: kitallis (~kitallis@106.51.149.153) (Quit: Textual IRC Client: http://www.textualapp.com/)
- # [15:29] * Joins: Ariel_Calzada (~aricalso@201.184.245.87)
- # [15:30] * Parts: Ariel_Calzada (~aricalso@201.184.245.87)
- # [15:31] <moo-_-> Ms2ger: thanks!
- # [15:31] <Ms2ger> Np
- # [15:32] * Joins: Snugug (~Richard@rrcs-24-136-96-234.nyc.biz.rr.com)
- # [15:32] * Quits: miChou (~mibalan@193.104.215.13) (Quit: Leaving.)
- # [15:33] * Quits: Mosselman (~Mosselman@vhe-451801.sshn.net) (Quit: Mosselman)
- # [15:36] * Joins: Sendoushi (~Musok@cm2-84-91-84-50.netvisao.pt)
- # [15:38] * Joins: _moon (~moon@20-91-190-109.dsl.ovh.fr)
- # [15:38] * Quits: MCHammer (~mchammer@212.48.107.10) (Remote host closed the connection)
- # [15:39] * Joins: MCHammer (~mchammer@212.48.107.10)
- # [15:40] * Joins: prudnikov (~prudnikov@nat-17.starnet.cz)
- # [15:40] * Quits: rickibalboa (~ricki@84.19.104.118) (Ping timeout: 264 seconds)
- # [15:42] * Joins: oakdog8 (~oakdog8@unaffiliated/oakdog8)
- # [15:48] * monteslu_ is now known as monteslu
- # [15:48] * Joins: kristofers (~kristofer@27.79-160-186.customer.lyse.net)
- # [15:49] * Joins: obert (~quassel@host221-22-dynamic.3-87-r.retail.telecomitalia.it)
- # [15:51] * Joins: kholladay (~kholladay@66.219.204.98.provo.dynamic.broadweavenetworks.net)
- # [15:53] * Joins: Mosselman (~Mosselman@vhe-451801.sshn.net)
- # [15:53] * Joins: jetienne (~jerome@188.165.109.82)
- # [15:53] * Quits: Wildblue (~male@c-69-140-154-17.hsd1.md.comcast.net) (Quit: Terabytes are termite-like desert insects.)
- # [15:54] * Quits: valgrind (~valgrind@193.144.6.250) (Quit: Leaving)
- # [15:55] * Joins: tw2113 (~tw2113@host-194-48-230-24.midco.net)
- # [15:55] * Quits: tw2113 (~tw2113@host-194-48-230-24.midco.net) (Changing host)
- # [15:55] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # [15:56] * Joins: Thalisson (~Thalisson@200-101-124-10.gnace701.dsl.brasiltelecom.net.br)
- # [15:56] * Quits: Thalisson (~Thalisson@200-101-124-10.gnace701.dsl.brasiltelecom.net.br) (Changing host)
- # [15:56] * Joins: Thalisson (~Thalisson@unaffiliated/talssn3l)
- # [15:56] * Quits: kholladay (~kholladay@66.219.204.98.provo.dynamic.broadweavenetworks.net) (Ping timeout: 276 seconds)
- # [15:58] * Joins: yodasw16 (~yodasw16@ql1fwhide.rockfin.com)
- # [15:59] * Joins: _dc (~dc@163.192.12.2)
- # [16:00] * Joins: yuya_ (~yuya@p31099-ipngn601hodogaya.kanagawa.ocn.ne.jp)
- # [16:03] * Quits: Snugug (~Richard@rrcs-24-136-96-234.nyc.biz.rr.com) (Quit: Snugug)
- # [16:03] * Quits: soee (~soee@83-238-167-52.ip.netia.com.pl) (Quit: Wychodzi)
- # [16:06] * Quits: yuya_ (~yuya@p31099-ipngn601hodogaya.kanagawa.ocn.ne.jp) (Ping timeout: 248 seconds)
- # [16:09] * Joins: Snugug (~Richard@rrcs-24-136-96-234.nyc.biz.rr.com)
- # [16:11] * Joins: garciawebdev (~garciaweb@190.244.95.154)
- # [16:11] * Quits: Trisox (~Tri_sox@dw87236798.amsterdam-tc.dataweb.net) (Quit: Leaving...)
- # [16:13] * Quits: mokush (~cc@82.208.133.70) (Quit: Konversation terminated!)
- # [16:18] * Quits: Thalisson (~Thalisson@unaffiliated/talssn3l) (Remote host closed the connection)
- # [16:26] * Joins: calbasi (~joan@161.44.14.37.dynamic.jazztel.es)
- # [16:27] * Quits: Sendoushi (~Musok@cm2-84-91-84-50.netvisao.pt) (Remote host closed the connection)
- # [16:28] * Quits: siriuz (~siriuz@cl-626.leo-01.de.sixxs.net) (Ping timeout: 264 seconds)
- # [16:28] * Quits: _gambit (~prajwalit@61.12.96.226) (Quit: Computer has gone to sleep.)
- # [16:29] * Quits: mstalfoort (~manuchill@83.232.96.217) (Read error: Operation timed out)
- # [16:30] * Joins: kitallis (~kitallis@106.51.149.153)
- # [16:30] * Quits: Boydy (~Emma@unaffiliated/boydy) (Remote host closed the connection)
- # [16:31] * Joins: siriuz (~siriuz@cl-626.leo-01.de.sixxs.net)
- # [16:32] * Joins: Thalisson (~Thalisson@unaffiliated/talssn3l)
- # [16:32] * Joins: Boydy (~Emma@CPE602ad06cbfe0-CM602ad06cbfdd.cpe.net.cable.rogers.com)
- # [16:32] * Quits: Boydy (~Emma@CPE602ad06cbfe0-CM602ad06cbfdd.cpe.net.cable.rogers.com) (Changing host)
- # [16:32] * Joins: Boydy (~Emma@unaffiliated/boydy)
- # [16:35] * Quits: nuba (~nuba@pauleira.com) (Ping timeout: 264 seconds)
- # [16:36] * Joins: vlad_starkov (~vlad_star@194.154.66.201)
- # [16:36] * Joins: shoogz (~shoogz@unaffiliated/shoogz)
- # [16:39] * Joins: _gambit (~prajwalit@61.12.96.226)
- # [16:41] * Joins: savid (~savid@ip98-186-177-191.ks.ks.cox.net)
- # [16:41] <savid> Does HTML5 have a spec for saving generated files from the browser? That is, if my HTML5 app generates a file, and I want to allow the user to save that file where they choose, how might that be possible?
- # [16:45] * Joins: jordanairwave (~jordanhai@109.235.121.35)
- # [16:45] <moo-_-> savid: yes, nowadays there should be one
- # [16:45] <moo-_-> one mo
- # [16:45] <moo-_-> savid: http://updates.html5rocks.com/2011/08/Saving-generated-files-on-the-client-side
- # [16:46] <moo-_-> disclaimer: blobbuilder is deprecated
- # [16:46] * Quits: j4hr0m (~j4hr0m@dslb-094-220-090-226.pools.arcor-ip.net) (Ping timeout: 245 seconds)
- # [16:48] * Quits: MCHammer (~mchammer@212.48.107.10) (Remote host closed the connection)
- # [16:48] <savid> moo-_-, ok, I've been playing with BlobBuilder and BlobBuilder.js, I just wasn't sure if that was the only way. BlobBuilder doesn't seem to work on safari 6 or the latest chrome, whereas the new Blob() constructor works on Chrome, but not safari.
- # [16:48] * Joins: jaequery (~jaequery@cpe-198-72-230-152.socal.res.rr.com)
- # [16:48] <savid> Still struggling to find something that works with safari :-/
- # [16:48] <moo-_-> savid: you won't
- # [16:48] <moo-_-> been there, done that
- # [16:49] <savid> Heh, well that's encouraging :-P
- # [16:49] <moo-_-> it's a fact
- # [16:49] <moo-_-> unless magical Apple fairies have been updating their Safari lately
- # [16:50] <savid> moo-_-, basically it's this. I've written an HTML5 app for a client that is supposed to work with other browsers, but especially must work in offline mode on the iPad. Lately they've wanted to add a "print" functionality. So, I dived into pdf.js to generate pdfs locally, only to find that I can't get the PDF data to "download" from Safari.
- # [16:51] <savid> err, jspdf, not pdf.js
- # [16:51] * Quits: asher^ (asher@unaffiliated/asher/x-9381395)
- # [16:52] <moo-_-> savid: well, in this case what they want is not possible within the constrains of Apple WebKit
- # [16:52] <moo-_-> savid: of course it's possible if they buy APPL and make a management decisionto support required features, but I think your clients might not be that rich :P
- # [16:52] <moo-_-> so I just implemented it as a server-side loopback fallback for Safari
- # [16:53] <moo-_-> savid: so I suggest you tell your clients to add the feature on a wish list which will be implemented when future iOS versions support it
- # [16:55] <savid> Wish I'd known it was impossible before I spent 20+ hours on it :-/
- # [16:55] <savid> Oh well. I still think I went the right route generating the PDF locally, which, if Blob worked on safari, would allow them to save a pdf while offline.
- # [16:55] * Quits: _moon (~moon@20-91-190-109.dsl.ovh.fr) (Remote host closed the connection)
- # [16:56] <savid> for now I'll just have to POST that data to a server, then resend that data back as a download, and say the feature only works online
- # [16:58] * Quits: main (~main@customer-79-127-150-148.net.angelnet.cz) (Read error: No route to host)
- # [16:59] * Joins: main (~main@customer-79-127-150-148.net.angelnet.cz)
- # [16:59] * Quits: _gambit (~prajwalit@61.12.96.226) (Quit: Computer has gone to sleep.)
- # [16:59] * Joins: divya (~Adium@50-0-136-242.dsl.dynamic.sonic.net)
- # [17:00] * Quits: divya (~Adium@50-0-136-242.dsl.dynamic.sonic.net) (Client Quit)
- # [17:00] * Quits: jetienne (~jerome@188.165.109.82) (Quit: jetienne)
- # [17:01] <moo-_-> savid: always ask on stackoverflow.com before doing orignal research ;)
- # [17:04] * Joins: PaulCapestany (~PaulCapes@204.28.124.82)
- # [17:04] * Quits: roel (~quassel@d54C236E3.access.telenet.be) (Read error: Connection reset by peer)
- # [17:05] * Joins: Savvy (~Thunderbi@unaffiliated/savvy)
- # [17:06] * Joins: kholladay (~kholladay@66.219.204.98.provo.dynamic.broadweavenetworks.net)
- # [17:10] <savid> Hah, lesson learned!!
- # [17:10] * Quits: WebDragon (~webdragon@c-69-253-237-123.hsd1.de.comcast.net) (Ping timeout: 248 seconds)
- # [17:13] * Quits: jaequery (~jaequery@cpe-198-72-230-152.socal.res.rr.com) (Quit: Computer has gone to sleep.)
- # [17:13] * Quits: mitemitreski (~mitemitre@212.120.17.179) (Read error: Connection reset by peer)
- # [17:13] * Joins: BigKing (~BigKing@dslb-178-001-150-094.pools.arcor-ip.net)
- # [17:13] * Joins: n-iCe (~nice@unaffiliated/nice/x-729832)
- # [17:14] <n-iCe> can anyone give me a based html5 site url, pls.
- # [17:14] * Joins: shwetank (~shwetank@121.245.71.43)
- # [17:15] * Quits: vlad_starkov (~vlad_star@194.154.66.201) (Remote host closed the connection)
- # [17:15] * Parts: calbasi (~joan@161.44.14.37.dynamic.jazztel.es)
- # [17:16] * Quits: dragoonis (~dragoonis@unaffiliated/dr4g) (Remote host closed the connection)
- # [17:20] * Quits: nkr (~nkr@189.120.65.122) (Ping timeout: 256 seconds)
- # [17:22] * Quits: digitalfiz (~uid533@gateway/web/irccloud.com/x-rqqkwutcxpqthrue)
- # [17:23] * Joins: digitalfiz (uid533@gateway/web/irccloud.com/x-utasyjflpsvbqsaq)
- # [17:25] <moo-_-> n-iCe: http://html5boilerplate.com/
- # [17:25] * Quits: arcane (~Mael@bas1-montreal07-2925060433.dsl.bell.ca) (Read error: Connection reset by peer)
- # [17:26] * Joins: tantek (~tantek@m8f2736d0.tmodns.net)
- # [17:30] * Joins: kfenn_ (~kfenn@ip-81-23-63-6.ask4internet.com)
- # [17:30] * Quits: main (~main@customer-79-127-150-148.net.angelnet.cz) (Ping timeout: 246 seconds)
- # [17:32] * Quits: n-iCe (~nice@unaffiliated/nice/x-729832) (Remote host closed the connection)
- # [17:32] * Quits: Thalisson (~Thalisson@unaffiliated/talssn3l) (Remote host closed the connection)
- # [17:32] * Joins: nkr (~nkr@189.120.65.122)
- # [17:33] * Joins: ericduran (~ericduran@cpe-68-175-85-180.nyc.res.rr.com)
- # [17:34] * Quits: kfenn (~kfenn@ip-81-23-63-6.ask4internet.com) (Ping timeout: 252 seconds)
- # [17:35] * Joins: Thalisson (~Thalisson@unaffiliated/talssn3l)
- # [17:36] * Joins: jaequery (~jaequery@cpe-198-72-230-152.socal.res.rr.com)
- # [17:37] * Quits: MisterSpeaker (~MisterSpe@62.129.6.2) (Remote host closed the connection)
- # [17:37] * Joins: paul147 (~Adium@173-8-222-173-Oregon.hfc.comcastbusiness.net)
- # [17:37] * Quits: shoogz (~shoogz@unaffiliated/shoogz) (Quit: Leaving...)
- # [17:40] * Quits: kfenn_ (~kfenn@ip-81-23-63-6.ask4internet.com) (Remote host closed the connection)
- # [17:41] * Quits: Thalisson (~Thalisson@unaffiliated/talssn3l) (Remote host closed the connection)
- # [17:41] * Joins: _moon (~moon@2a01:e35:8b1f:7120:dd8:5825:dd4c:827a)
- # [17:41] * Joins: kfenn (~kfenn@ip-81-23-63-6.ask4internet.com)
- # [17:43] * Quits: DrCode (~DrCode@gateway/tor-sasl/drcode) (Remote host closed the connection)
- # [17:44] * Joins: MisterSpeaker (~MisterSpe@62.129.6.2)
- # [17:48] * Joins: Ouchy (~Ouchy@vtx-529-edge.remarkinternet.com)
- # [17:48] * Quits: Ouchy (~Ouchy@vtx-529-edge.remarkinternet.com) (Changing host)
- # [17:48] * Joins: Ouchy (~Ouchy@unaffiliated/ouchy)
- # [17:48] * Joins: mstalfoort (~manuchill@83.232.96.217)
- # [17:49] * Joins: DrCode (~DrCode@gateway/tor-sasl/drcode)
- # [17:49] * Quits: Ouchy (~Ouchy@unaffiliated/ouchy) (Client Quit)
- # [17:49] * Quits: PaulCapestany (~PaulCapes@204.28.124.82) (Quit: Computer has gone to sleep.)
- # [17:50] * Quits: Savvy (~Thunderbi@unaffiliated/savvy) (Quit: Savvy)
- # [17:51] * Quits: sedovsek (~robert@89.143.12.238) (Quit: sedovsek)
- # [17:52] * Joins: fr0zenice (~frozenice@unaffiliated/fr0zenice)
- # [17:52] * Joins: ibere (~nitidaweb@187-78-85-208.user.veloxzone.com.br)
- # [17:52] * Joins: Thalisson (~Thalisson@unaffiliated/talssn3l)
- # [17:57] * Quits: jaequery (~jaequery@cpe-198-72-230-152.socal.res.rr.com) (Quit: Computer has gone to sleep.)
- # [17:59] * Joins: MEMutable1000 (~Me1000@74-143-221-15.static.insightbb.com)
- # [18:00] * MEMutable1000 is now known as Me1000
- # [18:00] * Quits: _cheney (~cheney@nat.sierrabravo.net) (Read error: Connection reset by peer)
- # [18:01] * Joins: _cheney (~cheney@nat.sierrabravo.net)
- # [18:05] * Quits: Thalisson (~Thalisson@unaffiliated/talssn3l) (Remote host closed the connection)
- # [18:05] * Quits: quest88 (~quest88@c-67-170-219-133.hsd1.ca.comcast.net) (Quit: quest88)
- # [18:06] * Joins: j4hr0m (~j4hr0m@dslb-094-220-090-226.pools.arcor-ip.net)
- # [18:09] * Quits: j4hr0m (~j4hr0m@dslb-094-220-090-226.pools.arcor-ip.net) (Client Quit)
- # [18:09] * Joins: sedovsek (~robert@BSN-61-118-63.dial-up.dsl.siol.net)
- # [18:13] * Quits: manuelbieh (~beeevi2@p50997681.dip0.t-ipconnect.de) (Ping timeout: 244 seconds)
- # [18:15] * Joins: shoogz (~shoogz@unaffiliated/shoogz)
- # [18:16] * Joins: guy (~gajus@oftn/member/guy)
- # [18:20] * Quits: rasmusth (magic@213.155.0.37) (Ping timeout: 276 seconds)
- # [18:21] * Joins: rasmusth (magic@213.155.0.37)
- # [18:23] * Joins: jaequery (~jaequery@rrcs-173-196-143-198.west.biz.rr.com)
- # [18:24] * Quits: jaequery (~jaequery@rrcs-173-196-143-198.west.biz.rr.com) (Remote host closed the connection)
- # [18:24] * Joins: rickibalboa (~ricki@84.19.104.118)
- # [18:26] * Quits: shoogz (~shoogz@unaffiliated/shoogz) (Quit: Leaving...)
- # [18:26] * Quits: maxani_ (~maxani@ARennes-653-1-310-81.w109-218.abo.wanadoo.fr) (Quit: Computer has gone to sleep.)
- # [18:26] * Joins: squeakytoy (~christoff@h87-96-232-107.dynamic.se.alltele.net)
- # [18:28] * Joins: grizwako (~grizzly@210-254.dsl.iskon.hr)
- # [18:29] * Quits: kfenn (~kfenn@ip-81-23-63-6.ask4internet.com) (Remote host closed the connection)
- # [18:30] * Quits: shwetank (~shwetank@121.245.71.43) (Quit: Linkinus - http://linkinus.com)
- # [18:30] * Joins: Andre_designer (~Thunderbi@82-170-146-165.ip.telfort.nl)
- # [18:31] * Joins: Jon47 (~Adium@pool-108-18-206-254.washdc.fios.verizon.net)
- # [18:31] * Quits: Jon471 (~Adium@pool-108-18-206-254.washdc.fios.verizon.net) (Ping timeout: 248 seconds)
- # [18:32] * Joins: j4hr0m (~j4hr0m@dslb-094-220-090-226.pools.arcor-ip.net)
- # [18:32] * Joins: AskMP (~AskMP@CPE185933f3b92e-CM185933f3b92b.cpe.net.cable.rogers.com)
- # [18:32] * Joins: Shusshu (~shu@ip51cd1542.speed.planet.nl)
- # [18:33] * Quits: AskMP (~AskMP@CPE185933f3b92e-CM185933f3b92b.cpe.net.cable.rogers.com) (Client Quit)
- # [18:35] * Quits: Shusshu (~shu@ip51cd1542.speed.planet.nl) (Client Quit)
- # [18:36] * Quits: Snugug (~Richard@rrcs-24-136-96-234.nyc.biz.rr.com) (Quit: Snugug)
- # [18:36] * Joins: jaequery (~jaequery@rrcs-173-196-143-198.west.biz.rr.com)
- # [18:37] * Joins: David_Bradbury (~chatzilla@75-147-178-254-Washington.hfc.comcastbusiness.net)
- # [18:37] * Joins: Snugug (~Richard@rrcs-24-136-96-234.nyc.biz.rr.com)
- # [18:37] * Joins: AskMP (~AskMP@CPE185933f3b92e-CM185933f3b92b.cpe.net.cable.rogers.com)
- # [18:40] * Joins: roadt__ (~roadt@60.168.86.178)
- # [18:43] * Joins: maxani_ (~maxani@ARennes-653-1-310-81.w109-218.abo.wanadoo.fr)
- # [18:43] * Quits: roadt_ (~roadt@60.168.91.104) (Ping timeout: 248 seconds)
- # [18:46] * Joins: skylamer` (cgskylamer@78.90.213.55)
- # [18:47] * Joins: singleb (~Newtonian@208.71.36.3)
- # [18:48] <singleb> has anyone looked at the boilerplate at https://github.com/h5bp/html5-boilerplate/blob/master/index.html ? I don't understand the logic in their naming for instance they write things like <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> why? I would write it <!--[if IE 7]> <html class="no-js lt-ie7"> <![endif]-->
- # [18:49] * Joins: arronhunt (~arronhunt@wsip-70-168-144-52.oc.oc.cox.net)
- # [18:50] * Joins: benv (~benv@38.104.194.126)
- # [18:50] * Quits: mstalfoort (~manuchill@83.232.96.217) (Ping timeout: 244 seconds)
- # [18:51] <tw2113> IE7 is still less than IE8-9
- # [18:52] <David_Bradbury> If IE7, no-js and less-than ie7?
- # [18:53] <singleb> lt => less than -__- i see ok well i read that too fast
- # [18:54] <singleb> one thing I was wondering relating to that is facebook signup form has no client side javascript validation is there a reasons why?
- # [18:57] * Joins: chriseppstein (~chrisepps@209.119.65.162)
- # [18:57] * Quits: MisterSpeaker (~MisterSpe@62.129.6.2) (Remote host closed the connection)
- # [18:58] <David_Bradbury> Probably because client-side validation isn't secure, and they likely don't see it as important. They instead do all their validation on the server.
- # [18:59] * Joins: ML74 (~ML74@5e0c6133.bb.sky.com)
- # [19:03] * Joins: exoon (~exoon@p4FD38B91.dip0.t-ipconnect.de)
- # [19:04] * Parts: jaequery (~jaequery@rrcs-173-196-143-198.west.biz.rr.com) ("Textual IRC Client: www.textualapp.com")
- # [19:04] * Joins: b-ot (~b-ot@aether.gf3.ca)
- # [19:05] * Quits: BigKing (~BigKing@dslb-178-001-150-094.pools.arcor-ip.net) (Ping timeout: 255 seconds)
- # [19:06] * Quits: dragonshed (~dragonshe@about/csharp/regular/chaka) (Quit: dragonshed)
- # [19:07] * Quits: Boydy (~Emma@unaffiliated/boydy) (Remote host closed the connection)
- # [19:07] * Joins: Boydy (~Emma@CPE602ad06cbfe0-CM602ad06cbfdd.cpe.net.cable.rogers.com)
- # [19:07] * Quits: Boydy (~Emma@CPE602ad06cbfe0-CM602ad06cbfdd.cpe.net.cable.rogers.com) (Changing host)
- # [19:07] * Joins: Boydy (~Emma@unaffiliated/boydy)
- # [19:10] * Quits: yodasw16 (~yodasw16@ql1fwhide.rockfin.com) (Quit: yodasw16)
- # [19:10] * Joins: yodasw16 (~yodasw16@ql1fwhide.rockfin.com)
- # [19:10] * Joins: Jayflux (~jay_knows@host-92-29-18-20.as13285.net)
- # [19:11] * Quits: sedovsek (~robert@BSN-61-118-63.dial-up.dsl.siol.net) (Quit: sedovsek)
- # [19:12] * Quits: Boydy (~Emma@unaffiliated/boydy) (Ping timeout: 248 seconds)
- # [19:12] * Joins: mattkelly (~mattwkell@173.252.71.4)
- # [19:12] * Quits: mattkelly (~mattwkell@173.252.71.4) (Changing host)
- # [19:12] * Joins: mattkelly (~mattwkell@drupal.org/user/64049/view)
- # [19:13] * Joins: r0tha (~r0tha@173.247.200.122)
- # [19:13] * Quits: guy (~gajus@oftn/member/guy) (Remote host closed the connection)
- # [19:15] * Quits: b-ot (~b-ot@aether.gf3.ca) (Remote host closed the connection)
- # [19:15] * Quits: savid (~savid@ip98-186-177-191.ks.ks.cox.net) (Ping timeout: 255 seconds)
- # [19:15] * Joins: b-ot (~b-ot@aether.gf3.ca)
- # [19:15] * Joins: peol (~andree@unaffiliated/peol)
- # [19:18] * Joins: cgcardona (~cgcardona@c-24-4-198-207.hsd1.ca.comcast.net)
- # [19:18] * Quits: cgcardona (~cgcardona@c-24-4-198-207.hsd1.ca.comcast.net) (Changing host)
- # [19:18] * Joins: cgcardona (~cgcardona@unaffiliated/cgcardona)
- # [19:22] * Joins: RidahGee (~ridahgee@64-136-219-213.dyn.everestkc.net)
- # [19:22] * Quits: maxani_ (~maxani@ARennes-653-1-310-81.w109-218.abo.wanadoo.fr) (Quit: Computer has gone to sleep.)
- # [19:23] * Joins: maxani_ (~maxani@ARennes-653-1-310-81.w109-218.abo.wanadoo.fr)
- # [19:26] * Quits: tantek (~tantek@m8f2736d0.tmodns.net) (Ping timeout: 244 seconds)
- # [19:26] * Joins: arcanis (~Mael@bas1-montreal07-2925060433.dsl.bell.ca)
- # [19:28] * Joins: dragonshed (~chaka@about/csharp/regular/chaka)
- # [19:31] * Quits: kraucrow (~polarizin@rigel.secureserving.net) (Ping timeout: 276 seconds)
- # [19:31] * Quits: Snugug (~Richard@rrcs-24-136-96-234.nyc.biz.rr.com) (Quit: Snugug)
- # [19:34] * Joins: danielwrobert (~danielwro@trestles.cukerinteractive.com)
- # [19:37] * Quits: maxani_ (~maxani@ARennes-653-1-310-81.w109-218.abo.wanadoo.fr) (Quit: Computer has gone to sleep.)
- # [19:37] * Joins: MisterSpeaker (~MisterSpe@did75-9-82-230-54-70.fbx.proxad.net)
- # [19:37] * Joins: jarek (~jarek@unaffiliated/jarek)
- # [19:38] * Joins: kraucrow (~polarizin@rigel.secureserving.net)
- # [19:38] * Joins: kill-9_ (~kill-9@cpe-184-57-120-146.columbus.res.rr.com)
- # [19:39] * Quits: benv (~benv@38.104.194.126) (Ping timeout: 260 seconds)
- # [19:40] * Quits: kitallis (~kitallis@106.51.149.153) (Quit: Textual IRC Client: http://www.textualapp.com/)
- # [19:40] * Joins: benv (~benv@38.104.194.126)
- # [19:42] * Joins: maxani_ (~maxani@ARennes-653-1-310-81.w109-218.abo.wanadoo.fr)
- # [19:44] * Joins: arietis (~arietis@188.242.181.162)
- # [19:46] * Joins: erichynds (~ehynds@64.206.121.41)
- # [19:49] * Quits: benv (~benv@38.104.194.126) (Quit: Computer has gone to sleep.)
- # [19:50] * Joins: shoogz (~shoogz@unaffiliated/shoogz)
- # [19:52] * Quits: MisterSpeaker (~MisterSpe@did75-9-82-230-54-70.fbx.proxad.net) (Remote host closed the connection)
- # [19:53] * Joins: Ouchy (~Ouchy@vtx-529-edge.remarkinternet.com)
- # [19:53] * Quits: Ouchy (~Ouchy@vtx-529-edge.remarkinternet.com) (Changing host)
- # [19:53] * Joins: Ouchy (~Ouchy@unaffiliated/ouchy)
- # [19:54] * Joins: benv (~benv@38.104.194.126)
- # [19:55] * Joins: Snugug (~Richard@rrcs-24-136-96-234.nyc.biz.rr.com)
- # [19:59] * Joins: BigKing (~BigKing@dslb-178-001-150-094.pools.arcor-ip.net)
- # [20:00] * Joins: Hornet (~Hornet@cpc10-ipsw2-2-0-cust55.7-4.cable.virginmedia.com)
- # [20:02] * Joins: mykul (~mykul@c-24-8-101-84.hsd1.co.comcast.net)
- # [20:02] * Joins: manuelbieh (~beeevi2@p57BD6554.dip0.t-ipconnect.de)
- # [20:05] * Quits: roadt__ (~roadt@60.168.86.178) (Ping timeout: 248 seconds)
- # [20:08] * Joins: Thalisson (~Thalisson@unaffiliated/talssn3l)
- # [20:08] * Joins: owzim (~owzim@e178102229.adsl.alicedsl.de)
- # [20:08] * Joins: drublic (~drublic@frbg-5d84fb8f.pool.mediaWays.net)
- # [20:09] * Quits: Thalisson (~Thalisson@unaffiliated/talssn3l) (Remote host closed the connection)
- # [20:10] * Quits: ibere (~nitidaweb@187-78-85-208.user.veloxzone.com.br) (Quit: Leaving.)
- # [20:12] * Joins: clouder`grr (~clouder@cpe-67-10-223-91.elp.res.rr.com)
- # [20:15] * Quits: teleject (~christoph@cpe-66-68-22-12.austin.res.rr.com) (Quit: teleject)
- # [20:15] * Joins: Thalisson (~Thalisson@unaffiliated/talssn3l)
- # [20:15] * Quits: Thalisson (~Thalisson@unaffiliated/talssn3l) (Remote host closed the connection)
- # [20:15] * Quits: mykul (~mykul@c-24-8-101-84.hsd1.co.comcast.net) (Quit: gg)
- # [20:16] * Quits: skylamer` (cgskylamer@78.90.213.55)
- # [20:17] * Joins: estellevw (~estellevw@surveymonkey-3.mpr1.pao001.pnap.net)
- # [20:22] * Joins: MisterSpeaker (~MisterSpe@did75-9-82-230-54-70.fbx.proxad.net)
- # [20:24] * Joins: nbt (~nbt@unaffiliated/nbt)
- # [20:24] * Joins: Boydy (~Emma@CPE602ad06cbfe0-CM602ad06cbfdd.cpe.net.cable.rogers.com)
- # [20:24] * Quits: Boydy (~Emma@CPE602ad06cbfe0-CM602ad06cbfdd.cpe.net.cable.rogers.com) (Changing host)
- # [20:24] * Joins: Boydy (~Emma@unaffiliated/boydy)
- # [20:28] * Quits: singleb (~Newtonian@208.71.36.3)
- # [20:29] * Quits: Mosselman (~Mosselman@vhe-451801.sshn.net) (Quit: Mosselman)
- # [20:35] * Quits: jarek (~jarek@unaffiliated/jarek) (Quit: jarek)
- # [20:36] * Joins: arcanin (~Mael@bas1-montreal07-2925060433.dsl.bell.ca)
- # [20:38] * Quits: Boydy (~Emma@unaffiliated/boydy) (Remote host closed the connection)
- # [20:39] * Quits: Graister (~graister@212-149-203-36.bb.dnainternet.fi) (Ping timeout: 255 seconds)
- # [20:39] * Quits: arcanis (~Mael@bas1-montreal07-2925060433.dsl.bell.ca) (Ping timeout: 246 seconds)
- # [20:40] * Vennril2 is now known as Vennril
- # [20:40] * Quits: grizwako (~grizzly@210-254.dsl.iskon.hr) (Ping timeout: 248 seconds)
- # [20:40] * Joins: Graister (~graister@212-149-203-36.bb.dnainternet.fi)
- # [20:42] * Quits: dekiss (~jason@89.205.75.230) (Ping timeout: 260 seconds)
- # [20:46] * Quits: kristofers (~kristofer@27.79-160-186.customer.lyse.net)
- # [20:49] * Joins: tantek (~tantek@m8f2736d0.tmodns.net)
- # [20:49] * Quits: thomasFre (~toto@159.71.64.86.rev.sfr.net) (Quit: This computer has gone to sleep)
- # [20:49] * Quits: oohnoitz (~oohnoitz@gateway/shell/xzibition.com/x-xkafqttmhtlafagb) (Ping timeout: 264 seconds)
- # [20:49] * Quits: Me1000 (~Me1000@74-143-221-15.static.insightbb.com) (Quit: Leaving...)
- # [20:50] * Joins: oohnoitz (septicore@gateway/shell/xzibition.com/x-slrzluyshucivzvx)
- # [20:51] * Joins: ibere (~nitidaweb@187-78-85-208.user.veloxzone.com.br)
- # [20:53] * Quits: MisterSpeaker (~MisterSpe@did75-9-82-230-54-70.fbx.proxad.net) (Remote host closed the connection)
- # [20:53] * Joins: WeThePeople (~WeThePeop@unaffiliated/wethepeople)
- # [20:56] * Quits: benv (~benv@38.104.194.126) (Quit: Computer has gone to sleep.)
- # [20:56] * Joins: Sendoushi (~Musok@cm2-84-91-84-50.netvisao.pt)
- # [20:57] * Joins: dekiss (~jason@89.205.75.230)
- # [21:03] * Joins: MisterSpeaker (~MisterSpe@did75-9-82-230-54-70.fbx.proxad.net)
- # [21:04] * Joins: main (~main@ip-94-113-12-74.net.upcbroadband.cz)
- # [21:06] * Quits: dekiss (~jason@89.205.75.230)
- # [21:07] * Quits: arronhunt (~arronhunt@wsip-70-168-144-52.oc.oc.cox.net) (Remote host closed the connection)
- # [21:08] * Quits: exoon (~exoon@p4FD38B91.dip0.t-ipconnect.de) (Ping timeout: 276 seconds)
- # [21:09] * Joins: exoon (~exoon@p4FD383AC.dip0.t-ipconnect.de)
- # [21:11] * Joins: benv (~benv@38.104.194.126)
- # [21:11] * Quits: WeThePeople (~WeThePeop@unaffiliated/wethepeople) (Quit: Leaving)
- # [21:18] * Joins: d3m0n (~demon@67.198.198.66)
- # [21:19] * Joins: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net)
- # [21:24] * Quits: j4hr0m (~j4hr0m@dslb-094-220-090-226.pools.arcor-ip.net) (Ping timeout: 248 seconds)
- # [21:24] * Joins: mykul (~mykul@c-71-56-217-213.hsd1.co.comcast.net)
- # [21:30] * Joins: jetienne (~jerome@ivr94-10-88-177-169-62.fbx.proxad.net)
- # [21:33] * Quits: ibere (~nitidaweb@187-78-85-208.user.veloxzone.com.br) (Quit: Leaving.)
- # [21:33] * Quits: MisterSpeaker (~MisterSpe@did75-9-82-230-54-70.fbx.proxad.net) (Remote host closed the connection)
- # [21:35] * Joins: sand_ (~sand@c-24-99-29-173.hsd1.ga.comcast.net)
- # [21:36] <sand_> what do you call a file with html5 doctype and not html5 tags in the markup whats so ever?
- # [21:36] <ironfroggy> what is in it then?
- # [21:36] * Quits: xSmurf (~MrSmurf@unaffiliated/mrsmurf) (Read error: Operation timed out)
- # [21:36] <ironfroggy> many tags are implied. you'd be surprised what you can omit in a valid html5 doc.
- # [21:36] <sand_> regular html tags
- # [21:36] <ironfroggy> whats the difference?
- # [21:36] <sand_> no sections heades articles
- # [21:37] <sand_> all divs
- # [21:37] <ironfroggy> div is still valid in html5
- # [21:37] <sand_> i know but if a client ask for html5
- # [21:37] <ironfroggy> does the client know what html5 means
- # [21:37] <Jon47> hehe
- # [21:37] <sand_> i guessing not
- # [21:37] <ironfroggy> what do they think it means? give them that.
- # [21:37] <sand_> cause i was pass this code
- # [21:37] <sand_> and was like uh...
- # [21:38] <sand_> only thing html5 here is the doctype...
- # [21:38] * Quits: moshee (~moshee@unaffiliated/moshee) (Ping timeout: 264 seconds)
- # [21:38] <sand_> i just dont know how to break the news to the client
- # [21:38] * Joins: moshee (~moshee@c-24-16-118-62.hsd1.wa.comcast.net)
- # [21:38] * Quits: moshee (~moshee@c-24-16-118-62.hsd1.wa.comcast.net) (Changing host)
- # [21:38] * Joins: moshee (~moshee@unaffiliated/moshee)
- # [21:38] <sand_> you paid extra for a doctype
- # [21:38] <sand_> ?
- # [21:39] <ironfroggy> why would it be extra
- # [21:39] <sand_> the previous guy sold them on it
- # [21:39] <sand_> it took them 5 months to do one page
- # [21:39] <sand_> haha
- # [21:40] * Joins: Boydy (~Emma@CPE602ad06cbfe0-CM602ad06cbfdd.cpe.net.cable.rogers.com)
- # [21:40] * Quits: Boydy (~Emma@CPE602ad06cbfe0-CM602ad06cbfdd.cpe.net.cable.rogers.com) (Changing host)
- # [21:40] * Joins: Boydy (~Emma@unaffiliated/boydy)
- # [21:42] * Quits: Sendoushi (~Musok@cm2-84-91-84-50.netvisao.pt) (Remote host closed the connection)
- # [21:42] <sand_> I guess I'm asking whats the point of using html5 if you're not using the html5 markup?
- # [21:44] * Joins: xSmurf (~MrSmurf@unaffiliated/mrsmurf)
- # [21:44] * Quits: tantek (~tantek@m8f2736d0.tmodns.net) (Quit: tantek)
- # [21:44] * Quits: exoon (~exoon@p4FD383AC.dip0.t-ipconnect.de) (Ping timeout: 240 seconds)
- # [21:45] * Joins: exoon (~exoon@p4FD381A4.dip0.t-ipconnect.de)
- # [21:47] * Joins: soypirate (~soypirate@75.94.81.12)
- # [21:48] * Quits: erichynds (~ehynds@64.206.121.41) (Ping timeout: 252 seconds)
- # [21:54] * Joins: PaulCapestany (~PaulCapes@204.28.124.82)
- # [21:55] * Quits: owzim (~owzim@e178102229.adsl.alicedsl.de) (Remote host closed the connection)
- # [21:59] * Joins: erichynds (~ehynds@64.206.121.41)
- # [22:03] * Quits: Boydy (~Emma@unaffiliated/boydy) (Read error: Connection reset by peer)
- # [22:04] * Joins: Boydy (~Emma@unaffiliated/boydy)
- # [22:05] * Joins: Me1000 (~Me1000@74-143-221-15.static.insightbb.com)
- # [22:07] * Quits: erichynds (~ehynds@64.206.121.41) (Ping timeout: 252 seconds)
- # [22:08] * Quits: benv (~benv@38.104.194.126) (Ping timeout: 252 seconds)
- # [22:08] * Quits: Ms2ger (~Ms2ger@218.200-242-81.adsl-dyn.isp.belgacom.be) (Quit: nn)
- # [22:11] * Joins: benv (~benv@38.104.194.126)
- # [22:12] * Joins: tantek (~tantek@m8f2736d0.tmodns.net)
- # [22:14] * Joins: vlad_starkov (~vlad_star@178.177.209.153)
- # [22:16] * Quits: siriuz (~siriuz@cl-626.leo-01.de.sixxs.net) (Quit: Quit)
- # [22:17] * Joins: MisterSpeaker (~MisterSpe@did75-9-82-230-54-70.fbx.proxad.net)
- # [22:19] * Joins: Sendoushi (~Musok@cm2-84-91-84-50.netvisao.pt)
- # [22:19] * Quits: MisterSpeaker (~MisterSpe@did75-9-82-230-54-70.fbx.proxad.net) (Remote host closed the connection)
- # [22:20] * Joins: MrSpeaker_ (~MisterSpe@did75-9-82-230-54-70.fbx.proxad.net)
- # [22:21] * Quits: Boydy (~Emma@unaffiliated/boydy) (Remote host closed the connection)
- # [22:23] * Joins: pn0 (~pn0@95-31-214-222.broadband.corbina.ru)
- # [22:23] * Quits: vlad_starkov (~vlad_star@178.177.209.153) (Remote host closed the connection)
- # [22:24] * Joins: j4hr0m (~j4hr0m@dslb-094-220-090-226.pools.arcor-ip.net)
- # [22:28] * Joins: Boydy (~Emma@unaffiliated/boydy)
- # [22:32] * Joins: stevegill (~stevengil@d154-20-125-89.bchsia.telus.net)
- # [22:33] * Quits: exoon (~exoon@p4FD381A4.dip0.t-ipconnect.de) (Ping timeout: 244 seconds)
- # [22:35] * Quits: Jon47 (~Adium@pool-108-18-206-254.washdc.fios.verizon.net) (Quit: Leaving.)
- # [22:36] * Quits: ironfroggy (~ironfrogg@ec2-50-16-218-141.compute-1.amazonaws.com) (Quit: ZNC - http://znc.sourceforge.net)
- # [22:37] * Quits: Andre_designer (~Thunderbi@82-170-146-165.ip.telfort.nl) (Quit: Andre_designer)
- # [22:40] * Joins: martisj (~martisj@ppp154-95.static.internode.on.net)
- # [22:41] * Joins: ZinnSoldat (~ZinnSolda@p4FEDB2AC.dip.t-dialin.net)
- # [22:42] * Quits: arietis (~arietis@188.242.181.162) (Quit: Textual IRC Client: http://www.textualapp.com/)
- # [22:44] * Quits: j4hr0m (~j4hr0m@dslb-094-220-090-226.pools.arcor-ip.net) (Ping timeout: 248 seconds)
- # [22:45] * Quits: kerozene (~kerozene@unaffiliated/kerozene) (Quit: Lost terminal)
- # [22:45] * Quits: peol (~andree@unaffiliated/peol) (Ping timeout: 248 seconds)
- # [22:49] * Quits: carlos_antonio (~benway@unaffiliated/disusered) (Quit: Lost terminal)
- # [22:49] * Joins: carlos_antonio (~benway@unaffiliated/disusered)
- # [22:49] * Joins: peol (~andree@unaffiliated/peol)
- # [22:50] * Joins: samio (~samio@24.138.77.188.dynamic.jazztel.es)
- # Session Close: Mon Feb 04 22:54:03 2013
- #
- # Session Start: Mon Feb 04 22:54:03 2013
- # Session Ident: #html5
- # [22:54] * Disconnected
- # [23:03] * Attempting to rejoin channel #html5
- # [23:03] * Rejoined channel #html5
- # [23:03] * Topic is 'Ask any question about HTML5 & Friends || HTML5 Spec for Developers: http://developers.whatwg.org || Also: http://html5rocks.com http://diveintohtml5.info http://mzl.la/9giLwR || Channel logs: http://j.mp/cG7UDa'
- # [23:03] * Set by marienz!marienz@freenode/staff/marienz on Fri Oct 21 20:53:09
- # [23:03] -asimov.freenode.net:#html5- [freenode-info] channel trolls and no channel staff around to help? please check with freenode support: http://freenode.net/faq.shtml#gettinghelp
- # [23:05] * Quits: stevegill (~stevengil@d154-20-125-89.bchsia.telus.net) (Ping timeout: 260 seconds)
- # [23:06] * Quits: ZinnSoldat (~ZinnSolda@p4FEDB2AC.dip.t-dialin.net) (Remote host closed the connection)
- # [23:09] * Joins: WeThePeople (~WeThePeop@unaffiliated/wethepeople)
- # [23:15] * Quits: benv (~benv@38.104.194.126) (Quit: Computer has gone to sleep.)
- # [23:20] * Quits: austincheney (~quassel@62.150.91.10) (Ping timeout: 264 seconds)
- # [23:20] * Joins: benv (~benv@38.104.194.126)
- # [23:21] * Quits: Benvie (~brandon@cpe-075-182-090-198.nc.res.rr.com)
- # [23:22] * Quits: MrSpeaker_ (~MisterSpe@did75-9-82-230-54-70.fbx.proxad.net) (Remote host closed the connection)
- # [23:25] * Quits: jetienne (~jerome@ivr94-10-88-177-169-62.fbx.proxad.net) (Quit: i love javascript and webgl. see http://pacmaze.com)
- # [23:27] * Quits: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t) (Ping timeout: 252 seconds)
- # [23:30] * Joins: stevegill (~stevengil@199-7-158-64.eng.wind.ca)
- # [23:32] * Quits: prassel (nothing@h-252-255.a158.priv.bahnhof.se) (Read error: Connection reset by peer)
- # [23:33] * Joins: coellobranco (~FoRcEr@228.Red-83-34-21.dynamicIP.rima-tde.net)
- # [23:33] * Joins: j4hr0m (~j4hr0m@dslb-094-220-090-226.pools.arcor-ip.net)
- # [23:34] * Quits: longbeach (~mike@AFontenayssB-152-1-2-176.w82-121.abo.wanadoo.fr)
- # [23:35] <David_Bradbury> Five months for a single page? o_o
- # [23:37] * Quits: BigKing (~BigKing@dslb-178-001-150-094.pools.arcor-ip.net) (Remote host closed the connection)
- # [23:37] * Parts: vitorbal (~root@static.88-198-35-26.clients.your-server.de)
- # [23:39] * Joins: stevegill_ (~stevengil@d154-20-125-89.bchsia.telus.net)
- # [23:41] * Quits: stevegill (~stevengil@199-7-158-64.eng.wind.ca) (Read error: Connection reset by peer)
- # [23:41] * stevegill_ is now known as stevegill
- # [23:43] * Quits: stevegill (~stevengil@d154-20-125-89.bchsia.telus.net) (Read error: No route to host)
- # [23:44] * Joins: stevegill (~stevengil@d154-20-125-89.bchsia.telus.net)
- # [23:46] <martisj> David_Bradbury: good effort :)
- # [23:49] * Quits: mstalfoort (~manuchill@546AF15F.cm-12-3d.dynamic.ziggo.nl) (Quit: kthxbai)
- # [23:52] * Joins: MisterSpeaker (~MisterSpe@did75-9-82-230-54-70.fbx.proxad.net)
- # [23:53] * Joins: Benvie (~brandon@cpe-075-182-090-198.nc.res.rr.com)
- # [23:56] * Quits: Me1000 (~Me1000@74-143-221-15.static.insightbb.com) (Quit: Leaving...)
- # [23:56] * Quits: MisterSpeaker (~MisterSpe@did75-9-82-230-54-70.fbx.proxad.net) (Ping timeout: 264 seconds)
- # [23:59] * Quits: fr0zenice (~frozenice@unaffiliated/fr0zenice) (Remote host closed the connection)
- # Session Close: Tue Feb 05 00:00:00 2013
The end :)