--- Log opened Thu Jun 09 00:00:47 2016 01:12 -!- xenos1984 [~xenos1984@118-166-191-90.dyn.estpak.ee] has joined #navit 01:25 -!- jjardon [sid723@gateway/web/irccloud.com/x-xldvzxzutoqqnybt] has quit [Ping timeout: 260 seconds] 01:33 -!- jjardon [sid723@gateway/web/irccloud.com/x-jqsunpdxguqloqad] has joined #navit 02:42 -!- jjelen [jjelen@nat/redhat/x-ckqtgjtlsjxrnwgs] has joined #navit 03:37 -!- j_f-f [~quassel@rs-6.jff-webhosting.net] has quit [Remote host closed the connection] 03:40 -!- j_f-f [~quassel@rs-6.jff-webhosting.net] has joined #navit 04:14 -!- Robotaxi [3ef5dbf5@gateway/web/freenode/ip.62.245.219.245] has joined #navit 04:46 -!- jonathanmaw [~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk] has joined #navit 05:29 -!- Robotaxi [3ef5dbf5@gateway/web/freenode/ip.62.245.219.245] has quit [K-Lined] 06:29 -!- tim01234 [~tim01234@dslb-178-008-229-138.178.008.pools.vodafone-ip.de] has joined #navit 06:32 #navit: < tim01234> hi! I can use spawn() from gui or osd to execute some external program. That is really nice. I would like to pass the coordinates of the position or of the point the used clicked on the map to the script. Is there a possibility to do that? 10:25 -!- jjelen [jjelen@nat/redhat/x-ckqtgjtlsjxrnwgs] has quit [Ping timeout: 260 seconds] 11:16 -!- Robotaxi [3ef5dbf5@gateway/web/freenode/ip.62.245.219.245] has joined #navit 12:12 -!- Robotaxi [3ef5dbf5@gateway/web/freenode/ip.62.245.219.245] has quit [Ping timeout: 250 seconds] 12:24 -!- robertp [5cd9eea9@gateway/web/freenode/ip.92.217.238.169] has joined #navit 12:24 #navit: < robertp> hi all 12:31 -!- jonathanmaw [~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk] has quit [Quit: Ex-Chat] 13:49 #navit: < KaZeR> hi there 13:50 #navit: < KaZeR> tim01234: i don't think someone has done it yet, but it should not be too hard. Are you familiar with C? 14:09 #navit: < robertp> hi kazer 14:12 -!- jjardon [sid723@gateway/web/irccloud.com/x-jqsunpdxguqloqad] has quit [Ping timeout: 260 seconds] 14:12 #navit: < tim01234> I did some modifications in navit_cmd_spawn(). Looks ok for now. Just would be nice if it is possible without modifying the source. 14:14 -!- robertp_ [5cd9eea9@gateway/web/freenode/ip.92.217.238.169] has joined #navit 14:16 -!- jjardon [sid723@gateway/web/irccloud.com/x-wannugrjvxbwomqn] has joined #navit 14:16 -!- robertp [5cd9eea9@gateway/web/freenode/ip.92.217.238.169] has quit [Ping timeout: 250 seconds] 14:22 -!- jjardon [sid723@gateway/web/irccloud.com/x-wannugrjvxbwomqn] has quit [Ping timeout: 260 seconds] 14:22 -!- jjardon [sid723@gateway/web/irccloud.com/x-lfcgtaedxocaaxyt] has joined #navit 14:28 #navit: < KaZeR> definitely. Can you share your patch? Maybe we can integrate it 14:29 #navit: < KaZeR> a PR request on github would be the preferred way 14:29 #navit: * KaZeR realizes that PR request is redundant. Meh. 14:30 #navit: < robertp_> could be worse: Just pull a PR-request :D 14:37 -!- robertp_ [5cd9eea9@gateway/web/freenode/ip.92.217.238.169] has quit [Ping timeout: 250 seconds] 14:37 #navit: < KaZeR> haha indeed 14:38 -!- robertp [5cd9eea9@gateway/web/freenode/ip.92.217.238.169] has joined #navit 14:58 -!- robertp [5cd9eea9@gateway/web/freenode/ip.92.217.238.169] has quit [Ping timeout: 250 seconds] 15:17 #navit: < tim01234> my patch is not very universal. In general, it is just 15:17 #navit: < tim01234> gui_get_attr(this->gui, attr_click_coord_geo, attrClickCoord, NULL); 15:18 #navit: < tim01234> argv[2]=attr_to_text(attrClickCoord,NULL,1); 15:51 -!- tryagain [~quassel@178.216.76.174] has joined #navit 15:52 #navit: < tryagain> hi all 15:53 #navit: < tryagain> tim01234 try in GUI onclick='navit.spawn("/bin/echo",click_coord_geo)' 15:53 -!- robertp [5cd9eea9@gateway/web/freenode/ip.92.217.238.169] has joined #navit 15:55 #navit: < robertp> hi tryagain, could you explain, how the attr (as you did with nav_status) work? I want to create some for the audio plugin and am totally stuck, because i probably miss the callback thing. 15:56 #navit: < robertp> my connection is very bad tonight, so i might be thrown off irc. But, i'll read the logs. 15:59 #navit: < tryagain> robertp can you elaborate, what do you have now and what do you want to change? 16:00 #navit: < robertp> I have an audio plugin, which status i want to show on a osd item conditionally with enable_expression. 16:01 #navit: < robertp> I looked at the vehicle.c and vehicle_gpsd.c code to get the idea behind the attrs. From there I created a get and set function for the plugin (generically) and for my pugin type specifically. 16:02 #navit: < robertp> https://github.com/pohlinkzei/navit/blob/audio_test_attr/navit/audio/player-stub/stub.c#L117-L199 16:03 #navit: < robertp> and https://github.com/pohlinkzei/navit/blob/audio_test_attr/navit/audio.c#L41-L133 16:05 #navit: < robertp> I can set the attr with cmd="audio.playing=1" inside a osd command but if i change inside the plugin itself noone cares and the attr isnt updated. 16:08 #navit: < robertp> me fool realized that tryagain != mvglasow... Oh my God, i am geting old. 16:15 #navit: < tryagain> that makes sense. I was a bit lost looking at nav_status code :) 16:16 #navit: < robertp> Sorry.... 16:20 #navit: < tryagain> np... Do you have something like https://github.com/navit-gps/navit/blob/trunk/navit/osd/core/osd_core.c#L1836? 17:00 -!- robertp [5cd9eea9@gateway/web/freenode/ip.92.217.238.169] has quit [Ping timeout: 250 seconds] 17:09 -!- tim01234 [~tim01234@dslb-178-008-229-138.178.008.pools.vodafone-ip.de] has quit [] 20:06 -!- xenos1984 [~xenos1984@118-166-191-90.dyn.estpak.ee] has quit [Quit: Leaving.] 20:48 #navit: < Navit> The following compiles failed: http://download.navit-project.org/logs/navit/android_armv5te/svn/navit-svn-6668.failed http://download.navit-project.org/logs/navit/src/svn/navit-svn-6668.failed http://download.navit-project.org/logs/navit/openmoko/svn/navit-svn-6668.failed http://download.navit-project.org/logs/navit/win32/svn/navit-svn-6668.failed http://download.navit-project.org/logs/navit/n800/svn/navit-svn-6668.failed http://download.navit-project.or 20:48 #navit: < Navit> it-svn-6668.failed http://download.navit-project.org/logs/navit/android_x86/svn/navit-svn-6668.failed http://download.navit-project.org/logs/navit/tomtom/svn/navit-svn-6668.failed 20:48 #navit: < Navit> See compile results history at http://download.navit-project.org/logs/navit/stats.html 22:27 -!- DKT [6cde5970@gateway/web/freenode/ip.108.222.89.112] has joined #navit 22:28 #navit: < DKT> i have a pi 3 and i think 6600+ navit build no updates i can see i need 4gig map file of the usa and all i get is a yellow pic and no locator of my gps 22:29 #navit: < DKT> xgps shows signals for my gps --- Log closed Fri Jun 10 00:00:49 2016