Re: [Sugar-devel] [PATCH sugar] Allow to build outside the source directory

2012-06-27 Thread Daniel Narvaez
On 27 June 2012 02:42, James Cameron qu...@laptop.org wrote: diff --git a/autogen.sh b/autogen.sh index a71e202..bac5247 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,4 +1,13 @@  #!/bin/sh + +test -n ${srcdir} || srcdir=`dirname $0` +test -n ${srcdir} || srcdir=$(pwd) I don't quite

Re: [Sugar-devel] [PATCH sugar] Allow to build outside the source directory

2012-06-27 Thread James Cameron
On Wed, Jun 27, 2012 at 10:45:13AM +0200, Daniel Narvaez wrote: On 27 June 2012 02:42, James Cameron qu...@laptop.org wrote: diff --git a/autogen.sh b/autogen.sh index a71e202..bac5247 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,4 +1,13 @@ ?#!/bin/sh + +test -n ${srcdir} ||

[Sugar-devel] [sugar 0.96, NM 0.9 PATCH v2] sl#3727: Return cached secrets, present in 'settings' themselves.

2012-06-27 Thread Ajay Garg
Changes of version-2 over version-1 :: == * Adding comparative analysis of the behaviour netween Gnome-F14, Sugar-F14, Gnome-F17, Sugar-F17. * Note that there is no change of code.

Re: [Sugar-devel] [PATCH sugar-toolkit-gtk3] Fixing deprecations: Using Gtk.Orientation

2012-06-27 Thread Simon Schampijer
Daniel, thanks for the patch. It is good to add some more details about the requested change in the description. [1] states for example: GtkHBox has been deprecated. You can use GtkBox instead, which is a very quick and easy change. If you have derived your own classes from GtkHBox, you can

Re: [Sugar-devel] [sugar 0.96, NM 0.9 PATCH v2] sl#3727: Return cached secrets, present in 'settings' themselves.

2012-06-27 Thread Ajay Garg
Hi all. Sorry for the garbled v2 patch (in this email thread). Please see the (good-info-view) patch at http://patchwork.sugarlabs.org/patch/1570/ @ Jerry, Please correct me if my observations are different from yours (as described by you in your last email). @Samul, Daniel, Peter : I have

[Sugar-devel] Shell Port: RandomLayout (FreeFormLayout)

2012-06-27 Thread Simon Schampijer
Hi, while porting the Home View I am dealing as well with the RandomLayout. When it was introduced the idea was to give learners a chance to personalize their home view and group activities together if desired. This was basically mimicking the desktop metaphor. I agree that there is value

Re: [Sugar-devel] Shell Port: RandomLayout (FreeFormLayout)

2012-06-27 Thread Walter Bender
On Wed, Jun 27, 2012 at 6:41 AM, Simon Schampijer si...@schampijer.de wrote: Hi, while porting the Home View I am dealing as well with the RandomLayout. When it was introduced the idea was to give learners a chance to personalize their home view and group activities together if desired. This

[Sugar-devel] [ASLO] Release Jam Game Boy Advance-2

2012-06-27 Thread Sugar Labs Activities
Activity Homepage: http://activities.sugarlabs.org/addon/4381 Sugar Platform: 0.82 - 0.96 Download Now: http://activities.sugarlabs.org/downloads/file/28140/jam_game_boy_advance-2.xo Release notes: Sugar Labs Activities http://activities.sugarlabs.org

Re: [Sugar-devel] [PATCH Get Books] Revert the thumbnail fill color to COLOR_PANEL_GREY SL #3723

2012-06-27 Thread Gonzalo Odiard
Thanks, pushed Gonzalo On Mon, Jun 25, 2012 at 11:12 AM, Manuel Quiñones ma...@laptop.org wrote: This should be fixed in the theme. Signed-off-by: Manuel Quiñones ma...@laptop.org --- GetIABooksActivity.py |7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git

Re: [Sugar-devel] [PATCH sugar-toolkit-gtk3] Fixing deprecations: Using Gtk.Orientation

2012-06-27 Thread S. Daniel Francis
[1] states for example: GtkHBox has been deprecated. You can use GtkBox instead, which is a very quick and easy change. If you have derived your own classes from GtkHBox, you can simply change the inheritance to derive directly from GtkBox. No further changes are needed, since the default

Re: [Sugar-devel] [PATCH sugar-toolkit-gtk3] Fixing deprecations: Using Gtk.Orientation

2012-06-27 Thread Gonzalo Odiard
Why not? Lets migrate all our gtk3 components to GtkGrid! We should check if the move to GtkGrid is really free of charge. There are a lot to change right now, and if changing the boxes break (or change visuals) in subtle ways, will be a headache. Then, should be good test it, before doing a

Re: [Sugar-devel] [PATCH Jukebox] Design review SL #3714

2012-06-27 Thread Gonzalo Odiard
Reviewed-by: Gonzalo Odiard gonz...@laptop.org On Tue, Jun 26, 2012 at 4:11 PM, Manuel Kaufmann humi...@gmail.com wrote: - Switched Fullscreen and Show playlist buttons in View Toolbar - Added tooltip for Add Track button - Changed the icon for Add Track button to match the style with

Re: [Sugar-devel] [PATCH Jukebox] Current and total time SL #3714

2012-06-27 Thread Gonzalo Odiard
Thanks Reviewed-by: Gonzalo Odiard gonz...@laptop.org On Tue, Jun 26, 2012 at 4:11 PM, Manuel Kaufmann humi...@gmail.com wrote: Added the current and total time of the actual stream in the toolbar and removed the separators to make them fit. Signed-off-by: Manuel Kaufmann humi...@gmail.com

Re: [Sugar-devel] Gtk.DrawingArea's draw signal

2012-06-27 Thread Gonzalo Odiard
Maybe this (ported to gtk3) can be useful for you http://git.sugarlabs.org/simplepiano Gonzalo On Wed, Jun 27, 2012 at 12:07 PM, Manuel Kaufmann humi...@gmail.com wrote: Hello, I'm porting Implode to Gtk3 and after doing some changes I found that I can't draw the main widget: GridWidget

Re: [Sugar-devel] Gtk.DrawingArea's draw signal

2012-06-27 Thread Manuel Kaufmann
On Wed, Jun 27, 2012 at 12:13 PM, Gonzalo Odiard gonz...@laptop.org wrote: Maybe this  (ported to gtk3) can be useful for you I was taking a look at that. The problem that I think that I'm having is that the draw signal is not emitted by Gtk and I don't know why. If I put a logging.debug in the

Re: [Sugar-devel] Gtk.DrawingArea's draw signal

2012-06-27 Thread Manuel Quiñones
2012/6/27 Manuel Kaufmann humi...@gmail.com: On Wed, Jun 27, 2012 at 12:13 PM, Gonzalo Odiard gonz...@laptop.org wrote: Maybe this  (ported to gtk3) can be useful for you I was taking a look at that. The problem that I think that I'm having is that the draw signal is not emitted by Gtk and I

Re: [Sugar-devel] Gtk.DrawingArea's draw signal

2012-06-27 Thread Manuel Kaufmann
On Wed, Jun 27, 2012 at 1:40 PM, Manuel Quiñones ma...@laptop.org wrote: What if you force sending the signal? call queue_draw() http://developer.gnome.org/gtk3/stable/GtkWidget.html#gtk-widget-queue-draw Yes, I had already tried that but I couldn't. I'm not completely sure what I did :P ,

Re: [Sugar-devel] [PATCH sugar-toolkit-gtk3] Fixing deprecations: Using Gtk.Orientation

2012-06-27 Thread Agustin Zubiaga Sanchez
+1 for the Daniel's idea. El 27/06/2012 09:52, S. Daniel Francis fran...@sugarlabs.org escribió: 2012/6/27 Gonzalo Odiard gonz...@laptop.org: Why not? Lets migrate all our gtk3 components to GtkGrid! We should check if the move to GtkGrid is really free of charge. There are a lot to

[Sugar-devel] schools.sl.o broken?

2012-06-27 Thread Sameer Verma
Looks like http://schools.sugarlabs.org/ is broken... Sameer -- Sameer Verma, Ph.D. Professor, Information Systems San Francisco State University http://verma.sfsu.edu/ http://commons.sfsu.edu/ http://olpcsf.org/ http://olpcjamaica.org.jm/ ___