Webapps chatlog - 2007-05-25

Back to overview|Highlight a word

00:33:07   <-- roentgen has quit (Connection reset by peer)
02:47:56   <-- janbar has quit (Quit: papapa...... - lece)
03:05:00   --> MikeSmith (MikeSmith@58.157.21.205) has joined #webapps
03:49:33   <-- Do`` has quit (Ping timeout)
03:51:53   --> kyleabaker (kyleabaker@adsl-146-185-206.clt.bellsouth.net) has joined #webapps
03:52:10 kyleabaker quick javascript question..anyone still active?
03:54:56   --> roentgen (Miranda@155978A9.D27FA224.866CCB40.IP) has joined #webapps
03:55:10   <-- kyleabaker has quit (Ping timeout)
04:04:18   --> Do`` (~Do3@dsl77-234-78-55.pool.tvnet.hu) has joined #webapps
04:32:06   <-- roentgen has quit (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
05:09:54   <-- Hal has quit (Quit: DiscoStud)
05:10:10   --> Hal (hal@13063652.45877B8E.527EF735.IP) has joined #webapps
05:19:56   <-- dantesoft has quit (Quit: dantesoft)
05:39:55   --> kyleabaker (kyleabaker@adsl-146-185-206.clt.bellsouth.net) has joined #webapps
05:53:39   <-- Do`` has quit (Ping timeout)
05:58:36   --> nition (nition29@59.94.8.91) has joined #webapps
06:01:00   <-- nition has left #webapps
06:04:31   --> nition (nition29@59.94.8.91) has joined #webapps
06:05:58   <-- nition has left #webapps
06:07:43   --> nition (nition29@59.94.8.91) has joined #webapps
06:08:16   --> Do`` (~Do3@dsl77-234-82-56.pool.tvnet.hu) has joined #webapps
06:08:33   <-- nition has left #webapps
06:14:06   --> nition (nition29@59.94.8.91) has joined #webapps
06:16:09   <-- nition has left #webapps
06:19:21   <-- kyleabaker has left #webapps
06:25:34   --> roentgen (Miranda@58B6785A.42A83749.B7C84EAC.IP) has joined #webapps
06:29:50   <-- Do`` has quit (Ping timeout)
06:37:56   --> Do`` (~Do3@dsl77-234-81-132.pool.tvnet.hu) has joined #webapps
06:38:53   --> vanquangld (vanquangld@222.253.177.251) has joined #webapps
06:39:07   <-- vanquangld has left #webapps
06:40:14   <-- Hal has quit (Quit: DiscoStu)
06:40:42   --> Hal (hal@13063652.45877B8E.527EF735.IP) has joined #webapps
07:05:08   --> vanquangld (vanquangld@222.253.177.251) has joined #webapps
07:05:27   <-- vanquangld has left #webapps
08:13:18   <-- MikeSmith has quit (Ping timeout)
08:14:00   --> nition (nition29@59.94.14.254) has joined #webapps
08:15:14   --> MikeSmith (MikeSmith@58.157.21.205) has joined #webapps
08:16:38   --> drh (derenth@masked-7CBEB462.mc.videotron.ca) has joined #webapps
08:16:38   <-- derenth has quit (Killed (NickServ (GHOST command used by drh)))
08:16:49   -!- drh is now known as derenth
08:23:19   <-- MikeSmith has quit (Ping timeout)
08:27:10   --> MikeSmith (MikeSmith@58.157.21.205) has joined #webapps
08:30:22   --> billyjack (MikeSmith@58.157.21.197) has joined #webapps
08:30:49   <-- MikeSmith has quit (Ping timeout)
08:31:32   --> malware (MikeSmith@58.157.21.204) has joined #webapps
08:32:33   <-- malware has quit (Killed (NickServ (Nick kill enforced)))
08:33:50   <-- billyjack has quit (Ping timeout)
08:34:13   --> malware (MikeSmith@58.157.21.204) has joined #webapps
08:34:20   <-- nition has left #webapps
08:35:14   <-- malware has quit (Killed (NickServ (Nick kill enforced)))
08:35:26   --> billyjack (MikeSmith@58.157.21.204) has joined #webapps
08:58:43   --> SHIF (chiefpady@pix.linkserve.net) has joined #webapps
09:03:06   -!- SHIF is now known as luv
09:15:37   <-- luv has left #webapps
09:22:18   --> ROBOd (robod@86.34.246.154) has joined #webapps
09:41:42   --> smartaryan (aryan_kuma@61.0.178.44) has joined #webapps
09:49:11   <-- smartaryan has left #webapps
10:32:44   --> aleksanteri_ (K2@masked-8A8EDC9.dhcp.inet.fi) has joined #webapps
10:35:15   -!- aleksanteri_ is now known as aleksanteri
10:49:08 gmoz There's one thing that bugs me in ajax stuff
10:49:20 gmoz The fact how you usually need to write at least two functions
10:49:31 gmoz one that initiates the request and another one that parses the response
10:49:51 gmoz If you could just do a request and wailt until it finishes and continue in the same function from that
10:49:55 gmoz *wait
10:50:12 gmoz but setting asynchronous to false just stops everything else too
11:04:58   --> nition (nition29@59.94.14.254) has joined #webapps
11:11:38   <-- nition has left #webapps
11:11:57   --> nition (nition29@59.94.14.254) has joined #webapps
11:11:58   <-- nition has left #webapps
11:42:19 Remco You can call the same function again but with another parameter...
11:52:06   --> LarsKL (LarsKl@irc.larskleinschmidt.de) has joined #webapps
12:04:11   <-- roentgen has quit (Ping timeout)
12:13:14 gmoz Remco: true but its slightly troublesome
12:13:18 gmoz I just got the idea myself as well
12:13:21 gmoz ie something like
12:13:26 gmoz function foo(param)
12:13:47 gmoz if param instanceof XMLHttpRequest
12:13:48 gmoz  do something
12:13:50 gmoz else
12:13:57 gmoz  ajax(stuff,foo);
12:20:43   --> ZockerTM (Tommy_Marr@p5493BF8C.dip0.t-ipconnect.de) has joined #webapps
12:20:51   <-- ZockerTM has left #webapps
12:21:54 billyjack nicomen ?
12:28:31   --> engineer (midrisabdu@196.220.13.46) has joined #webapps
12:39:11   --> distant (opera@adsl196-74-105-217-196.adsl196-12.iam.net.ma) has joined #webapps
12:43:33   -!- * aleksanteri 'd say that goes to #lounge
12:43:37 aleksanteri #opera ************************************
12:43:51 distant Ok.
12:43:53   <-- distant has left #webapps
12:44:35   <-- engineer has left #webapps
12:48:08   --> inder (ikbrides@59.183.160.42) has joined #webapps
12:48:53 nicomen billyjack: ?
12:49:06   -!- billyjack is now known as MikeSmith
12:49:12 MikeSmith hey nicomen
12:49:18 nicomen hi MikeSmith
12:49:27 MikeSmith billyjack = MikeSmith = malware
12:49:46 nicomen ok ;)
12:49:58 MikeSmith  /me is wondering if there is any news about when Opera 9 for Symbian will be released ...
12:50:14 MikeSmith ... which is supposed to have native SVG support ...
12:50:52 nicomen I wouldn't know anything about that
12:51:11   <-- inder has quit (Ping timeout)
13:10:54   --> Orcinus (orca@router.evertz.com) has joined #webapps
13:13:21   --> MarcellusMcCh (tami2000@dsl51B7BF58.pool.t-online.hu) has joined #webapps
13:14:22   <-- MarcellusMcCh has quit (Killed (NickServ (Nick kill enforced)))
13:15:21   --> roentgen (Miranda@58B6785A.42A83749.B7C84EAC.IP) has joined #webapps
13:57:41   <-- aleksanteri has quit (Ping timeout)
13:59:35   --> aleksanteri (K2@masked-8A8EDC9.dhcp.inet.fi) has joined #webapps
14:07:52   --> DrLaunch (knutremi@ti112210a080-4664.bb.online.no) has joined #webapps
14:14:26   <-- aleksanteri has quit (Client exited)
14:17:14   --> aleksanteri (K2@masked-8A8EDC9.dhcp.inet.fi) has joined #webapps
14:26:51   <-- aleksanteri has quit (Client exited)
14:35:35   --> aleksanteri (K2@masked-8A8EDC9.dhcp.inet.fi) has joined #webapps
14:38:43   <-- aleksanteri has quit (Connection reset by peer)
14:44:04   --> aleksanteri (K2@masked-8A8EDC9.dhcp.inet.fi) has joined #webapps
14:46:54   <-- aleksanteri has quit (Connection reset by peer)
14:59:18   <-- DrLaunch has quit (Ping timeout)
15:09:38   --> pffYussupov (pffYussupo@ADSL-TPLUS-98-89.telecomplus.net) has joined #webapps
15:11:31 nicomen Ramunas: http://my.opera.com/Tripppy/blog/2007/05/22/tired-of-wasting-time
15:12:56 nicomen MikeSmith: apparently it's "coming soon", no idea wether there is or isn't SVG support in it
15:14:36 Ramunas that reminds me I have to set up my bluetooth again
15:38:24   <-- roentgen has quit (Ping timeout)
15:48:16   --> aleksanteri (K2@masked-8A8EDC9.dhcp.inet.fi) has joined #webapps
15:49:00   <-- aleksanteri has quit (Connection reset by peer)
16:09:53 MikeSmith nicomen - thanks ... afaik, they've always said that when Opera 9 for Symbian gets released, it would have native SVG support ...
16:10:39 MikeSmith ... I mean from way back (2 years ago or something) I remember hearing that
16:11:02 MikeSmith only new news is that it does seem it will be released soon
16:14:48 nicomen ok
16:17:45   --> ilegalac (virus-bezu@cmung2701.cmu.carnet.hr) has joined #webapps
16:19:16   <-- MikeSmith has quit (Ping timeout)
16:19:33   <-- ilegalac has left #webapps
16:23:54   --> ilegalac (virus-bezu@cmung2701.cmu.carnet.hr) has joined #webapps
16:23:55   --> cogwheel (K2@masked-8A8EDC9.dhcp.inet.fi) has joined #webapps
16:23:57   <-- pffYussupov has quit (Quit: Every time I make a website using frames god kills a Pokemon or two)
16:24:28   <-- ilegalac has left #webapps
16:24:55   <-- cogwheel has quit (Connection reset by peer)
16:34:42   --> MikeSmith (MikeSmith@58.157.21.204) has joined #webapps
16:35:33   --> Kuruma (Kuruma@h219-110-080-235.catv01.itscom.jp) has joined #webapps
16:49:59   --> roentgen (Miranda@CF7F6489.ADC90C25.866CCB40.IP) has joined #webapps
17:10:01   --> barbie (rtk@195.252.85.126) has joined #webapps
17:11:03   <-- barbie has left #webapps
17:14:21   --> Do``2 (stuffor@dsl77-234-81-132.pool.tvnet.hu) has joined #webapps
17:14:37   --> DrLaunch (knutremi@gprs-ggsn5-nat.mobil.telenor.no) has joined #webapps
17:14:41   <-- Do``2 has quit (Quit: Do``2)
17:36:02   <-- roentgen has quit (Ping timeout)
17:40:40   <-- DrLaunch has quit (Ping timeout)
18:06:20   --> roentgen (Miranda@CF7F6489.ADC90C25.866CCB40.IP) has joined #webapps
18:23:21   --> cogwheel (K2@masked-8A8EDC9.dhcp.inet.fi) has joined #webapps
18:24:06   <-- cogwheel has quit (Connection reset by peer)
18:38:40   --> aleksanteri (K2@masked-8A8EDC9.dhcp.inet.fi) has joined #webapps
18:39:29   <-- aleksanteri has quit (Connection reset by peer)
18:44:59   --> Lars_G (lars@ippool.ifxnetworks.com.ve) has joined #webapps
19:12:36   --> cogwheel (K2@masked-8A8EDC9.dhcp.inet.fi) has joined #webapps
19:12:37   <-- cogwheel has quit (Quit: cogwheel)
19:16:40   --> cogwheel (K2@masked-8A8EDC9.dhcp.inet.fi) has joined #webapps
19:18:23   -!- cogwheel is now known as aleksanteri
19:45:18   --> DrLaunch (knutremi@ti112210a080-11162.bb.online.no) has joined #webapps
19:59:48   --> suzy (bmbm.gbkjl@cmung647.cmu.carnet.hr) has joined #webapps
20:00:05   --> shafiq (ilovepakis@137.101.138.34) has joined #webapps
20:00:08   <-- Lars_G has quit (Quit: Leaving)
20:02:14   <-- shafiq has left #webapps
20:16:16   <-- ROBOd has quit (Quit: http://www.robodesign.ro )
20:32:09   --> zteam (opera@host-n1-98-173.telpol.net.pl) has joined #webapps
20:33:26   <-- zteam has left #webapps
20:35:15   <-- suzy has quit (Ping timeout)
21:05:12   <-- aleksanteri has quit (Ping timeout)
21:13:01   <-- Orcinus has left #webapps
21:26:48   --> G-14 (tomislavov@87-126-150-195.btc-net.bg) has joined #webapps
21:29:24 G-14 hi
21:29:25 G-14 all
21:29:31 nicomen hi
21:30:51   -!- * Remco waves
21:32:24   -!- * Ramunas continues the wave
21:32:24 Ramunas :P
21:33:06 gmoz Olé! Olé!
21:36:48   --> Mido (mido2lovel@62.135.55.221) has joined #webapps
21:40:02   <-- Mido has quit (Ping timeout)
21:42:01   -!- * DrLaunch catches the wave and starts surfing
21:45:49 gmoz hmm
21:46:02 gmoz Does anyone know how to supress the Opera suggest thing on forms
21:46:15 gmoz ie if you type in your email address it displays that box below that you can click
21:46:39 gmoz It obstructs the suggest box in my widget, but isn't an issue unless you try filling in the place name you live in or something like that
21:51:32 Remco  autocomplete="off"
21:53:33 gmoz thanks, will try that
21:57:26 Remco It works on http://oxzone.opera.com:8088 ;)
22:03:13 gmoz =)
22:03:23 gmoz Yeah works here as well
22:07:55 gmoz hm
22:08:02 gmoz Opera crashed while my widget was performing flight searches
22:08:13 gmoz I wonder if it was the widget which killed it or if it just died for fun :P
22:10:00 Remco Just a bad request :P
22:28:19 gmoz =)
22:29:18 gmoz *cough*
22:29:26 Ramunas :D
22:29:46 nicomen hehe
22:29:57 nicomen anyway I don't see any autocomplete off on oxzone
22:30:16 gmoz alrighty
22:30:23 gmoz flight search integration... done!
22:30:29 gmoz with the results, too
22:30:51 gmoz Now, just need to write the code for integrating hotel search results
22:31:01 gmoz and then I think I can say my widget is 1.0
22:31:02 gmoz =)
22:31:10 Ramunas nicomen: <input type="text" id="chat-input" autocomplete="off" >
22:32:13 nicomen ah thought you meant login screeb
22:32:15 nicomen screen
22:44:01   <-- roentgen has quit (Connection reset by peer)
23:02:00   <-- G-14 has quit (Quit: G-14)
23:02:35   <-- DrLaunch has quit (Quit: Leaving.)
23:04:19   <-- Kuruma has quit (Ping timeout)
23:05:22   <-- LarsKL has quit (Quit: )
23:36:27 gmoz Great
23:36:28 gmoz Just great
23:36:34 gmoz Another hole in the Kayak API docs
23:37:10 gmoz This time a more serious one: the hotel search result polling isn't working... it's returning the HTML code for the page instead of XML :P
23:37:38 Remco Whoops :P
23:37:43 gmoz I wonder if they are missing a parameter
23:37:55 gmoz in the flight result polling you have toe define apimode=1
23:38:03 gmoz but it isn't mentioned as required in the hotel polling
23:38:08 gmoz so I left it out
23:38:35 gmoz Gee
23:38:36 gmoz Guess what
23:38:45 gmoz Adding apimode=1 to the query fixed it
23:40:06 gmoz Worst. API doc. Ever.
23:41:32 gmoz and not surprisingly, the XML has more information than their example result shows
23:41:36 gmoz :P
23:42:03 gmoz and this time the morepending thing works upside down it seems
23:42:14 gmoz it might actually work like it says in the spec! :O
23:42:23 Remco Good luck, I'm off to bed
23:42:43 gmoz hehe
23:42:45 gmoz night =)
23:42:55 gmoz it's almost working anyway
23:43:06 gmoz got the code pretty much copy-pasted with minor changes from the flight result part :D
23:43:16   -!- * Remco resigns from QA
23:43:19 Remco :P
23:43:22 gmoz :D
23:47:04 gmoz wtf
23:47:08 gmoz intresting
23:47:17 gmoz the search result doesn't even have the price properly
23:47:22 gmoz $-1 for every price node :P
23:59:26   --> grepya (chetan@206-169-144-4.static.twtelecom.net) has joined #webapps
23:59:46 grepya test