Re: [Sugar-devel] Issues i have found in os2

2012-09-18 Thread Alan Jhonn Aguiar Schwyn
Hello! I have a strange problem.I use the command copy-nand to install the image but at the end says: Error writing to NAND FLASH I try twice and get the same error.. Now, I use 21018o0.img and have the same problem! I try with the 21018o0.img and his respective fs.zip (using the 4 game-keys

Re: [Sugar-devel] [PATCH Browse] Cancel a download if space is very tight SL #394

2012-09-18 Thread Manuel Kaufmann
On Mon, Sep 17, 2012 at 7:40 PM, James Cameron qu...@laptop.org wrote: I've no other comments about the patch. Thanks for your comments. I'm about to send a new patch. -- Kaufmann Manuel Blog: http://humitos.wordpress.com/ Porfolio: http://fotos.mkaufmann.com.ar/ PyAr:

[Sugar-devel] [PATCH sugar-toolkit-gtk3 2/2] Signal to check free available space

2012-09-18 Thread Manuel Kaufmann
Datastore will emit the 'datastore.error' signal when the free available space will be under SPACE_THRESHOLD. This will allow activities to handle this situation properly. For example, Browse could cancel a download in progress. Signed-off-by: Manuel Kaufmann humi...@gmail.com ---

[Sugar-devel] [PATCH Browse 1/2] Cancel a download if space is very tight SL #394

2012-09-18 Thread Manuel Kaufmann
It checks for enough space (using Activity.enough_space) before downloading the file. If not, Browse will cancel the download process before starting it and an Alert will be shown to the user to inform this situation. Signed-off-by: Manuel Kaufmann humi...@gmail.com --- downloadmanager.py | 63

[Sugar-devel] [PATCH Browse 2/2] Handle datastore.error signal

2012-09-18 Thread Manuel Kaufmann
Stop the downloading process when this signal is received with the datastore.LOW_SPACE error code. Signed-off-by: Manuel Kaufmann humi...@gmail.com --- downloadmanager.py | 8 1 file changed, 8 insertions(+) diff --git a/downloadmanager.py b/downloadmanager.py index 5ad1a6f..bd8386d

[Sugar-devel] Not enough space adventure

2012-09-18 Thread Manuel Kaufmann
Hello people, I'd like to comment what I've been doing these days regarding Downloading a file with Browse without having enough space to keep it. * http://bugs.sugarlabs.org/ticket/394 We where discussing about this last week[1] and we found the root issue of this problem: Sugar is not

Re: [Sugar-devel] Not enough space adventure

2012-09-18 Thread Gonzalo Odiard
- remove the annoying check of free space (sugar3.datastore.datastore.SPACE_THRESHOLD = 50Mb at the moment) from the Journal Activity that shows all the time the ModalAlert saying Your Journal is full. Please remove some entries every time and it doesn't allow you to do another things.

[Sugar-devel] [PATCH sugar 2/2] Add feedback in Home View, List View when there are no matching entries - SL #3838

2012-09-18 Thread Manuel Quiñones
The scrolled window widget that contains the list of activities is replaced by a message box when there are no matching entries. This is the same as the Journal does. An alert can be packed also, so we use pack_end to add the message box or the list of activities again. Use

[Sugar-devel] [sugar-toolkit-gtk3] Set getter an setter in icon_name property - SL #3849

2012-09-18 Thread godiard
From: Gonzalo Odiard godi...@gmail.com With g-i bindings, setting the property don't change the size and the button is bigger than should be. Now we have two properties for the same, icon_name and named_icon, maybe one should be deprecated. Signed-off-by: Gonzalo Odiard gonz...@laptop.org ---

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

2012-09-18 Thread Sugar Labs Activities
Activity Homepage: http://activities.sugarlabs.org/addon/4027 Sugar Platform: 0.82 - 0.98 Download Now: http://activities.sugarlabs.org/downloads/file/28221/turtle_art-158.xo Release notes: 158 ENHANCEMENTS: * New translations BUG FIX: * Properly display blocks with four labels * Don't hide

Re: [Sugar-devel] [PATCH sugar] Fix screenshot extension, port to cairo - SL #3906

2012-09-18 Thread Simon Schampijer
Thanks Manuel. On 09/18/2012 06:38 AM, Manuel Quiñones wrote: 1. API fix, Gdk.Window now has get_width() and get_height(), not get_size(). Yes. 2. Use cairo to make the screenshot: paint the window surface in a new surface and then save it as png to the path that will be provided

Re: [Sugar-devel] [sugar-toolkit-gtk3] Set getter an setter in icon_name property - SL #3849

2012-09-18 Thread Manuel Quiñones
Thanks Gonzalo. Yes this fixes the regression, which was affecting Paint, and may affect other ports so I vote for adding this instead of deprecating the API. So now both: radial_button = RadioToolButton(named_icon='view-radial') and: radial_button = RadioToolButton()

[Sugar-devel] [PATCH Browse] Error page SL #3500

2012-09-18 Thread Manuel Kaufmann
Added an Error page with Sugar style that informs the users about they are not connected to the internet when the page can not reached for any reason. This patch contains a HTML template (error_page.tmpl) that is used to generate the error page with the correct language. Signed-off-by: Manuel

Re: [Sugar-devel] [PATCH Browse] Error page SL #3500

2012-09-18 Thread Manuel Kaufmann
On Tue, Sep 18, 2012 at 1:55 PM, Manuel Kaufmann humi...@gmail.com wrote: This patch contains a HTML template (error_page.tmpl) that is used to generate the error page with the correct language. Please, comments and suggestions are welcomed here. I didn't find an existent way (inside Sugar) to

[Sugar-devel] [PATCH Browse] Error page SL #3500

2012-09-18 Thread Daniel Narvaez
Perhaps you could use the data protocol to avoid the temporary file http://www.ietf.org/rfc/ http://www.ietf.org/rfc/rfc2397.txtrfc2397.txthttp://www.ietf.org/rfc/rfc2397.txt Or a custom protocol handler, not sure if that's possible with webkit/libsoup. On Tuesday, 18 September 2012, Manuel

Re: [Sugar-devel] [PATCH Browse] Error page SL #3500

2012-09-18 Thread Daniel Drake
On Tue, Sep 18, 2012 at 11:00 AM, Manuel Kaufmann humi...@gmail.com wrote: On Tue, Sep 18, 2012 at 1:55 PM, Manuel Kaufmann humi...@gmail.com wrote: This patch contains a HTML template (error_page.tmpl) that is used to generate the error page with the correct language. Please, comments and

Re: [Sugar-devel] [PATCH Browse] Error page SL #3500

2012-09-18 Thread Manuel Quiñones
2012/9/18 Daniel Drake d...@laptop.org: On Tue, Sep 18, 2012 at 11:00 AM, Manuel Kaufmann humi...@gmail.com wrote: On Tue, Sep 18, 2012 at 1:55 PM, Manuel Kaufmann humi...@gmail.com wrote: This patch contains a HTML template (error_page.tmpl) that is used to generate the error page with the

Re: [Sugar-devel] [PATCH Browse] Error page SL #3500

2012-09-18 Thread Daniel Narvaez
On 18 September 2012 19:33, Manuel Quiñones ma...@laptop.org wrote: 2012/9/18 Daniel Drake d...@laptop.org: On Tue, Sep 18, 2012 at 11:00 AM, Manuel Kaufmann humi...@gmail.com wrote: On Tue, Sep 18, 2012 at 1:55 PM, Manuel Kaufmann humi...@gmail.com wrote: This patch contains a HTML template

Re: [Sugar-devel] [PATCH Browse] Error page SL #3500

2012-09-18 Thread Manuel Kaufmann
On Tue, Sep 18, 2012 at 2:54 PM, Daniel Narvaez dwnarv...@gmail.com wrote: Oh cool, load_alternate_string definitely looks like the way to go. (it doesn't break history etc). Yeah! http://webkitgtk.org/reference/webkitgtk/stable/webkitgtk-webkitwebview.html#WebKitWebView--load-status Thanks,

Re: [Sugar-devel] [PATCH Browse] Error page SL #3500

2012-09-18 Thread Manuel Kaufmann
On Tue, Sep 18, 2012 at 2:21 PM, Daniel Narvaez dwnarv...@gmail.com wrote: Perhaps you could use the data protocol to avoid the temporary file http://www.ietf.org/rfc/rfc2397.txt I used this to put the images inside the html-string. img id=browse-logo src=data:image/png;base64,iVBO (...) /img

[Sugar-devel] Hidden Browse feature (from webkit I think)

2012-09-18 Thread Gary C Martin
Hi folks, While I remember... Just accidentally spotted a rather nice sneaky feature in the new webkit browse (in 13.0.1 build 2). Apologies if this is old news, but is rather handy... You can type non-URL text into the Browse location field and web kit will realise it is not a valid url and

Re: [Sugar-devel] Hidden Browse feature (from webkit I think)

2012-09-18 Thread rihoward1
That is a standard feature of both webkit browsers and of mozilla based browsers. - Original message - Hi folks, While I remember... Just accidentally spotted a rather nice sneaky feature in the new webkit browse (in 13.0.1 build 2). Apologies if this is old news, but is rather

Re: [Sugar-devel] Not enough space adventure

2012-09-18 Thread Martin Langhoff
On Tue, Sep 18, 2012 at 8:42 AM, Manuel Kaufmann humi...@gmail.com wrote: We where discussing about this last week[1] and we found the root issue of this problem: Sugar is not handling ENOSPC error. This could cause some problems at boot time when the XO is restarted, but as we discussed[2],

Re: [Sugar-devel] [PATCH sugar 2/2] Add feedback in Home View, List View when there are no matching entries - SL #3838

2012-09-18 Thread Manuel Quiñones
2012/9/18 Simon Schampijer si...@schampijer.de: Thanks for working on that Manuel! - the EventIcon in the box could be just an Icon, we don't listen for events here (same to the one in the Journal box) (in patch) Ah you are right! Good. - the attach_to_clear, I would listen to the

Re: [Sugar-devel] Hidden Browse feature (from webkit I think)

2012-09-18 Thread Manuel Quiñones
2012/9/18 Gary C Martin garycmar...@googlemail.com: Hi folks, While I remember... Just accidentally spotted a rather nice sneaky feature in the new webkit browse (in 13.0.1 build 2). Apologies if this is old news, but is rather handy... You can type non-URL text into the Browse location

[Sugar-devel] Sugar Digest 2012-09-18

2012-09-18 Thread Walter Bender
== Sugar Digest == 1. Bradley and Tony have ask us for a summary of Sugar Labs activity for the Software Freedom Conservancy annual report. It has been a busy year, with tremendous progress on the technical front, but also real in roads into better understanding how to deploy Sugar in a wide

Re: [Sugar-devel] Sugar Digest 2012-09-18

2012-09-18 Thread Flavio Danesse
Congratulations! Next year it will celebrate the birthday of the son of pablo newcomer next to your grandson. Felicidades !! El año que viene habrá que celebrar el cumpleaños del hijo recien llegado de pablo junto al de tu nieto. 2012/9/18 Walter Bender walter.ben...@gmail.com == Sugar

Re: [Sugar-devel] Not enough space adventure

2012-09-18 Thread Gonzalo Odiard
- remove the annoying check of free space I hope that's not completely removed (I see Gonzalo's email...). It is not very effective preventing you from using activities, but it does prompt users to do something (remove stuff?). BTW, 50MB may be too high, some units with 2GB storage,