[b2g] Some observations on memory usages in main process

2013-07-03 Thread Ting-Yuan Huang
Hi, We recently observed that 1. About half of the anonymous memory in b2g do not vary very often. We taked a snapshot after booting into lock-screen. After playing for a while[1], we taked the other snapshot. The common parts of the two snapshot are around 30MB out of total 60MB

Re: [b2g] Some observations on memory usages in main process

2013-07-03 Thread Thinker K.F. Li
Thanks Ting-Yuan for spending time on investigation of memory modifications. The basic idea behind tasks is to figure out how many data are not modified after built. If we write these data out to the filesystem after boot, and use the file as a back object of anonymous memory pages, then we can

[b2g] EAP-SIM Architecture proposal

2013-07-03 Thread Dimi Lee
Hi all, Currently taipei team are implementing the EAP-SIM WIFI authentication protocol for B2G device. We want to share current architecture to know if there are any problem or suggestion of this design. So any suggestion or question is welcome. I will briefly describe what is EAP-SIM

Re: [b2g] NetworkManager and multi SIM

2013-07-03 Thread edgar_chen
Hi Alberto: Please see my inline comment. Thanks Best Regards, Edgar Chen -- Mozilla Taiwan ec...@mozilla.com 於 2013/7/2 上午 01:59, ALBERTO CRESPELL PEREZ 提到: Hi everyone, I see that current work to support multi SIM goes from lower layers to upper layers covering the main SIM features, but

Re: [b2g] mozilla-b2g github avatar

2013-07-03 Thread Ben Kelly
The media team turned around a blueprint image pretty fast: https://bug889832.bugzilla.mozilla.org/attachment.cgi?id=770827 Thoughts? I think we would need someone on this list of admins to actually make the change: https://github.com/organizations/mozilla-b2g/teams/120107 Thanks. Ben

Re: [b2g] Engineering wish list

2013-07-03 Thread Alexandre BM
Hello Fabrice, Thanks for this details, if we have a new idea about a feature can we submit it ? If so, where can I share it ? Thanks :) On mer. 03 juil. 2013 20:03:35 CET, Fabrice Desre wrote: Hi all, A few months ago, Jaime and Jonas sent out a survey to gather items that engineering folks

Re: [b2g] Engineering wish list

2013-07-03 Thread james jones
On Wed, Jul 3, 2013 at 3:15 PM, Alexandre BM salexandre...@gmail.comwrote: Hello Fabrice, Thanks for this details, if we have a new idea about a feature can we submit it ? If so, where can I share it ? Thanks :) On mer. 03 juil. 2013 20:03:35 CET, Fabrice Desre wrote: Hi all, A few

Re: [b2g] Engineering wish list

2013-07-03 Thread james jones
is there going to be an alternative or should I look at writing extensions? On Wed, Jul 3, 2013 at 3:54 PM, Fabrice Desre fabr...@mozilla.com wrote: On 07/03/2013 12:27 PM, james jones wrote: same as above. Also I am curious has NPAPI been left out on purpose or has it been overlooked?

[b2g] Flashing from VMWare Fusion problematic?

2013-07-03 Thread Stefan Arentz
In the past I have successfully flashed my (Unagi) phone from Ubuntu running in VMWare Fusion. But I can’t get that work anymore. Is this working for anyone? I’m on OS X 10.9 with VMWare Fusion 5.0.3 and building in Ubuntu 13.04/64-bit. I have no USB problems when using ADB to connect to the

[b2g] WebAPI for sharing on social networks

2013-07-03 Thread Alexandre BM
Hello, It was about quite moment that I'm thinking about a way to share content on social networks, and kind of features that people need is missing on firefoxOS I know that there is a webapp that shares content on Twitter, Flickr etc ... but It would be nice to renew the user experience. Here is

Re: [b2g] Engineering wish list

2013-07-03 Thread jose llopis
Any plans for an accesory kit? (ADK like or something else?) ___ dev-b2g mailing list dev-b2g@lists.mozilla.org https://lists.mozilla.org/listinfo/dev-b2g

[b2g] Is it possible to autofocus on Firefox OS?

2013-07-03 Thread Andre Mendes
Hello, I am trying to make my app focus on a input field when it finishes loading. I tried autofocus=true as input parameter; didn't work Also tried $(document).ready(function(){ ('#my-input').focus(); }); didn't worked as well; As we are using angular too, I tried the angular equivalent of the

Re: [b2g] EAP-SIM Architecture proposal

2013-07-03 Thread Masashi Honma
Great! I'm doing same project. Now I can connect with EAP-SIM/AKA/AKA' by using SIM emulator in wpa_supplicant. Because I don't have SIM reader. If you want, I can upload the patch. But I have concern about the approach using pcsc funcs. I guess each SIM vendor has own SIM API. So I think we

Re: [b2g] Is it possible to autofocus on Firefox OS?

2013-07-03 Thread Rudy Lu
Hi André, I am not sure if autofocus is supported right now. But invoke focus() on an input element should work, var input = document.getElementById('input-id'); input.focus(); If you cannot get it to work, please feel free to post your sample code somewhere and/or open a bug on bugzilla.