Options:
- # Session Start: Sat Sep 10 00:00:00 2011
- # Session Ident: #html5
- # [00:00] * Quits: FylGood (~fylgood@pool-108-28-240-83.washdc.fios.verizon.net) (Quit: Textual IRC Client: http://www.textualapp.com/)
- # [00:02] * Joins: brettgoulder (~textual@173-164-36-90-colorado.hfc.comcastbusiness.net)
- # [00:06] * Quits: moshee (~moshee@unaffiliated/moshee) (Ping timeout: 252 seconds)
- # [00:06] * Joins: moshee (~moshee@c-24-16-155-210.hsd1.wa.comcast.net)
- # [00:06] * Quits: moshee (~moshee@c-24-16-155-210.hsd1.wa.comcast.net) (Changing host)
- # [00:06] * Joins: moshee (~moshee@unaffiliated/moshee)
- # [00:06] * Quits: symb (~symb@cthulhu.eth4.net) (Quit: You should never underestimate the predictability of stupidity.)
- # [00:07] * Joins: symb (~symb@cthulhu.eth4.net)
- # [00:09] * Joins: skinny_much (skinnymuch@c-69-142-217-73.hsd1.nj.comcast.net)
- # [00:14] <niftylettuce> nice paint cycle tut paul_irish
- # [00:14] <niftylettuce> \o
- # [00:15] * Joins: dassouki (~ahmed@142.167.168.191)
- # [00:17] * Quits: johnkpaul (~johnkpaul@pool-96-250-167-7.nycmny.fios.verizon.net) (Remote host closed the connection)
- # [00:18] * Joins: dmachi1 (~dmachi@pool-71-254-79-164.ronkva.east.verizon.net)
- # [00:18] * Quits: dmachi (~dmachi@pool-71-254-79-164.ronkva.east.verizon.net) (Read error: Connection reset by peer)
- # [00:21] * Joins: rosco_y (~ross@71-13-209-223.dhcp.mrqt.mi.charter.com)
- # [00:23] * Joins: nonge (~nonge@p5B326596.dip.t-dialin.net)
- # [00:32] * Quits: N0va` (~ricki@84.19.108.75) (Ping timeout: 276 seconds)
- # [00:38] * Parts: BrianBlakely (~Adium@out.dentsuamerica.com)
- # [00:44] * Quits: tigerpaw (~tigerpaw@unaffiliated/tigerpaw) (Remote host closed the connection)
- # [00:44] * Quits: sasori (~sasori@acl1-719bts.gw.smartbro.net) (Ping timeout: 260 seconds)
- # [00:53] * Quits: aron_ (~aron@client-86-25-210-1.cht-bng-014.adsl.virginmedia.net) (Quit: Leaving...)
- # [00:55] * Quits: fostah (~kvirc@75-148-34-162-Colorado.hfc.comcastbusiness.net) (Ping timeout: 260 seconds)
- # [00:55] * Joins: timmywil (~timmywil@host-68-169-154-67.WISOLT2.epbfi.com)
- # [01:00] * Joins: sasori (~sasori@125.60.225.165)
- # [01:01] * Joins: aron_ (~aron@client-86-25-210-1.cht-bng-014.adsl.virginmedia.net)
- # [01:04] * Quits: seutje (~steve@drupal.org/user/264148/view) (Ping timeout: 252 seconds)
- # [01:05] * Quits: patcito (~123@190.42.190.18) (Disconnected by services)
- # [01:05] * Joins: patcito_ (~123@190.42.90.43)
- # [01:06] * patcito_ is now known as patcito
- # [01:08] * Quits: plh_ (~plh@209-6-123-224.c3-0.arl-ubr1.sbo-arl.ma.cable.rcn.com) (Quit: always accept cookies)
- # [01:10] * Quits: dcadenas (~dcadenas@r186-48-232-205.dialup.adsl.anteldata.net.uy) (Remote host closed the connection)
- # [01:11] * Quits: CoverSlide (~richard@216.2.249.50) (Quit: Konnichi-Wa Bitches)
- # [01:16] * Quits: FireFly (~firefly@unaffiliated/firefly) (Quit: FireFly)
- # [01:16] * Quits: advocatusdiaboli (~advocatus@193.69.144.162) (Remote host closed the connection)
- # [01:19] * Quits: jamund (~jamund@50-73-38-137-utah.hfc.comcastbusiness.net) (Quit: jamund)
- # [01:26] * Joins: Jango_the_Hutt (~francesco@93-42-173-252.ip87.fastwebnet.it)
- # [01:26] * Quits: hoofed (~hoofed@reiter.plus.com)
- # [01:27] * Joins: BrixSat (529b246d@gateway/web/freenode/ip.82.155.36.109)
- # [01:28] <BrixSat> hello :) what type of controller allows me to make text bold and underline (similar to openoffice word editor)
- # [01:29] <moo-_-> BrixSat: what do you mean by "controller"?
- # [01:29] <BrixSat> controller = input type :p
- # [01:30] <moo-_-> BrixSat: you mean WYSIWYG
- # [01:30] <moo-_-> What you see is what you get?
- # [01:30] <moo-_-> BrixSat: there are several Javascript based rich text editor components
- # [01:30] <moo-_-> most popular being TinyMCE
- # [01:30] <moo-_-> (most old also)
- # [01:30] <BrixSat> yeah kind of but i want to make my own
- # [01:30] <moo-_-> BrixSat: ok
- # [01:30] <moo-_-> it's a real minefield though
- # [01:30] <moo-_-> browsers suck in WYSIWYG
- # [01:31] <BrixSat> i want to know how the core it is done, is it a richtext box input or something?
- # [01:31] <moo-_-> are you sure you want to do it as you might be doing still after one year?
- # [01:31] <moo-_-> BrixSat: contenteditable attribute
- # [01:31] <moo-_-> BrixSat: you can set any HTML element as editable
- # [01:31] <moo-_-> http://html5demos.com/contenteditable
- # [01:31] <BrixSat> hum...
- # [01:31] * BrixSat reading :)
- # [01:32] * Quits: brettgoulder (~textual@173-164-36-90-colorado.hfc.comcastbusiness.net) (Quit: Computer has gone to sleep.)
- # [01:32] <BrixSat> is that only valid for html5?
- # [01:32] <moo-_-> BrixSat: yes
- # [01:33] <moo-_-> BrixSat: if you need to support older browsers...
- # [01:33] <moo-_-> there is documenteditable
- # [01:33] <moo-_-> you need to do it through <iframe>
- # [01:33] * Quits: dassouki (~ahmed@142.167.168.191) (Ping timeout: 276 seconds)
- # [01:33] <moo-_-> a major PITA
- # [01:33] <Raynos> That or use the more recent editing APIs
- # [01:33] <BrixSat> wich api?
- # [01:33] <Raynos> http://dev.w3.org/html5/editing-api/editing.html
- # [01:34] <Raynos> Although I think browser support on that API is very poor
- # [01:34] <BrixSat> but making content editing wont allow me to get the content of the edited text or will it?
- # [01:34] <Raynos> Because it uses `execCommand` and that does some random things in various browsers
- # [01:35] <Raynos> Well of course you need content editable. Or inputs
- # [01:37] <BrixSat> content editable wont alow me (i think) to make a small text editor, at least may not be the right wat
- # [01:37] <BrixSat> *way
- # [01:37] * moo-_- still suggests finding a nice jQuery library or something with fallbacks
- # [01:37] <moo-_-> I once tried writing editor
- # [01:37] <moo-_-> my head exploded on the sixth day
- # [01:37] <BrixSat> and... :D why=
- # [01:38] <moo-_-> the situation with different browseres is "not nice"...
- # [01:38] <moo-_-> let someone else take care of that crap for you
- # [01:38] <moo-_-> and just use something which has been tested and tuned for few years
- # [01:38] <BrixSat> i just want some small things like bold and underline and text size nothing more
- # [01:38] <moo-_-> BrixSat: well
- # [01:39] <moo-_-> what do you think what will happen when user copy-pastes random HTML content to your input...
- # [01:39] <moo-_-> e.g. marginal cases like that :P
- # [01:39] <BrixSat> it cant copy paste :p
- # [01:39] <BrixSat> and the user will end up being probably just me
- # [01:39] * Quits: patcito (~123@190.42.90.43) (Disconnected by services)
- # [01:39] * Joins: patcito_ (~123@190.42.85.50)
- # [01:39] <eighty4> BrixSat: that's not working so good with a query library either
- # [01:39] <moo-_-> ah
- # [01:39] <moo-_-> well
- # [01:39] <moo-_-> that makes things easier
- # [01:39] <BrixSat> moo-_-: do you know ommwritter?
- # [01:40] * Quits: rosco_y (~ross@71-13-209-223.dhcp.mrqt.mi.charter.com) (Remote host closed the connection)
- # [01:40] <moo-_-> even though my nick is moo I don't know the holy syllable of buddha omm
- # [01:40] <moo-_-> :/
- # [01:40] <BrixSat> i kind wana clone it for web
- # [01:40] * Joins: rosco_y (~ross@71-13-209-223.dhcp.mrqt.mi.charter.com)
- # [01:41] * patcito_ is now known as patcito
- # [01:41] * Joins: nimbupani (~divyam@40.208.16.62.customer.cdi.no)
- # [01:41] * nimbupani is now known as divya
- # [01:41] * Joins: ewokchewy1 (~liferay@rrcs-76-79-114-214.west.biz.rr.com)
- # [01:41] * Parts: ewokchewy1 (~liferay@rrcs-76-79-114-214.west.biz.rr.com)
- # [01:42] * Quits: trumpetmic (~trumpetmi@159.182.183.6) (Quit: Leaving.)
- # [01:42] <Raynos> BrixSat: http://learnboost.github.com/texty/
- # [01:42] <BrixSat> =)
- # [01:42] <BrixSat> pretty there :D
- # [01:42] * Joins: tantek (~tantek@188-222-94-75.zone13.bethere.co.uk)
- # [01:42] <Raynos> It really cant do much, tbh
- # [01:43] <Raynos> But it runs on canvas
- # [01:44] <BrixSat> :/ yea kind limited
- # [01:45] <Raynos> It has a CSS programmatic API on it though
- # [01:45] <Raynos> in the source. It just doesnt show you it in the demo
- # [01:50] * Quits: kennyluck (~kennyluck@119.57.31.104) (Quit: kennyluck)
- # [01:50] * Quits: Jango_the_Hutt (~francesco@93-42-173-252.ip87.fastwebnet.it) (Quit: Sto andando via)
- # [01:51] * Quits: WILDsharustar (~sharustar@unaffiliated/sharustar) (Quit: Leaving)
- # [01:54] * Quits: rosco_y (~ross@71-13-209-223.dhcp.mrqt.mi.charter.com) (Remote host closed the connection)
- # [02:00] * Quits: Fyrd (~adeveria@sjfw1-a.adobe.com) (Quit: Fyrd)
- # [02:02] * Quits: BrixSat (529b246d@gateway/web/freenode/ip.82.155.36.109) (Quit: Page closed)
- # [02:03] * Joins: riskish (~riskish@99-20-85-109.lightspeed.rcsntx.sbcglobal.net)
- # [02:05] * Quits: divya (~divyam@40.208.16.62.customer.cdi.no) (Ping timeout: 240 seconds)
- # [02:06] * Joins: nimbupani (~divyam@40.208.16.62.customer.cdi.no)
- # [02:06] * nimbupani is now known as divya
- # [02:06] * Quits: riskish2 (~riskish@99-20-85-109.lightspeed.rcsntx.sbcglobal.net) (Ping timeout: 260 seconds)
- # [02:18] * Quits: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk) (Quit: Leaving.)
- # [02:19] * Joins: OzDave_mbp (~OzDave_mb@27-33-43-79.static.tpgi.com.au)
- # [02:20] * Quits: wookiehangover (~wookiehan@173-8-247-218-Colorado.hfc.comcastbusiness.net) (Read error: Operation timed out)
- # [02:24] * Quits: axelator (~chatzilla@cn-sfo1-natout.cnet.com) (Remote host closed the connection)
- # [02:27] * Joins: dassouki (~ahmed@142.167.190.128)
- # [02:31] * Quits: axos411 (~axos@xdsl-87-79-192-55.netcologne.de) (Ping timeout: 258 seconds)
- # [02:33] * Joins: kennyluck (~kennyluck@119.57.31.103)
- # [02:40] * Quits: dassouki (~ahmed@142.167.190.128) (Ping timeout: 252 seconds)
- # [02:42] * Quits: Jon47 (~jonz@pool-74-96-160-56.washdc.fios.verizon.net) (Quit: Leaving.)
- # [02:43] * Parts: JSManiacs (~Adium@50-0-92-40.dsl.dynamic.sonic.net)
- # [02:45] * Joins: axos411 (~axos@xdsl-78-35-166-80.netcologne.de)
- # [02:47] * Quits: aron_ (~aron@client-86-25-210-1.cht-bng-014.adsl.virginmedia.net) (Quit: Leaving...)
- # [02:58] * Quits: Thasmo (~thasmo@d86-32-70-37.cust.tele2.at)
- # [02:58] * danbeam could've sworn BrixSat said BricksShat, lolol
- # [03:01] * Joins: mike5w3c_ (~MikeSmith@EM114-48-100-150.pool.e-mobile.ne.jp)
- # [03:03] * Quits: Frippe (~Frippe@unaffiliated/frippe) (Quit: Computer has gone to sleep)
- # [03:03] * Joins: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [03:05] * Joins: rosco_y (~ross@71-13-209-223.dhcp.mrqt.mi.charter.com)
- # [03:05] * Quits: mike5w3c (~MikeSmith@EM1-112-160-110.pool.e-mobile.ne.jp) (Ping timeout: 259 seconds)
- # [03:05] * mike5w3c_ is now known as mike5w3c
- # [03:07] * Joins: devongovett (~devongove@209.150.91.66)
- # [03:11] * Joins: dassouki (~ahmed@142.167.190.128)
- # [03:11] * Parts: dassouki (~ahmed@142.167.190.128)
- # [03:11] * Quits: rosco_y (~ross@71-13-209-223.dhcp.mrqt.mi.charter.com) (Remote host closed the connection)
- # [03:16] * Joins: webbd (~dwebb@fedora/dwebb)
- # [03:21] * Quits: divya (~divyam@40.208.16.62.customer.cdi.no) (Remote host closed the connection)
- # [03:23] * Parts: danbeam (~bitlbee@unaffiliated/danbeam) ("lates")
- # [03:31] * Quits: m1chael (m1chael@ip68-9-58-51.ri.ri.cox.net) (Ping timeout: 260 seconds)
- # [03:46] * Quits: devongovett (~devongove@209.150.91.66) (Quit: devongovett)
- # [03:49] * Joins: m1chael (m1chael@ip68-9-58-51.ri.ri.cox.net)
- # [03:49] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Quit: jetienne)
- # [03:51] <sephr> another question like yesterday's: is a valid document.createElement or document.createElementNS call allowed to throw exceptions?
- # [03:53] <sephr> currently, firefox doesn't even let you manipulate XUL documents in JS for outputting to something else
- # [03:53] <sephr> it'd make much more sense to just disable any abilities of XUL elements in content code or make it create unknown elements
- # [04:01] * Quits: benv (~benv@50-0-80-160.dsl.static.sonic.net) (Quit: Leaving...)
- # [04:02] * Quits: m1chael (m1chael@ip68-9-58-51.ri.ri.cox.net) (Ping timeout: 252 seconds)
- # [04:07] * Joins: riskish2 (~riskish@99-20-85-109.lightspeed.rcsntx.sbcglobal.net)
- # [04:11] * Quits: riskish (~riskish@99-20-85-109.lightspeed.rcsntx.sbcglobal.net) (Ping timeout: 260 seconds)
- # [04:11] * Joins: riskish (~riskish@99-20-85-109.lightspeed.rcsntx.sbcglobal.net)
- # [04:12] * Quits: riskish2 (~riskish@99-20-85-109.lightspeed.rcsntx.sbcglobal.net) (Ping timeout: 260 seconds)
- # [04:19] * Joins: slifty (~slifty@c-71-224-130-125.hsd1.nj.comcast.net)
- # [04:21] * Quits: necrodearia (~mizery@unaffiliated/necrodearia) (Ping timeout: 260 seconds)
- # [04:26] * Quits: dilvie (~chatzilla@50-0-92-40.dsl.dynamic.sonic.net) (Ping timeout: 260 seconds)
- # [04:32] * Quits: tylerstalder (~textual@97.65.119.2) (Quit: Computer has gone to sleep.)
- # [04:33] * Quits: patcito (~123@190.42.85.50) (Read error: Connection reset by peer)
- # [04:35] * Joins: necrodearia (~mizery@unaffiliated/necrodearia)
- # [04:36] * Quits: slifty (~slifty@c-71-224-130-125.hsd1.nj.comcast.net) (Ping timeout: 260 seconds)
- # [04:37] * Joins: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [04:37] * Joins: patcito (~123@190.42.85.50)
- # [04:37] * Joins: benv (~benv@99-7-171-41.lightspeed.sntcca.sbcglobal.net)
- # [04:37] * Joins: grantg (~chatzilla@69.88.160.3)
- # [04:38] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Client Quit)
- # [04:45] * Joins: nimbupani (~divyam@40.208.16.62.customer.cdi.no)
- # [04:45] * nimbupani is now known as divya
- # [04:48] * Joins: slifty (~slifty@c-71-224-130-125.hsd1.nj.comcast.net)
- # [04:50] * Quits: dguttman (~dguttman@cpe-75-85-0-213.socal.res.rr.com) (Quit: dguttman)
- # [04:50] * Joins: nimbupani (~divyam@219.241.9.46.customer.cdi.no)
- # [04:51] * Quits: divya (~divyam@40.208.16.62.customer.cdi.no) (Ping timeout: 276 seconds)
- # [05:03] * Quits: grantg (~chatzilla@69.88.160.3) (Read error: No route to host)
- # [05:11] * Quits: shipit (~shipit@204-15-2-155-static.ipnetworksinc.net) (Remote host closed the connection)
- # [05:18] * Quits: dankest (~dankest@ip68-6-85-112.sb.sd.cox.net) (Quit: dankest)
- # [05:33] * Joins: riskish2 (~riskish@99-20-85-109.lightspeed.rcsntx.sbcglobal.net)
- # [05:33] * Quits: axos411 (~axos@xdsl-78-35-166-80.netcologne.de) (Quit: Leaving.)
- # [05:35] * Quits: slifty (~slifty@c-71-224-130-125.hsd1.nj.comcast.net) (Read error: Connection reset by peer)
- # [05:35] * Quits: riskish (~riskish@99-20-85-109.lightspeed.rcsntx.sbcglobal.net) (Ping timeout: 250 seconds)
- # [05:36] * Joins: slifty (~slifty@c-71-224-130-125.hsd1.nj.comcast.net)
- # [05:47] * Joins: sergacity2 (~sergacity@mn-71-55-149-211.dhcp.embarqhsd.net)
- # [05:50] * Joins: nerdfiles2 (~Adium@c-76-31-204-248.hsd1.tx.comcast.net)
- # [05:50] * Parts: nerdfiles2 (~Adium@c-76-31-204-248.hsd1.tx.comcast.net)
- # [05:55] * Joins: nonge_ (~nonge@p5B326896.dip.t-dialin.net)
- # [05:59] * Quits: nonge (~nonge@p5B326596.dip.t-dialin.net) (Ping timeout: 240 seconds)
- # [06:07] * Joins: Jon47 (~jonz@pool-74-96-160-56.washdc.fios.verizon.net)
- # [06:11] * Joins: dankest (~dankest@ip98-171-163-189.sb.sd.cox.net)
- # [06:13] * Quits: dankest (~dankest@ip98-171-163-189.sb.sd.cox.net) (Client Quit)
- # [06:15] * Quits: slifty (~slifty@c-71-224-130-125.hsd1.nj.comcast.net) (Ping timeout: 260 seconds)
- # [06:24] * Quits: moshee (~moshee@unaffiliated/moshee) (Ping timeout: 260 seconds)
- # [06:24] * Joins: moshee (~moshee@c-24-16-155-210.hsd1.wa.comcast.net)
- # [06:24] * Quits: moshee (~moshee@c-24-16-155-210.hsd1.wa.comcast.net) (Changing host)
- # [06:24] * Joins: moshee (~moshee@unaffiliated/moshee)
- # [06:25] * Quits: Jon47 (~jonz@pool-74-96-160-56.washdc.fios.verizon.net) (Quit: Leaving.)
- # [06:27] * Joins: wookiehangover (~wookiehan@c-98-245-45-244.hsd1.co.comcast.net)
- # [06:35] * Quits: benv (~benv@99-7-171-41.lightspeed.sntcca.sbcglobal.net) (Quit: Bye!)
- # [06:36] * Quits: wookiehangover (~wookiehan@c-98-245-45-244.hsd1.co.comcast.net) (Quit: Leaving...)
- # [06:36] * Joins: benv (~benv@99-7-171-41.lightspeed.sntcca.sbcglobal.net)
- # [06:53] * Joins: wookiehangover (~wookiehan@c-98-245-45-244.hsd1.co.comcast.net)
- # [06:58] * Quits: sergacity2 (~sergacity@mn-71-55-149-211.dhcp.embarqhsd.net) (Ping timeout: 252 seconds)
- # [06:58] * Joins: dr0id (~andy@unaffiliated/dr0id)
- # [06:58] * Joins: slifty (~slifty@c-71-224-130-125.hsd1.nj.comcast.net)
- # [07:14] * Joins: Jon47 (~jonz@pool-74-96-160-56.washdc.fios.verizon.net)
- # [07:16] * Quits: Jon47 (~jonz@pool-74-96-160-56.washdc.fios.verizon.net) (Client Quit)
- # [07:21] * Joins: riskish (~riskish@99.20.85.109)
- # [07:24] * Quits: riskish2 (~riskish@99-20-85-109.lightspeed.rcsntx.sbcglobal.net) (Ping timeout: 260 seconds)
- # [07:28] * Joins: wookiehang0ver (~wookiehan@c-98-245-45-244.hsd1.co.comcast.net)
- # [07:32] * Quits: wookiehangover (~wookiehan@c-98-245-45-244.hsd1.co.comcast.net) (Ping timeout: 276 seconds)
- # [07:36] * Quits: wookiehang0ver (~wookiehan@c-98-245-45-244.hsd1.co.comcast.net) (Quit: Leaving...)
- # [07:42] * Joins: dilvie (~chatzilla@c-107-3-151-105.hsd1.ca.comcast.net)
- # [07:52] * Joins: Pula (~Pula@76.91.94.199)
- # [07:53] * Quits: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net) (Ping timeout: 260 seconds)
- # [07:55] * Quits: Pula (~Pula@76.91.94.199) (Quit: Tchau)
- # [07:59] * Joins: seutje (~steve@drupal.org/user/264148/view)
- # [08:02] * Joins: jeffszusz (~jeffszusz@d24-57-194-149.home.cgocable.net)
- # [08:02] * Joins: SaadIbrahim (~mslfreak@115.186.122.182)
- # [08:02] * Quits: SaadIbrahim (~mslfreak@115.186.122.182) (Changing host)
- # [08:02] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
- # [08:04] * Joins: topeak (~topeak@118.186.129.184)
- # [08:05] * Quits: topeak (~topeak@118.186.129.184) (Max SendQ exceeded)
- # [08:05] * Joins: topeak (~topeak@118.186.129.184)
- # [08:07] * Quits: benv (~benv@99-7-171-41.lightspeed.sntcca.sbcglobal.net) (Quit: Leaving...)
- # [08:07] * Joins: Jon47 (~jonz@pool-74-96-160-56.washdc.fios.verizon.net)
- # [08:08] * Quits: skinny_much (skinnymuch@c-69-142-217-73.hsd1.nj.comcast.net)
- # [08:09] * Joins: Pula (~Pula@76.91.94.199)
- # [08:09] * Joins: skinny_much (skinnymuch@c-69-142-217-73.hsd1.nj.comcast.net)
- # [08:10] * Quits: seutje (~steve@drupal.org/user/264148/view) (Ping timeout: 276 seconds)
- # [08:13] * Quits: skinny_much (skinnymuch@c-69-142-217-73.hsd1.nj.comcast.net) (Client Quit)
- # [08:20] * Joins: amerine (~mturner@bc171197.bendcable.com)
- # [08:25] * Quits: Jon47 (~jonz@pool-74-96-160-56.washdc.fios.verizon.net) (Quit: Leaving.)
- # [08:27] * Joins: Jackneill (~Jackneill@unaffiliated/jackneill)
- # [08:31] * Joins: simenbrekken (~simenbrek@c85-196-101-98.static.sdsl.no)
- # [08:38] * Joins: benv (~benv@99-7-171-41.lightspeed.sntcca.sbcglobal.net)
- # [08:42] * Joins: seutje (~steve@drupal.org/user/264148/view)
- # [08:56] * Quits: jeffszusz (~jeffszusz@d24-57-194-149.home.cgocable.net) (Remote host closed the connection)
- # [08:58] * Joins: kollapse (~kollaps@unaffiliated/kollapse)
- # [09:04] * Quits: mike5w3c (~MikeSmith@EM114-48-100-150.pool.e-mobile.ne.jp) (Ping timeout: 260 seconds)
- # [09:09] * Joins: mike5w3c (~MikeSmith@EM114-48-202-150.pool.e-mobile.ne.jp)
- # [09:13] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 250 seconds)
- # [09:14] * Joins: SaadIbrahim (~mslfreak@115.186.122.182)
- # [09:14] * Quits: SaadIbrahim (~mslfreak@115.186.122.182) (Changing host)
- # [09:14] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
- # [09:18] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: Nice Scotty, now beam my clothes up too!)
- # [09:18] * Joins: riskish2 (~riskish@99-20-85-109.lightspeed.rcsntx.sbcglobal.net)
- # [09:19] * Joins: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [09:20] * Quits: dr0id (~andy@unaffiliated/dr0id) (Quit: Leaving.)
- # [09:21] * Quits: moshee (~moshee@unaffiliated/moshee) (Ping timeout: 240 seconds)
- # [09:21] * Joins: moshee (~moshee@c-24-16-155-210.hsd1.wa.comcast.net)
- # [09:21] * Quits: moshee (~moshee@c-24-16-155-210.hsd1.wa.comcast.net) (Changing host)
- # [09:21] * Joins: moshee (~moshee@unaffiliated/moshee)
- # [09:22] * Quits: riskish (~riskish@99.20.85.109) (Ping timeout: 240 seconds)
- # [09:36] * Quits: topeak (~topeak@118.186.129.184) (Quit: Leaving)
- # [09:39] * Joins: topeak (~topeak@118.186.129.184)
- # [09:40] * Quits: topeak (~topeak@118.186.129.184) (Max SendQ exceeded)
- # [09:41] * Joins: topeak (~topeak@118.186.129.184)
- # [09:42] * Quits: Jackneill (~Jackneill@unaffiliated/jackneill) (Ping timeout: 260 seconds)
- # [09:45] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 250 seconds)
- # [09:56] * Quits: chrislorenz (~chrislore@rrcs-24-43-22-34.west.biz.rr.com) (Quit: Computer has gone to sleep.)
- # [09:56] * Quits: OzDave_mbp (~OzDave_mb@27-33-43-79.static.tpgi.com.au) (Quit: -=[. _ .]=- waves bye..)
- # [09:59] * Joins: pinage404 (~Pinage404@APuteaux-651-1-288-40.w90-44.abo.wanadoo.fr)
- # [10:06] * Joins: jaequery (~Jae@cpe-76-166-250-125.socal.res.rr.com)
- # [10:10] * Joins: SaadIbrahim (~mslfreak@115.186.122.182)
- # [10:10] * Quits: SaadIbrahim (~mslfreak@115.186.122.182) (Changing host)
- # [10:10] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
- # [10:11] * Quits: seutje (~steve@drupal.org/user/264148/view) (Ping timeout: 252 seconds)
- # [10:11] * Joins: dr0id (~andy@unaffiliated/dr0id)
- # [10:13] * Joins: Taftse (~Taftse@unaffiliated/taftse)
- # [10:14] * Quits: amerine (~mturner@bc171197.bendcable.com) (Quit: Sleep)
- # [10:18] * Quits: LongBeach (~mike@AFontenayssB-152-1-64-200.w82-121.abo.wanadoo.fr)
- # [10:22] * Quits: slifty (~slifty@c-71-224-130-125.hsd1.nj.comcast.net) (Ping timeout: 276 seconds)
- # [10:24] * Joins: BigKing (~BigKing@p5DD68376.dip0.t-ipconnect.de)
- # [10:27] * Quits: jacine (~jacine@drupal.org/user/88931/view) (Quit: buh bye :))
- # [10:33] * Joins: Jackneill (~Jackneill@unaffiliated/jackneill)
- # [10:37] * Joins: simplicity- (~simplicit@unaffiliated/simplicity-)
- # [10:44] * Quits: topeak (~topeak@118.186.129.184) (Ping timeout: 250 seconds)
- # [10:44] * Joins: shipit (~shipit@c-67-180-23-104.hsd1.ca.comcast.net)
- # [10:46] * Quits: simplicity- (~simplicit@unaffiliated/simplicity-) (Quit: ...)
- # [10:47] * Quits: tantek (~tantek@188-222-94-75.zone13.bethere.co.uk) (Quit: tantek)
- # [10:47] * Quits: simenbrekken (~simenbrek@c85-196-101-98.static.sdsl.no) (Quit: Computer has gone to sleep.)
- # [10:47] * Joins: OzDave_mbp (~OzDave_mb@27-33-43-79.static.tpgi.com.au)
- # [10:59] * Quits: shipit (~shipit@c-67-180-23-104.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [11:00] * Quits: patcito (~123@190.42.85.50) (Remote host closed the connection)
- # [11:01] <moo-_-> someone suggest nice HTML5 site template?
- # [11:01] <moo-_-> layout I mean
- # [11:01] * moo-_- needs to create one page static HTML site
- # [11:02] * Quits: jaequery (~Jae@cpe-76-166-250-125.socal.res.rr.com) (Quit: Leaving)
- # [11:02] <OzDave_mbp> the boilerplate?
- # [11:02] <OzDave_mbp> http://html5boilerplate.com/
- # [11:09] * Quits: Pula (~Pula@76.91.94.199) (Quit: Tchau)
- # [11:14] * Joins: bot-t1 (~bot-t@unaffiliated/temp01/bot/bot-t)
- # [11:14] * Quits: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t) (Disconnected by services)
- # [11:14] * Quits: bot-t1 (~bot-t@unaffiliated/temp01/bot/bot-t) (Excess Flood)
- # [11:14] <moo-_-> OzDave_mbp: no, I think boilerplate is just bunch of Javascripts
- # [11:14] <OzDave_mbp> derp
- # [11:14] * Joins: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t)
- # [11:20] * Quits: replore_ (~replore@ntkngw133234.kngw.nt.ftth.ppp.infoweb.ne.jp) (Remote host closed the connection)
- # [11:21] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Quit: jetienne)
- # [11:27] * Joins: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [11:30] * Joins: Frippe (~Frippe@unaffiliated/frippe)
- # [11:34] * Joins: zatan_ (~zatan@5ad2ed88.bb.sky.com)
- # [11:36] * Joins: FireFly (~firefly@unaffiliated/firefly)
- # [11:41] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Quit: jetienne)
- # [11:53] * Joins: davidwalsh (~davidwals@80.168.115.22)
- # [11:54] * Joins: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl)
- # [12:05] * Joins: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [12:14] * Quits: kollapse (~kollaps@unaffiliated/kollapse) (Read error: Operation timed out)
- # [12:15] * Quits: moshee (~moshee@unaffiliated/moshee) (Ping timeout: 276 seconds)
- # [12:16] * Joins: moshee (~moshee@c-24-16-155-210.hsd1.wa.comcast.net)
- # [12:16] * Quits: moshee (~moshee@c-24-16-155-210.hsd1.wa.comcast.net) (Changing host)
- # [12:16] * Joins: moshee (~moshee@unaffiliated/moshee)
- # [12:18] * Joins: dmachi (~dmachi@pool-71-254-79-164.ronkva.east.verizon.net)
- # [12:18] * Quits: dmachi1 (~dmachi@pool-71-254-79-164.ronkva.east.verizon.net) (Read error: Connection reset by peer)
- # [12:29] * Quits: BigKing (~BigKing@p5DD68376.dip0.t-ipconnect.de) (Remote host closed the connection)
- # [12:40] * Joins: miketaylr (~miketaylr@77.40.224.114)
- # [12:41] * Quits: Taftse (~Taftse@unaffiliated/taftse) (Ping timeout: 276 seconds)
- # [12:43] * Quits: doritoDan (~doritoDan@unaffiliated/doritodan) (Quit: I love web and I love doritos. Coincidence? You decide.)
- # [12:55] * Joins: N0va` (~ricki@84.19.108.75)
- # [12:56] * Quits: skyfaller (~skyfaller@wikipedia/Skyfaller) (Remote host closed the connection)
- # [13:06] * Joins: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk)
- # [13:09] * Quits: necrodearia (~mizery@unaffiliated/necrodearia) (Ping timeout: 260 seconds)
- # [13:14] * Joins: chipnt (~ciprian@paris-18.progdev.fr)
- # [13:15] * pinage404 is now known as pinage404_a_faim
- # [13:19] * Quits: temp02 (~temp01@unaffiliated/temp01) (Ping timeout: 250 seconds)
- # [13:20] * Joins: bot-t1 (~bot-t@unaffiliated/temp01/bot/bot-t)
- # [13:20] * Quits: bot-t1 (~bot-t@unaffiliated/temp01/bot/bot-t) (Excess Flood)
- # [13:20] * Quits: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t) (Disconnected by services)
- # [13:20] * Joins: bot-t (~bot-t@unaffiliated/temp01/bot/bot-t)
- # [13:22] * Joins: temp01 (~temp01@unaffiliated/temp01)
- # [13:22] * Joins: necrodearia (~mizery@unaffiliated/necrodearia)
- # [13:25] * Quits: henrikkok (~henrikkok@3306ds3-amb.0.fullrate.dk) (Quit: Leaving.)
- # [13:26] * Quits: kennyluck (~kennyluck@119.57.31.103) (Quit: kennyluck)
- # [13:27] * Quits: zatan_ (~zatan@5ad2ed88.bb.sky.com) (Ping timeout: 260 seconds)
- # [13:29] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Quit: jetienne)
- # [13:33] <monteslu> it would be nice if the google html5 slide deck waiting to load an iframe until the article was trainisition to
- # [13:39] * Joins: skylamer` (cgskylamer@78.90.213.55)
- # [13:45] * Quits: skylamer` (cgskylamer@78.90.213.55)
- # [13:47] * Joins: tantek (~tantek@188.28.137.77.threembb.co.uk)
- # [13:51] * Joins: hoofed (~hoofed@reiter.plus.com)
- # [13:55] * Joins: boogyman (~boogy@cpe-72-184-194-26.tampabay.res.rr.com)
- # [13:58] * Joins: m1chael (m1chael@ip68-9-58-51.ri.ri.cox.net)
- # [14:01] * Joins: robhawkes (~robhawkes@188-220-16-96.dsl.cnl.uk.net)
- # [14:02] * Quits: miketaylr (~miketaylr@77.40.224.114) (Read error: Connection reset by peer)
- # [14:02] * Joins: miketayl_r (~miketaylr@77.40.224.114)
- # [14:06] * Quits: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl) (Quit: Ik ga weg)
- # [14:07] * Quits: davidwalsh (~davidwals@80.168.115.22) (Quit: davidwalsh)
- # [14:11] * Joins: miketaylr (~miketaylr@77.40.224.114)
- # [14:11] * Quits: miketaylr (~miketaylr@77.40.224.114) (Remote host closed the connection)
- # [14:12] * Quits: miketayl_r (~miketaylr@77.40.224.114) (Read error: Connection reset by peer)
- # [14:16] * pinage404_a_faim is now known as pinage404afkmiam
- # [14:17] * Joins: cocoadaemon (~cocoadaem@2a01:e35:8a99:e90:20d:93ff:fe3b:868c)
- # [14:18] * Joins: Frippe_ (~Frippe@m77-219-195-17.cust.tele2.se)
- # [14:20] * Quits: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net) (Quit: dgathright)
- # [14:20] * Quits: Frippe (~Frippe@unaffiliated/frippe) (Ping timeout: 240 seconds)
- # [14:23] * Joins: kennyluck (~kennyluck@119.57.31.111)
- # [14:28] * Frippe_ is now known as Frippe
- # [14:28] * Joins: aron_ (~aron@host86-150-216-51.range86-150.btcentralplus.com)
- # [14:30] * Quits: tantek (~tantek@188.28.137.77.threembb.co.uk) (Quit: tantek)
- # [14:30] * Quits: aron_ (~aron@host86-150-216-51.range86-150.btcentralplus.com) (Client Quit)
- # [14:30] * Joins: miketaylr (~miketaylr@77.40.224.114)
- # [14:38] * Joins: Jayflux (~jay_knows@cpc1-dudl6-0-0-cust197.wolv.cable.virginmedia.com)
- # [14:39] * Quits: miketaylr (~miketaylr@77.40.224.114) (Read error: Connection reset by peer)
- # [14:39] * Joins: miketaylr (~miketaylr@77.40.224.114)
- # [14:42] * Joins: nerdfiles (~Adium@c-76-31-204-248.hsd1.tx.comcast.net)
- # [14:43] * Parts: nerdfiles (~Adium@c-76-31-204-248.hsd1.tx.comcast.net)
- # [14:43] * Joins: simplicity- (~simplicit@unaffiliated/simplicity-)
- # [14:45] * Quits: obert- (~obert@host70-207-dynamic.1-87-r.retail.telecomitalia.it) (Ping timeout: 252 seconds)
- # [14:46] * Joins: obert- (~obert@host70-207-dynamic.1-87-r.retail.telecomitalia.it)
- # [14:49] * Quits: hoofed (~hoofed@reiter.plus.com)
- # [14:50] * Joins: mrsrikanth (~mrsrikant@59.92.77.64)
- # [14:51] * Joins: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl)
- # [14:52] * obert- is now known as bfdsbgfdbgfdbgfd
- # [15:01] * Quits: OzDave_mbp (~OzDave_mb@27-33-43-79.static.tpgi.com.au) (Quit: -=[. _ .]=- waves bye..)
- # [15:01] * Joins: mike5w3c_ (~MikeSmith@EM1-113-200-83.pool.e-mobile.ne.jp)
- # [15:04] * Joins: slifty (~slifty@c-71-224-130-125.hsd1.nj.comcast.net)
- # [15:05] * Quits: mike5w3c (~MikeSmith@EM114-48-202-150.pool.e-mobile.ne.jp) (Ping timeout: 260 seconds)
- # [15:05] * mike5w3c_ is now known as mike5w3c
- # [15:08] * Joins: Taftse (~Taftse@unaffiliated/taftse)
- # [15:09] * Joins: buribu (~buribu@unaffiliated/buribu)
- # [15:09] * Joins: buribux (~buribu@unaffiliated/buribux)
- # [15:09] * pinage404afkmiam is now known as pinage404
- # [15:10] * Quits: buribux (~buribu@unaffiliated/buribux) (Client Quit)
- # [15:12] * Quits: miketaylr (~miketaylr@77.40.224.114) (Read error: Connection reset by peer)
- # [15:17] * Joins: riskish (~riskish@99-20-85-109.lightspeed.rcsntx.sbcglobal.net)
- # [15:20] * Quits: riskish2 (~riskish@99-20-85-109.lightspeed.rcsntx.sbcglobal.net) (Ping timeout: 276 seconds)
- # [15:21] * Joins: riskish2 (~riskish@99.20.85.109)
- # [15:22] * Quits: riskish (~riskish@99-20-85-109.lightspeed.rcsntx.sbcglobal.net) (Ping timeout: 252 seconds)
- # [15:25] * Quits: Taftse (~Taftse@unaffiliated/taftse) (Ping timeout: 260 seconds)
- # [15:30] * Quits: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl) (Quit: Ik ga weg)
- # [15:30] * Joins: SevenMachines (~SevenMach@94-193-93-142.zone7.bethere.co.uk)
- # [15:31] * Joins: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [15:37] * Quits: SevenMachines (~SevenMach@94-193-93-142.zone7.bethere.co.uk) (Ping timeout: 240 seconds)
- # [15:37] * Joins: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl)
- # [15:42] * Joins: Frippe_ (~Frippe@m77-219-177-1.cust.tele2.se)
- # [15:45] * Quits: Frippe (~Frippe@m77-219-195-17.cust.tele2.se) (Ping timeout: 276 seconds)
- # [15:46] * Joins: asher^ (asher@unaffiliated/asher/x-9381395)
- # [15:46] <asher^> o/
- # [15:46] * Quits: boogyman (~boogy@cpe-72-184-194-26.tampabay.res.rr.com) (Quit: ChatZilla 0.9.87 [Firefox 6.0.2/20110902133214])
- # [15:48] * Quits: m1chael (m1chael@ip68-9-58-51.ri.ri.cox.net) (Ping timeout: 260 seconds)
- # [15:50] * Joins: SevenMachines (~SevenMach@anon-19-153.ipredate.net)
- # [15:54] * Quits: boaz (~boaz@li326-230.members.linode.com) (Excess Flood)
- # [15:54] <dr0id> \o
- # [15:55] * Joins: boaz (~boaz@li326-230.members.linode.com)
- # [15:56] * Quits: Frippe_ (~Frippe@m77-219-177-1.cust.tele2.se) (Ping timeout: 260 seconds)
- # [15:56] <pinage404> o/ dr0id
- # [15:57] * Joins: topeak (~topeak@118.186.129.184)
- # [15:58] * Quits: SevenMachines (~SevenMach@anon-19-153.ipredate.net) (Quit: Ex-Chat)
- # [15:58] * Joins: riskish (~riskish@99-20-85-109.lightspeed.rcsntx.sbcglobal.net)
- # [15:59] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Quit: jetienne)
- # [16:02] * Quits: riskish2 (~riskish@99.20.85.109) (Ping timeout: 260 seconds)
- # [16:04] * Joins: Frippe (~Frippe@unaffiliated/frippe)
- # [16:06] * Quits: Frippe (~Frippe@unaffiliated/frippe) (Client Quit)
- # [16:06] * Joins: Frippe (~Frippe@unaffiliated/frippe)
- # [16:08] * Joins: SevenMachines (~SevenMach@anon-19-153.ipredate.net)
- # [16:08] * Joins: tantek (~tantek@host86-185-234-101.range86-185.btcentralplus.com)
- # [16:15] * Quits: tantek (~tantek@host86-185-234-101.range86-185.btcentralplus.com) (Quit: tantek)
- # [16:19] * Joins: riskish2 (~riskish@99-20-85-109.lightspeed.rcsntx.sbcglobal.net)
- # [16:20] * Quits: chipnt (~ciprian@paris-18.progdev.fr) (Ping timeout: 260 seconds)
- # [16:22] * Quits: simplicity- (~simplicit@unaffiliated/simplicity-) (Quit: ...)
- # [16:22] * Joins: nerdfiles (~Adium@ppp-70-248-189-25.dsl.hstntx.swbell.net)
- # [16:23] * Quits: riskish (~riskish@99-20-85-109.lightspeed.rcsntx.sbcglobal.net) (Ping timeout: 260 seconds)
- # [16:25] * Joins: axos411 (~axos@xdsl-78-35-178-118.netcologne.de)
- # [16:30] * Joins: Kevin (~kevin@pool-71-184-184-229.bstnma.east.verizon.net)
- # [16:32] <asher^> hmm. html5 validation doesnt seem to work for email. something like abc@abc comes up as ok
- # [16:36] * Quits: chovy (~chovy@108-194-42-92.lightspeed.mtryca.sbcglobal.net) (Ping timeout: 246 seconds)
- # [16:36] * Joins: tantek (~tantek@188.28.137.77.threembb.co.uk)
- # [16:38] * Joins: chovy (~chovy@108-194-42-92.lightspeed.mtryca.sbcglobal.net)
- # [16:40] * Joins: frankstallone (~frankstal@pool-74-105-112-45.nwrknj.fios.verizon.net)
- # [16:41] <frankstallone> Anybody know if there is a specific HTML5 Boilerplate channel?
- # [16:43] * Quits: dr0id (~andy@unaffiliated/dr0id) (Quit: Leaving.)
- # [16:43] * Joins: notbrent (~notbrent@186.85.88.56)
- # [16:44] * Quits: mrsrikanth (~mrsrikant@59.92.77.64) (Quit: Leaving)
- # [16:45] <frankstallone> This seems to be the channel listed on the Getting Involved page anyway http://html5boilerplate.com/docs/Get-Involved/
- # [16:45] <moo-_-> asher^: that's ok email
- # [16:45] * Frippe is now known as Frippe_away
- # [16:46] <moo-_-> abc is a valid domain name
- # [16:46] <moo-_-> e.g. http://io/
- # [16:47] <frankstallone> Question: For the html5 boilerplate, the file.exclude will not exclude my Espresso file. It is xxx.esproj and if I use that exact file name or *.esproj it still doesn't ignore it. Any idea's why? Google not providing any help. Syntax looks legit.
- # [16:51] * Joins: m1chael (m1chael@ip68-9-58-51.ri.ri.cox.net)
- # [16:51] * Joins: DoubleA (~Adium@cpe-98-14-243-7.nyc.res.rr.com)
- # [16:51] * Parts: nerdfiles (~Adium@ppp-70-248-189-25.dsl.hstntx.swbell.net)
- # [16:51] * Parts: DoubleA (~Adium@cpe-98-14-243-7.nyc.res.rr.com)
- # [16:54] * Quits: necrodearia (~mizery@unaffiliated/necrodearia) (Ping timeout: 260 seconds)
- # [16:57] <nimbupani> frankstallone: this is good
- # [16:57] <frankstallone> Not working
- # [16:57] <frankstallone> Been playing with it all morning
- # [16:57] <nimbupani> errr i mean this channel is good
- # [16:57] <nimbupani> frankstallone: do u mean gitignore?
- # [16:57] <frankstallone> filename.esproj and *.esproj do not seem to be ignored by the build script
- # [16:58] <frankstallone> I don't think so... I am not committing -- just working on a project and hitting ant minify
- # [16:58] <nimbupani> o u mean exclude from being copied over.
- # [16:59] * Quits: axos411 (~axos@xdsl-78-35-178-118.netcologne.de) (Ping timeout: 252 seconds)
- # [16:59] <frankstallone> Here is what I got, "file.exclude = user.edwinjarvis.espressostorage, Material-Workshop.esproj, !project-files/**, Project.espressostorage " everything works except the .esproj file
- # [16:59] <nimbupani> well submit a bug ticket frankstallone and we can have people look at it
- # [16:59] <frankstallone> I can do that =)
- # [17:02] * Joins: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [17:04] * Joins: riskish (~riskish@99-20-85-109.lightspeed.rcsntx.sbcglobal.net)
- # [17:05] * Joins: Jonz (~Adium@pool-74-96-160-56.washdc.fios.verizon.net)
- # [17:05] * Joins: Thasmo (~thasmo@d86-32-70-37.cust.tele2.at)
- # [17:05] * Joins: skyfaller (~skyfaller@wikipedia/Skyfaller)
- # [17:05] * Quits: skyfaller (~skyfaller@wikipedia/Skyfaller) (Read error: Connection reset by peer)
- # [17:07] <frankstallone> Issue reported -- thanks @nimbupani
- # [17:07] <nimbupani> awes frankstallone
- # [17:07] * nimbupani is now known as divya
- # [17:07] * Joins: necrodearia (~mizery@unaffiliated/necrodearia)
- # [17:08] * Quits: riskish2 (~riskish@99-20-85-109.lightspeed.rcsntx.sbcglobal.net) (Ping timeout: 260 seconds)
- # [17:09] * Joins: skyfalle_ (~skyfaller@rrcs-24-103-99-21.nyc.biz.rr.com)
- # [17:13] <frankstallone> I also noticed that 'ant minify' creates an intermediate folder that it doesn't delete (possible intentionally) but most importantly the minified .html files have style.css not the minified .css file so therefore none of the css shows up in /publish/index.html -- interesting
- # [17:13] * Joins: sergacity2 (~sergacity@mn-71-55-149-211.dhcp.embarqhsd.net)
- # [17:15] * Quits: SevenMachines (~SevenMach@anon-19-153.ipredate.net) (Remote host closed the connection)
- # [17:18] * Quits: boaz (~boaz@li326-230.members.linode.com) (Excess Flood)
- # [17:18] * Joins: boaz (~boaz@li326-230.members.linode.com)
- # [17:20] * Joins: SevenMachines (~SevenMach@94-193-93-142.zone7.bethere.co.uk)
- # [17:22] * Quits: bfdsbgfdbgfdbgfd (~obert@host70-207-dynamic.1-87-r.retail.telecomitalia.it)
- # [17:23] * Quits: SevenMachines (~SevenMach@94-193-93-142.zone7.bethere.co.uk) (Remote host closed the connection)
- # [17:30] * Joins: miketaylr (~miketaylr@77.40.224.114)
- # [17:38] * Joins: simplicity- (~simplicit@unaffiliated/simplicity-)
- # [17:40] * Joins: axos411 (~axos@xdsl-78-35-178-118.netcologne.de)
- # [17:40] * Joins: ericduran (~eric@ool-ad03d215.dyn.optonline.net)
- # [17:45] * Joins: replore (~replore@ntkngw133234.kngw.nt.ftth.ppp.infoweb.ne.jp)
- # [17:56] * Quits: miketaylr (~miketaylr@77.40.224.114) (Read error: Connection reset by peer)
- # [17:58] <boaz> anyone in here done much with html5 draggable?
- # [17:59] <boaz> ... specifically having trouble using it on <video>
- # [18:02] * Parts: asher^ (asher@unaffiliated/asher/x-9381395)
- # [18:02] * Quits: axos411 (~axos@xdsl-78-35-178-118.netcologne.de) (Read error: Operation timed out)
- # [18:08] * Joins: Houl (~Miranda@unaffiliated/houl)
- # [18:12] * Quits: robhawkes (~robhawkes@188-220-16-96.dsl.cnl.uk.net) (Quit: Linkinus - http://linkinus.com)
- # [18:14] * Joins: riskish2 (~riskish@99-20-85-109.lightspeed.rcsntx.sbcglobal.net)
- # [18:14] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # [18:16] * Joins: asher^ (asher@unaffiliated/asher/x-9381395)
- # [18:16] * Quits: riskish (~riskish@99-20-85-109.lightspeed.rcsntx.sbcglobal.net) (Ping timeout: 240 seconds)
- # [18:20] <asher^> with html5 form validation, is there any way to build in matching passwords in two fields, or will extra js still be needed for that?
- # [18:25] * Quits: slifty (~slifty@c-71-224-130-125.hsd1.nj.comcast.net) (Quit: My computer is lazy and fell asleep)
- # [18:27] <Pomax> <label> Password <input type="password" name="password" minlength="4" /> </label>
- # [18:27] <Pomax> <label> Password check <input type="password" name="check" data-equals="password" /> </label>
- # [18:27] * Joins: slifty (~slifty@c-71-224-130-125.hsd1.nj.comcast.net)
- # [18:27] <Pomax> the data-equals attribute is responsible for making the magic happen
- # [18:28] <Pomax> sorry, looking at a jquery implementation, disregard
- # [18:28] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Quit: jetienne)
- # [18:31] * Joins: devilswings7 (~unknown@24-151-96-232.dhcp.nwtn.ct.charter.com)
- # [18:31] * Frippe_away is now known as Frippe
- # [18:32] * Quits: phrearch (~phrearch_@5ED42DE2.cm-7-5a.dynamic.ziggo.nl) (Remote host closed the connection)
- # [18:32] * skyfalle_ is now known as skyfaller
- # [18:32] * Quits: skyfaller (~skyfaller@rrcs-24-103-99-21.nyc.biz.rr.com) (Changing host)
- # [18:32] * Joins: skyfaller (~skyfaller@wikipedia/Skyfaller)
- # [18:35] * Quits: m1chael (m1chael@ip68-9-58-51.ri.ri.cox.net) (Ping timeout: 276 seconds)
- # [18:37] * Quits: slifty (~slifty@c-71-224-130-125.hsd1.nj.comcast.net) (Quit: My computer is lazy and fell asleep)
- # [18:37] <asher^> Pomax minlength is jquery too, right?
- # [18:38] * Quits: dmachi (~dmachi@pool-71-254-79-164.ronkva.east.verizon.net) (Ping timeout: 252 seconds)
- # [18:39] * Joins: jamund (~jamund@174-23-45-203.slkc.qwest.net)
- # [18:40] * Joins: axos411 (~axos@xdsl-78-35-178-118.netcologne.de)
- # [18:40] <asher^> hmm, is there a way to manually set the attribute of a form element as invalid?
- # [18:43] * Joins: dmachi (~dmachi@pool-71-254-77-25.ronkva.east.verizon.net)
- # [18:44] * Joins: m1chael (~m1chael@ip68-9-58-51.ri.ri.cox.net)
- # [18:50] * Joins: hoofed (~hoofed@reiter.plus.com)
- # [18:50] * Quits: dmachi (~dmachi@pool-71-254-77-25.ronkva.east.verizon.net) (Ping timeout: 260 seconds)
- # [18:50] * Joins: LongBeach (~mike@AFontenayssB-152-1-64-200.w82-121.abo.wanadoo.fr)
- # [18:50] * Quits: LongBeach (~mike@AFontenayssB-152-1-64-200.w82-121.abo.wanadoo.fr) (Excess Flood)
- # [18:50] * Quits: m1chael (~m1chael@ip68-9-58-51.ri.ri.cox.net) (Ping timeout: 260 seconds)
- # [18:51] * Quits: jamund (~jamund@174-23-45-203.slkc.qwest.net) (Quit: jamund)
- # [18:51] * Joins: SevenMachines (~SevenMach@anon-86-153.ipredate.net)
- # [18:54] * Joins: RLa (~RL@infdot.com)
- # [18:58] * Quits: axos411 (~axos@xdsl-78-35-178-118.netcologne.de) (Ping timeout: 276 seconds)
- # [19:00] * Joins: davidwalsh (~davidwals@80.168.115.22)
- # [19:02] * Joins: devongovett (~devongove@209.150.91.66)
- # [19:04] * Quits: devongovett (~devongove@209.150.91.66) (Client Quit)
- # [19:05] * Joins: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [19:07] * Joins: slifty (~slifty@c-71-224-130-125.hsd1.nj.comcast.net)
- # [19:07] * Joins: simenbrekken (~simenbrek@c85-196-101-98.static.sdsl.no)
- # [19:08] * Quits: SevenMachines (~SevenMach@anon-86-153.ipredate.net) (Ping timeout: 252 seconds)
- # [19:08] * Joins: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net)
- # [19:12] * Joins: m1chael (m1chael@ip68-9-58-51.ri.ri.cox.net)
- # [19:13] * Quits: slifty (~slifty@c-71-224-130-125.hsd1.nj.comcast.net) (Quit: My computer is lazy and fell asleep)
- # [19:14] * Joins: dmachi (~dmachi@pool-72-66-196-196.ronkva.east.verizon.net)
- # [19:14] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Quit: jetienne)
- # [19:14] * Quits: jochen__ (~jochen@nat/google/x-xjtdvjjszovmpzgr) (Remote host closed the connection)
- # [19:14] * Joins: jochen__ (jochen@nat/google/x-lvcbdhcntxhfxral)
- # [19:17] * Quits: hoofed (~hoofed@reiter.plus.com)
- # [19:22] * Joins: jeffszusz (~jeffszusz@d24-57-194-149.home.cgocable.net)
- # [19:25] * Parts: asher^ (asher@unaffiliated/asher/x-9381395)
- # [19:26] * Joins: SevenMachines (~SevenMach@94-193-93-142.zone7.bethere.co.uk)
- # [19:28] * Quits: tw2113 (~tw2113@fedora/tw2113) (Ping timeout: 252 seconds)
- # [19:30] * Quits: m1chael (m1chael@ip68-9-58-51.ri.ri.cox.net) (Ping timeout: 260 seconds)
- # [19:34] * Quits: boaz (~boaz@li326-230.members.linode.com) (Excess Flood)
- # [19:34] * Quits: SevenMachines (~SevenMach@94-193-93-142.zone7.bethere.co.uk) (Ping timeout: 260 seconds)
- # [19:35] * Joins: boaz (~boaz@li326-230.members.linode.com)
- # [19:40] * Quits: Kevin (~kevin@pool-71-184-184-229.bstnma.east.verizon.net) (Remote host closed the connection)
- # [19:43] * Quits: dmachi (~dmachi@pool-72-66-196-196.ronkva.east.verizon.net) (Ping timeout: 252 seconds)
- # [19:44] * Joins: chrislorenz (~chrislore@rrcs-76-79-247-242.west.biz.rr.com)
- # [19:45] * Joins: m1chael (m1chael@ip68-9-58-51.ri.ri.cox.net)
- # [19:45] * Quits: simplicity- (~simplicit@unaffiliated/simplicity-) (Quit: ...)
- # [19:47] * Joins: SevenMachines (~SevenMach@anon-92-153.ipredate.net)
- # [19:48] * Joins: dmachi (~dmachi@pool-72-66-207-252.ronkva.east.verizon.net)
- # [19:52] * Joins: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net)
- # [19:52] * Quits: jetienne (~jerome@ivr94-6-82-230-255-246.fbx.proxad.net) (Client Quit)
- # [19:55] * Quits: chrislorenz (~chrislore@rrcs-76-79-247-242.west.biz.rr.com) (Quit: Textual IRC Client: http://www.textualapp.com/)
- # [19:55] * Quits: cocoadaemon (~cocoadaem@2a01:e35:8a99:e90:20d:93ff:fe3b:868c) (Quit: cocoadaemon)
- # [19:57] * Joins: Taftse (~Taftse@unaffiliated/taftse)
- # [19:58] * Quits: simenbrekken (~simenbrek@c85-196-101-98.static.sdsl.no) (Quit: Computer has gone to sleep.)
- # [19:58] * Quits: devilswings7 (~unknown@24-151-96-232.dhcp.nwtn.ct.charter.com) (Quit: HydraIRC -> http://www.hydrairc.com <- The professional IRC Client :D)
- # [19:59] * Joins: simplicity- (~simplicit@unaffiliated/simplicity-)
- # [20:03] * Joins: Taar779 (~Taar779@d24-57-144-141.home.cgocable.net)
- # [20:04] * Joins: hoofed (~hoofed@reiter.plus.com)
- # [20:06] * Joins: jeffszus_ (~jeffszusz@d24-57-194-149.home.cgocable.net)
- # [20:07] * Quits: jeffszusz (~jeffszusz@d24-57-194-149.home.cgocable.net) (Read error: Operation timed out)
- # [20:09] * Joins: chrislorenz (~chrislore@rrcs-76-79-247-242.west.biz.rr.com)
- # [20:10] * Joins: patcito (~123@190.42.86.25)
- # [20:10] * Joins: dankest (~dankest@ip68-6-85-112.sb.sd.cox.net)
- # [20:14] * Quits: frankstallone (~frankstal@pool-74-105-112-45.nwrknj.fios.verizon.net) (Remote host closed the connection)
- # [20:18] * Quits: sergacity2 (~sergacity@mn-71-55-149-211.dhcp.embarqhsd.net) (Ping timeout: 260 seconds)
- # [20:18] * erry is now known as we_cantPTALK
- # [20:18] * we_cantPTALK is now known as erry
- # [20:20] * Quits: tantek (~tantek@188.28.137.77.threembb.co.uk) (Quit: tantek)
- # [20:21] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
- # [20:27] * Quits: SevenMachines (~SevenMach@anon-92-153.ipredate.net) (Ping timeout: 260 seconds)
- # [20:27] * Joins: jimi_hendrix (~jimi_hend@unaffiliated/jimihendrix)
- # [20:28] <jimi_hendrix> hi,so i am drawing an image that has a see through background (no alpha) to my canvas, and it seems to draw the background as grey. why might this be?
- # [20:29] * Joins: dguttman (~dguttman@cpe-75-85-0-213.socal.res.rr.com)
- # [20:32] * Quits: patcito (~123@190.42.86.25) (Read error: Connection reset by peer)
- # [20:33] * Joins: patcito (~123@190.42.86.25)
- # [20:35] * Joins: vsmith (~vsmith@50.15.212.42)
- # [20:38] <RLa> try to fill canvas with transparency color first
- # [20:38] * Quits: jeffszus_ (~jeffszusz@d24-57-194-149.home.cgocable.net) (Remote host closed the connection)
- # [20:40] <jimi_hendrix> RLa, how?
- # [20:40] <RLa> set alpha to color
- # [20:40] <RLa> rgba(255, 255, 255, 255) should work
- # [20:41] <jimi_hendrix> oh ok
- # [20:44] * Quits: skyfaller (~skyfaller@wikipedia/Skyfaller) (Remote host closed the connection)
- # [20:45] * Joins: SevenMachines (~SevenMach@94-193-93-142.zone7.bethere.co.uk)
- # [20:46] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # [20:49] <jimi_hendrix> RLa, i have tried with the alpha channel set to both 0 and 255, and there seems to be no difference
- # [20:51] <RLa> hm, weird
- # [20:53] <RLa> hm, opacity in rgba is from 0 to 1.0?
- # [20:53] <RLa> try rgba(255, 255, 255, 0.5)
- # [20:54] * Quits: boaz (~boaz@li326-230.members.linode.com) (Excess Flood)
- # [20:54] * Joins: boaz- (~boaz@li326-230.members.linode.com)
- # [20:54] * Quits: boaz- (~boaz@li326-230.members.linode.com) (Excess Flood)
- # [20:55] * Joins: boaz (~boaz@li326-230.members.linode.com)
- # [20:56] <jimi_hendrix> RLa, nope
- # [20:56] * Quits: notbrent (~notbrent@186.85.88.56) (Quit: This computer has gone to sleep)
- # [20:56] <jimi_hendrix> RLa, i just noticed that if i set the mouse cursor to the image (as i plan on doing under certain conditions), it has a grey box around it as well that should not be there
- # [20:56] <jimi_hendrix> i assume the cause of this is related to my issue
- # [20:59] <RLa> try to make minimal example
- # [21:00] * Parts: pht` (pht@83.167.250.86)
- # [21:01] <jimi_hendrix> RLa, do you just want to see the JS, or the accompanying html as well?
- # [21:04] * Quits: mike5w3c (~MikeSmith@EM1-113-200-83.pool.e-mobile.ne.jp) (Ping timeout: 252 seconds)
- # [21:05] <RLa> both
- # [21:06] <RLa> the canvas should be transparent by default
- # [21:08] <jimi_hendrix> RLa, actually, i am going to go, i have some things to do. i will ask my question again later, and make the test case if need be
- # [21:08] * Quits: timmywil (~timmywil@host-68-169-154-67.WISOLT2.epbfi.com)
- # [21:09] * Joins: timmywil (~timmywil@host-68-169-154-67.WISOLT2.epbfi.com)
- # [21:10] * Quits: timmywil (~timmywil@host-68-169-154-67.WISOLT2.epbfi.com) (Client Quit)
- # [21:11] * Joins: mike5w3c (~MikeSmith@EM1-112-100-4.pool.e-mobile.ne.jp)
- # [21:12] * Quits: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim) (Ping timeout: 260 seconds)
- # [21:13] * Quits: dguttman (~dguttman@cpe-75-85-0-213.socal.res.rr.com) (Quit: dguttman)
- # [21:15] * Joins: timmywil (~timmywil@host-68-169-154-67.WISOLT2.epbfi.com)
- # [21:16] * Joins: h2ero (~h2ero@125.71.1.33)
- # [21:17] * Quits: Jonz (~Adium@pool-74-96-160-56.washdc.fios.verizon.net) (Quit: Leaving.)
- # [21:18] * Joins: Jon47 (~jonz@pool-74-96-160-56.washdc.fios.verizon.net)
- # [21:20] * Quits: temp01 (~temp01@unaffiliated/temp01) (Ping timeout: 260 seconds)
- # [21:21] * Quits: davidwalsh (~davidwals@80.168.115.22) (Quit: davidwalsh)
- # [21:22] * Joins: temp01 (~temp01@unaffiliated/temp01)
- # [21:25] * Quits: SevenMachines (~SevenMach@94-193-93-142.zone7.bethere.co.uk) (Ping timeout: 260 seconds)
- # [21:27] * Joins: SaadIbrahim (~mslfreak@unaffiliated/saadibrahim)
- # [21:28] * Quits: timmywil (~timmywil@host-68-169-154-67.WISOLT2.epbfi.com)
- # [21:34] * Quits: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl) (Quit: Ik ga weg)
- # [21:35] * Parts: vsmith (~vsmith@50.15.212.42)
- # [21:37] * Quits: m1chael (m1chael@ip68-9-58-51.ri.ri.cox.net) (Ping timeout: 258 seconds)
- # [21:38] * Joins: SevenMachines (~SevenMach@anon-139-153.ipredate.net)
- # [21:38] * Quits: N0va` (~ricki@84.19.108.75) (Ping timeout: 260 seconds)
- # [21:40] * Joins: riskish (~riskish@99-20-85-109.lightspeed.rcsntx.sbcglobal.net)
- # [21:40] * Quits: hoofed (~hoofed@reiter.plus.com)
- # [21:41] * Joins: beeviz (~beevi2@ip-78-94-0-96.unitymediagroup.de)
- # [21:45] * Quits: riskish2 (~riskish@99-20-85-109.lightspeed.rcsntx.sbcglobal.net) (Ping timeout: 276 seconds)
- # [21:46] * Joins: sean` (~seankoole@D97A9E4C.cm-3-3c.dynamic.ziggo.nl)
- # [21:47] * Joins: cocoadaemon (~cocoadaem@2a01:e35:8a99:e90:20d:93ff:fe3b:868c)
- # [21:47] * Joins: m1chael (m1chael@ip68-9-58-51.ri.ri.cox.net)
- # [21:51] * Quits: RLa (~RL@infdot.com) (Remote host closed the connection)
- # [22:02] * Quits: SevenMachines (~SevenMach@anon-139-153.ipredate.net) (Ping timeout: 260 seconds)
- # [22:07] * Joins: boogyman (~boogy@pdpc/supporter/professional/boogyman)
- # [22:08] * Quits: moshee (~moshee@unaffiliated/moshee) (Ping timeout: 240 seconds)
- # [22:08] * Joins: maxmanders (~maxmander@188-220-35-232.zone11.bethere.co.uk)
- # [22:08] * Joins: moshee (~moshee@c-24-16-155-210.hsd1.wa.comcast.net)
- # [22:08] * Quits: moshee (~moshee@c-24-16-155-210.hsd1.wa.comcast.net) (Changing host)
- # [22:08] * Joins: moshee (~moshee@unaffiliated/moshee)
- # [22:11] * Quits: Thasmo (~thasmo@d86-32-70-37.cust.tele2.at)
- # [22:16] * Joins: alcuadrado (~alcuadrad@host34.186-108-197.telecom.net.ar)
- # [22:19] * Quits: ericduran (~eric@ool-ad03d215.dyn.optonline.net) (Quit: ericduran)
- # [22:22] * Joins: SevenMachines (~SevenMach@94-193-93-142.zone7.bethere.co.uk)
- # [22:34] * Joins: Thasmo (~thasmo@d86-32-70-37.cust.tele2.at)
- # [22:35] * Joins: llee (~leonlee@nat/trolltech/x-ahoscqdsitarjarb)
- # [22:36] * Joins: skyfaller (~skyfaller@wikipedia/Skyfaller)
- # [22:39] * Quits: boaz (~boaz@li326-230.members.linode.com) (Excess Flood)
- # [22:39] * Joins: boaz (~boaz@li326-230.members.linode.com)
- # [22:39] * Quits: boaz (~boaz@li326-230.members.linode.com) (Excess Flood)
- # [22:40] * Quits: m1chael (m1chael@ip68-9-58-51.ri.ri.cox.net) (Ping timeout: 260 seconds)
- # [22:41] * Joins: boaz (~boaz@li326-230.members.linode.com)
- # [22:49] * Joins: m1chael (~m1chael@ip68-9-58-51.ri.ri.cox.net)
- # [22:51] * Joins: seutje (~steve@drupal.org/user/264148/view)
- # [22:55] * Joins: sergacity2 (~sergacity@mn-71-55-149-211.dhcp.embarqhsd.net)
- # [22:59] * Quits: m1chael (~m1chael@ip68-9-58-51.ri.ri.cox.net) (Ping timeout: 276 seconds)
- # [23:02] * Joins: dguttman (~dguttman@cpe-75-85-0-213.socal.res.rr.com)
- # [23:09] * Quits: SevenMachines (~SevenMach@94-193-93-142.zone7.bethere.co.uk) (Ping timeout: 276 seconds)
- # [23:10] * Joins: hoofed (~hoofed@reiter.plus.com)
- # [23:11] * Quits: hoofed (~hoofed@reiter.plus.com) (Client Quit)
- # [23:12] * Joins: simenbrekken (~simenbrek@c85-196-101-98.static.sdsl.no)
- # [23:14] * Joins: johnkpaul (~johnkpaul@pool-96-250-167-7.nycmny.fios.verizon.net)
- # [23:16] * Quits: simenbrekken (~simenbrek@c85-196-101-98.static.sdsl.no) (Client Quit)
- # [23:16] * Quits: seutje (~steve@drupal.org/user/264148/view) (Ping timeout: 258 seconds)
- # [23:16] * Joins: jamund (~jamund@174-23-45-203.slkc.qwest.net)
- # [23:18] * Joins: m1chael][ (~m1chael@ip68-9-58-51.ri.ri.cox.net)
- # [23:21] * Joins: ericduran (~eric@ool-ad03d215.dyn.optonline.net)
- # [23:22] * Quits: ericduran (~eric@ool-ad03d215.dyn.optonline.net) (Client Quit)
- # [23:24] * Quits: cocoadaemon (~cocoadaem@2a01:e35:8a99:e90:20d:93ff:fe3b:868c) (Quit: cocoadaemon)
- # [23:25] * Quits: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net) (Quit: Leaving)
- # [23:31] * Quits: Frippe (~Frippe@unaffiliated/frippe) (Quit: ^d)
- # [23:32] * Joins: Frippe (~Frippe@unaffiliated/frippe)
- # [23:33] * Quits: jamund (~jamund@174-23-45-203.slkc.qwest.net) (Quit: jamund)
- # [23:34] * Joins: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net)
- # [23:39] * Quits: Jackneill (~Jackneill@unaffiliated/jackneill) (Ping timeout: 276 seconds)
- # [23:41] * Quits: skyfaller (~skyfaller@wikipedia/Skyfaller) (Remote host closed the connection)
- # [23:42] * Quits: m1chael][ (~m1chael@ip68-9-58-51.ri.ri.cox.net) (Ping timeout: 252 seconds)
- # [23:43] * Joins: tylerstalder (~textual@97.65.119.2)
- # [23:49] * Quits: alcuadrado (~alcuadrad@host34.186-108-197.telecom.net.ar) (Remote host closed the connection)
- # [23:51] * Quits: simplicity- (~simplicit@unaffiliated/simplicity-) (Quit: ...)
- # [23:56] * Joins: davidwalsh (~davidwals@80.168.115.22)
- # [23:59] * Quits: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net) (Quit: dgathright)
- # Session Close: Sun Sep 11 00:00:00 2011
The end :)