[Ubuntu-phone] Access XML file in ~/

2013-12-30 Thread Israel
Is there a pure QML way to access and read an XML file from the users home path? I can already read and list the XML bits I want using QtQuick.XmlListModel 2.0 But I want to access a file in the users ~/.config Do I have to use C++ or is there some component somewhere to read and write to one file

Re: [Ubuntu-phone] Which small screen mobile phone will be supported by Ubuntu phone?

2013-12-30 Thread jupiter
Thanks Jackson, that is great, so many devices can be supported by Ubuntu phone. On 12/30/13, Jackson Doak wrote: > The galaxy nexus is the smallest officially supported phone, otherwise, > anything at https://wiki.ubuntu.com/Touch/Devices should work. > > > On Mon, Dec 30, 2013 at 1:31 PM, jupit

Re: [Ubuntu-phone] Access XML file in ~/

2013-12-30 Thread Nekhelesh Ramananthan
Hi, I think you can read any XML with XMLListModel. I think the issue you should be worrying about is the app permission. I am pretty sure that you wouldn't be able to access files outside your app folder without additional permissions. So whether you use C++ or QML XMLListModel, the issue would b

Re: [Ubuntu-phone] Access XML file in ~/

2013-12-30 Thread Israel
Thanks for responding. My main issue is to access the file in a relative path of ~/ Every user has a different path to get to their home folder /home//.config/ I want it to access the XML file from a relative ~/.config/ so far it seems I can only hard code the location.. Permissions aren't my main