Re: [Sugar-devel] [DESIGN] Pippy shared activity view

2010-05-23 Thread Anish Mangal
Hi, After this happens, there's no way (inside Pippy) to return to the file you were working on before. That's why the treeview's hidden; an accidental click on a treeview example would be extremely frustrating. Interesting. It would be worth experimenting with hiding the treeview, perhaps for

Re: [Sugar-devel] New XO-1.5 10.2.0 build 125 - control panel

2010-05-23 Thread Tomeu Vizoso
On Sat, May 22, 2010 at 14:11, Bernie Innocenti ber...@codewiz.org wrote: El Fri, 21-05-2010 a las 23:01 -0700, Yioryos Asprobounitis escribió: Simple and quite effective :-) Changing MAX_COLUMNS to 4 in /usr/lib/python2.6/site-packages/jarabe/controlpanel/gui.py did the trick. And still has

[Sugar-devel] [PATCH v1 0/5] Add ctime and filesize properties to the datastore

2010-05-23 Thread Andrés Ambrois
This is in preparation of the Journal work implementing sorting of entries by these properties. v0: Initial submission to sugar-devel v1: Split ctime and filesize patches as requested by Sascha Andrés Ambrois (5): Add filesize property to the index Add migration code from DS v0 for the

[Sugar-devel] [PATCH v1 2/5] Add migration code from DS v0 for the filesize property

2010-05-23 Thread Andrés Ambrois
Signed-off-by: Andrés Ambrois andresambr...@gmail.com --- src/carquinyol/migration.py |9 - 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/src/carquinyol/migration.py b/src/carquinyol/migration.py index 95ee391..228467c 100644 --- a/src/carquinyol/migration.py +++

[Sugar-devel] [PATCH v1 3/5] Increment CURRENT_LAYOUT_VERSION to trigger an index rebuild.

2010-05-23 Thread Andrés Ambrois
Signed-off-by: Andrés Ambrois andresambr...@gmail.com --- src/carquinyol/layoutmanager.py |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/carquinyol/layoutmanager.py b/src/carquinyol/layoutmanager.py index 8402b6d..aee5efb 100644 ---

[Sugar-devel] [PATCH v1 4/5] Add ctime property to the index and datastore

2010-05-23 Thread Andrés Ambrois
Signed-off-by: Andrés Ambrois andresambr...@gmail.com --- src/carquinyol/datastore.py | 10 -- src/carquinyol/indexstore.py |7 +++ 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/src/carquinyol/datastore.py b/src/carquinyol/datastore.py index 93ad419..9f0be96

[Sugar-devel] [PATCH v1 5/5] Implement migration from DS v0 for ctime property.

2010-05-23 Thread Andrés Ambrois
Signed-off-by: Andrés Ambrois andresambr...@gmail.com --- src/carquinyol/migration.py |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/src/carquinyol/migration.py b/src/carquinyol/migration.py index 228467c..80adbae 100644 --- a/src/carquinyol/migration.py +++

[Sugar-devel] [PATCH v1 00/10] Journal sorting by file size and creation time.

2010-05-23 Thread Andrés Ambrois
See [0] for the rationale behind this patchset. [0] http://lists.sugarlabs.org/archive/sugar-devel/2010-May/023664.html v0: Initial submission to sugar-devel v1: Separated ctime and filesize patches. Implemented sorting for removable devices. Andrés Ambrois (10): Journal: Retrieve filesize

[Sugar-devel] [PATCH v1 01/10] Journal: Retrieve filesize from the datastore

2010-05-23 Thread Andrés Ambrois
Add the filesize property to the list of properties we ask the datastore for. Signed-off-by: Andrés Ambrois andresambr...@gmail.com --- src/jarabe/journal/model.py |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/jarabe/journal/model.py

[Sugar-devel] [PATCH v1 02/10] Add a filesize column to the journal list model

2010-05-23 Thread Andrés Ambrois
This will make it easy to display the current sorting column by associating a cell renderer with it. Signed-off-by: Andrés Ambrois andresambr...@gmail.com --- src/jarabe/journal/listmodel.py | 17 +++-- 1 files changed, 11 insertions(+), 6 deletions(-) diff --git

[Sugar-devel] [PATCH v1 04/10] Add a ListViewButton to the journal search toolbar.

2010-05-23 Thread Andrés Ambrois
Add a button to display the sorting options. Rebuild the query when the sort option changes. Use a RadioToolButton for a future implementation of multiple journal views (as described in the Journal Design Proposal). Signed-off-by: Andrés Ambrois andresambr...@gmail.com ---

[Sugar-devel] [PATCH v1 05/10] Rename the date column to 'sort_column'

2010-05-23 Thread Andrés Ambrois
As it will be used to display the currently active sorting property. Signed-off-by: Andrés Ambrois andresambr...@gmail.com --- src/jarabe/journal/listview.py | 22 +++--- 1 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/jarabe/journal/listview.py

[Sugar-devel] [PATCH v1 06/10] Display the sorting property in the last column.

2010-05-23 Thread Andrés Ambrois
update_with_query() is called when the query is modified in the toolbox. Get the name of the property and set the sort_column cell renderer accordingly. Signed-off-by: Andrés Ambrois andresambr...@gmail.com --- src/jarabe/journal/listview.py | 11 --- 1 files changed, 8 insertions(+),

[Sugar-devel] [PATCH v1 07/10] Expandedentry: Try to use the filesize property.

2010-05-23 Thread Andrés Ambrois
Instead of calling the datastore again. Signed-off-by: Andrés Ambrois andresambr...@gmail.com --- src/jarabe/journal/expandedentry.py |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/jarabe/journal/expandedentry.py b/src/jarabe/journal/expandedentry.py index

[Sugar-devel] [PATCH v1 08/10] Implement sorting for removable devices.

2010-05-23 Thread Andrés Ambrois
Signed-off-by: Andrés Ambrois andresambr...@gmail.com --- src/jarabe/journal/model.py | 16 +--- 1 files changed, 13 insertions(+), 3 deletions(-) diff --git a/src/jarabe/journal/model.py b/src/jarabe/journal/model.py index 874d7bd..4fd81ac 100644 --- a/src/jarabe/journal/model.py

[Sugar-devel] [PATCH v1 09/10] Add sort by creation time option to the ListViewButton

2010-05-23 Thread Andrés Ambrois
Signed-off-by: Andrés Ambrois andresambr...@gmail.com --- src/jarabe/journal/journaltoolbox.py |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/jarabe/journal/journaltoolbox.py b/src/jarabe/journal/journaltoolbox.py index 995cc73..03afb4e 100644 ---

Re: [Sugar-devel] [PATCH] sugar-artwork: stricter compiler flags

2010-05-23 Thread Bernie Innocenti
El Mon, 17-05-2010 a las 15:53 +0200, Benjamin Berg escribió: That looks like a very good change. Thanks for the patch. Reviewed-by: Benjamin Berg benja...@sipsolutions.net Thanks, pushed. -- // Bernie Innocenti - http://codewiz.org/ \X/ Sugar Labs - http://sugarlabs.org/

[Sugar-devel] [PATCH] Avoid popping an empty list in the software updater.

2010-05-23 Thread Michael Stone
When you run Sugar with no activities installed, UpdateModel._bundles_to_check is empty. Attempting to unconditionally pop this list results in an IndexError. Instead, the updater should stop trying to update bundles when it determines that it has no more bundles to check. Signed-off-by: Michael

[Sugar-devel] [PATCH] Simplify the definition of UpdateModel._bundles_to_check.

2010-05-23 Thread Michael Stone
The only purposes of the list comprehension in UpdateModel.check_updates() is to set self._bundles_to_check to a list containing the elements returned by bundleregistry.get_registry(). This purpose can be more succinctly achieved by means of the list() constructor. Signed-off-by: Michael Stone

[Sugar-devel] [John Maloney] XO Scratch Release (v13) w/ Journal Support

2010-05-23 Thread Chris Ball
Hi, Here's a Scratch release announcement from John Maloney; his post to the list was rejected. Could someone take care of putting it on ASLO? Thanks, - Chris. ---BeginMessage--- Greetings, all. A new release of Scratch for the XO is now available at: http://wiki.laptop.org/go/Activities

Re: [Sugar-devel] [PATCH v1 00/10] Journal sorting by file size and creation time.

2010-05-23 Thread Michael Stone
On Sun, May 23, 2010 at 09:02:30AM -0300, Andrés Ambrois wrote: See [0] for the rationale behind this patchset. [0] http://lists.sugarlabs.org/archive/sugar-devel/2010-May/023664.html v0: Initial submission to sugar-devel v1: Separated ctime and filesize patches. Implemented sorting for

Re: [Sugar-devel] #1686 UNSP: Accessibility - virtual keyboard

2010-05-23 Thread Michael Stone
On Wed, May 19, 2010 at 03:10:52PM +0200, Tomeu Vizoso wrote: On Sat, May 15, 2010 at 23:48, Sugar Labs Bugs bugtracker-nore...@sugarlabs.org wrote: #1686: Accessibility - virtual keyboard --+-    Reporter:  earias          

[Sugar-devel] [ASLO] Release Poll-26

2010-05-23 Thread Sugar Labs Activities
Activity Homepage: http://activities.sugarlabs.org/addon/4074 Sugar Platform: 0.84 - 0.88 Download Now: http://activities.sugarlabs.org/downloads/file/26914/poll-26.xo Release notes: Add image support to combine with answers Sugar Labs Activities http://activities.sugarlabs.org

Re: [Sugar-devel] #1686 UNSP: Accessibility - virtual keyboard

2010-05-23 Thread Michael Stone
On Sun, May 23, 2010 at 03:18:47PM -0400, Michael Stone wrote: On Wed, May 19, 2010 at 03:10:52PM +0200, Tomeu Vizoso wrote: On Sat, May 15, 2010 at 23:48, Sugar Labs Bugs bugtracker-nore...@sugarlabs.org wrote: #1686: Accessibility - virtual keyboard

Re: [Sugar-devel] New XO-1.5 10.2.0 build 125 - control panel

2010-05-23 Thread James Cameron
On Fri, May 21, 2010 at 08:53:58AM -0400, Bernie Innocenti wrote: I've applied the following patch to my builds. It mitigates the problem, at least on the screen size of the XO-1. Tested on XO-1.5 os125 with Sugar 0.84 and Sugar 0.88. Observation and comment: the icons are not evenly spaced

Re: [Sugar-devel] New XO-1.5 10.2.0 build 125 - control panel

2010-05-23 Thread Bernie Innocenti
El Mon, 24-05-2010 a las 08:36 +1000, James Cameron escribió: Observation and comment: the icons are not evenly spaced across the screen; they are spaced according to the length of the text under each icon. Therefore the grid system is either inapplicable or the text should be wrapped. Works

Re: [Sugar-devel] New XO-1.5 10.2.0 build 125 - control panel

2010-05-23 Thread James Cameron
On Sun, May 23, 2010 at 07:15:54PM -0400, Bernie Innocenti wrote: El Mon, 24-05-2010 a las 08:36 +1000, James Cameron escribi??: Observation and comment: the icons are not evenly spaced across the screen; they are spaced according to the length of the text under each icon. Therefore the

Re: [Sugar-devel] [PATCH v1 00/10] Journal sorting by file size and creation time.

2010-05-23 Thread Andrés Ambrois
On Sunday 23 May 2010 04:08:51 pm Michael Stone wrote: Andrés, I've read these patches and tested them locally (with minor changes due to merge conflicts with some of my experimental work) and the results are quite pleasing to me. Thanks! The one issue that I would like you to fix before

Re: [Sugar-devel] [PATCH v1 00/10] Journal sorting by file size and creation time.

2010-05-23 Thread Gary C Martin
Hi Andrés, On 24 May 2010, at 01:16, Andrés Ambrois wrote: On Sunday 23 May 2010 04:08:51 pm Michael Stone wrote: Andrés, I've read these patches and tested them locally (with minor changes due to merge conflicts with some of my experimental work) and the results are quite pleasing to me.

Re: [Sugar-devel] New XO-1.5 10.2.0 build 125 - control panel

2010-05-23 Thread Bernie Innocenti
El Mon, 24-05-2010 a las 09:57 +1000, James Cameron escribió: evenly spaced was the wrong phrase, sorry. I've tested again on Sugar 0.88, the icons are not regularly positioned horizontally. That is, their centre to centre distance varies. This looks unpleasant to me. Oh, I see. Doesn't