[Sugar-devel] [DESIGN] set zoom to initial value in Browse

2012-09-10 Thread Manuel Quiñones
Hello, any comments, concerns about this enhacement contributed by humitos? http://bugs.sugarlabs.org/ticket/3540 Is the wording for the tooltip Zoom equal ok? Regards, -- .. manuq .. ___ Sugar-devel mailing list Sugar-devel@lists.sugarlabs.org

Re: [Sugar-devel] gestures + event controller patch series

2012-09-10 Thread Simon Schampijer
On 09/05/2012 02:04 PM, Carlos Garnacho wrote: Hey, I'm sending an updated patch set. There was a missing header in the previous set, and now there's code to show UI feedback on long press Carlos Hi Carlos, all in all a very nice work, I have a few comments on the API: ==Long press==

Re: [Sugar-devel] [ASLO] Useful way to provide activity sources tarballs

2012-09-10 Thread Gonzalo Odiard
On Sun, Sep 9, 2012 at 2:36 PM, Peter Robinson pbrobin...@gmail.com wrote: I'm remebering there was a talk about providing activity source tarballs from ASLO. Right now, all development work in thie area is being concentrated around Sugar Network[1] that is intended to be a successor (at

Re: [Sugar-devel] [DESIGN] set zoom to initial value in Browse

2012-09-10 Thread Gary Martin
Hi Manuel, On 10 Sep 2012, at 12:35, Manuel Quiñones ma...@laptop.org wrote: Hello, any comments, concerns about this enhacement contributed by humitos? http://bugs.sugarlabs.org/ticket/3540 Is the wording for the tooltip Zoom equal ok? Actual size is perhaps the more common name for

Re: [Sugar-devel] [DESIGN] set zoom to initial value in Browse

2012-09-10 Thread Gonzalo Odiard
Actual size is used in Read too. Gonzalo On Mon, Sep 10, 2012 at 11:03 AM, Gary Martin garycmar...@googlemail.comwrote: Hi Manuel, On 10 Sep 2012, at 12:35, Manuel Quiñones ma...@laptop.org wrote: Hello, any comments, concerns about this enhacement contributed by humitos?

Re: [Sugar-devel] [PATCH sugar-artwork 1/4] Fix Makefile to install the proper CSS in sugar 100% theme

2012-09-10 Thread Simon Schampijer
Good catch, please push! As you said, this reveals a few issues we need to fix, a short note in the commit message is maybe good, nothing fancy needed though. Simon On 09/04/2012 05:50 AM, Manuel Quiñones wrote: Signed-off-by: Manuel Quiñones ma...@laptop.org --- gtk3/theme/Makefile.am | 2

Re: [Sugar-devel] [PATCH sugar-artwork 1/4] Fix Makefile to install the proper CSS in sugar 100% theme

2012-09-10 Thread Manuel Quiñones
2012/9/10 Simon Schampijer si...@schampijer.de: Good catch, please push! As you said, this reveals a few issues we need to fix, a short note in the commit message is maybe good, nothing fancy needed though. Thanks, pushed as 26960ab3442a8f87574866505387a6864b86cca9 with a proper comment. --

Re: [Sugar-devel] [DESIGN] set zoom to initial value in Browse

2012-09-10 Thread Manuel Quiñones
2012/9/10 Gonzalo Odiard gonz...@laptop.org: Actual size is used in Read too. Thanks Gary and Gonzalo, we have a winner tooltip. I will proceed to review and push. -- .. manuq .. ___ Sugar-devel mailing list Sugar-devel@lists.sugarlabs.org

[Sugar-devel] [PATCH Browse] Busy indication SL #851

2012-09-10 Thread Manuel Kaufmann
Show WATCH Cursor when the page is loading and LEFT_PTR when the load finishes. Signed-off-by: Manuel Kaufmann humi...@gmail.com --- browser.py | 4 1 file changed, 4 insertions(+) diff --git a/browser.py b/browser.py index 7379d2b..90378cb 100644 --- a/browser.py +++ b/browser.py @@

[Sugar-devel] [PATCH Browse] Don't call .start after .set_destination_uri SL #3878

2012-09-10 Thread Manuel Kaufmann
Do not call WebKitDownload.start after .set_destination_uri because it is no needed. The download will start automatically after .set_destination_uri. http://webkitgtk.org/reference/webkitgtk/stable/webkitgtk-webkitwebview.html#WebKitWebView-download-requested Signed-off-by: Manuel Kaufmann

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

2012-09-10 Thread Manuel Kaufmann
If there are less than 50Mb free on the Hard Disk the downloading process is canceled and this is informed to the user via an Alert. Signed-off-by: Manuel Kaufmann humi...@gmail.com --- downloadmanager.py | 29 +++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff

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

2012-09-10 Thread Manuel Kaufmann
If there are less than 50Mb free on the Hard Disk the downloading process is canceled and this is informed to the user via an Alert. Signed-off-by: Manuel Kaufmann humi...@gmail.com --- downloadmanager.py | 28 ++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff

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

2012-09-10 Thread Martin Langhoff
On Mon, Sep 10, 2012 at 5:33 PM, Manuel Kaufmann humi...@gmail.com wrote: If there are less than 50Mb free on the Hard Disk the downloading process is canceled and this is informed to the user via an Alert. Perhaps it is a stupid question but... in many HTTP requests you get the size of the

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

2012-09-10 Thread Martin Langhoff
On Mon, Sep 10, 2012 at 5:49 PM, Martin Langhoff martin.langh...@gmail.com wrote: Perhaps it is a stupid question but... in many HTTP requests you get s/question/suggestion/ m -- martin.langh...@gmail.com mar...@laptop.org -- Software Architect - OLPC - ask interesting questions - don't

Re: [Sugar-devel] [DESIGN] set zoom to initial value in Browse

2012-09-10 Thread Martin Langhoff
On Mon, Sep 10, 2012 at 10:07 AM, Gonzalo Odiard gonz...@laptop.org wrote: Actual size is used in Read too. http://imgs.xkcd.com/store/imgs/actual_size_200.png m -- martin.langh...@gmail.com mar...@laptop.org -- Software Architect - OLPC - ask interesting questions - don't get

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

2012-09-10 Thread Manuel Kaufmann
On Mon, Sep 10, 2012 at 9:49 PM, Martin Langhoff martin.langh...@gmail.com wrote: Perhaps it is a stupid question but... in many HTTP requests you get the size of the transfer in the HTTP headers, in the form of the Content-Length header. I didn't follow this approach because of this comment:

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

2012-09-10 Thread Martin Langhoff
On Mon, Sep 10, 2012 at 6:02 PM, Manuel Kaufmann humi...@gmail.com wrote: On Mon, Sep 10, 2012 at 9:49 PM, Martin Langhoff martin.langh...@gmail.com wrote: Perhaps it is a stupid question but... in many HTTP requests you get the size of the transfer in the HTTP headers, in the form of the

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

2012-09-10 Thread Manuel Kaufmann
On Mon, Sep 10, 2012 at 10:13 PM, Martin Langhoff martin.langh...@gmail.com wrote: It does make sense to declare a minimum buffer, but you have good reliably info in content-length, use it! Ok. I will go for that :) -- Kaufmann Manuel Blog: http://humitos.wordpress.com/ Porfolio:

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

2012-09-10 Thread James Cameron
Some users pay for data by volume. I don't think that cancelling a download is the right approach. It should be paused, giving the user a chance to clean up. Also, I agree with Martin that additional use of Content-Length headers can be made, to warn the user against trying a download larger

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

2012-09-10 Thread Martin Langhoff
On Mon, Sep 10, 2012 at 6:39 PM, James Cameron qu...@laptop.org wrote: Some users pay for data by volume. I don't think that cancelling a download is the right approach. It should be paused, giving the user a chance to clean up. Rather complex -- I haven't seen any webbrowser correctly

Re: [Sugar-devel] [ASLO] Useful way to provide activity sources tarballs

2012-09-10 Thread Aleksey Lim
On Sun, Sep 09, 2012 at 06:36:31PM +0100, Peter Robinson wrote: I'm remebering there was a talk about providing activity source tarballs from ASLO. Right now, all development work in thie area is being concentrated around Sugar Network[1] that is intended to be a successor (at least on low

[Sugar-devel] sugar-build broken

2012-09-10 Thread Agustin Zubiaga Sanchez
Hello everybody, Today, I have compiled sugar-build again and it finished successful, but when I opened sugar (make run), appeared only the home toolbar and in some seconds, it has closed. I send my shell.log in the attachment. Regards, aguz shell.log Description: Binary data

Re: [Sugar-devel] sugar-build broken

2012-09-10 Thread Simon Schampijer
On 09/11/2012 03:25 AM, Agustin Zubiaga Sanchez wrote: Hello everybody, Today, I have compiled sugar-build again and it finished successful, but when I opened sugar (make run), appeared only the home toolbar and in some seconds, it has closed. I send my shell.log in the attachment. Regards,