[Sugar-devel] Branching Glucose modules

2012-06-14 Thread Simon Schampijer
Hi, I just branched the various Glucose modules. The 'sucrose-0.96' branch will be used for stable releases and the master branch to continue further development. Bug fixes will be cherry-picked from the master branches to the stable branches. * sugar * sugar-toolkit-gtk3 * sugar-artwork * s

Re: [Sugar-devel] Sugar module build is broken by translations

2012-06-13 Thread Simon Schampijer
On 06/13/2012 06:50 PM, Daniel Narvaez wrote: That's bad :( Would reverting the commit break pootle? I though so. I still hope we get a pootle maintainer soon to help us on this end. If we was using gerrit the commits could be pushed only after buildbot verified they works :) Once we have

Re: [Sugar-devel] Sugar module build is broken by translations

2012-06-13 Thread Simon Schampijer
On 06/13/2012 05:15 PM, Daniel Narvaez wrote: Hello, the build on sugar git master has been broken for a few days for me on Fedora 17. aym.po:1912: duplicate message definition... aym.po:1890: ...this is the location of the first definition aym.po:1956: duplicate message definition... aym.po:18

Re: [Sugar-devel] [PATCH Browse] Remove GObject threads - SL #3670

2012-06-13 Thread Simon Schampijer
Great, I think we can remove it indeed. It fixes the non-clean shutdown of the activity. What would be great here is testing, so we don't oversee an issue. Running our non-existing browse-smoke-test...:) Regards, Simon On 06/12/2012 03:19 PM, Manuel Quiñones wrote: Having GObject threads is

[Sugar-devel] [PATCH jukebox] setup.py: Remove the bundle name from bundlebuild start method

2012-06-13 Thread Simon Schampijer
bundle_name is deprecated, now comes from activity.info Signed-off-by: Simon Schampijer --- setup.py |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 318c786..d3ab3a3 100755 --- a/setup.py +++ b/setup.py @@ -18,4 +18,4 @@ from sugar.activity

[Sugar-devel] [PATCH sugar-jhbuild] Remove obsolete fix_manifest call when building activities

2012-06-13 Thread Simon Schampijer
The fix_manifest command is obsolete. Signed-off-by: Simon Schampijer --- sjhbuild/bundlemodule.py |4 1 file changed, 4 deletions(-) diff --git a/sjhbuild/bundlemodule.py b/sjhbuild/bundlemodule.py index 05b24e3..e7f7e1d 100644 --- a/sjhbuild/bundlemodule.py +++ b/sjhbuild

Re: [Sugar-devel] [IAEP] Sugar as a Mac Ap?

2012-06-13 Thread Simon Schampijer
The question is what you refer to when you talk about Sugar. The concept of an app is similar to the concept of an Activity in Sugar. If you want to bring educational material to the ipad you have to look at specific Apps like 'Move the turtle' which is similar to Turtle Art. 'garageband' is ano

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

2012-06-12 Thread Simon Schampijer
http://meeting.sugarlabs.org/sugar-meeting/meetings/2012-06-12 http://meeting.sugarlabs.org/sugar-meeting/meetings/2012-06-12T14:47:04.html Regards, Simon ___ Sugar-devel mailing list Sugar-devel@lists.sugarlabs.org http://lists.sugarlabs.org/listin

[Sugar-devel] [PATCH sugar-jhbuild] Update the Fedora dependencies

2012-06-12 Thread Simon Schampijer
ites to not fallback on rawhide unintentionally. Signed-off-by: Simon Schampijer --- config/sysdeps/50fedora-17.xml | 11 +++ 1 file changed, 11 insertions(+) create mode 100644 config/sysdeps/50fedora-17.xml diff --git a/config/sysdeps/50fedora-17.xml b/config/sysdeps/50fedora-17.xml

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

2012-06-12 Thread Simon Schampijer
Hi, today we will have our weekly development team meeting, the topics will be: - Introducing new contributors - Update list of action items - Porting of activities (GTK2 + Pygtk ---> GTK3 + gobject-introspction/pygobject) - 0.96 release status - Environments for development: jhbuild on F1

Re: [Sugar-devel] [PATCH sugar] Create a default unencrypted keyring, OLPC #10290

2012-06-11 Thread Simon Schampijer
Follow-up: Upstream seem to work on the possibility to use the XDG dirs, so one can specify an alternative path. https://bugzilla.gnome.org/show_bug.cgi?id=613644 Thanks to Marco for pointing that out, Simon On 04/16/2012 12:33 PM, Simon Schampijer wrote: This patch does create an

[Sugar-devel] [RELEASE] sugar-toolkit-gtk3-0.96.4

2012-06-06 Thread Simon Schampijer
== Source == http://download.sugarlabs.org/sources/sucrose/glucose/sugar-toolkit-gtk3/sugar-toolkit-gtk3-0.96.4.tar.bz2 == News == * Release 0.96.4 (Simon Schampijer) * Make sure we have a widget before attaching an invoker, SL #3460 (Simon Schampijer) * Replacing set_data/get_data with a

Re: [Sugar-devel] [PATCH sugar-toolkit-gtk3] Replacing set_data/get_data with a python attribute

2012-06-06 Thread Simon Schampijer
On 06/06/2012 02:05 PM, Manuel Quiñones wrote: 2012/6/6 Simon Schampijer: set_data/get_data not available anymore is not available anymore [1]. The recommended approach is using a python attribute, which we do. Changing to use the attribute in the activity class slipped by mistake into

Re: [Sugar-devel] [PATCH sugar-toolkit-gtk3] Make sure we have a widget before attaching an invoker, SL #3460

2012-06-06 Thread Simon Schampijer
On 06/06/2012 02:51 PM, Manuel Quiñones wrote: Tested-by: Manuel Quiñones Thanks Manuel for the quick feedback, pushed. Regards, Simon ___ Sugar-devel mailing list Sugar-devel@lists.sugarlabs.org http://lists.sugarlabs.org/listinfo/sugar-devel

[Sugar-devel] [PATCH sugar-toolkit-gtk3] Make sure we have a widget before attaching an invoker, SL #3460

2012-06-06 Thread Simon Schampijer
having a widget at this point. Signed-off-by: Simon Schampijer --- src/sugar3/graphics/palettewindow.py |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/sugar3/graphics/palettewindow.py b/src/sugar3/graphics/palettewindow.py index c3431b7..2c8816c 100644 --- a/src

[Sugar-devel] [PATCH sugar-toolkit-gtk3] Replacing set_data/get_data with a python attribute

2012-06-06 Thread Simon Schampijer
/show_bug.cgi?id=641944 Signed-off-by: Simon Schampijer --- src/sugar3/graphics/colorbutton.py |4 ++-- src/sugar3/graphics/menuitem.py |4 ++-- src/sugar3/graphics/palettewindow.py |4 ++-- src/sugar3/graphics/toolbutton.py|5 ++--- 4 files changed, 8 insertions(+), 9 deletions

[Sugar-devel] [RELEASE] sugar-toolkit-gtk3-0.96.3

2012-06-05 Thread Simon Schampijer
== Source == http://download.sugarlabs.org/sources/sucrose/glucose/sugar-toolkit-gtk3/sugar-toolkit-gtk3-0.96.3.tar.bz2 == News == * Release 0.96.3 (Simon Schampijer) * Move the translation initialisation to an earlier stage, SL #3654 (Simon Schampijer) * Commit from Sugar Labs: Translation

[Sugar-devel] [RELEASE] sugar-toolkit-0.96.3

2012-06-05 Thread Simon Schampijer
== Source == http://download.sugarlabs.org/sources/sucrose/glucose/sugar-toolkit/sugar-toolkit-0.96.3.tar.bz2 == News == * Release 0.96.3 (Simon Schampijer) * Move the translation initialisation to an earlier stage, SL #3654 (Simon Schampijer

[Sugar-devel] [RELEASE] sugar-0.96.2

2012-06-05 Thread Simon Schampijer
== Source == http://download.sugarlabs.org/sources/sucrose/glucose/sugar/sugar-0.96.2.tar.bz2 == News == * Release 0.96.2 (Simon Schampijer) * Update Sucrose version for upcoming 0.96.2 (Simon Schampijer) * Remove the support for the langpackdir, SL #3654 (Simon Schampijer) * Add src/jarabe

[Sugar-devel] [PATCH sugar] Remove the support for the langpackdir, SL #3654

2012-06-05 Thread Simon Schampijer
Signed-off-by: Simon Schampijer --- data/sugar.schemas.in | 12 1 file changed, 12 deletions(-) diff --git a/data/sugar.schemas.in b/data/sugar.schemas.in index 763aa38..579d24b 100644 --- a/data/sugar.schemas.in +++ b/data/sugar.schemas.in @@ -262,18 +262,6

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

2012-06-05 Thread Simon Schampijer
Remove the support for the langpackdir. Signed-off-by: Simon Schampijer --- src/sugar/activity/activity.py |6 -- src/sugar/activity/i18n.py |7 --- 2 files changed, 13 deletions(-) diff --git a/src/sugar/activity/activity.py b/src/sugar/activity/activity.py index 34e9729

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

2012-06-05 Thread Simon Schampijer
Must be done early, some activities set translations globally. Remove the support for the langpackdir. Signed-off-by: Simon Schampijer --- bin/sugar-activity |8 src/sugar3/activity/activity.py |6 -- src/sugar3/activity/i18n.py |7 --- 3 files

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

2012-06-05 Thread Simon Schampijer
Minutes: http://meeting.sugarlabs.org/sugar-meeting/meetings/2012-06-05T15:05:10.html Log: http://meeting.sugarlabs.org/sugar-meeting/meetings/2012-06-05T15:05:10 Action items garycmartin to proove that Clock is not broken manuq follow up on humitos list of non-translated activities

Re: [Sugar-devel] [SoaS] Etoys translations

2012-06-05 Thread Simon Schampijer
On 06/01/2012 05:24 PM, Bert Freudenberg wrote: On 28.05.2012, at 21:48, Bert Freudenberg wrote: On 28.05.2012, at 20:29, Peter Robinson wrote: As mentioned previously look at the other Activities, like TurtleArt, it works like the rest of the distro translation stuff, I'm not sure if there's

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

2012-06-05 Thread Simon Schampijer
On 06/05/2012 12:10 AM, Simon Schampijer wrote: 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

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

2012-06-05 Thread Simon Schampijer
On 06/05/2012 01:19 PM, Sascha Silbe wrote: Simon Schampijer writes: 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. This patch series would have been

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

2012-06-04 Thread Simon Schampijer
On 06/05/2012 08:21 AM, Simon Schampijer wrote: On 06/05/2012 08:06 AM, Simon Schampijer wrote: Am 05.06.2012 um 07:03 schrieb Manuel Quiñones: 2012/6/4 Daniel Drake: On Mon, Jun 4, 2012 at 10:52 AM, Simon Schampijer wrote: To not depend on gconf at this stage the shell does set an env

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

2012-06-04 Thread Simon Schampijer
On 06/05/2012 08:06 AM, Simon Schampijer wrote: Am 05.06.2012 um 07:03 schrieb Manuel Quiñones: 2012/6/4 Daniel Drake: On Mon, Jun 4, 2012 at 10:52 AM, Simon Schampijer wrote: To not depend on gconf at this stage the shell does set an env variable when reading the GConf key. This is

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

2012-06-04 Thread Simon Schampijer
Am 05.06.2012 um 07:03 schrieb Manuel Quiñones : > 2012/6/4 Daniel Drake : >> On Mon, Jun 4, 2012 at 10:52 AM, Simon Schampijer >> wrote: >>> To not depend on gconf at this stage the shell does set >>> an env variable when reading the GConf key. This is handl

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

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 Kaufmann 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 compi

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'] = lang

[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 --- bin/sugar-activity |8 src/sugar3/activity/activity.py |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 --- src/sugar/activity/activity.py |6 -- src/sugar/activity/i18n.py |8

[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 --- bin/sugar-session |6 ++ 1 file changed, 6 insertions(+) diff

[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 F1

[Sugar-devel] [RELEASE] sugar-toolkit-gtk3-0.96.2

2012-06-01 Thread Simon Schampijer
== Source == http://download.sugarlabs.org/sources/sucrose/glucose/sugar-toolkit-gtk3/sugar-toolkit-gtk3-0.96.2.tar.bz2 == News == * Release 0.96.2 (Simon Schampijer) * Adding mime.py to POTFILES.in (Simon Schampijer) * Activity Toolbar Description input field wrap text, SL #3586 (Gary C Martin

[Sugar-devel] [RELEASE] sugar-toolkit-0.96.2

2012-06-01 Thread Simon Schampijer
== Source == http://download.sugarlabs.org/sources/sucrose/glucose/sugar-toolkit/sugar-toolkit-0.96.2.tar.bz2 == News == * Release 0.96.2 (Simon Schampijer) * Activity Toolbar Description input field wrap text, SL #3586 (Gary C. Martin) * ToolButton: add 'icon_name' as a GObject p

[Sugar-devel] [RELEASE] sugar-artwork-0.96.3

2012-06-01 Thread Simon Schampijer
== Source == http://download.sugarlabs.org/sources/sucrose/glucose/sugar-artwork/sugar-artwork-0.96.3.tar.bz2 == News == * Release 0.96.3 (Simon Schampijer) * Theme Tooltips like Palettes, SL #3403 (Simon Schampijer) * Fix artifacts in share button, SL #3387 (Simon Schampijer

Re: [Sugar-devel] [PATCH sugar-toolkit] Display spinner cursor when saving after closing the activity, OLPC #11691

2012-06-01 Thread Simon Schampijer
On 05/30/2012 11:54 AM, Simon Schampijer wrote: Signed-off-by: Simon Schampijer Reviewed-by: Daniel Drake Tested-by: Manuel Quiñones --- src/sugar/activity/activity.py |1 + 1 file changed, 1 insertion(+) diff --git a/src/sugar/activity/activity.py b/src/sugar/activity/activity.py index

Re: [Sugar-devel] [PATCH sugar-toolkit] ToolButton: add 'icon_name' as a GObject property SL #3658

2012-06-01 Thread Simon Schampijer
On 06/01/2012 03:54 PM, Manuel Quiñones wrote: Sugar ToolButton inherits from Gtk.ToolButton but is not overwriting 'icon_name' property. So 'icon_name' can be passed to the constructor of Sugar ToolButton but the result is different than setting it via ToolButton.props.icon_name. Signed-off-by

Re: [Sugar-devel] [PATCH sugar-toolkit-gtk3] ToolButton: add 'icon_name' as a GObject property SL #3658

2012-06-01 Thread Simon Schampijer
On 06/01/2012 03:51 PM, Manuel Quiñones wrote: Sugar ToolButton inherits from Gtk.ToolButton but is not overwriting 'icon_name' property. So 'icon_name' can be passed to the constructor of Sugar ToolButton but the result is different than setting it via ToolButton.props.icon_name. Signed-off-by

Re: [Sugar-devel] [PATCH sugar-artwork] Theme GtkSpinButton buttons SL #3406

2012-06-01 Thread Simon Schampijer
Thanks Manuel for the patch! I commented about the design in: http://bugs.sugarlabs.org/ticket/3406#comment:7 Regards, Simon On 05/30/2012 08:08 PM, Manuel Quiñones wrote: This patch sets border radius to the buttons, so the layout is like (value [-][+)) . Also removes two unneeded varia

Re: [Sugar-devel] [PATCH Read] Show bookmark in the first page SL #3662

2012-06-01 Thread Simon Schampijer
Thanks Manuel for the patch. The patch does work for me. Gonzalo knows better the Read code to do a proper review. Tested-by: Simon Schampijer On 05/31/2012 05:08 PM, Manuel Kaufmann wrote: Show the bookmark for the first page (if any) in the sidebar when the file is resumed from the

Re: [Sugar-devel] [PATCH Browse] Show the correct window title SL #3581

2012-06-01 Thread Simon Schampijer
On 06/01/2012 03:23 AM, Manuel Kaufmann wrote: On Thu, May 31, 2012 at 10:22 PM, Manuel Kaufmann wrote: Set the title every time that the page title changes. This patch works but I would like to put this line in the webactivity.py file, because that file should manage this property because it

[Sugar-devel] [PATCH sugar-artwork] Theme Tooltips like Palettes, SL #3403

2012-05-31 Thread Simon Schampijer
Theme the tooltips with a black background and a button_grey border and white text on it to have the same style as Palettes. An example is the tooltip displayed for bookmarks in the Read activity. Signed-off-by: Simon Schampijer --- gtk3/theme/gtk-widgets.css.em | 11 +++ 1 file

[Sugar-devel] [PATCH sugar-toolkit-gtk3] Display spinner cursor when saving after closing the activity, OLPC #11691

2012-05-30 Thread Simon Schampijer
Signed-off-by: Simon Schampijer Reviewed-by: Daniel Drake Tested-by: Manuel Quiñones --- src/sugar3/activity/activity.py |1 + 1 file changed, 1 insertion(+) diff --git a/src/sugar3/activity/activity.py b/src/sugar3/activity/activity.py index 808cccb..4dea554 100644 --- a/src/sugar3

[Sugar-devel] [PATCH sugar-toolkit] Display spinner cursor when saving after closing the activity, OLPC #11691

2012-05-30 Thread Simon Schampijer
Signed-off-by: Simon Schampijer Reviewed-by: Daniel Drake Tested-by: Manuel Quiñones --- src/sugar/activity/activity.py |1 + 1 file changed, 1 insertion(+) diff --git a/src/sugar/activity/activity.py b/src/sugar/activity/activity.py index fdf9827..34e9729 100644 --- a/src/sugar/activity

Re: [Sugar-devel] [PATCH 1/2] Fix for displaying filename in untitled PDFs SL #3597

2012-05-22 Thread Simon Schampijer
On 05/21/2012 06:15 PM, Manuel Quiñones wrote: This patch moves the line that sets the title to the filename of the PDF, so we display "Loading..." until we know the title, and if title is None, we show the filename. Signed-off-by: Manuel Quiñones --- pdfviewer.py |4 ++-- 1 file changed,

Re: [Sugar-devel] [PATCH 2/2] Fix for displaying "Untitled" when the page has no title #3619

2012-05-22 Thread Simon Schampijer
On 05/21/2012 06:15 PM, Manuel Quiñones wrote: This bug was introduced in commit 04a0de3de3b24ae22bf326de046fb256bdbfeccb . Signed-off-by: Manuel Quiñones --- webtoolbar.py |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webtoolbar.py b/webtoolbar.py index e7c66c9..6241

Re: [Sugar-devel] [PATCH sugar-toolkit-gtk3] Object Chooser: update for GDK3 get_xid()

2012-05-22 Thread Simon Schampijer
On 05/19/2012 10:43 PM, Daniel Drake wrote: In GDK3 the 'xid' attribute is gone and is replaced with gdk_x11_window_get_xid(), or the get_xid() method in Python. Needed to be able to open the object chooser from Browse without hassle. Signed-off-by: Daniel Drake Thanks Daniel, looks good, pus

[Sugar-devel] [ANNOUNCE] Sugar 0.96 - make it official

2012-05-22 Thread Simon Schampijer
== Introduction == Sugar 0.96 is the new version of the Sugar learning platform. It was released the 30th of April 2012 (see [1] 0.96 schedule for details). The main changes in this cycle was the introduction of the new sugar-toolkit-gtk3 which is the sugar-toolkit ported to use GTK+ 3 and Py

Re: [Sugar-devel] [PATCH Sugar] Inhibit power suspend while playing text to speech - OLPC #11830

2012-05-18 Thread Simon Schampijer
Hi Paul, thanks again for getting back on this! On 05/18/2012 03:10 PM, Paul Fox wrote: simon wrote: > On 05/09/2012 05:56 PM, Paul Fox wrote: > > gonzalo wrote: > >> On Wed, May 9, 2012 at 12:42 PM, Paul Fox wrote: > >> > >> > i would much prefer that we co

Re: [Sugar-devel] [PATCH Sugar] Inhibit power suspend while playing text to speech - OLPC #11830

2012-05-18 Thread Simon Schampijer
Ok, so I am still not clear on the whys. Why does the machine suspend when there is audio being played back? That sounds wrong to me. It would be the same as suspending why I am moving the mouse. Can someone provide some background information on this? Regards, Simon On 05/17/2012 08:08

Re: [Sugar-devel] [PATCH Sugar] Inhibit power suspend while playing text to speech - OLPC #11830

2012-05-18 Thread Simon Schampijer
On 05/09/2012 05:56 PM, Paul Fox wrote: gonzalo wrote: > On Wed, May 9, 2012 at 12:42 PM, Paul Fox wrote: > > > i would much prefer that we could prevent suspend during any > > audio playback, rather than have to have anyone that wants > > to make noise do it individually. >

Re: [Sugar-devel] Installing sugar-jhbuild in F17

2012-05-18 Thread Simon Schampijer
On 05/16/2012 12:34 PM, Manuel Kaufmann wrote: On Wed, May 16, 2012 at 6:56 AM, Simon Schampijer wrote: Having installed all the deps, I built sugar and run it fine. And what's about Telepathy? Did you have to skip it in jhbuild process or it's not tried to be compiled at all?

Re: [Sugar-devel] Installing sugar-jhbuild in F17

2012-05-16 Thread Simon Schampijer
On 04/25/2012 08:47 PM, Gonzalo Odiard wrote: I have installed sugar-jhbuild in a new pristine F17. Here my findings, works, but with little problems: $ git clone git://git.sugarlabs.org/sugar-jhbuild/mainline.git sugar-jhbuild $ cd sugar-jhbuild $ ./sugar-jhbuild update $ ./sugar-jhbuild depsch

Re: [Sugar-devel] [PATCH Sugar] Close audio device after text to speech - OLPC #11829

2012-05-07 Thread Simon Schampijer
On 05/04/2012 11:34 PM, godi...@sugarlabs.org wrote: From: Gonzalo Odiard In xo with alsa, if we keep opened the audio device after doing tts, other activities can't use it. We need close the device after the eof message is received, because the message came a little before the sound has finishe

[Sugar-devel] [RELEASE] sugar-toolkit-gtk3-0.96.1

2012-05-04 Thread Simon Schampijer
== Source == http://download.sugarlabs.org/sources/sucrose/glucose/sugar-toolkit-gtk3/sugar-toolkit-gtk3-0.96.1.tar.bz2 == News == * Release 0.96.1 (Simon Schampijer) * Tray: set a minimum size in the viewport so that it allows scrolling (Carlos Garnacho

[Sugar-devel] [RELEASE] sugar-artwork-0.96.2

2012-05-04 Thread Simon Schampijer
== Source == http://download.sugarlabs.org/sources/sucrose/glucose/sugar-artwork/sugar-artwork-0.96.2.tar.bz2 == News == * Release 0.96.2 (Simon Schampijer) * Making the edit-description icon aligned with the other toolbar icons (Gary C. Martin) * Theme the labels on a toolbar, SL #3558, #3479

[Sugar-devel] [RELEASE] sugar-toolkit-0.96.1

2012-05-04 Thread Simon Schampijer
== Source == http://download.sugarlabs.org/sources/sucrose/glucose/sugar-toolkit/sugar-toolkit-0.96.1.tar.bz2 == News == * Release 0.96.1 (Simon Schampijer) Translation updates: * Push many files from Pootle (Pootle daemon) * Commit from Sugar Labs: Translation System by user cjl.: 37 of 37

Re: [Sugar-devel] [PATCH Browse v2] Use user's LANG for search results SL #3445

2012-05-04 Thread Simon Schampijer
On 05/04/2012 02:38 PM, Manuel Kaufmann wrote: When the user types a string that is not like an url, we use Google to search that string with the results in the language defined by LANG environment variable. Signed-off-by: Manuel Kaufmann Thanks for the update, looks good now. Simon _

Re: [Sugar-devel] [PATCH Browse v2] Display 'Loading...' message in the tab title while the page is loading #3550

2012-05-04 Thread Simon Schampijer
This patch does not fix the issue described at #3550 for me. The ticket was about the url entry not about the text on the tab. It is true that there seem to be a slight delay before we get the title of the new page, at least in Epiphany on the XO I can see the same effect for the title on the

[Sugar-devel] [PATCH sugar-artwork] Theme the labels on a toolbar, SL #3558, #3479

2012-05-04 Thread Simon Schampijer
The labels on a toolbar (whether primary or sub-toolbar) should be white. This fixes SL #3558 and SL #3479. Signed-off-by: Simon Schampijer --- gtk3/theme/gtk-widgets.css.em |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/gtk3/theme/gtk-widgets.css.em b/gtk3/theme

Re: [Sugar-devel] [PATCH sugar] Create a default unencrypted keyring, OLPC #10290

2012-05-02 Thread Simon Schampijer
Thanks Sascha for commenting, On 04/23/2012 11:13 PM, Sascha Silbe wrote: Excerpts from Simon Schampijer's message of 2012-04-16 12:33:05 +0200: This patch does create an ununcrypted default keyring if there is not one available already. This will stop prompts for unlocking the keyring after l

Re: [Sugar-devel] [PATCH Browse] Graphic for the cancel loading button in the URL entry changed #3499

2012-05-02 Thread Simon Schampijer
On 04/27/2012 11:58 AM, Manuel Quiñones wrote: Now features a square black background, to distingish it from the upcoming clear URL entry button. Signed-off-by: Manuel Quiñones Hi Manu, thanks for the patch, I commented on the visual aspect in http://bugs.sugarlabs.org/ticket/3499#comment:8

[Sugar-devel] [RELEASE] sugar-artwork-0.96.1

2012-04-30 Thread Simon Schampijer
== Source == http://download.sugarlabs.org/sources/sucrose/glucose/sugar-artwork/sugar-artwork-0.96.1.tar.bz2 == News == * Release 0.96.1 (Simon Schampijer) * Set notebook padding to 0px in the GTK3 CSS, SL #3482 (Manuel Quiñones) ___ Sugar-devel

[Sugar-devel] [RELEASE] sugar-0.96.1

2012-04-30 Thread Simon Schampijer
== Source == http://download.sugarlabs.org/sources/sucrose/glucose/sugar/sugar-0.96.1.tar.bz2 == News == * Release 0.96.1 (Simon Schampijer) * Remove "Extreme Power Management" control panel option, OLPC #11671 (Simon Schampijer) * Update Sucrose version for upcoming 0.96.1 (Simon

Re: [Sugar-devel] [PATCH Browse] Step scroll with the keypad arrow keys OLPC #11806

2012-04-30 Thread Simon Schampijer
Hi Manuel, thanks for the patch. Please state in the patch description that it has been working before, that it is a regression and how it has been lost, why we need to re-add it. On 04/29/2012 01:06 AM, Manuel Quiñones wrote: Signed-off-by: Manuel Quiñones --- webactivity.py | 17 ++

Re: [Sugar-devel] [PATCH Browse v3] Revert zoom with the original value SL #3540

2012-04-30 Thread Simon Schampijer
On 04/29/2012 05:50 PM, Manuel Quiñones wrote: Great! 2012/4/29 Manuel Kaufmann: New functionality to go back to the original zoom value. Added an icon next to zoom properties in View Toolbar. This function can be used with the hotkey "Control + 0" as well. Signed-off-by: Manuel Kaufmann

Re: [Sugar-devel] [PATCH Browse] Zoom full content, not just text SL #3541

2012-04-30 Thread Simon Schampijer
Works as expected. Side note: I see a glitch on the XO (1.5), when zooming in several times in wikipedia the content frame gets a blue background. Could reproduce as well with epiphany on the XO. Could not see it on my laptop. On 04/29/2012 05:36 PM, Manuel Quiñones wrote: As previous Brows

Re: [Sugar-devel] [PATCH] Add description item to the toolbar if available - SL# 3525

2012-04-30 Thread Simon Schampijer
On 04/28/2012 06:23 PM, Aleksey Lim wrote: On Thu, Apr 26, 2012 at 09:24:24AM -0300, godi...@sugarlabs.org wrote: From: Gonzalo Odiard The activity have a custom toolbar, then need add the DescriptionItem to implement the feature "Write to Journal Anytime" http://wiki.sugarlabs.org/go/Features

Re: [Sugar-devel] [PATCH] When a object is removed from the clipboard try, select the last available v3 - SL #1266

2012-04-27 Thread Simon Schampijer
Great, looks good to me as well, pushed as 4da551e9bc1d54b19b29cd9abaedb73e7c6612e8 Regards, Simon On 04/24/2012 02:50 PM, Anish Mangal wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue 24 Apr 2012 04:48:27 PM IST, godi...@sugarlabs.org wrote: From: Gonzalo Odiard If the user r

Re: [Sugar-devel] [PATCH] Only add one time every object in the clipboard v5 - SL #3371

2012-04-27 Thread Simon Schampijer
Did a few pretty up with Gonzaol on ird and pushed as: fc55d52993d7f081d8b97c139ace19a312343a79 Regards, Simon On 04/24/2012 01:17 PM, godi...@sugarlabs.org wrote: From: Gonzalo Odiard This patch change the behaviour of the clipboard tray, every object is added only one time, if already ex

Re: [Sugar-devel] [PATCH Browse] Catch None value for url and set empty string in the URL entry #3476

2012-04-27 Thread Simon Schampijer
On 04/27/2012 03:19 PM, Manuel Quiñones wrote: Signed-off-by: Manuel Quiñones --- webtoolbar.py |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/webtoolbar.py b/webtoolbar.py index 654f720..b49cf5a 100644 --- a/webtoolbar.py +++ b/webtoolbar.py @@ -365,7 +365,10 @@

Re: [Sugar-devel] [PATCH Browse] Fix for authentication with school server f6dd764abd7c160e6188757b8e61cd01062a92c6 #3456

2012-04-27 Thread Simon Schampijer
On 04/27/2012 06:38 PM, Manuel Quiñones wrote: Hi Simon, El día 27 de abril de 2012 12:19, Simon Schampijer escribió: This patch looks good. And I applied it and do not see any regressions at least. Can we get it tested with the school server? Sam can you have a look if this is the final

Re: [Sugar-devel] [PATCH Browse] Fix for authentication with school server f6dd764abd7c160e6188757b8e61cd01062a92c6 #3456

2012-04-27 Thread Simon Schampijer
This patch looks good. And I applied it and do not see any regressions at least. Can we get it tested with the school server? Sam can you have a look if this is the final result we would like to see? Regards, Simon On 04/26/2012 11:31 PM, Manuel Quiñones wrote: The cookie is now correctly

Re: [Sugar-devel] [PATCH Browse] Handle new windows request and instead open links in new tabs #3507

2012-04-27 Thread Simon Schampijer
Great, thanks for the patch, works as expected, * http://dev.laptop.org/~erikos/wanted.html opens a new tab * http://dev.laptop.org/~erikos/unwanted.html is blocked Acked, please push. Regards, Simon On 04/25/2012 08:55 PM, Manuel Quiñones wrote: Browse being a Sugar activity only has one

Re: [Sugar-devel] [PATCH sugar-artwork] Set notebook padding to 0px in the GTK3 CSS #3482

2012-04-26 Thread Simon Schampijer
On 04/24/2012 06:40 PM, Manuel Quiñones wrote: This removes the 2 pixel padding that was around all the notebook page, preventing a confortable use of the scroll bar with the mouse pointer, as #3482 describes. Signed-off-by: Manuel Quiñones --- gtk3/theme/gtk-widgets.css.em |2 +- 1 files

Re: [Sugar-devel] [PATCH] Add description item to the toolbar if available - SL# 3525

2012-04-26 Thread Simon Schampijer
On 04/26/2012 02:24 PM, godi...@sugarlabs.org wrote: From: Gonzalo Odiard The activity have a custom toolbar, then need add the DescriptionItem to implement the feature "Write to Journal Anytime" http://wiki.sugarlabs.org/go/Features/Write_to_journal_anytime Signed-off-by: Gonzalo Odiard ---

Re: [Sugar-devel] [PATCH sugar] Control Panel: adjust year to 2012 for the Copyright in the about my computer section

2012-04-26 Thread Simon Schampijer
On 04/26/2012 03:10 PM, Anish Mangal wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Thu 26 Apr 2012 06:38:10 PM IST, Gonzalo Odiard wrote: On a related note (About My Computer) section, the contents of 'info_text' in sugar/extensions/cpsection/view.py are gettexted. "S

Re: [Sugar-devel] [PATCH sugar] Control Panel: adjust year to 2012 for the Copyright in the about my computer section

2012-04-26 Thread Simon Schampijer
On 04/26/2012 03:10 PM, Anish Mangal wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Thu 26 Apr 2012 06:38:10 PM IST, Gonzalo Odiard wrote: On a related note (About My Computer) section, the contents of 'info_text' in sugar/extensions/cpsection/view.py are gettexted. "S

Re: [Sugar-devel] [PATCH] Add the DescriptionItem if available

2012-04-26 Thread Simon Schampijer
On 04/26/2012 02:51 PM, Simon Schampijer wrote: On 04/26/2012 02:10 PM, Manuel Kaufmann wrote: On Thu, Apr 26, 2012 at 09:06, wrote: + except: + pass + I think you should avoid "except:" catching all the exception possible there. Instead of this you should use "except Import

[Sugar-devel] [PATCH sugar] Control Panel: adjust year to 2012 for the Copyright in the about my computer section

2012-04-26 Thread Simon Schampijer
This is not a translated string, no string freeze break is taking place. Signed-off-by: Simon Schampijer --- extensions/cpsection/aboutcomputer/view.py |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/extensions/cpsection/aboutcomputer/view.py b/extensions/cpsection

Re: [Sugar-devel] [PATCH] Add the DescriptionItem if available

2012-04-26 Thread Simon Schampijer
On 04/26/2012 02:10 PM, Manuel Kaufmann wrote: On Thu, Apr 26, 2012 at 09:06, wrote: +except: +pass + I think you should avoid "except:" catching all the exception possible there. Instead of this you should use "except ImportError:" in this case. We don't need the try a

[Sugar-devel] [RELEASE] sugar-datastore-0.96.0

2012-04-24 Thread Simon Schampijer
== Source == http://download.sugarlabs.org/sources/sucrose/glucose/sugar-datastore/sugar-datastore-0.96.0.tar.bz2 == News == * Release 0.96.0 (Simon Schampijer) ___ Sugar-devel mailing list Sugar-devel@lists.sugarlabs.org http://lists.sugarlabs.org

[Sugar-devel] [RELEASE] sugar-base-0.96.0

2012-04-24 Thread Simon Schampijer
== Source == http://download.sugarlabs.org/sources/sucrose/glucose/sugar-base/sugar-base-0.96.0.tar.bz2 == News == * Release 0.96.0 (Simon Schampijer) * Push many files from Pootle (Pootle daemon) * Update ALL_LINGUAS (Simon Schampijer) * Commit from Sugar Labs: Translation System by user

[Sugar-devel] [RELEASE] sugar-0.96.0

2012-04-24 Thread Simon Schampijer
== Source == http://download.sugarlabs.org/sources/sucrose/glucose/sugar/sugar-0.96.0.tar.bz2 == News == * Release 0.96.0 (Simon Schampijer) * Update Sucrose version for upcoming 0.96.0 (Simon Schampijer) * Commit from Sugar Labs: Translation System by user cjl.: 212 of 390 messages translated

[Sugar-devel] [RELEASE] sugar-artwork-0.96.0

2012-04-24 Thread Simon Schampijer
== Source == http://download.sugarlabs.org/sources/sucrose/glucose/sugar-artwork/sugar-artwork-0.96.0.tar.bz2 == News == * Release 0.96.0 (Simon Schampijer) * Set proper colors in the SugarAlert message text and timeout text #3475 (Manuel Quiñones

[Sugar-devel] [RELEASE] sugar-toolkit-gtk3-0.96.0

2012-04-24 Thread Simon Schampijer
== Source == http://download.sugarlabs.org/sources/sucrose/glucose/sugar-toolkit-gtk3/sugar-toolkit-gtk3-0.96.0.tar.bz2 == News == * Release 0.96.0 (Simon Schampijer) * Push many files from Pootle (Pootle daemon) * Commit from Sugar Labs: Translation System by user cjl.: 35 of 35 messages

[Sugar-devel] [RELEASE] sugar-toolkit-0.96.0

2012-04-24 Thread Simon Schampijer
== Source == http://download.sugarlabs.org/sources/sucrose/glucose/sugar-toolkit/sugar-toolkit-0.96.0.tar.bz2 == News == * Release 0.96.0 (Simon Schampijer) * Remove the Naming Alert (Gonzalo Odiard) * Add DescriptionEntry to the activity sub-toolbar (Gonzalo Odiard) * Push many files from

[Sugar-devel] [MINUTES] Development team meeting --- 24. April 2012 (15:00 UTC)

2012-04-24 Thread Simon Schampijer
Hi, so today we decided that we release Sugar 0.96 now! I will create tarballs from what we have and schedule a bug fix release. The detailed reasoning can be found in [1] and [2], in short: we would like to have had more testing to have a better ground for basing our evaluation on, but we h

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

2012-04-24 Thread Simon Schampijer
Hi, today we will have our weekly development team meeting: This will basically be a 0.96 go/no meeting. Bring your favorite bug to the meeting and we can see if it blocks the release. Time: 24. April 2012 (15:00 UTC) Place: #sugar-meeting (freenode) Regards, Simon ___

Re: [Sugar-devel] sugar.po string change

2012-04-24 Thread Simon Schampijer
No, please no backporting. I did not see that string landing. We are in string freeze as well for 0.95 so the addition should be reverted in both the 0.94 and the 0.96 branch. Regards, Simon Am 24.04.2012 um 07:49 schrieb Chris Leonard : > Ok, that is a sensible explanation. > > As 0.94 is

[Sugar-devel] [PATCH] Remove "Extreme Power Management" control panel option, OLPC #11671

2012-04-23 Thread Simon Schampijer
From: Simon Schampijer It is currently (as of OS11.x series) inoperative. Disabling the wireless radio (from the network panel) is the knob to turn to get the desired result. Signed-off-by: Simon Schampijer --- extensions/cpsection/power/model.py | 30 -- extensions

Re: [Sugar-devel] [PATCH sugar] Create a default unencrypted keyring, OLPC #10290

2012-04-23 Thread Simon Schampijer
On 04/16/2012 12:33 PM, Simon Schampijer wrote: This patch does create an ununcrypted default keyring if there is not one available already. This will stop prompts for unlocking the keyring after logging into Sugar. In GNOME the session manager deals with creating that keyring. In the OLPC

Re: [Sugar-devel] [PATCH] Only add one time every object in the clipboard v3 - SL #3371

2012-04-23 Thread Simon Schampijer
On 04/20/2012 11:01 PM, Anish Mangal wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sat 21 Apr 2012 02:23:57 AM IST, Gonzalo Odiard wrote: * Also, as the ticket mentions, if an already existing clipboard entry is selected, it isn't moved visually to the bottom of the list. Th

Re: [Sugar-devel] [PATCH sugar-artwork] Set proper colors in the SugarAlert message text and timeout text #3475

2012-04-20 Thread Simon Schampijer
Thanks for that one, please push. Now we only need to fix the size of the TimeoutIcon which is slightly bigger than the other ones (but not as part of this patch). Regards, Simon On 04/20/2012 04:12 PM, Manuel Quiñones wrote: Signed-off-by: Manuel Quiñones --- gtk3/theme/gtk-widgets.cs

Re: [Sugar-devel] [PATCH Browse] Remove disable tabs hack

2012-04-20 Thread Simon Schampijer
Looks good, please push. Regards, Simon On 04/20/2012 04:11 PM, Manuel Quiñones wrote: This is not be useful anymore, was a bug related to xulrunner and cairo. Signed-off-by: Manuel Quiñones --- webactivity.py | 16 +--- 1 files changed, 1 insertions(+), 15 deletions(-) di

Re: [Sugar-devel] [PATCH] Only add one time every object in the clipboard v3 - SL #3371

2012-04-20 Thread Simon Schampijer
Great both new versions of your patches do what they describe they would do :) There is one trace in the shell.log related to the clipboard when the clipboard owner changes, a TypeError, targets is None. Please have a look at it, all the rest looks already really good. Regards, Simon On

<    1   2   3   4   5   6   7   8   9   10   >