[Sugar-devel] excludedocs

2010-06-13 Thread Grant Bowman
On a machine with only 1G SSD I understand why it is necessary to exclude documentation. In starting development and using an XO-1.5 "dogfood style" I find the lack of documentation troublesome. Online documentation is not a true substitute as this excludedocs setting effects more than just man p

Re: [Sugar-devel] [DESIGN] Alerting users in case of write errors (sl#1842)

2010-06-13 Thread James Cameron
On Sun, Jun 13, 2010 at 05:27:56PM +0530, Anish Mangal wrote: > Thanks for the insightful responses. I have used a slightly modded > version of NotifyAlert (aptly called NotifyRedAlert). A sample > screen-capture can be found here... Reviewed. I don't like timed alerts, since we have no guarantee

Re: [Sugar-devel] Datastore rewrite

2010-06-13 Thread C. Scott Ananian
As far as I know, you could use fuse-mounted olpcfs to store the journal files, and obtain this space savings (which is technically known as "deduplication") with no extra effort. You could also store the files in git for the same effect. --scott On Sat, Jun 12, 2010 at 3:07 PM, Frederick Grose

Re: [Sugar-devel] [PATCH] Add NotifyRedAlert inherited from NotifyAlert

2010-06-13 Thread Anish Mangal
Hi Michael, > Is this alert really about being red or about notifying the user about > errors > in a more eyecatching fashion? I guess the latter. > The value of the color variable can be more concisely calculated like so: > > color = "#%02x" % self.saturation Thanks, made the change. Ch

[Sugar-devel] test email, please ignore

2010-06-13 Thread Anish Mangal
Something has gone bonkers somewhere and I can't seem to send emails to sugar-devel. Please ignore this email. ___ Sugar-devel mailing list Sugar-devel@lists.sugarlabs.org http://lists.sugarlabs.org/listinfo/sugar-devel

[Sugar-devel] [PATCH 3/3] Add config.py.in and update AC_CONFIG_FILES.

2010-06-13 Thread Andrés Ambrois
config.py is generated from config.py.in at configure time by autoconf, so it needs to be added to AC_CONFIG_FILES in configure.ac. Signed-off-by: Andrés Ambrois create mode 100644 extensions/cpsection/modemconfiguration/config.py.in diff --git a/configure.ac b/configure.ac index 13a2f09..68a8

[Sugar-devel] [PATCH 2/3] Show Country/Provider/Plan comboboxes if DB exists.

2010-06-13 Thread Andrés Ambrois
Display comboboxes for selecting a data plan for each country and provider if the mobile-broadband-providers-info package is installed. Populate the connection parameters with the info from the selected data plan. Signed-off-by: Andrés Ambrois diff --git a/extensions/cpsection/modemconfiguration

[Sugar-devel] [PATCH 1/3] Add models for detecting and parsing the providers DB.

2010-06-13 Thread Andrés Ambrois
has_providers_db() checks for the files needed and is used by the view to decide whether to show the combo boxes. The models are gtk.ListStore subclasses that parse the XML element they receive as a parameter in their constructors. Signed-off-by: Andrés Ambrois mode change 100755 => 100644 exte

[Sugar-devel] [PATCH 0/3] mobile-broadband-provider-info support. Take 2.

2010-06-13 Thread Andrés Ambrois
I'm resurrecting an old patch here, hoping it makes it for 0.90. >From SL#1630: The NetworkManager project provides an XML database containing carrier network details for a large number of countries. Support for parsing this database would greatly benefit the user experience when configuring a mo

Re: [Sugar-devel] [PATCH] Wrong exception when copying an entry with no file to a removable device.

2010-06-13 Thread Andrés Ambrois
On Sunday 13 June 2010 09:52:22 pm Gonzalo Odiard wrote: > Andres! Gol de Uruguay? For a change! ;) Actually, I don't know if there's a ticket for this. I just ran into it while looking at the code. P.S.: Good thing that Germany - Australia was a little more exciting than the rest of the world

Re: [Sugar-devel] [DESIGN] Alerting users in case of write errors

2010-06-13 Thread Gary Martin
On 14 Jun 2010, at 02:04, Michael Stone wrote: > Gary wrote: >> On 13 Jun 2010, at 12:57, Anish Mangal wrote: An alert like a chat or Activity sharing invitation would be nice, but one with a more visible signal is needed. We really really really ... need a general notification sy

Re: [Sugar-devel] Lost at sea, Calculate-31

2010-06-13 Thread James Cameron
I've reviewed the pending code in 31, and have no issues with a release if that's all you have time for. Don't forget there have been several Calculate patches posted on sugar-devel@ lately, especially in the thread by Tim McNamara, in case you have a massive amount of free time to merge them firs

Re: [Sugar-devel] [DESIGN] Alerting users in case of write errors

2010-06-13 Thread Michael Stone
Gary wrote: > On 13 Jun 2010, at 12:57, Anish Mangal wrote: >>> An alert like a chat or Activity sharing invitation would be nice, but one >>> with a more visible signal is needed. >> >>> We really really really ... need a general notification system. :D >> >>> Please no popup error dialogue win

Re: [Sugar-devel] [PATCH] Wrong exception when copying an entry with no file to a removable device.

2010-06-13 Thread Gonzalo Odiard
Andres! Gol de Uruguay? Gonzalo On Sun, Jun 13, 2010 at 9:49 PM, Michael Stone wrote: > On Sun, Jun 13, 2010 at 08:43:19PM -0300, Andrés Ambrois wrote: > >In that case write() was called with file_path=None by copy() and a > >TypeError was raised by os.path.exists(). > > > >Signed-off-by: André

Re: [Sugar-devel] [PATCH] Add NotifyRedAlert inherited from NotifyAlert

2010-06-13 Thread Michael Stone
On Mon, Jun 14, 2010 at 02:51:23AM +0530, anishmangal2...@gmail.com wrote: Hi Anish, Thanks for the patches. Here are one small question and one comment for you... >From: anishmangal2002 > >Adds the NotifyRedAlert class which is an alert inherited from > NotifyAlert. When the alert message is d

Re: [Sugar-devel] [PATCH] Wrong exception when copying an entry with no file to a removable device.

2010-06-13 Thread Michael Stone
On Sun, Jun 13, 2010 at 08:43:19PM -0300, Andrés Ambrois wrote: >In that case write() was called with file_path=None by copy() and a >TypeError was raised by os.path.exists(). > >Signed-off-by: Andrés Ambrois >--- > src/jarabe/journal/model.py |2 +- > 1 files changed, 1 insertions(+), 1 deleti

Re: [Sugar-devel] [PATCH] Journal: Fix for sl#1842

2010-06-13 Thread Andrés Ambrois
On Sunday 13 June 2010 06:21:22 pm anishmangal2...@gmail.com wrote: > diff --git a/src/jarabe/journal/journalactivity.py b/src/jarabe/journal/journalactivity.py > index 0559560..9536ca3 100644 > --- a/src/jarabe/journal/journalactivity.py > +++ b/src/jarabe/journal/journalactivity.py > @@ -27,6 +2

[Sugar-devel] Patch: olpc #8229 Cannot drag image from clipboard

2010-06-13 Thread Gonzalo Odiard
>From 857fcf33ac6ca61ca097b23394eccc9025ee8575 Mon Sep 17 00:00:00 2001 From: Gonzalo Odiard Date: Sun, 13 Jun 2010 21:25:43 -0300 Subject: [PATCH] fix olpc #8229 - Cannot drag image from clipboard --- Area.py | 15 +++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git

[Sugar-devel] [PATCH] Wrong exception when copying an entry with no file to a removable device.

2010-06-13 Thread Andrés Ambrois
In that case write() was called with file_path=None by copy() and a TypeError was raised by os.path.exists(). Signed-off-by: Andrés Ambrois --- src/jarabe/journal/model.py |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/jarabe/journal/model.py b/src/jarabe/journal/m

[Sugar-devel] activity updater

2010-06-13 Thread Bernie Innocenti
El Sun, 13-06-2010 a las 20:55 +0100, Gary C Martin escribió: > OK, not strictly a patch but attached is an updated version of > the currently malformed svg module-updater icon that's not > drawing correctly in F13. Not sure who this needs to get to > (could only find it in Bernie's old depreciate

Re: [Sugar-devel] [DESIGN] Alerting users in case of write errors (sl#1842)

2010-06-13 Thread Gary Martin
Hi Anish, On 13 Jun 2010, at 12:57, Anish Mangal wrote: >> An alert like a chat or Activity sharing invitation would be nice, but one >> with a more visible signal is needed. > >> We really really really ... need a general notification system. :D > >> Please no popup error dialogue windows if

[Sugar-devel] [PATCH] Add NotifyRedAlert inherited from NotifyAlert

2010-06-13 Thread anishmangal2002
From: anishmangal2002 Adds the NotifyRedAlert class which is an alert inherited from NotifyAlert. When the alert message is displayed, it glows the alert bar Red before slowly fading out to black, thus resulting in a more visible notification. Signed-off-by: anishmangal2002 --- src/sugar/grap

[Sugar-devel] [PATCH] Journal: Fix for sl#1842

2010-06-13 Thread anishmangal2002
From: anishmangal2002 volumestoolbar.py now catches the IOError exception and emits 'data-ioerror' which is caught in journalactivity.py which displayes the error as a NotifyRedAlert message. Signed-off-by: anishmangal2002 --- src/jarabe/journal/journalactivity.py | 13 + src/jar

Re: [Sugar-devel] Defining "sugar HEAD".

2010-06-13 Thread Thomas C Gilliard
I have been testing applications in 4 GB Soas Live USB's created, with persistence, with a script: ./livecd-iso-to-disk --format --reset-mbr --overlay-size-mb 1200 .iso /dev/sdb* SUGAR VERSIONS: 1-Mirabelle o.88.0 2-Nightly Composes f14 -rawhide 0.88.1 I have tested applications in these

[Sugar-devel] [PATCH] fix malformed svg module-updater icon revealed in F13

2010-06-13 Thread Gary C Martin
OK, not strictly a patch but attached is an updated version of the currently malformed svg module-updater icon that's not drawing correctly in F13. Not sure who this needs to get to (could only find it in Bernie's old depreciated software update git rep). It should live in the filesystem at:

[Sugar-devel] Defining "sugar HEAD".

2010-06-13 Thread Michael Stone
Hi folks, We've done some good work in the past few weeks getting the Sugar patch generation and review processes unstuck. Interesting new patches are now being published and reviewed with some frequency, which is great. (Particular thanks are due to James, Bernie, and Tomeu for their work revie

Re: [Sugar-devel] VNC for Projector View

2010-06-13 Thread David Leeming
I have used the VNC Launcher activity (v3) extensively in training workshops to project XO displays using a PC Windows computer with UltraVNC Viewer installed (free software www.ultravnc.com) It is very stable and easy to use in conjunction with an XS school server using the Eth1 network, eithe

Re: [Sugar-devel] Fructose Dependencies?

2010-06-13 Thread Sascha Silbe
Excerpts from Gary C Martin's message of Sun Jun 13 03:15:17 + 2010: > Should pygame be listed as an official Fructose Dependency (or even Glucose)? There is no official, up-to-date list of dependencies for individual packages (help welcome!), but pygame is part of the Sugar Platform [1]. >

Re: [Sugar-devel] [DESIGN] Alerting users in case of write errors (sl#1842)

2010-06-13 Thread Anish Mangal
> An alert like a chat or Activity sharing invitation would be nice, but one > with a more visible signal is needed. > We really really really ... need a general notification system. :D > Please no popup error dialogue windows if you can avoid it ;) The alert strip > that displays under the tool

Re: [Sugar-devel] Hypothetical sugar-0.90 material, draft 1.

2010-06-13 Thread Hal Murray
> Actually these are the exact same problems that could be solved much better > with some kind of per activity DS (not the Android one, which would be a > little bit overkill). I mean that even making or not making deltas is > dependent on the object the activity stores and the deltifier is al