RE: om-manager 0.1.0 released

2008-12-22 Thread KaZeR
_ De : community-boun...@lists.openmoko.org [mailto:community-boun...@lists.openmoko.org] De la part de Ilja O. Envoyé : samedi 20 décembre 2008 16:53 À : List for Openmoko community discussion Objet : om-manager 0.1.0 released Hello. I'm happy to announce that I've finally managed

RE: om-manager 0.1.0 released

2008-12-22 Thread KaZeR
...@lists.openmoko.org] De la part de Ilja O. Envoyé : samedi 20 décembre 2008 16:53 À : List for Openmoko community discussion Objet : om-manager 0.1.0 released Hello. I'm happy to announce that I've finally managed to push out 0.1.0 version of om-manager. Om-manager is host computer-based

Re: om-manager 0.1.0 released

2008-12-22 Thread Ilja O.
On Mon, Dec 22, 2008 at 10:46 AM, KaZeR ka...@altern.org wrote: Woopsie. Looks like i sent a blank mail, apologies. I tried it under windows : i had to create the app\log directory, or it would fail. ( IOError: [Errno 2] No such file or directory:

RE: om-manager 0.1.0 released

2008-12-22 Thread KaZeR
First of all, there is wxWidgets (http://www.wxwidgets.org/) and wxPython (http://wxpython.org/) wxPython is basically Python bindings to wxwdgets (since wxWidgets is the C++ Library, it can't be used directly by Python). So, if you have installed wxWidgets (that is C++ library), you

Re: om-manager 0.1.0 released

2008-12-22 Thread Ilja O.
Thanks for the clarification. I installed wxPython, but now it complains about yaml. Would you happen to have a full list of what's needed to use om-manager? About Yaml, is it this one? http://pyyaml.org/ You can find full list at the main page of project (

RE: om-manager 0.1.0 released

2008-12-22 Thread KaZeR
You can find full list at the main page of project ( http://code.google.com/p/om-manager/ ). With links to download pages of given projects (see 'Links' section at right on the main page of project). And yes, its http://pyyaml.org/ . Uh, right. Three

Re: om-manager 0.1.0 released

2008-12-22 Thread Ilja O.
Uh, right. Three comments, after 10 seconds of use : - nice Thanks! [grin] - detect user's homedir, instead of defaulting to /Users/ilya/Documents ? Sorry, distro wrapper didn't erase plugin configs before er... creating distribution. (I only use svn checkout, really). Its

Re: om-manager 0.1.0 released

2008-12-21 Thread Ilja O.
On Sat, Dec 20, 2008 at 8:46 PM, Yorick Moko yorickm...@gmail.com wrote: I installed python 3.0 on windows xp (sp3) from http://www.python.org/ftp/python/3.0/python-3.0.msi but when i try to run it I get F:\temp\dist\om-manager\apprun.py File F:\temp\dist\om-manager\app\run.py, line 78

Re: om-manager 0.1.0 released

2008-12-21 Thread Ilja O.
On Sat, Dec 20, 2008 at 10:22 PM, Lech Karol Pawłaszek i...@szluug.orgwrote: Bernd (Jesus McCloud) Prünster wrote: [...] Not that i think it has much to do with your error, but you do know how windows handles ssh? (the answer is: not at all, because windows doesn't know ssh or anything

Re: om-manager 0.1.0 released

2008-12-21 Thread Ilja O.
On Sat, Dec 20, 2008 at 9:05 PM, Yorick Moko yorickm...@gmail.com wrote: downloaded the 2.6.1 and now i get: F:\temp\dist\om-manager\apprun.py Traceback (most recent call last): File F:\temp\dist\om-manager\app\run.py, line 7, in module from app import logger, gui ImportError: No

Re: om-manager 0.1.0 released

2008-12-21 Thread Ilja O.
On Sun, Dec 21, 2008 at 10:44 PM, Ilja O. vrgh...@gmail.com wrote: On Sat, Dec 20, 2008 at 10:22 PM, Lech Karol Pawłaszek i...@szluug.orgwrote: Bernd (Jesus McCloud) Prünster wrote: [...] Not that i think it has much to do with your error, but you do know how windows handles ssh? (the

Re: om-manager 0.1.0 released

2008-12-21 Thread Petr Vanek
I'm happy to announce that I've finally managed to push out 0.1.0 version of om-manager. Wanted to try but: van...@laptop-vanek:~/FreeRunner/manager/dist/om-manager$ ./run.sh = UNHALTED EXCEPTION = Traceback (most recent call last): File ./app/run.py, line 92, in module

Re: om-manager 0.1.0 released

2008-12-21 Thread Ilja O.
On Sun, Dec 21, 2008 at 11:02 PM, Petr Vanek van...@penguin.cz wrote: I'm happy to announce that I've finally managed to push out 0.1.0 version of om-manager. Wanted to try but: van...@laptop-vanek:~/FreeRunner/manager/dist/om-manager$ ./run.sh = UNHALTED EXCEPTION = Traceback

Re: om-manager 0.1.0 released

2008-12-21 Thread Petr Vanek
van...@laptop-vanek:~/FreeRunner/manager/dist/om-manager$ aptitude show python-wxgtk2.6 Package: python-wxgtk2.6 State: installed Automatically installed: no Version: 2.6.3.2.2-3 Try to upgrade to latest wx (2.8.*). Just checked from my debian box -- program starts up nicely. thank you,

om-manager 0.1.0 released

2008-12-20 Thread Ilja O.
Hello. I'm happy to announce that I've finally managed to push out 0.1.0 version of om-manager. Om-manager is host computer-based Freerunner controlling utility. Currently it's able to flash Freeruner smartphone (dfu-util required), get logs, backup filesystem parts (to archive file on host

Re: om-manager 0.1.0 released

2008-12-20 Thread Yorick Moko
I installed python 3.0 on windows xp (sp3) from http://www.python.org/ftp/python/3.0/python-3.0.msi but when i try to run it I get F:\temp\dist\om-manager\apprun.py File F:\temp\dist\om-manager\app\run.py, line 78 print usage ^ SyntaxError: invalid syntax I'm probably doing

Re: om-manager 0.1.0 released

2008-12-20 Thread Al Johnson
You probably need Python 2.x as 3.0 has some major changes which cause code written for 2.x to fail. IIRC the print syntax is one of those changes. Follow the link if you want to see the details. http://docs.python.org/3.0/whatsnew/3.0.html On Saturday 20 December 2008, Yorick Moko wrote: I

Re: om-manager 0.1.0 released

2008-12-20 Thread Yorick Moko
downloaded the 2.6.1 and now i get: F:\temp\dist\om-manager\apprun.py Traceback (most recent call last): File F:\temp\dist\om-manager\app\run.py, line 7, in module from app import logger, gui ImportError: No module named app On Sat, Dec 20, 2008 at 7:58 PM, Al Johnson

Re: om-manager 0.1.0 released

2008-12-20 Thread Bernd (Jesus McCloud) Prünster
Yorick Moko schrieb: downloaded the 2.6.1 and now i get: F:\temp\dist\om-manager\apprun.py Traceback (most recent call last): File F:\temp\dist\om-manager\app\run.py, line 7, in module from app import logger, gui ImportError: No module named app On Sat, Dec 20, 2008 at 7:58 PM, Al

Re: om-manager 0.1.0 released

2008-12-20 Thread Lech Karol Pawłaszek
Bernd (Jesus McCloud) Prünster wrote: [...] Not that i think it has much to do with your error, but you do know how windows handles ssh? (the answer is: not at all, because windows doesn't know ssh or anything alse that is absolutely fundemantal regarding networking, so you have to use