Re: [Sugar-devel] [PATCH] Start filtered activity with keyboard

2011-11-28 Thread Sascha Silbe
Excerpts from godiard's message of 2011-11-07 13:06:45 +0100: > From: Gonzalo Odiard > > This patch complement the filter functionality in the home view. > If only one activity is selected, Return key start the activity. Nice one. Both Return (default action, i.e. resume latest) and Alt-Return

Re: [Sugar-devel] [PATCH] Bundlebuilder: don't fail to package if git is not installed, OLPC #11341

2011-11-28 Thread Sascha Silbe
# Fall back to filtered list > +logging.warn('SourcePackager, this is not a git repository, ' \ > + 'fall back to filtered list') Ditto: logging.warn('SourcePackager: this is not a git repository,'

Re: [Sugar-devel] [PATCH] Control Panel, Power section: check if powerd is available OLPC #11437

2011-11-28 Thread Sascha Silbe
Excerpts from Simon Schampijer's message of 2011-11-28 10:42:05 +0100: > On the XO 1.75 '/ofw' is not used anymore on the XO-1.75, > '/proc/device-tree' is used now instead. Check if powerd > is available to determine if the power section is displayed or > not. How about: Recent versions of the

Re: [Sugar-devel] [PATCH] Touchpad icon: update for upstream kernel API

2011-11-28 Thread Sascha Silbe
Excerpts from Daniel Drake's message of 2011-11-25 21:10:04 +0100: > The HGPK pentablet selection code has gone upstream, but with a > different interface from the version included in previous OLPC kernels. > The interface is now: > > echo -n pentablet > hgpk_mode > > Port the touchpad icon

Re: [Sugar-devel] Sugar Digest 2011-11-19

2011-11-19 Thread Sascha Silbe
Excerpts from Walter Bender's message of 2011-11-19 20:04:56 +0100: > [...] The other feature I added was the ability to > make voice annotations on each page in your portfolio. These voice > notes are played back when the portfolio is viewed. They are also > saved went the contents are exported t

Re: [Sugar-devel] [PATCH 2/2 sugar] Create new owner keys as RSA keys instead of DSA

2011-11-15 Thread Sascha Silbe
Excerpts from Samuel Greenfeld's message of 2011-11-15 15:23:58 +0100: > Has anyone in the security field (such as Ivan Krstić) reviewed this > proposal? Are there any potential performance impacts by switching key > types for slower systems such as the XO-1? A few quick tests have shown no sign

[Sugar-devel] [PATCH 2/2 sugar] Create new owner keys as RSA keys instead of DSA

2011-11-15 Thread Sascha Silbe
-requirements-for-random-k-value/ [3] http://www.debian.org/security/2008/dsa-1571 [4] http://rdist.root.org/2009/05/17/the-debian-pgp-disaster-that-almost-was/ [5] http://web.monkeysphere.info/news/release-0.24-1/ Signed-off-by: Sascha Silbe --- src/jarabe/intro/window.py |2 +- 1 files changed

[Sugar-devel] [PATCH 1/2 sugar-toolkit] Accept RSA key as owner key

2011-11-15 Thread Sascha Silbe
Sugar currently uses the owner key as an opaque string, not as an actual key. This means the key type doesn't matter, we can just as easily use an RSA key. Signed-off-by: Sascha Silbe --- src/sugar/profile.py | 10 ++ 1 files changed, 6 insertions(+), 4 deletions(-) diff --git

[Sugar-devel] Create new owner keys as RSA keys instead of DSA

2011-11-15 Thread Sascha Silbe
RSA key. As expected, no regression occured. src/pstest.py in sugar-presence-service also contains code to create and parse DSA keys. Since sugar-presence-service is deprecated and pstest.py isn't used during normal operation, I've not bothered to make it use RSA keys instead. Sasc

[Sugar-devel] [PATCH calculate] Remove dependency on CanvasIcon

2011-11-14 Thread Sascha Silbe
The code that used CanvasIcon was commented out in 2007 already. Signed-off-by: Sascha Silbe --- calculate.py |5 - 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/calculate.py b/calculate.py index 91cf276..5b45698 100644 --- a/calculate.py +++ b/calculate.py @@ -36,7

Re: [Sugar-devel] [PATCH] Simple NetworkManager-0.9 port

2011-11-14 Thread Sascha Silbe
Excerpts from Daniel Drake's message of 2011-11-11 18:18:31 +0100: > On Mon, Oct 24, 2011 at 6:41 PM, Sascha Silbe > wrote: [GSM settings] > >> -    def undo(self): > >> -        self._model.undo() > > > > What happened to the undo functionality? Sin

Re: [Sugar-devel] [PATCH sugar-datastore] Ensure we return valid internal / calculated properties

2011-11-06 Thread Sascha Silbe
Excerpts from James Cameron's message of 2011-11-02 23:42:59 +0100: > I'm glad to see fixes for corrupted metadata, but I wonder if the > application (the datastore process) is properly asking the kernel to > retain the data? I wouldn't like to see it block on a sync, but I > thought there were w

[Sugar-devel] [PATCH sugar-toolkit PoC v2] Tap&hold for Palettes

2011-11-04 Thread Sascha Silbe
uld do on WIMP interaces. This patch is a hack to add tap&hold support to Sugar palettes for evaluation purposes. The real thing (TM) should hook into GTK instead in order to make it work beyond just Sugar palettes. Signed-off-by: Sascha Silbe --- v1->v2: Added previously uncommitted fixes to

[Sugar-devel] [PATCH sugar] Journal detail view: don't choke on invalid 'keep' property

2011-11-02 Thread Sascha Silbe
; property as a string we can avoid the ValueError that might happen when trying to convert the property value to an integer. [1] https://dev.laptop.org/ticket/11372 Reported-by: Gary Martin Signed-off-by: Sascha Silbe --- Tested using the data store attached to the ticket referenced above.

[Sugar-devel] [PATCH sugar-datastore] Ensure we return valid internal / calculated properties

2011-11-02 Thread Sascha Silbe
elete. [1] https://dev.laptop.org/ticket/11372 Reported-by: Gary Martin Signed-off-by: Sascha Silbe --- Passes the test suite - at least after fixing the latter to accept decimal strings instead of just integers for the 'filesize' property. No difference in performance noticeable wit

[Sugar-devel] Journal choking on invalid / missing metadata (was: Re: 11.3.0 release candidate 4 (build 883) released)

2011-11-01 Thread Sascha Silbe
Excerpts from Gonzalo Odiard's message of 2011-11-01 13:09:55 +0100: [Trimmed the CC list to spare others from the gory details] > Reproduced here, datastore.log does not show anything, but shell.log show: [...] Thanks! Can you file a ticket at bugs.sl.o (if you use the link from my previous em

Re: [Sugar-devel] 11.3.0 release candidate 4 (build 883) released

2011-11-01 Thread Sascha Silbe
Excerpts from Gary Martin's message of 2011-10-31 19:41:21 +0100: > - On reboot the Journal now shows 3 corrupt entries (see attached screen > shot) with no name and unknown metadata. None of the three entries allow > invoking the details view or raise their palette so can not be erased via the

[Sugar-devel] [PATCH sugar-toolkit PoC] tap&hold for Palettes

2011-10-29 Thread Sascha Silbe
uld do on WIMP interaces. This patch is a hack to add tap&hold support to Sugar palettes for evaluation purposes. The real thing (TM) should hook into GTK instead in order to make it work beyond just Sugar palettes. Signed-off-by: Sascha Silbe --- src/sugar/graphics/palet

Re: [Sugar-devel] sugar-toolkit-gtk3 plans

2011-10-29 Thread Sascha Silbe
Excerpts from Daniel Drake's message of 2011-10-29 12:12:54 +0200: > If we get things into good shape, we are planning to commit all this > to master tomorrow evening. We have already made lots of progress > including a somewhat functional theme and a major palette-related > headache solved. Code

Re: [Sugar-devel] Alt-Tab in Sugar

2011-10-25 Thread Sascha Silbe
Excerpts from Sebastian Silva's message of 2011-10-25 04:15:29 +0200: > But Sugar will instead continue along the X-order so to say of the Frame. > Could we change this default? > Also, is there a setting for this in metacity or does Sugar have its own > Alt-Tab > implementation? I should really

Re: [Sugar-devel] [PATCH] Simple NetworkManager-0.9 port

2011-10-24 Thread Sascha Silbe
Excerpts from Daniel Drake's message of 2011-09-15 21:36:58 +0200: > Adapt sugar to NetworkManager-0.9 API changes. [...] Thanks a lot for the patch! [extensions/cpsection/modemconfiguration/model.py] > +def get_settings(secrets_cb, secrets_err_cb): > +connection = get_connection() > +if

Re: [Sugar-devel] Memorize 0001-Reorganize-icons.patch

2011-10-24 Thread Sascha Silbe
Excerpts from Gonzalo Odiard's message of 2011-09-07 21:59:34 +0200: > One of the icons in this patch have a line longer than 998 characters, > but i don't know how to break it, because is a single path parameter. If you only moved the files rather than changing them, enable rename detection to on

Re: [Sugar-devel] [PATCH Record] Fix tooltips in radio buttons

2011-10-24 Thread Sascha Silbe
Excerpts from godiard's message of 2011-10-03 13:43:46 +0200: > From: Gonzalo Odiard > > Signed-off-by: Gonzalo Odiard Reviewed-By: Sascha Silbe Tested-By: Sascha Silbe Sascha -- http://sascha.silbe.org/ http://www.infra-silbe.de/ signature.asc Description:

Re: [Sugar-devel] [PATCH sugar-toolkit] Bundlebuilder: don't fail to package if git is not installed, OLPC #11341

2011-10-24 Thread Sascha Silbe
Excerpts from Simon Schampijer's message of 2011-10-21 12:27:02 +0200: > We need to make sure that we do not fail if git is not > installed and use the same fallback code as if we are > in a directory where no git information is present. How about: """ When git is installed, it will return non-z

Re: [Sugar-devel] [PATCH] Disable the search entry in the activities list view and in the Journal - SL #3205

2011-10-24 Thread Sascha Silbe
Excerpts from godiard's message of 2011-10-20 17:03:46 +0200: > If not disabled, a entry appear over the treeview at bottom, right > when the user type something and the widget have focus. > The ObjectChooser use the same object than the Journal. What happened to the idea of using set_search_entr

Re: [Sugar-devel] [PATCH sugar] Make sure we use the Sugar cursor in the intro screen, OLPC #10712

2011-10-24 Thread Sascha Silbe
Excerpts from Simon Schampijer's message of 2011-10-18 17:37:17 +0200: > As stated in the ticket Metacity sets the cursor after > it's startup, so we need to make sure Metacity is already > running before we set the cursor. This is what the current > code has been doing. We do show the intro screen

Re: [Sugar-devel] [PATCH v4 sugar] Journal: don't fail to load if an activity icon is broken (fixes SL#3200)

2011-10-24 Thread Sascha Silbe
Excerpts from Sascha Silbe's message of 2011-10-18 17:32:03 +0200: > If the activity-provided icon could not be loaded, the Journal previously > died on start-up, rendering Sugar effectively unusable. Now we fall back to > the standard icon (in the "What" filter combo box). > > SL#3203 has been fi

[Sugar-devel] [PATCH v4 sugar] Journal: don't fail to load if an activity icon is broken (fixes SL#3200)

2011-10-18 Thread Sascha Silbe
ned-off-by: Sascha Silbe --- v3->v4: Improved warning wording some more. v2->v3: Improve warning to mention that we fall back to a default icon. Created TODO ticket SL#3203, mention it in the description. v1->v2: Created ticket with test case, mention it in the summary. No

[Sugar-devel] [PATCH v3 sugar] Journal: don't fail to load if an activity icon is broken (fixes SL#3200)

2011-10-18 Thread Sascha Silbe
ned-off-by: Sascha Silbe --- v2->v3: Improve warning to mention that we fall back to a default icon. Created TODO ticket SL#3203, mention it in the description. v1->v2: Created ticket with test case, mention it in the summary. No code changes. src/jarabe/journal/journalt

[Sugar-devel] [PATCH v2 sugar] Journal: don't fail to load if an activity icon is broken (fixes SL#3200)

2011-10-17 Thread Sascha Silbe
If the activity-provided icon could not be loaded, the Journal previously died on start-up, rendering Sugar effectively unusable. Now we fall back to the standard icon (in the "What" filter combo box). Signed-off-by: Sascha Silbe --- v1->v2: created ticket with test case, ment

Re: [Sugar-devel] [ASLO] Release Telescope-11

2011-10-17 Thread Sascha Silbe
Excerpts from Anish Mangal's message of 2011-10-16 07:52:27 +0200: > Hmm, try pressing 'enter/return' after entering the name. then it > should name the journal entry correctly... > > If that is the case, please comment whether this usability should be > modified? As in, change the name even with

Re: [Sugar-devel] [PATCH sugar] Control Panel: making about my computer section hardware independent, OLPC #11232

2011-10-17 Thread Sascha Silbe
Excerpts from Simon Schampijer's message of 2011-10-17 11:07:13 +0200: > - powerpc is not a popular Sugar platform to make an enormous effort for > supporting it I wouldn't consider anything we discussed an "enormous effort". With that attitude PowerPC would never be a viable platform. Catch-22.

[Sugar-devel] [PATCH sugar] Journal: don't fail to load if an activity icon is broken

2011-10-16 Thread Sascha Silbe
If the activity-provided icon could not be loaded, the Journal previously died on start-up, rendering Sugar effectively unusable. Now we fall back to the standard icon (in the "What" filter combo box). Signed-off-by: Sascha Silbe --- src/jarabe/journal/journaltoolbox

Re: [Sugar-devel] Sugar on a Stick v5 Coconut release

2011-10-11 Thread Sascha Silbe
Excerpts from Peter Robinson's message of 2011-10-09 22:42:49 +0200: > Its patched and working in F-16 with build sugar-surf-115-2.fc16 Care to send the patch upstream? If Lucian (CC'ed) doesn't mind, I can push the patch to the Surf repo. Sascha -- http://sascha.silbe.org/ http://www.infra-si

Re: [Sugar-devel] [PATCH] Add support for Ubuntu 11.4

2011-10-11 Thread Sascha Silbe
Excerpts from Bernie Innocenti's message of 2011-07-05 20:51:20 +0200: > Signed-off-by: Bernie Innocenti Thanks for the patch! Pushed as da446e4 [1]. Hint: If you use --find-copies-harder (with send-email, format-patch or log), the patch gets much more readable and easier to review. Sascha [1

Re: [Sugar-devel] [PATCH 1/2] Don't try to build telepathy on Fedora 14

2011-10-11 Thread Sascha Silbe
Excerpts from Bernie Innocenti's message of 2011-07-05 20:56:55 +0200: > --- > config/sysdeps/50fedora-rawhide.xml |1 + > config/sysdeps/fedora-family.xml|1 - > 2 files changed, 1 insertions(+), 1 deletions(-) Thanks for the patch! Pushed with some changes as 4d6d393 [1]. Sascha

Re: [Sugar-devel] [PATCH sugar] Control Panel: making about my computer section hardware independent, OLPC #11232

2011-10-09 Thread Sascha Silbe
Excerpts from Simon Schampijer's message of 2011-10-09 18:01:35 +0200: > The serial number is often only readable by root on non-XO > hardware, that is why we do not read it. If the serial number > can not be found on an XO we display the entry as 'Not available'. [...] > -def get_firmware_number

Re: [Sugar-devel] [PATCH sugar] Control Panel: making about my computer section hardware independent, OLPC #11232

2011-10-09 Thread Sascha Silbe
Excerpts from Simon Schampijer's message of 2011-10-09 12:54:40 +0200: > >> @@ -58,6 +58,8 @@ def get_serial_number(): > >> serial_no = _read_file(os.path.join(_OFW_TREE, _SN)) > >> elif os.path.exists(os.path.join(_PROC_TREE, _SN)): > >> serial_no = _read_file(os.path.jo

Re: [Sugar-devel] [PATCH v3] Remove hippo from the frame

2011-10-08 Thread Sascha Silbe
Excerpts from Daniel Drake's message of 2011-10-03 11:49:46 +0200: > Based on earlier work by Raul Gutierrez and Walter Bender. [...] Looks good, thanks! Acked-By: Sascha Silbe Sascha -- http://sascha.silbe.org/ http://www.infra-silbe.de/ signature.asc Description: PGP s

Re: [Sugar-devel] [PATCH sugar] Make sure the connection is established before we use it SL #3119

2011-10-08 Thread Sascha Silbe
Excerpts from Simon Schampijer's message of 2011-10-07 19:49:08 +0200: > The code is a bit racy. We need to make sure the connection is > already established to not get the traceback. Tested with > Salut and Gabble. When reading "git log", there's no Traceback, so it's not clear what the above re

Re: [Sugar-devel] [PATCH sugar] Make sure that we have a connection before we set our properties SL #3119

2011-10-08 Thread Sascha Silbe
s the original code). > Tested as working fine in gabble and salut. I can't claim I fully grok the code, but it's at least making _some_ sense and your patch makes it simpler, so: Acked-By: Sascha Silbe Let's just hope there wasn't a reason for it to be so com

Re: [Sugar-devel] [PATCH] Update alpha according to filter after events in neighborhoodview icons - SL #3091

2011-10-08 Thread Sascha Silbe
Excerpts from Daniel Drake's message of 2011-10-07 18:19:18 +0200: > The design is strange, but this is how the neighborhood view has > worked for as long as I have been involved with the project. Each icon > subscribes to all of its possible event sources (the search box, the > network device it

Re: [Sugar-devel] [PATCH] SpreadLayout: fix grid cell allocation

2011-10-08 Thread Sascha Silbe
Excerpts from Daniel Drake's message of 2011-10-05 23:05:16 +0200: > The calculation of how many grid cells to assign a child element > has a bug in that it rounds down instead of up. [...] Thanks for the patch (including the great description)! Acked-By: Sascha Silbe Sasch

Re: [Sugar-devel] [PATCH sugar] Control Panel: making about my computer section hardware independent, OLPC #11232

2011-10-08 Thread Sascha Silbe
Excerpts from Simon Schampijer's message of 2011-10-07 11:13:15 +0200: > '/ofw' is not used anymore on the XO, '/proc/device-tree' is used now > instead. Instead of just adjusting for that change we took the > chance to make the section hardware independent. As the firmware > version we display the

Re: [Sugar-devel] [PATCH 1/2] Fix presence detection of keyboard layouts/options

2011-10-08 Thread Sascha Silbe
is not None" check too. Thanks for the patch! Acked-By: Sascha Silbe Sascha -- http://sascha.silbe.org/ http://www.infra-silbe.de/ signature.asc Description: PGP signature ___ Sugar-devel mailing list Sugar-devel@lists.sugarlabs.org http://lists.sugarlabs.org/listinfo/sugar-devel

Re: [Sugar-devel] [PATCH 2/2] Only activate keyboard configuration if it was configured, OLPC #11175

2011-10-08 Thread Sascha Silbe
Excerpts from Daniel Drake's message of 2011-10-06 16:59:29 +0200: > Sugar is currently activing a new keyboard config even if the user ^ activating > did not change any settings. [...] Thanks for the patch! Acked-By: Sascha Silbe Sascha -- http://sasch

Re: [Sugar-devel] jhbuild improvement?

2011-10-01 Thread Sascha Silbe
Excerpts from Bernie Innocenti's message of 2011-10-01 00:04:29 +0200: > Look, there are other veteran programmers who seem to be frustrated by > our current build system: > > http://marcopg.org/2011/09/06/building-sugar-from-git-on-f15/ Unfortunately Marco didn't bother to file a ticket or ev

Re: [Sugar-devel] [PATCH sugar] Control Panel "About my Computer": show information on XO 1.75 OLPC #11232

2011-10-01 Thread Sascha Silbe
Excerpts from Paul Fox's message of 2011-09-29 14:38:35 +0200: > yes, it would be much better to centralize this -- we'll certainly be > going through this again in the future. please use olpc-hwinfo from > sugar, if possible. Since we're talking about a few lines of code only, I'd prefer the co

Re: [Sugar-devel] jhbuild improvement?

2011-10-01 Thread Sascha Silbe
Excerpts from Bernie Innocenti's message of 2011-09-29 04:35:55 +0200: > I was reading in the Gnome 3.2 release notes: [...] By using the very latest upstream JHbuild from git we not only get their latest breakages (that were introduced by exactly the new feature you mention), but also the benef

Re: [Sugar-devel] [PATCH] Playlist for Jukebox

2011-09-26 Thread Sascha Silbe
Excerpts from Manuel Quiñones's message of 2011-09-16 07:02:18 +0200: [ControlToolbar.py] > class Control(gobject.GObject): > """Class to create the Control (play) toolbar""" > diff --git a/jukeboxactivity.py b/jukeboxactivity.py > index 0ba3f4c..98acdd4 100644 > --- a/jukeboxactivity.py > +

Re: [Sugar-devel] [PATCH] Remove hippo from the frame

2011-09-26 Thread Sascha Silbe
Excerpts from Daniel Drake's message of 2011-09-18 14:47:09 +0200: > Based on earlier work by Raul Gutierrez and Walter Bender. [...] Thanks for the patch! [src/jarabe/frame/framewindow.py] [class FrameContainer] > +def do_realize(self): > +self.set_flags(gtk.REALIZED) > + > +

Re: [Sugar-devel] [PATCH] Wireless key dialog: Translate more strings (OLPC#9268)

2011-09-26 Thread Sascha Silbe
Excerpts from Daniel Drake's message of 2011-09-14 22:35:43 +0200: > On Wed, Sep 14, 2011 at 8:01 PM, Chris Leonard > wrote: > > tuples (and singleton tuples) are also discussed on the link above. > > Thanks, I don't think this is what Sascha was getting at though. As written: > If format requ

Re: [Sugar-devel] [PATCH sugar-toolkit] Don't put event box in toplevel window

2011-09-26 Thread Sascha Silbe
Excerpts from Daniel Drake's message of 2011-09-17 13:47:59 +0200: > Remove an unnecessary toplevel widget. [...] Thanks, keep those clean-up patches coming! ;) Acked-By: Sascha Silbe Sascha -- http://sascha.silbe.org/ http://www.infra-silbe.de/ signature.asc Description: PGP s

Re: [Sugar-devel] [PATCH] Remove hippo from the intro screens

2011-09-26 Thread Sascha Silbe
o what other events could we received? Reviewed-By: Sascha Silbe Sascha -- http://sascha.silbe.org/ http://www.infra-silbe.de/ signature.asc Description: PGP signature ___ Sugar-devel mailing list Sugar-devel@lists.sugarlabs.org http://lists.sugarlabs.org/listinfo/sugar-devel

Re: [Sugar-devel] [PATCH sugar-toolkit] bundlebuilder: refactor get_files_git to Packager to avoid code duplication

2011-09-26 Thread Sascha Silbe
Excerpts from Simon Schampijer's message of 2011-09-19 19:12:39 +0200: > Follow up patch for b582736375218e8944b3ce3daac667c7910a7e73 Thanks for the patch! Acked-By: Sascha Silbe Sascha -- http://sascha.silbe.org/ http://www.infra-silbe.de/ signature.asc Description: PGP s

Re: [Sugar-devel] [PATCH sugar-toolkit] Remove hippo from naming alert

2011-09-26 Thread Sascha Silbe
tried it out to verify the layout, but the code changes look sane to me. Reviewed-By: Sascha Silbe [src/sugar/activity/namingalert.py] [NamingAlert._create_text_view()] > +#scrolled_window.set_border_width(30) Leftover from testing? [NamingAlert.__keep_cb()] > +text_buffer =

[Sugar-devel] [PATCH sugar-toolkit v2] Add TODOs reminding us to escape labels by default

2011-09-26 Thread Sascha Silbe
Changing API now to escape labels by default would be more trouble than it's worth (all activities would need changing, distinguishing between pre and post API change sugar-toolkit versions). The upcoming GTK-3 port, however, is a nice opportunity for this kind of change. Signed-off-by: S

Re: [Sugar-devel] [PATCH sugar-toolkit] bundlebuilder: add back build_locale functionality to XOPackager SL #3116

2011-09-26 Thread Sascha Silbe
Excerpts from Simon Schampijer's message of 2011-09-22 16:18:59 +0200: > Due to the removal of the manifest support we lost as well > the part of the code that does build the locale. This patch > adds that functionality back. Thanks for the patch! Acked-By: Sascha Silbe Sa

Re: [Sugar-devel] [PATCH] Update alpha according to filter after events in neighborhoodview icons - SL #3091

2011-09-26 Thread Sascha Silbe
Excerpts from godiard's message of 2011-09-22 21:11:42 +0200: [src/jarabe/desktop/networkviews.py] > @@ -149,6 +149,7 @@ class WirelessNetworkView(CanvasPulsingIcon): > self._update_state() > self._update_icon() > self._update_badge() > +self._update_color() [...

Re: [Sugar-devel] [ASLO] Release XoScope-9

2011-09-22 Thread Sascha Silbe
Excerpts from Sugar Labs Activities's message of Wed Sep 21 17:22:59 +0200 2011: > Activity Homepage: > http://activities.sugarlabs.org/addon/4481 [...] It's worth mentioning that there's another project called xoscope that's quite useful on XOs. Most kids probably won't use it, but you should st

Re: [Sugar-devel] [PATCH sugar] FileTransfer: handle cancellation cleanly, OLPC #11065

2011-09-19 Thread Sascha Silbe
typo: accepted > transfer. The same behavior is true in Empathy. [...] Acked-By: Sascha Silbe Thanks for the patch! Sascha -- http://sascha.silbe.org/ http://www.infra-silbe.de/ signature.asc Description: PGP signature ___ Sugar-devel mailing l

[Sugar-devel] [PATCH sugar v2] Escape all text passed to Palette.primary_text and .secondary_text

2011-09-19 Thread Sascha Silbe
sugar.graphics.palette.Palette passes primary_text and secondary_text through to GTK without escaping it, so we need to make sure it doesn't contain anything special in user data (activity title, bundle_id, nick name, etc.) or translations. Signed-off-by: Sascha Silbe --- v1->v2: Re

[Sugar-devel] Patchwork (was: Re: Deprecating class and service_name in activity.info file)

2011-09-07 Thread Sascha Silbe
Excerpts from Simon Schampijer's message of Wed Sep 07 08:29:59 +0200 2011: > PS: Who is maintaining patchwork? What keywords does it look for to > close tickets? Is a cron-job handling that? Works rather badly for me. Nobody is actively maintaining Patchwork. Marco offered to do it [1,2], but d

[Sugar-devel] [PATCH sugar 1/2] Localise sugar-install-bundle

2011-09-05 Thread Sascha Silbe
it in XGETTEXT_OPTIONS. This works because the sugar package only contains Python files. Signed-off-by: Sascha Silbe --- bin/sugar-install-bundle | 19 +++ po/Makevars |6 +- po/POTFILES.in |1 + 3 files changed, 21 insertions(+), 5 deletions(-) diff --

[Sugar-devel] [PATCH sugar 2/2] sugar-install-bundle: skip older bundles by default, accept multiple bundles

2011-09-05 Thread Sascha Silbe
y to parse the CLI options also add back the support for installing multiple bundles in one invocation. Signed-off-by: Sascha Silbe --- bin/sugar-install-bundle | 34 +++--- 1 files changed, 23 insertions(+), 11 deletions(-) diff --git a/bin/sugar-install-bundle b

[Sugar-devel] [PATCH sugar] Only consider the exact same version of a bundle as installed (fixes SL#3081)

2011-09-04 Thread Sascha Silbe
e user for confirmation. Signed-off-by: Sascha Silbe --- src/jarabe/model/bundleregistry.py |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/jarabe/model/bundleregistry.py b/src/jarabe/model/bundleregistry.py index 63308bb..26e719f 100644 --- a/src/ja

Re: [Sugar-devel] SecretAgent.GetSecrets() return value

2011-09-04 Thread Sascha Silbe
[CC'ing sugar-devel since this message is about the Sugar side of things] Excerpts from Daniel Drake's message of Sun Sep 04 19:32:29 +0200 2011: > I'm working on finally porting Sugar to NetworkManager-0.9 Great, thanks! > and I have > a query regarding the SecretAgent implementation. > The do

Re: [Sugar-devel] [Dextrose] About Activity Central and Dextrose (was: [ANNOUNCE] New Dextrose-3 development build: Alpha-1 (dx3ng36))

2011-09-02 Thread Sascha Silbe
Excerpts from Gonzalo Odiard's message of Thu Sep 01 21:24:31 +0200 2011: > There are a public list of patches? Not just a list, the patches themselves are public [1]. Sascha [1] https://people.sugarlabs.org/~silbe/dextrose/patchsets/ -- http://sascha.silbe.org/ http://www.infra-silbe.de/ si

Re: [Sugar-devel] [PATCH] Change string "Remove" in device palette by "Remove device"

2011-08-30 Thread Sascha Silbe
Excerpts from Gonzalo Odiard's message of Mon Aug 29 20:21:32 +0200 2011: > Now I have a better question, why that patch was not applied?! Because Simon did not Ack' it yet. Sascha -- http://sascha.silbe.org/ http://www.infra-silbe.de/ signature.asc Description: PGP signature ___

Re: [Sugar-devel] [DESIGN] Export buttons in Write

2011-08-29 Thread Sascha Silbe
Excerpts from Gonzalo Odiard's message of Fri Aug 26 20:45:47 +0200 2011: > I have stolen a few icons from TurtleArt, and replaced the export combo in > Write by buttons. > Tell me what you think. > If you have better ideas for the icons, are welcomed. Once you settled on a common set of buttons,

Re: [Sugar-devel] [PATCH] Change string "Remove" in device palette by "Remove device"

2011-08-29 Thread Sascha Silbe
Excerpts from godiard's message of Wed Aug 24 16:12:21 +0200 2011: > This more specific string, help solve translationes where "Remove" does not > have the same meaning. In Spanish, for example the translation "Eliminar" > means "Destroy" and must be used "Quitar" meaning take out. Why do you rep

Re: [Sugar-devel] [RELEASE] sugar-0.93.3

2011-08-25 Thread Sascha Silbe
Excerpts from Simon Schampijer's message of Thu Aug 25 19:08:10 +0200 2011: > * Revert commit ada284445e9a3ce96a0c9df4c299021254b0668d: This commit breaks > OLPC builds, OLPC #11178 (Simon Schampijer) I don't see the reversal patch on Patchwork. Where was it posted? Who reviewed it? Why was the

Re: [Sugar-devel] [IAEP] Fwd: SugarCamp in Paris -- save the date: September 9th-10th-11th, 2011

2011-08-24 Thread Sascha Silbe
Excerpts from Stefanie Nobel's message of Tue Aug 23 14:37:48 +0200 2011: > have you already found an accommodation? Here is a list with some holiday > flats: > > http://paris.fr.craigslist.fr/vac/ Thanks! It's too late this time since most people already booked their accomodation and the idea w

Re: [Sugar-devel] [IAEP] Fwd: SugarCamp in Paris -- save the date: September 9th-10th-11th, 2011

2011-08-22 Thread Sascha Silbe
Excerpts from Bastien's message of Sat Aug 20 01:27:46 +0200 2011: > I'm quite excited by the list of participants for this second SugarCamp > in Paris (sept. 10th and 11th): [...] > OLPC France will hold a "SugarCamp organization" meeting next tuesday so > that we can discuss and solve the practic

Re: [Sugar-devel] [PATCH] Add-clone-to-view-source-submenu

2011-08-22 Thread Sascha Silbe
Excerpts from Walter Bender's message of Fri Aug 19 00:11:53 +0200 2011: [src/jarabe/view/customizebundle.py] [...] > +import logging > +_logger = logging.getLogger('ViewSource') Please add two empty lines between the imports and the global variable to make this easier to read (might also be in P

Re: [Sugar-devel] [PATCH] adding icon for accessing user documents in Journal volumes toolbar

2011-08-15 Thread Sascha Silbe
Excerpts from Walter Bender's message of Mon Aug 15 16:43:18 +0200 2011: > From: Walter Bender > > This patch adds an icon to sugar-artwork devices to represent the user's > $HOME/Documents directory. This icon is used when mounting $HOME/Documents to > the volumestoolbar in the Sugar Journal. >

Re: [Sugar-devel] [PATCH sugar v2] Prevent view source display of some binary and "junk" files (SL#2854)

2011-08-15 Thread Sascha Silbe
Excerpts from Simon Schampijer's message of Mon Aug 01 21:59:35 +0200 2011: > On 08/01/2011 08:34 PM, Sascha Silbe wrote: > > From: Walter Bender > > > > This patch addresses the issue raised in SL#2854: the exclusion of some file > > types from being displayed by

Re: [Sugar-devel] [PATCH sugar] Wireless network Frame device: Add text for disconnected state

2011-08-15 Thread Sascha Silbe
Excerpts from Simon Schampijer's message of Mon Aug 15 19:05:41 +0200 2011: > On 06/30/2011 10:41 PM, Sascha Silbe wrote: > > Showing just an empty palette whenever we are disconnected (e.g. because no > > favourite AP is in range) is rather confusing for users. > > >

Re: [Sugar-devel] [DESIGN] Browse: move stop/reload button into the url entry

2011-08-14 Thread Sascha Silbe
Excerpts from Simon Schampijer's message of Sat Aug 13 17:02:42 +0200 2011: > Attached is a screenshot of that. The button does have the same change > behavior as before (changes to stop when loading the page, changes to > reload when done, when clicking on the reload button - reload the page).

Re: [Sugar-devel] Moving to GTK3 and GObject Introspection

2011-08-08 Thread Sascha Silbe
Excerpts from Samuel Greenfeld's message of Sun Aug 07 02:41:36 +0200 2011: > The change I would like to see in the API (if we do not have it already) is > to ensure that we have full ATK accessibility support for all Sugar > controls. Not only would this allow screen readers, etc. to parse Sugar

Re: [Sugar-devel] Moving to GTK3 and GObject Introspection

2011-08-08 Thread Sascha Silbe
Excerpts from Daniel Drake's message of Fri Aug 05 15:04:49 +0200 2011: > No comments yet. The plan looks good in general, thanks for taking the time to draft and elaborate! It might be worth pointing out that the list in "Proposed plan of action" contains quite a few actions that can happen in

Re: [Sugar-devel] [PATCH sugar] Add duplicate functionality to the Journal and enhance copy functionality

2011-08-08 Thread Sascha Silbe
Excerpts from Simon Schampijer's message of Fri Jul 29 18:35:41 +0200 2011: > This patch adds a duplicate option to the Journal entry palette and > the entry detail view. You're doing two changes in functionally independent parts of the code and the changes are not interdependent. It would make se

Re: [Sugar-devel] NetworkManager 0.9

2011-08-08 Thread Sascha Silbe
Excerpts from Daniel Drake's message of Mon Aug 08 16:04:08 +0200 2011: [...] > I made quite a lot of progress over the weekend in getting NM-0.9 > supported. For reference: Daniel and I continued the discussion on #sugar. His plan is to do only the minimal changes required for NM 0.9 support. Si

[Sugar-devel] NetworkManager 0.9 (was: Re: Sugar 0.94 - Schedule proposal)

2011-08-08 Thread Sascha Silbe
Excerpts from Daniel Drake's message of Sat Aug 06 13:08:48 +0200 2011: > The move represents a shift in design. Previously, Sugar had to > implement a dbus service which managed network connections. Now > NetworkManager does that for us. NetworkManager 0.8 and below already supported system conn

[Sugar-devel] [ANNOUNCE] bugs.sl.o: List of component descriptions

2011-08-03 Thread Sascha Silbe
Hi! I've just created a report on bugs.sugarlabs.org [1] that lists the descriptions of all components [2] with links to show all open tickets of the individual components resp. file new tickets. The report is listed from the front page for easy access. With the ever-increasing number of componen

Re: [Sugar-devel] Trac convention for OLPC bugs in the bugs.sugarlabs.org

2011-08-01 Thread Sascha Silbe
Excerpts from Simon Schampijer's message of Wed Jul 27 17:31:08 +0200 2011: > Based on the discussions about 'how OLPC would like to use the Sugar > Labs bugtracker" back in May [1] we would like to follow the following > model for our next release cycle: [...] Sounds good to me. It increases v

Re: [Sugar-devel] [PATCH sugar-artwork] clean: Don't fail when sugar.stamp is missing

2011-08-01 Thread Sascha Silbe
Excerpts from Sascha Silbe's message of Tue Jul 26 19:58:22 +0200 2011: > From: Luke Faraone > > If make clean is run several times, right after a fresh checkout or after > an incomplete build, sugar.stamp might not exist. This isn't an error, so we > should just continue anyway. Pushed as 2d80d

[Sugar-devel] [PATCH sugar v2] Prevent view source display of some binary and "junk" files (SL#2854)

2011-08-01 Thread Sascha Silbe
Sascha. In a future patch, it may make sense to append the data from the .gitignore and git exclude files. [added exclude list for (exact-match) file names, tweaked description] Signed-off-by: Sascha Silbe --- v1->v2: split excludes into patterns and exact matches, tweaked pa

Re: [Sugar-devel] [PATCH] Network device icon: use "Disconnect" label (SL#3007)

2011-08-01 Thread Sascha Silbe
Excerpts from Daniel Drake's message of Mon Aug 01 17:55:51 +0200 2011: > The current label "Disconnect..." has an ellipsis for no apparent > reason. The equivalent menu on the neighborhood view has "Disconnect". > Remove the ellipsis to make these consistent. Thanks, pushed as 7d9e859 [1] to mas

Re: [Sugar-devel] [PATCH] Wireless key dialog: Translate more strings (OLPC#9268)

2011-08-01 Thread Sascha Silbe
Excerpts from Daniel Drake's message of Mon Aug 01 18:08:15 +0200 2011: > Various user-visible strings here were not being translated. > Use _() to mark them as translatable. Looks good in general, thanks! > @@ -90,8 +90,9 @@ class KeyDialog(gtk.Dialog): > > self.set_has_separator(Fals

Re: [Sugar-devel] [PATCH] prevent view source display of .pyo, .pyc, .so files (#2854)

2011-08-01 Thread Sascha Silbe
Excerpts from Simon Schampijer's message of Mon Aug 01 15:27:56 +0200 2011: > > .deps and .libs are the exact names of directories. So how about > > renaming _EXCLUDE above to _EXCLUDE_EXTENSIONS and adding _EXCLUDE_NAMES > > = ['.deps', '.libs'] ? > > Where does those directories do get created?

Re: [Sugar-devel] [PATCH sugar 2/2] Escape all text passed to MenuItem.text_label

2011-07-31 Thread Sascha Silbe
Excerpts from Sascha Silbe's message of Sun Jun 26 20:06:08 +0200 2011: > sugar.graphics.menuitem.MenuItem passes text_label through to GTK without > escaping it, so we need to make sure it doesn't contain anything special in > user data or translations. This one is bogus: Unlike Palette, MenuIte

Re: [Sugar-devel] [PATCH sugar v2 2/2] Allow "Remove" in Clipboard resp. Volumes palette to be translated differently

2011-07-30 Thread Sascha Silbe
Excerpts from Sascha Silbe's message of Sat Feb 12 13:27:41 +0100 2011: > Some languages (e.g. Spanish) benefit from having the translation for the > "Remove" item in the Volumes palette different from the translation for the > "Remove" item in the Clipboard palette. > > This builds on the pgettex

Re: [Sugar-devel] [PATCH v2 sugar] sugar-session: Check for already-running window manager on start-up

2011-07-30 Thread Sascha Silbe
Excerpts from Simon Schampijer's message of Wed Jul 27 12:19:46 +0200 2011: > On 07/24/2011 12:14 AM, Sascha Silbe wrote: > > This not only fixes a race condition (metacity is started before > > sugar-session > > in sugar), but also allows running Sugar inside

[Sugar-devel] [PATCH sugar-artwork] clean: Don't fail when sugar.stamp is missing

2011-07-26 Thread Sascha Silbe
ff-by: Sascha Silbe Acked-by: Sascha Silbe --- cursor/sugar/Makefile.am |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/cursor/sugar/Makefile.am b/cursor/sugar/Makefile.am index 93bd6a6..4b6084a 100644 --- a/cursor/sugar/Makefile.am +++ b/cursor/sugar/Makefile.am @@

[Sugar-devel] [PATCH sugar] Bump version to 0.93.0

2011-07-26 Thread Sascha Silbe
This makes it easier to recognise an installation running latest git master vs. running 0.92.0. Signed-off-by: Sascha Silbe --- configure.ac |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index 894a613..a7ea25c 100644 --- a/configure.ac

[Sugar-devel] [PATCH sugar-toolkit] Bump version to 0.93.0

2011-07-26 Thread Sascha Silbe
This makes it easier to recognise an installation running latest git master vs. running 0.92.0. Signed-off-by: Sascha Silbe --- configure.ac |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index f31290f..7d75969 100644 --- a/configure.ac

[Sugar-devel] [PATCH sugar-base] Add support for IPython 0.11+

2011-07-24 Thread Sascha Silbe
From: Julian Taylor IPython 0.11 has changed API: AutoFormattedTB is now in IPython.core.ultratb, not in IPython.ultraTB. We automatically fall back to the pre-0.11 names if the 0.11 import statement fails. [added comments, changed description] Signed-off-by: Sascha Silbe Reviewed-by: Sascha

Re: [Sugar-devel] [PATCH v2 sugar-toolkit] Remove incomplete MANIFEST support

2011-07-24 Thread Sascha Silbe
Excerpts from Daniel Drake's message of Sun Jul 24 18:18:23 +0200 2011: > On 18 July 2011 22:32, Sascha Silbe wrote: > > From: Bernie Innocenti > > > > This incomplete feature contributes to confuse new activity authors and > > slightly complicates our bundle ins

[Sugar-devel] [PATCH v2 sugar-toolkit] Remove incomplete MANIFEST support

2011-07-24 Thread Sascha Silbe
Tested-by: Bernie Innocenti Tested-by: James Cameron Tested-by: Sascha Silbe Reviewed-by: Sascha Silbe [rebased on git master, minor style fix] Signed-off-by: Sascha Silbe --- v1->v2: style fix (" -> '), cosmetic fix for the warning src/sugar/activity/bundleb

<    1   2   3   4   5   6   7   8   9   10   >