Re: [Sugar-devel] Random notes on WebOS's Enyo

2012-06-04 Thread Manuel Kaufmann
On Sun, Jun 3, 2012 at 1:59 PM, Lionel Laské lio...@olpc-france.org wrote: BTW I'm wonder if there is a way to interact with Sugar (Datastore, Telepathy, ...) from Enyo - i.e. inside the HTML page. Something like the PhoneGap framework [3]. Any idea about that ? I have no idea about this but

Re: [Sugar-devel] Compiling sugar with jhbuild in Fedora 17

2012-06-04 Thread Manuel Kaufmann
On Fri, May 4, 2012 at 8:53 AM, Anish Mangal an...@activitycentral.com wrote: I used preupgrade to move to f17 yesterday night, and sugar-jhbuild worked out of the box after a recompile. (It was working on f16 as well). I'm dealing with this problem now. I couldn't compile and run Sugar Jhbuild

[Sugar-devel] Keyboard configuration on os12

2012-06-04 Thread Manuel Kaufmann
Hello, I remember that I could change the Keyboard configuration in os9 going to My settings and clicking on Keyboard. Today I noticed that Keyboard icon was removed from My Settings on os12. So, how can I change the keyboard behaviour now? -- Kaufmann Manuel Blog:

Re: [Sugar-devel] Etoys mp3 files

2012-06-04 Thread Bert Freudenberg
Just replying to tie up one loose end here ... On 01.06.2012, at 07:53, Ajay Garg wrote: Thanks Bert. 1) Bert, I re-compiled after installing all the header- and devel- packages as told by you (after incorporating a blocker-fix as per

Re: [Sugar-devel] Etoys mp3 files

2012-06-04 Thread Sascha Silbe
Ajay Garg a...@activitycentral.com writes: As seen from the logs, the (mp3) file that was opened, was present in a USB pen drive. ANY ENTRY, when accessed via USB-pen-drive, will give this error (i.e. mp3, jpeg, png - any file). Can you give more details, please? I can't reproduce the

[Sugar-devel] Object Chooser (was Re: Etoys mp3 files)

2012-06-04 Thread Bert Freudenberg
On 04.06.2012, at 13:43, Sascha Silbe wrote: It's quite likely that Etoys doesn't implement its side of the essentially undocumented Object Chooser API of Sugar 0.84+ correctly. In particular, the object_id parameter of the ObjectChooserResponse signal will contain a) the data store object id

[Sugar-devel] [REMINDER] Development team meeting --- 04. June 2012 (15:00 UTC)

2012-06-04 Thread Simon Schampijer
Hi, tomorrow we will have our weekly development team meeting after a few weeks of absence, the topics will be: - introducing new contributors - celebrating 0.96 release, what is left to do?, where we do need help? - environments for development: jhbuild on F17, activity development with

[Sugar-devel] [PATCH sugar] Set the SUGAR_LANGPACKDIR env variable when reading the GConf key, part of SL #3654

2012-06-04 Thread Simon Schampijer
We can not mix static and dynamic gconf bindings in one process, | export path as env variable so it can be read by sugar-activity when launching the activity. Signed-off-by: Simon Schampijer si...@laptop.org --- bin/sugar-session |6 ++ 1 file changed, 6

[Sugar-devel] [PATCH sugar-toolkit] Move the translation initialisation to an earlier stage, SL #3654

2012-06-04 Thread Simon Schampijer
To not depend on gconf at this stage the shell does set an env variable when reading the GConf key. This is handled in sugar-activity deployed by the sugar-toolkit-gtk3. Signed-off-by: Simon Schampijer si...@laptop.org --- src/sugar/activity/activity.py |6 -- src/sugar/activity/i18n.py

[Sugar-devel] [PATCH sugar-toolkit-gtk3] Move the translation initialisation to an earlier stage, SL #3654

2012-06-04 Thread Simon Schampijer
Must be done early, some activities set translations globally. To not depend on gconf at this stage the shell does set an env variable when reading the GConf key. Signed-off-by: Simon Schampijer si...@laptop.org --- bin/sugar-activity |8 src/sugar3/activity/activity.py

[Sugar-devel] [ASLO] Release Words-17

2012-06-04 Thread Sugar Labs Activities
Activity Homepage: http://activities.sugarlabs.org/addon/4315 Sugar Platform: 0.82 - 0.96 Download Now: http://activities.sugarlabs.org/downloads/file/28091/words-17.xo Release notes: Sugar Labs Activities http://activities.sugarlabs.org ___

Re: [Sugar-devel] [ASLO] Release Words-17

2012-06-04 Thread Rafael Ortiz
On Mon, Jun 4, 2012 at 11:56 AM, Sugar Labs Activities activit...@sugarlabs.org wrote: Activity Homepage: http://activities.sugarlabs.org/addon/4315 Sugar Platform: 0.82 - 0.96 Download Now: http://activities.sugarlabs.org/downloads/file/28091/words-17.xo Release notes: Recode to

[Sugar-devel] SUGAR_LANGPACKDIR

2012-06-04 Thread Bert Freudenberg
On 04.06.2012, at 18:51, Simon Schampijer wrote: +langpackdir = client.get_string('/desktop/sugar/i18n/langpackdir') +if langpackdir is not None and langpackdir: +os.environ['SUGAR_LANGPACKDIR'] = langpackdir How should activities use SUGAR_LANGPACKDIR? Google comes up empty.

Re: [Sugar-devel] SUGAR_LANGPACKDIR

2012-06-04 Thread Simon Schampijer
On 06/04/2012 07:04 PM, Bert Freudenberg wrote: On 04.06.2012, at 18:51, Simon Schampijer wrote: +langpackdir = client.get_string('/desktop/sugar/i18n/langpackdir') +if langpackdir is not None and langpackdir: +os.environ['SUGAR_LANGPACKDIR'] = langpackdir How should

Re: [Sugar-devel] SUGAR_LANGPACKDIR

2012-06-04 Thread Chris Leonard
On Mon, Jun 4, 2012 at 1:15 PM, Simon Schampijer si...@schampijer.de wrote: On 06/04/2012 07:04 PM, Bert Freudenberg wrote: On 04.06.2012, at 18:51, Simon Schampijer wrote: +    langpackdir = client.get_string('/desktop/sugar/i18n/langpackdir') +    if langpackdir is not None and

Re: [Sugar-devel] SUGAR_LANGPACKDIR

2012-06-04 Thread Daniel Drake
On Mon, Jun 4, 2012 at 11:34 AM, Chris Leonard cjlhomeaddr...@gmail.com wrote: Just FYI, we are currently generating langpacks for Sugar 0.94 http://translate.sugarlabs.org/langpacks/ A directory for master (0.95) exists, but as dev builds pick up new L10n, langpacks are not typically needed

Re: [Sugar-devel] [PATCH sugar-toolkit] Move the translation initialisation to an earlier stage, SL #3654

2012-06-04 Thread Daniel Drake
On Mon, Jun 4, 2012 at 10:52 AM, Simon Schampijer si...@schampijer.de wrote: To not depend on gconf at this stage the shell does set an env variable when reading the GConf key. This is handled in sugar-activity deployed by the sugar-toolkit-gtk3. Thanks Simon, these 3 patches look good to me.

Re: [Sugar-devel] SUGAR_LANGPACKDIR

2012-06-04 Thread Bert Freudenberg
On 04.06.2012, at 19:15, Simon Schampijer wrote: On 06/04/2012 07:04 PM, Bert Freudenberg wrote: On 04.06.2012, at 18:51, Simon Schampijer wrote: +langpackdir = client.get_string('/desktop/sugar/i18n/langpackdir') +if langpackdir is not None and langpackdir: +

Re: [Sugar-devel] Compiling sugar with jhbuild in Fedora 17

2012-06-04 Thread Manuel Kaufmann
On Mon, Jun 4, 2012 at 7:53 AM, Manuel Kaufmann humi...@gmail.com wrote: I'm dealing with this problem now. I couldn't compile and run Sugar Jhbuild in my new Fedora 17 installation. Here is my shell.log: http://fpaste.org/L67g/ I had to skip two steps in the compilation process related with

Re: [Sugar-devel] [PATCH Terminal] The same tabs as browse

2012-06-04 Thread Rafael Ortiz
On Sun, Jun 3, 2012 at 4:09 PM, S. Daniel Francis fran...@sugarlabs.orgwrote: Signed-off-by: Daniel Francis fran...@sugarlabs.org Signed-off-by: Agustin Zubiaga a...@sugarlabs.org --- icons/close-tab.svg | 27 ++ terminal.py | 42 ++- widgets.py |

[Sugar-devel] [PATCH Terminal] Don't save a data file in journal

2012-06-04 Thread S. Daniel Francis
This patch is temporary until we solve the problem with the method Vte.Terminal.get_text Signed-off-by: Daniel Francis fran...@sugarlabs.org --- terminal.py | 65 ++- 1 file changed, 33 insertions(+), 32 deletions(-) diff --git

Re: [Sugar-devel] [PATCH Terminal] Don't save a data file in journal

2012-06-04 Thread S. Daniel Francis
Commited as: http://git.sugarlabs.org/terminal/mainline/commit/5bff52765091225a1ef4095812064337c0b48dd3 Cheers. 2012/6/4 S. Daniel Francis fran...@sugarlabs.org: This patch is temporary until we solve the problem with the method Vte.Terminal.get_text Signed-off-by: Daniel Francis

Re: [Sugar-devel] [PATCH Terminal] Don't save a data file in journal

2012-06-04 Thread Rafael Ortiz
On Mon, Jun 4, 2012 at 2:46 PM, S. Daniel Francis fran...@sugarlabs.orgwrote: Commited as: http://git.sugarlabs.org/terminal/mainline/commit/5bff52765091225a1ef4095812064337c0b48dd3 Cheers. 2012/6/4 S. Daniel Francis fran...@sugarlabs.org: This patch is temporary until we solve the

Re: [Sugar-devel] Fwd: Running pulseaudio and alsa together.

2012-06-04 Thread Martin Langhoff
Hi Ajay, we install the bits for PA (due to dependencies), but disable it. Look at olpc-os-builder; git grep for pulse -- that will show you how we disable it. Alsa is always present and in use. When you are using PA, PA connects to alsa and uses it directly. Nomal programs then connect to PA

Re: [Sugar-devel] Compiling sugar with jhbuild in Fedora 17

2012-06-04 Thread Simon Schampijer
On 06/04/2012 09:14 PM, Manuel Kaufmann wrote: On Mon, Jun 4, 2012 at 7:53 AM, Manuel Kaufmannhumi...@gmail.com wrote: I'm dealing with this problem now. I couldn't compile and run Sugar Jhbuild in my new Fedora 17 installation. Here is my shell.log: http://fpaste.org/L67g/ I had to skip two

Re: [Sugar-devel] Object Chooser (was Re: Etoys mp3 files)

2012-06-04 Thread Bert Freudenberg
On 04.06.2012, at 14:13, Bert Freudenberg wrote: On 04.06.2012, at 13:43, Sascha Silbe wrote: It's quite likely that Etoys doesn't implement its side of the essentially undocumented Object Chooser API of Sugar 0.84+ correctly. In particular, the object_id parameter of the

[Sugar-devel] Activity Central looks for a person for testing developments on Sugar platform

2012-06-04 Thread Pablo Flores
We are looking for someone to work on testing and quality assurance (QA) for Sugar Activities and changes to the Sugar platform itself. The person we're looking for is rigorous, methodical, and patient when searching for bugs in different projects. If you're interested in this position please

[Sugar-devel] Activity Central looks for a developer for working on Sugar-related projects

2012-06-04 Thread Pablo Flores
We are looking for a Python developer with experience in working with GTK. Experience participating in open source projects, particularly in the Sugar Platform, is highly valued. If you're interested in this position please contact hr@activitycentral.comwith information about your interests and

Re: [Sugar-devel] [REMINDER] Development team meeting --- 05. June 2012 (15:00 UTC)

2012-06-04 Thread Simon Schampijer
Oups, it should have been the Tuesday the 5th! On 06/04/2012 06:08 PM, Simon Schampijer wrote: Hi, tomorrow we will have our weekly development team meeting after a few weeks of absence, the topics will be: - introducing new contributors - celebrating 0.96 release, what is left to do?, where

[Sugar-devel] [ASLO] Release Turtle Blocks-142

2012-06-04 Thread Sugar Labs Activities
Activity Homepage: http://activities.sugarlabs.org/addon/4027 Sugar Platform: 0.82 - 0.96 Download Now: http://activities.sugarlabs.org/downloads/file/28092/turtle_art-142.xo Release notes: 142 ENHANCEMENT: * Improved sensor calibration for XO 1.75 (Thanks to Tony Forster, Guzman Trindad,

[Sugar-devel] [PATCH Browse] Restore journal file picker (#3411)

2012-06-04 Thread Daniel Drake
The run-file-chooser signal can be used to intercept a request for a file upload and display a custom file chooser. We want to do this to allow the user to upload files from the journal. By default, the standard GTK+ file chooser was being shown. run-file-chooser is present in WebKit2 and has

[Sugar-devel] 0.96 Change?

2012-06-04 Thread Art Hunkins
I notice that for Sugar 0.96 it seems necessary, in copying a file from the Terminal to a USB stick, to do: cp myfile.py /run/media/liveuser/myUSB/myfile.py (perhaps I've got liveuser and myUSB reversed) instead of the much simpler (in 0.94 and before): cp myfile.py /media/myUSB/myfile.py

Re: [Sugar-devel] 0.96 Change?

2012-06-04 Thread Manuel Quiñones
2012/6/4 Art Hunkins abhun...@uncg.edu: I notice that for Sugar 0.96 it seems necessary, in copying a file from the Terminal to a USB stick, to do:  cp myfile.py /run/media/liveuser/myUSB/myfile.py (perhaps I've got liveuser and myUSB reversed) instead of the much simpler (in 0.94 and

Re: [Sugar-devel] 0.96 Change?

2012-06-04 Thread Alan Jhonn Aguiar Schwyn
I have the same question days ago..Seems that is a change of Fedora 17.I prefer thousand of times the 'universal' linux place: /media..But, will have to get used..O someone make a symbolic link of /run/media to /media/ :-) Regards! Alan From: abhun...@uncg.edu To:

Re: [Sugar-devel] 0.96 Change?

2012-06-04 Thread James Cameron
You youngsters. I prefer the universal UNIX place, /mnt. ;-) I agree a symlink would be useful, but we have decided to go with the upstream change rather than keep building a collection of patches that revert design decisions made by others. -- James Cameron http://quozl.linux.org.au/

Re: [Sugar-devel] 0.96 Change?

2012-06-04 Thread Alan Jhonn Aguiar Schwyn
You youngsters. I'm 22.. Date: Tue, 5 Jun 2012 12:37:15 +1000 From: qu...@laptop.org To: alan...@hotmail.com CC: abhun...@uncg.edu; sugar-devel@lists.sugarlabs.org Subject: Re: [Sugar-devel] 0.96 Change? You youngsters. I prefer the universal UNIX place, /mnt. ;-) I agree a

[Sugar-devel] Gtk3 only actiivties on ASLO

2012-06-04 Thread Aleksey Lim
Hi all! There are several Gtk3 only activities on ASLO that are stable for Sugar-0.96+. The problem is that there is a global stable sugar version setting that is being used to show activiites only for such version if people opened ASLO from regular web browser. A notice for activity developers.

Re: [Sugar-devel] [PATCH sugar-toolkit] Move the translation initialisation to an earlier stage, SL #3654

2012-06-04 Thread Manuel Quiñones
2012/6/4 Daniel Drake d...@laptop.org: On Mon, Jun 4, 2012 at 10:52 AM, Simon Schampijer si...@schampijer.de wrote: To not depend on gconf at this stage the shell does set an env variable when reading the GConf key. This is handled in sugar-activity deployed by the sugar-toolkit-gtk3. Thanks

Re: [Sugar-devel] [PATCH sugar-toolkit] Move the translation initialisation to an earlier stage, SL #3654

2012-06-04 Thread Rafael Ortiz
On Tue, Jun 5, 2012 at 12:03 AM, Manuel Quiñones ma...@laptop.org wrote: 2012/6/4 Daniel Drake d...@laptop.org: On Mon, Jun 4, 2012 at 10:52 AM, Simon Schampijer si...@schampijer.de wrote: To not depend on gconf at this stage the shell does set an env variable when reading the GConf key.

Re: [Sugar-devel] Object Chooser (was Re: Etoys mp3 files)

2012-06-04 Thread Ajay Garg
On Tue, Jun 5, 2012 at 2:50 AM, Bert Freudenberg b...@freudenbergs.dewrote: On 04.06.2012, at 14:13, Bert Freudenberg wrote: On 04.06.2012, at 13:43, Sascha Silbe wrote: It's quite likely that Etoys doesn't implement its side of the essentially undocumented Object Chooser API of Sugar