#leaflet | Logs for 2012-10-11

Back
[00:01:59] -!- Nick001-Shop has quit [Quit: ChatZilla 0.9.89 [Firefox 15.0.1/20120905151427]]
[00:01:59] -!- logger[mah] has quit [Remote host closed the connection]
[00:02:20] -!- kmiyashiro [kmiyashiro!~KellyM@70.42.240.22] has joined #leaflet
[00:10:29] -!- kmiyashiro has quit [Read error: Connection reset by peer]
[00:13:36] -!- andypugh has quit [Read error: Connection reset by peer]
[00:14:40] -!- bradsimantel has quit [Quit: bradsimantel]
[00:22:30] -!- Thetawaves has quit [Quit: Leaving]
[00:23:19] -!- kmiyashiro [kmiyashiro!~KellyM@70.42.240.22] has joined #leaflet
[00:24:00] -!- asdfasd has quit [Read error: Connection reset by peer]
[00:26:12] -!- argon_ [argon_!47e7fa40@gateway/web/freenode/ip.71.231.250.64] has joined #leaflet
[00:26:22] <argon_> hello
[00:26:35] argon_ is now known as Guest72132
[00:27:14] <Guest72132> can anyone help me with a problem?
[00:27:33] <jamesp> hello argon
[00:27:42] <jamesp> I have a question too
[00:27:45] <Guest72132> hi jamesp
[00:28:17] <jamesp> Guest what is your question?
[00:28:19] <Guest72132> I am getting an undefined latlng from a mouse click event (e.latlng returns undefined)
[00:28:26] <Guest72132> it is bound to a marker
[00:28:42] <Guest72132> any known bugs?
[00:29:13] -!- sumpfralle has quit [Ping timeout: 256 seconds]
[00:29:42] <jamesp> u r using this? getLatLng()
[00:30:13] <Guest72132> tried that too, said it was not a function
[00:30:49] <Guest72132> alert("You clicked the map or marker at " + e.latlng);
[00:30:59] <Guest72132> same as the example
[00:31:22] <Guest72132> var center = new L.LatLng(47.61,-122.34); var m = L.marker(center).addTo(map); m.on('click', onMapClick); function onMapClick(e) { alert("You clicked the map or marker at " + e.latlng); }
[00:31:41] <Guest72132> now will try getLatLng() again
[00:32:49] <jamesp> what is m.click ?
[00:33:06] <jamesp> nevermind
[00:33:18] <Guest72132> TypeError: e.getLatLng is not a function...i am probably being a noob here but am stumped
[00:36:15] <jamesp> let me mess around with it for a few?
[00:36:33] <jamesp> brb
[00:36:35] <Guest72132> sure
[00:36:36] <Guest72132> ty
[00:37:38] -!- plushy has quit [Quit: Leaving.]
[00:41:33] <jamesp> still thinking..
[00:41:54] <Guest72132> no rush, appreciate anything you can do
[00:44:28] <jamesp> do you know how to get into console on a web browser?
[00:44:56] <jamesp> console.log
[00:45:43] <Guest72132> I am using WebStorm, console is available, no errors displayed other than ----- Error in parsing value for 'background-image'. Declaration dropped.
[00:45:57] <Guest72132> and Unknown property '-moz-opacity'. Declaration dropped
[00:46:30] <Guest72132> I have multiple map layers, maybe I should make a simpler project and see that happens?
[00:46:38] <Guest72132> *what
[00:47:06] <jamesp> ok try this
[00:47:32] <jamesp> set a marker some place var marker = L.marker([41.7, -72.68]).addTo(map);
[00:47:47] <jamesp> 41, -72 is me
[00:47:55] <Guest72132> xD
[00:48:08] <jamesp> so set a marker where u can see it
[00:48:15] <Guest72132> kk
[00:48:41] <jamesp> also are you using jQuery?
[00:49:33] <jamesp> this works for me but may not work for you
[00:49:43] <jamesp> but to keep going do this next
[00:49:46] <jamesp> function markerClick(e){ console.log(marker.getLatLng()); }
[00:49:48] <Guest72132> marker in place
[00:50:01] <Guest72132> sec
[00:50:04] <jamesp> thats just a function
[00:50:43] <jamesp> then do this
[00:50:46] <jamesp> marker.on('click', markerClick);
[00:51:03] <jamesp> inside your script tags
[00:51:44] <Guest72132> ok, it logged the correct lat lon, wonder why worked there and not in the alert...sec let me try in alert
[00:52:22] -!- andypugh has quit [Quit: andypugh]
[00:52:47] <jamesp> btw I hate most oo lessons and with that in mind call marker marker5
[00:53:19] <jamesp> and also marker5.on( .... )
[00:53:29] <jamesp> and for the function do this
[00:53:45] <jamesp> function markerClick(e){ console.log(this.getLatLng()); }
[00:53:56] <jamesp> use this keyword
[00:54:32] <Guest72132> so 'e' is not passing a valid object?
[00:56:04] -!- racycle [racycle!~racycle@75-25-129-128.lightspeed.sjcpca.sbcglobal.net] has joined #leaflet
[00:56:29] <Guest72132> got a valid log entry
[00:56:53] <jamesp> I believe you would say e is the click event associated with some object
[00:57:04] <jamesp> but what object?
[00:57:13] <jamesp> the marker u click on
[00:57:27] <jamesp> try this guest
[00:57:34] <Guest72132> strange behavior
[00:57:34] <jamesp> add a second marker
[00:57:49] <jamesp> var marker9 = L.marker([42.7, -72.68]).addTo(map);
[00:58:06] <jamesp> and make sure u change the function to
[00:58:22] <jamesp> function markerClick(e){ console.log(this.getLatLng()); }
[00:59:34] <jamesp> and for me as a final step this works for me ----- function markerClick(e){ alert(this.getLatLng()); }
[00:59:45] <Guest72132> I see, so when the method is called 'this' is the current marker
[01:00:05] <Guest72132> e is not passing an object but an event, very odd but ty for the lesson
[01:00:12] <jamesp> yes THIS is whatever the current object is
[01:00:42] <Guest72132> tyvm, sorry for making you teach javascript oo ;-D
[01:00:59] <jamesp> hey I am still learning too
[01:01:02] <jamesp> lots
[01:01:17] <jamesp> ne ways does it work now for u?
[01:01:23] <Guest72132> yep, tyvm
[01:01:27] <jamesp> cool
[01:01:41] <Guest72132> great help, very patient have a great day!
[01:01:47] <jamesp> u too
[01:01:53] -!- Guest72132 has quit [Quit: Page closed]
[01:02:15] -!- ve7it has quit [Remote host closed the connection]
[01:04:36] -!- kmiyashiro has quit [Read error: Connection reset by peer]
[01:06:00] -!- micges has quit [Quit: Leaving]
[01:06:14] -!- broofa has quit [Quit: Computer has gone to sleep.]
[01:21:07] -!- mutilator has quit [Ping timeout: 260 seconds]
[01:33:39] -!- kmiyashiro [kmiyashiro!~KellyM@70.42.240.22] has joined #leaflet
[01:38:53] -!- broofa [broofa!~broofa@108-68-106-8.lightspeed.sntcca.sbcglobal.net] has joined #leaflet
[02:05:17] -!- kmiyashiro has quit [Read error: Connection reset by peer]
[02:05:41] -!- kmiyashiro [kmiyashiro!~KellyM@70.42.240.22] has joined #leaflet
[02:15:36] -!- kmiyashiro has quit [Quit: kmiyashiro]
[02:20:56] -!- jamesp has quit [Quit: Page closed]
[02:31:22] -!- broofa has quit [Quit: Computer has gone to sleep.]
[02:41:04] -!- bradsimantel [bradsimantel!~simantel@c-24-20-7-19.hsd1.or.comcast.net] has joined #leaflet
[02:52:53] -!- jamesp [jamesp!4b19633b@gateway/web/freenode/ip.75.25.99.59] has joined #leaflet
[03:01:32] -!- Keknom has quit [Quit: Leaving.]
[03:39:56] -!- michale has quit [Quit: Leaving]
[03:47:51] -!- vladimirek has quit [Remote host closed the connection]
[03:52:09] -!- Valen has quit [Quit: Leaving.]
[03:57:34] -!- broofa [broofa!~broofa@108-68-106-8.lightspeed.sntcca.sbcglobal.net] has joined #leaflet
[03:58:34] -!- broofa has quit [Client Quit]
[04:06:30] -!- maximilian_h has quit [Quit: Leaving.]
[04:08:41] -!- tjb1 has quit [Quit: tjb1]
[04:32:43] -!- jpk [jpk!~jpk@unaffiliated/vorondil] has joined #leaflet
[04:52:17] -!- tjb1 has quit [Quit: tjb1]
[05:03:14] -!- Fox_Muldr has quit [Ping timeout: 260 seconds]
[05:36:32] -!- kmiyashiro [kmiyashiro!~KellyM@76-14-155-234.rk.wavecable.com] has joined #leaflet
[06:02:28] -!- jrshaul has quit [Quit: Page closed]
[06:05:48] -!- kmiyashiro has quit [Quit: kmiyashiro]
[06:06:45] -!- bradsimantel has quit [Quit: bradsimantel]
[06:09:09] -!- Cylly has quit []
[06:11:40] -!- mrsun has quit [Read error: Connection reset by peer]
[06:13:30] -!- mhaberler has quit [Quit: mhaberler]
[06:20:27] -!- psha[work] [psha[work]!~psha@195.135.238.205] has joined #leaflet
[06:20:27] -!- plushy [plushy!~plushy@Wikipedia/Plushy] has joined #leaflet
[06:23:24] -!- plushy has quit [Client Quit]
[06:50:44] -!- karavanjoW has quit [Quit: KVIrc 4.0.4 Insomnia http://www.kvirc.net/]
[06:51:00] -!- karavanjoW [karavanjoW!~karavanjo@178.124.148.114] has joined #leaflet
[06:56:41] -!- archivist_herron has quit [Ping timeout: 245 seconds]
[06:56:46] -!- djcoin [djcoin!~makina@glo44-4-82-239-69-98.fbx.proxad.net] has joined #leaflet
[07:14:32] -!- emel has quit [Excess Flood]
[07:14:45] -!- racycle has quit [Quit: racycle]
[07:14:54] -!- emel [emel!~emel@sd-22438.dedibox.fr] has joined #leaflet
[07:16:50] -!- toastydeath has quit [Read error: Connection reset by peer]
[07:31:46] -!- ybon [ybon!~ybon@ALagny-154-1-23-5.w83-112.abo.wanadoo.fr] has joined #leaflet
[07:46:07] -!- jpk has quit [Ping timeout: 256 seconds]
[07:52:28] -!- theos has quit [Ping timeout: 240 seconds]
[07:58:53] -!- factor has quit [Read error: Connection reset by peer]
[08:28:21] -!- tjb1 has quit [Client Quit]
[08:53:18] -!- plushy [plushy!~plushy@Wikipedia/Plushy] has joined #leaflet
[09:35:26] -!- mattions [mattions!~mattions@cpc3-cmbg14-2-0-cust446.5-4.cable.virginmedia.com] has joined #leaflet
[10:22:04] -!- b_b [b_b!ejabberd@81.18.178.14] has joined #leaflet
[10:22:40] -!- sumpfralle has quit [Ping timeout: 252 seconds]
[10:49:07] -!- chillly [chillly!~chris@adsl-87-102-72-211.karoo.KCOM.COM] has joined #leaflet
[10:49:28] -!- L33TG33KG34R has quit [Ping timeout: 240 seconds]
[11:19:51] -!- IchGuckLive has quit [Quit: ChatZilla 0.9.87 [Firefox 14.0.1/20120713225625]]
[11:30:21] -!- dhoovie has quit [Read error: Connection reset by peer]
[12:03:52] -!- skunkworks__ has quit [Ping timeout: 252 seconds]
[12:41:23] -!- maximilian_h has quit [Read error: Connection reset by peer]
[12:48:43] -!- factor has quit [Quit: Leaving]
[12:51:34] -!- mk0 has quit [Ping timeout: 240 seconds]
[12:58:28] -!- maximilian_h1 has quit [Quit: Leaving.]
[13:10:52] -!- chillly has quit [Quit: Leaving]
[13:18:22] -!- Mats_ [Mats_!565dbf08@gateway/web/freenode/ip.86.93.191.8] has joined #leaflet
[13:18:59] <Mats_> Hey
[13:20:20] <Mats_> Do you need to have the lower right box saying "powered by leaflet ..." or can i remove that box and put that somehere else on my website?
[13:20:59] <Komzpa> Mats_: have a look at attribution control in docs
[13:21:12] <Mats_> oke thank you
[13:27:34] -!- gurumelo [gurumelo!~mari@unaffiliated/gurumelo] has joined #leaflet
[13:27:39] <gurumelo> Hello
[13:28:51] <gurumelo> excuse me, one question, is posible use a local location for tiles? for example
[13:28:54] <gurumelo> var map = L.map('map').setView([37.166506731854746, -3.5888493061065674], 18); L.tileLayer('rio/{z}/{x}/{y}.jpg',
[13:29:15] <gurumelo> because, is a mobile phone app (offline)
[13:31:04] <ybon> this sounds more linked to mobile browser than to leaflet itself, no?
[13:31:20] <ybon> I mean, if the browser reach the tile URL, so leaflet will
[13:31:27] <gurumelo> it's a apache cordova application
[13:31:49] <gurumelo> and for that i try to use relative location
[13:32:20] <gurumelo> for tiles map
[13:33:40] <gurumelo> can tileLayer use local locations? or only urls?
[13:34:51] <b_b> local tiles works fine
[13:35:46] -!- Mats_ has quit [Quit: Page closed]
[13:36:48] <gurumelo> ok, i am going to try
[13:37:07] <gurumelo> thanks
[13:37:12] -!- b_b [b_b!ejabberd@81.18.178.14] has parted #leaflet
[13:39:07] -!- zzolo [zzolo!~zzolo@c-75-72-229-64.hsd1.mn.comcast.net] has joined #leaflet
[13:39:43] -!- wboykinm [wboykinm!~quassel@132.198.159.96] has joined #leaflet
[13:47:15] -!- Valen has quit [Quit: Leaving.]
[13:54:54] -!- Agrom [Agrom!565dbf08@gateway/web/freenode/ip.86.93.191.8] has joined #leaflet
[13:56:19] <Agrom> Can i make the attribution control box give a opacity of 0 and then if the user hovers over the map change the opacity to 1? or is this not allowed with copyright stuff?
[13:57:18] <Agrom> im using a free cloudmade api key for this application
[14:01:57] <gurumelo> ethic
[14:02:50] <gurumelo> Agrom: you can do a beautiful powered by, like http://pantallasnegras.net/sansil
[14:05:34] -!- Agrom [Agrom!565dbf08@gateway/web/freenode/ip.86.93.191.8] has parted #leaflet
[14:06:42] <gurumelo> i think that local location of tiles, only works good, if is under a webserver, but in pure local, not works
[14:11:55] -!- GargantuaSauce has quit [Ping timeout: 246 seconds]
[14:20:45] -!- bradsimantel [bradsimantel!~simantel@c-24-20-7-19.hsd1.or.comcast.net] has joined #leaflet
[14:26:12] -!- bradsimantel has quit [Quit: bradsimantel]
[14:31:42] -!- zzolo has quit [Quit: zzolo]
[14:34:07] -!- gurumelo [gurumelo!~mari@unaffiliated/gurumelo] has parted #leaflet
[14:41:28] -!- jpk [jpk!~jpk@unaffiliated/vorondil] has joined #leaflet
[14:42:04] -!- psha[work] has quit [Quit: Lost terminal]
[14:43:47] -!- archivist_herron has quit [Ping timeout: 260 seconds]
[14:50:04] -!- jpk has quit [Ping timeout: 260 seconds]
[14:50:27] -!- chillly [chillly!~chris@adsl-87-102-72-211.karoo.KCOM.COM] has joined #leaflet
[15:02:13] -!- vladimirek has quit [Ping timeout: 245 seconds]
[15:14:41] -!- jpk [jpk!~jpk@unaffiliated/vorondil] has joined #leaflet
[15:15:04] -!- jpk has quit [Client Quit]
[15:20:56] -!- skunkworks has quit [Read error: Connection reset by peer]
[15:26:08] -!- zzolo [zzolo!~zzolo@mail.minnpost.com] has joined #leaflet
[15:32:02] -!- racycle [racycle!~racycle@75-25-129-128.lightspeed.sjcpca.sbcglobal.net] has joined #leaflet
[16:07:55] -!- sarcanon has quit [Quit: ChatZilla 0.9.89 [Firefox 15.0.1/20120905151427]]
[16:20:31] tjb1_ is now known as tjb1
[16:34:57] -!- V0idExp has quit [Remote host closed the connection]
[16:37:59] -!- tjb1 has quit [Quit: tjb1]
[17:01:35] -!- gmagno has quit [Ping timeout: 244 seconds]
[17:04:29] -!- ktchk has quit [Quit: ktchk]
[17:09:19] -!- djcoin has quit [Quit: WeeChat 0.3.7]
[17:20:43] -!- automata_ has quit [Ping timeout: 256 seconds]
[17:26:59] -!- kmiyashiro [kmiyashiro!~KellyM@76-14-155-234.rk.wavecable.com] has joined #leaflet
[17:29:00] -!- plushy has quit [Quit: Leaving.]
[17:32:36] -!- Gast873 has quit [Quit: Bye Bye]
[17:34:46] -!- broofa [broofa!~broofa@173.252.71.2] has joined #leaflet
[17:41:17] -!- zzolo has quit [Quit: zzolo]
[17:42:30] -!- zzolo [zzolo!~zzolo@mail.minnpost.com] has joined #leaflet
[17:56:41] uw is now known as Guest85809
[17:56:49] -!- Guest85809 has quit [Changing host]
[17:58:12] Guest85809 is now known as uw
[18:15:49] -!- motioncontrol has quit [Client Quit]
[18:18:19] -!- sumpfralle has quit [Quit: Leaving.]
[18:26:11] -!- odogono has quit [Ping timeout: 252 seconds]
[18:30:29] -!- davec_ has quit [Ping timeout: 255 seconds]
[18:30:55] -!- mhaberler has quit [Ping timeout: 246 seconds]
[18:30:56] mhaberler_ is now known as mhaberler
[18:33:12] <jamesp> ne1 know how to write some text over a layer so it is at the very top?
[18:35:50] -!- mhaberler has quit [Ping timeout: 252 seconds]
[18:55:46] -!- automata- has quit [Ping timeout: 244 seconds]
[18:59:05] -!- automata_ has quit [Ping timeout: 246 seconds]
[19:06:27] ReadError_ is now known as ReadError
[19:10:15] -!- odogono [odogono!~mohiam@cpc14-king9-2-0-cust212.19-1.cable.virginmedia.com] has joined #leaflet
[19:15:08] -!- ktchk has quit [Quit: ktchk]
[19:21:15] -!- vladimirek has quit [Remote host closed the connection]
[19:21:48] -!- GargantuaSauce has quit [Ping timeout: 245 seconds]
[19:23:40] -!- automata__ has quit [Ping timeout: 244 seconds]
[19:25:13] -!- automata_ has quit [Read error: Connection reset by peer]
[19:39:43] -!- Thetawaves has quit [Quit: This computer has gone to sleep]
[19:57:08] -!- mattions has quit [Quit: Leaving]
[20:19:01] <jamesp> hello?
[20:19:40] <jamesp> var marker5 = new L.marker([41.7, -72.68]); <--- I have a question on this
[20:23:19] <ybon> just ask, don't ask to ask ; if someone knows the answer, it will answer ;)
[20:23:25] <ybon> he*
[20:24:54] <jamesp> ok
[20:26:21] <jamesp> marker has a option to set the title , how do you do that?
[20:27:34] <ybon> jamesp: http://leaflet.cloudmade.com/reference.html#marker :)
[20:27:51] <ybon> pass "title" in options
[20:29:05] <jamesp> like this ? var marker5 = new L.marker([41.7, -72.68], 'HI' );
[20:29:27] <ybon> nope
[20:29:44] <ybon> , {'title': 'HI'});
[20:31:32] <jamesp> Ok thanks is this true "any options are passed into most objects upon instantiation?
[20:32:05] <jamesp> i mean { }
[20:33:01] <ybon> ccorrect
[20:34:02] <jamesp> ybon thanks for the help
[20:34:18] <ybon> welcome :)
[20:39:33] toudi_ is now known as micges
[20:43:58] <jamesp> ybon if u read this without any fursther info - addEventListener( <Object> eventMap, <Object> context? ) - would you be able to figure it out?
[20:44:49] <ybon> well, it adds an event listener, what are you trying to guess?
[20:44:51] -!- Yoshi47 has quit [Quit: Leaving]
[20:48:40] -!- mutilator has quit [Ping timeout: 260 seconds]
[20:49:27] <jamesp> I am trying to say without concrete examples I struggle with understaning leaflet
[20:50:28] -!- micges has quit [Ping timeout: 244 seconds]
[20:50:49] <ybon> this is pure js, not leaflet linked, the event listener stuff
[20:53:04] -!- mk0 has quit [Quit: Leaving]
[20:54:13] <jamesp> OK
[20:57:23] <jamesp> If you look at http://api.jquery.com/text/ unless I see an example of its usage which they have I mainly don't get it, just wondered how it is for you?
[20:58:06] -!- _ink has quit [Ping timeout: 252 seconds]
[20:59:47] <jamesp> Anyways if you are on here friday I have built a minimal weather radar map using js, leaflet and jquery would you mind taking a look at it?
[21:00:09] <jamesp> give me your opinion
[21:00:51] <jamesp> it doesn't really do much yet, just your thoughts on what i have so far
[21:03:21] -!- mhaberler has quit [Ping timeout: 245 seconds]
[21:03:22] mhaberler_ is now known as mhaberler
[21:06:56] <jamesp> var attrib = new L.Control.Attribution; <--- for this can you somehow pass dynamic data into this? When you get a chance thanks got to go
[21:09:00] -!- ybon1 [ybon1!~ybon@ALagny-154-1-13-76.w83-112.abo.wanadoo.fr] has joined #leaflet
[21:10:48] -!- ybon has quit [Ping timeout: 240 seconds]
[21:10:59] ybon1 is now known as ybon
[21:12:13] -!- DJ9DJ has quit [Quit: by(t)e]
[21:25:23] -!- tom_m has quit [Quit: tom_m]
[21:26:08] -!- ve7it has quit [Ping timeout: 265 seconds]
[21:27:34] -!- FinboySlick has quit [Quit: Leaving.]
[21:27:58] -!- sarcanon [sarcanon!~chatzilla@adsl-99-132-212-20.dsl.irvnca.sbcglobal.net] has joined #leaflet
[21:33:17] -!- micges has quit [Client Quit]
[21:42:04] -!- chillly has quit [Quit: Leaving]
[21:42:18] -!- plushy [plushy!~plushy@Wikipedia/Plushy] has joined #leaflet
[21:52:59] -!- ve7it has quit [Remote host closed the connection]
[21:55:39] -!- syyl has quit [Quit: Leaving]
[22:09:41] -!- racycle has quit [Quit: racycle]
[22:14:02] -!- racycle [racycle!~racycle@75-25-129-128.lightspeed.sjcpca.sbcglobal.net] has joined #leaflet
[22:33:21] -!- cevad has quit [Quit: Leaving]
[22:38:23] -!- zlog has quit [Remote host closed the connection]
[22:38:55] -!- Tom_itx has quit []
[22:39:28] -!- petzlux [petzlux!95f13bbe@gateway/web/freenode/ip.149.241.59.190] has joined #leaflet
[22:43:14] <jamesp> setView <-- is used with what?
[22:43:43] -!- bedah has quit [Quit: Ex-Chat]
[22:43:44] <ybon> what as arguments, you mean?
[22:48:45] -!- racycle has quit [Quit: racycle]
[22:51:21] -!- cevad has quit [Ping timeout: 272 seconds]
[22:52:43] -!- skunkworks has quit [Read error: Connection reset by peer]
[22:54:47] -!- petzlux has quit [Quit: Page closed]
[22:58:53] -!- tjb1 has quit [Ping timeout: 245 seconds]
[22:59:51] -!- mhaberler has quit [Quit: mhaberler]
[23:06:23] -!- PCW has quit [Ping timeout: 245 seconds]
[23:06:31] PCW_ is now known as PCW
[23:06:58] -!- zzolo has quit [Quit: zzolo]
[23:17:55] -!- SWPadnos has quit [Changing host]
[23:20:00] -!- Loetmichel has quit [Ping timeout: 252 seconds]
[23:31:57] -!- asdfasd has quit [Ping timeout: 276 seconds]
[23:42:22] -!- ybon has quit [Quit: WeeChat 0.3.8]
[23:51:47] -!- plushy has quit [Quit: Leaving.]
[23:56:16] -!- rob_h has quit [Ping timeout: 260 seconds]
[23:56:20] -!- racycle [racycle!~racycle@75-25-129-128.lightspeed.sjcpca.sbcglobal.net] has joined #leaflet
[23:58:15] -!- micges has quit [Quit: Leaving]
[23:58:46] -!- grummund has quit [Ping timeout: 245 seconds]