[Sugar-devel] [PATCH shell] Remove unneeded color theming from entries in Control Panel and lists in Journal and Home

2012-10-24 Thread Manuel Quiñones
This is already handled by the theme and removing doesn't affect the
widgets appearence.

Signed-off-by: Manuel Quiñones 
---
 extensions/cpsection/aboutme/view.py  | 4 
 extensions/cpsection/datetime/view.py | 4 
 extensions/cpsection/network/view.py  | 4 
 src/jarabe/desktop/activitieslist.py  | 2 --
 src/jarabe/journal/listview.py| 2 --
 5 files changed, 16 deletions(-)

diff --git a/extensions/cpsection/aboutme/view.py 
b/extensions/cpsection/aboutme/view.py
index 3cbd93e..2d4b1e8 100644
--- a/extensions/cpsection/aboutme/view.py
+++ b/extensions/cpsection/aboutme/view.py
@@ -185,10 +185,6 @@ class AboutMe(SectionView):
 
 def _setup_nick(self):
 self._nick_entry = Gtk.Entry()
-self._nick_entry.modify_bg(Gtk.StateType.INSENSITIVE,
-   style.COLOR_WHITE.get_gdk_color())
-self._nick_entry.modify_base(Gtk.StateType.INSENSITIVE,
- style.COLOR_WHITE.get_gdk_color())
 self._nick_entry.set_width_chars(25)
 self._nick_box.pack_start(self._nick_entry, False, True, 0)
 self._nick_entry.show()
diff --git a/extensions/cpsection/datetime/view.py 
b/extensions/cpsection/datetime/view.py
index 64789b4..e768e03 100644
--- a/extensions/cpsection/datetime/view.py
+++ b/extensions/cpsection/datetime/view.py
@@ -43,10 +43,6 @@ class TimeZone(SectionView):
 self._entry.set_icon_from_name(iconentry.ICON_ENTRY_PRIMARY,
  'system-search')
 self._entry.add_clear_button()
-self._entry.modify_bg(Gtk.StateType.INSENSITIVE,
-style.COLOR_WHITE.get_gdk_color())
-self._entry.modify_base(Gtk.StateType.INSENSITIVE,
-  style.COLOR_WHITE.get_gdk_color())
 self.pack_start(self._entry, False, False, 0)
 self._entry.show()
 
diff --git a/extensions/cpsection/network/view.py 
b/extensions/cpsection/network/view.py
index 9b89375..b360759 100644
--- a/extensions/cpsection/network/view.py
+++ b/extensions/cpsection/network/view.py
@@ -153,10 +153,6 @@ class Network(SectionView):
 label_server.show()
 self._entry = Gtk.Entry()
 self._entry.set_alignment(0)
-self._entry.modify_bg(Gtk.StateType.INSENSITIVE,
-style.COLOR_WHITE.get_gdk_color())
-self._entry.modify_base(Gtk.StateType.INSENSITIVE,
-  style.COLOR_WHITE.get_gdk_color())
 self._entry.set_size_request(int(Gdk.Screen.width() / 3), -1)
 box_server.pack_start(self._entry, False, True, 0)
 self._entry.show()
diff --git a/src/jarabe/desktop/activitieslist.py 
b/src/jarabe/desktop/activitieslist.py
index 4d2eb1a..7b99015 100644
--- a/src/jarabe/desktop/activitieslist.py
+++ b/src/jarabe/desktop/activitieslist.py
@@ -52,8 +52,6 @@ class ActivitiesTreeView(Gtk.TreeView):
 
 self._query = ''
 
-self.modify_base(Gtk.StateType.NORMAL,
- style.COLOR_WHITE.get_gdk_color())
 self.set_headers_visible(False)
 selection = self.get_selection()
 selection.set_mode(Gtk.SelectionMode.NONE)
diff --git a/src/jarabe/journal/listview.py b/src/jarabe/journal/listview.py
index 5b2c5ab..6d9cc57 100644
--- a/src/jarabe/journal/listview.py
+++ b/src/jarabe/journal/listview.py
@@ -90,8 +90,6 @@ class BaseListView(Gtk.Bin):
 selection = self.tree_view.get_selection()
 selection.set_mode(Gtk.SelectionMode.NONE)
 self.tree_view.props.fixed_height_mode = True
-self.tree_view.modify_base(Gtk.StateType.NORMAL,
-   style.COLOR_WHITE.get_gdk_color())
 self._scrolled_window.add(self.tree_view)
 self.tree_view.show()
 
-- 
1.7.11.4

___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


[Sugar-devel] [ASLO] Release Portfolio-27

2012-10-24 Thread Sugar Labs Activities
Activity Homepage:
http://activities.sugarlabs.org/addon/4437

Sugar Platform:
0.82 - 0.98

Download Now:
http://activities.sugarlabs.org/downloads/file/28301/portfolio-27.xo

Release notes:
27

ENHANCEMENTS:
* Added sharing (joiners can annotate sharer's portfolio)
* New translations
* Cleaned up thumbnail graphics
* Added support for sharing comments
* Moved audio note recording/playback buttons to slides area
* Moved next/prev slide buttons to slides area
* Moved save to PDF button to main toolbar
* Support for touch

BUG FIX:
* Check mime type for images
* Handle screen rotation



Sugar Labs Activities
http://activities.sugarlabs.org

___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


[Sugar-devel] espeak in gst 0.10 on 13.1.0

2012-10-24 Thread Manuel Kaufmann
Hello,

I took a look at this issue[1] and I found that it's not possible to
get the "espeak" gstreamer element on 13.1.0 os7 using gst 0.10 but
it's available using Gst 1.0 (from gi.repository import Gst). However,
there is no package called something like "gstreamer1-plugins-espeak"
installed but there is one called gstreamer-plugins-espeak[2]

So, I'm a little confused:

 * Is "espeak" available on 13.1.0 for gst 0.10?

 * Is "gstreamer-plugins-espeak" for gst 0.10 and the version for Gst
1.0 is inside on one of these? (already installed in the build os7):
 * gstreamer1-1.0.1-1.fc18.i686
 * gstreamer1-plugins-base-1.0.1-1.fc18.i686
 * gstreamer1-plugins-good-1.0.1-1.fc18.i686

Anyway, I think this activity should work without "espeak" gstreamer
element because it has a workaround to use the "/usr/bin/espeak"
command, save the text into a wav file and finally play it. But for
some reason (that I couldn't find yet) the same version (Speak v42)
works properly on 12.1.0 but it doesn't work on 13.1.0.

[1] http://bugs.sugarlabs.org/ticket/3901
[2] http://build.laptop.org/13.1.0/os7/xo-1.5/31007o1.packages.txt

-- 
Kaufmann Manuel
Blog: http://humitos.wordpress.com/
Porfolio: http://fotos.mkaufmann.com.ar/
PyAr: http://www.python.com.ar/
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] espeak in gst 0.10 on 13.1.0

2012-10-24 Thread Peter Robinson
On Wed, Oct 24, 2012 at 7:21 PM, Manuel Kaufmann  wrote:
> Hello,
>
> I took a look at this issue[1] and I found that it's not possible to
> get the "espeak" gstreamer element on 13.1.0 os7 using gst 0.10 but
> it's available using Gst 1.0 (from gi.repository import Gst). However,
> there is no package called something like "gstreamer1-plugins-espeak"
> installed but there is one called gstreamer-plugins-espeak[2]
>
> So, I'm a little confused:
>
>  * Is "espeak" available on 13.1.0 for gst 0.10?
>
>  * Is "gstreamer-plugins-espeak" for gst 0.10 and the version for Gst
> 1.0 is inside on one of these? (already installed in the build os7):
>  * gstreamer1-1.0.1-1.fc18.i686
>  * gstreamer1-plugins-base-1.0.1-1.fc18.i686
>  * gstreamer1-plugins-good-1.0.1-1.fc18.i686
>
> Anyway, I think this activity should work without "espeak" gstreamer
> element because it has a workaround to use the "/usr/bin/espeak"
> command, save the text into a wav file and finally play it. But for
> some reason (that I couldn't find yet) the same version (Speak v42)
> works properly on 12.1.0 but it doesn't work on 13.1.0.

the version in 13.1.0 is for gst1 and built against it.

Peter
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] [ASLO] Release Portfolio-27

2012-10-24 Thread Kalpa Welivitigoda
On Wed, Oct 24, 2012 at 11:50 PM, Sugar Labs Activities
 wrote:
> Activity Homepage:
> http://activities.sugarlabs.org/addon/4437
>
> Sugar Platform:
> 0.82 - 0.98
>
> Download Now:
> http://activities.sugarlabs.org/downloads/file/28301/portfolio-27.xo
>
> Release notes:
> 27
>
> ENHANCEMENTS:
> * Added sharing (joiners can annotate sharer's portfolio)
> * New translations
> * Cleaned up thumbnail graphics
> * Added support for sharing comments
> * Moved audio note recording/playback buttons to slides area
> * Moved next/prev slide buttons to slides area
> * Moved save to PDF button to main toolbar
> * Support for touch
>
> BUG FIX:
> * Check mime type for images
> * Handle screen rotation
>
>

can we have a tar.bz2?

>
> Sugar Labs Activities
> http://activities.sugarlabs.org
>
> ___
> Sugar-devel mailing list
> Sugar-devel@lists.sugarlabs.org
> http://lists.sugarlabs.org/listinfo/sugar-devel



-- 
Best Regards,

Kalpa Pathum Welivitigoda
http://about.me/callkalpa
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] espeak in gst 0.10 on 13.1.0

2012-10-24 Thread Manuel Kaufmann
On Wed, Oct 24, 2012 at 3:28 PM, Peter Robinson  wrote:
> the version in 13.1.0 is for gst1 and built against it.

so, there is no way to have both of them, right? I mean, espeak for
0.10 and for 1.0.

-- 
Kaufmann Manuel
Blog: http://humitos.wordpress.com/
Porfolio: http://fotos.mkaufmann.com.ar/
PyAr: http://www.python.com.ar/
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] espeak in gst 0.10 on 13.1.0

2012-10-24 Thread Peter Robinson
On Wed, Oct 24, 2012 at 7:36 PM, Manuel Kaufmann  wrote:
> On Wed, Oct 24, 2012 at 3:28 PM, Peter Robinson  wrote:
>> the version in 13.1.0 is for gst1 and built against it.
>
> so, there is no way to have both of them, right? I mean, espeak for
> 0.10 and for 1.0.

Possibly, it was my understanding that we were moving to gst1 for the
activities that use it.

Peter
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] espeak in gst 0.10 on 13.1.0

2012-10-24 Thread Manuel Kaufmann
On Wed, Oct 24, 2012 at 3:46 PM, Peter Robinson  wrote:
> Possibly, it was my understanding that we were moving to gst1 for the
> activities that use it.

Yes, we are moving on that way. Actually, Speak is already ported to
Gtk3 and Gst 1.0 but it doesn't work on 13.1.0 (same issue: CPU 100%).
So, I'm starting to think that the problem has nothing to do with
gstreamer.

I asked that because I wanted to test Speak v42 in 13.1.0 with the
correct gst 0.10 plugin.

Thanks, I'll keep researching about this.

-- 
Kaufmann Manuel
Blog: http://humitos.wordpress.com/
Porfolio: http://fotos.mkaufmann.com.ar/
PyAr: http://www.python.com.ar/
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] espeak in gst 0.10 on 13.1.0

2012-10-24 Thread Peter Robinson
On Wed, Oct 24, 2012 at 7:58 PM, Manuel Kaufmann  wrote:
> On Wed, Oct 24, 2012 at 3:46 PM, Peter Robinson  wrote:
>> Possibly, it was my understanding that we were moving to gst1 for the
>> activities that use it.
>
> Yes, we are moving on that way. Actually, Speak is already ported to
> Gtk3 and Gst 1.0 but it doesn't work on 13.1.0 (same issue: CPU 100%).
> So, I'm starting to think that the problem has nothing to do with
> gstreamer.
>
> I asked that because I wanted to test Speak v42 in 13.1.0 with the
> correct gst 0.10 plugin.

use rpm to remove the currently installed one and then grab the old
one from koji and install it manually.

Peter
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] espeak in gst 0.10 on 13.1.0

2012-10-24 Thread Manuel Kaufmann
On Wed, Oct 24, 2012 at 4:01 PM, Peter Robinson  wrote:
> use rpm to remove the currently installed one and then grab the old
> one from koji and install it manually.

Great! Thanks

I used (on XO-1.5 13.1.0 os7):

sudo rpm -e --nodeps gstreamer-plugins-espeak
wget 
http://kojipkgs.fedoraproject.org//packages/gstreamer-plugins-espeak/0.3.5/3.fc18/i686/gstreamer-plugins-espeak-0.3.5-3.fc18.i686.rpm
sudo rpm -i gstreamer-plugins-espeak-0.3.5-3.fc18.i686.rpm

After doing that I'm able to create "espeak" plugin for gst 0.10

>>> import gst
>>> gst.element_factory_make('espeak', 'espeak')
<__main__.GstEspeak object ... >

I tested Speak-42 and I have the same problem with the CPU
consumption. So, I will change my way of the researching because it
seems that it has nothing to do with gstreamer versions.

-- 
Kaufmann Manuel
Blog: http://humitos.wordpress.com/
Porfolio: http://fotos.mkaufmann.com.ar/
PyAr: http://www.python.com.ar/
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


[Sugar-devel] [ASLO] Release Write-82

2012-10-24 Thread Sugar Labs Activities
Activity Homepage:
http://activities.sugarlabs.org/addon/4201

Sugar Platform:
0.98 - 0.98

Download Now:
http://activities.sugarlabs.org/downloads/file/28302/write-82.xo

Release notes:
This version need a abiword rpm with the fix to 
https://dev.laptop.org/ticket/12226

Show the accelerator in toggle buttons - SL #789
Fix table creation - SL #3870
Fix saving of 'fulltext' metadata - SL #4091
Finish port of tts functionality to gtk3 and gst 1.0 - SL #4057



Sugar Labs Activities
http://activities.sugarlabs.org

___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


[Sugar-devel] [PATCH artwork] Style paned-separators width SL#4058

2012-10-24 Thread Daniel Francis
The width of the GtkPaned separator is changed to be more confortable in
touch screens. The default colour is as confusing as the old tabs, so it's
changed to @toolbar_grey. Now the dotted line of the separator can be "seen"
with attention.

Signed-off-by: Daniel Francis 
---
 gtk3/theme/gtk-widgets.css.em |7 +++
 1 file changed, 7 insertions(+)

diff --git a/gtk3/theme/gtk-widgets.css.em b/gtk3/theme/gtk-widgets.css.em
index dc7b964..34be86e 100644
--- a/gtk3/theme/gtk-widgets.css.em
+++ b/gtk3/theme/gtk-widgets.css.em
@@ -117,6 +117,7 @@ icon_large = icon_base * 5
 
 -GtkWidget-text-handle-width: 55px;
 -GtkWidget-text-handle-height: 55px;
+-GtkPaned-handle-size: 30;
 }
 
 /* Backgrounds and windows */
@@ -784,3 +785,9 @@ EvView:selected,
 ApDocView:selected {
 background-color: @selection_grey;
 }
+
+/* GtkPaned */
+
+.pane-separator {
+background-color: @toolbar_grey;
+}
-- 
1.7.10.4

___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] espeak in gst 0.10 on 13.1.0

2012-10-24 Thread Chris Leonard
On Wed, Oct 24, 2012 at 2:46 PM, Peter Robinson  wrote:

>
> Possibly, it was my understanding that we were moving to gst1 for the
> activities that use it.

While Speak, Clock, Memorize and possibly slider puzzle and jigsaw
puzzle) most directly call e-speak, technically any activity can use
it via the text2speech (TTS) anywhere capability now in Sugar.

cjl
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


[Sugar-devel] [SWEETS] Ubuntu 12.10 (quantal) packages

2012-10-24 Thread Aleksey Lim
Hi all!

After releasing Ubuntu 12.10 (Quantal Quetzal), new packages were added
to Factory and 0.94 Sweets repositories. Besides, since Ubuntu 11.04
(Natty Narwhal) is running out, it is becoming obsolete in Sweets as
well. Obsolete Ubuntu 10.10 and 11.04 packages were removed from Factory
repository, it doesn't make much sense to keep outdated packages in
development repository that is being updated on regular basis.

Update supported systems map:

http://wiki.sugarlabs.org/go/Sweets_Distribution/Supported_platforms#Map

There is a minor (but might be annoying) not fixed issue in Ubuntu 12.10
packages. There is a glitch while switching between screens in Sugar
Shell, e.g., from Home view to Journal.

-- 
Aleksey
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


[Sugar-devel] WebKitGTK+ L10n now possible

2012-10-24 Thread Chris Leonard
Dear Localizers,

There has been a longstanding (2 yrs) bug in the generation of
refreshed POT files for WebKitGTK+ that we have finally gotten fixed
(at least temporarily hacked).

WebKitGTK+ is the web-technology engine on which both GNOME Epiphany
and Sugar Browse are built, this means, for instance, that web-errors
may display WebKitGTK+ strings.  Getting the WebKitGTK+ L10n completed
upstream is a high priority for providing a fully localized
web-browsing experience.

Please consider taking a look at your language at the link below and
submitting a completed PO file upstream.

http://l10n.gnome.org/module/webkit/

If there has been no work on your language's WebKitGTK+ project
upstream and you would like me to post a local (temporary) copy of the
PO on our Pootle instance for your convenience, just let me know.  If
you have any problems submitting your completed PO file, just send it
to me and I will work on getting it upstreamed.

Thank you for your attention to this important matter.

Warmest Regards,

cjl
Sugar Labs Translation Team Coordinator
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] [PATCH artwork] Style paned-separators width SL#4058

2012-10-24 Thread Manuel Quiñones
Answered the ticket.  Thanks for your continuous contributions!

2012/10/24 Daniel Francis :
> The width of the GtkPaned separator is changed to be more confortable in
> touch screens. The default colour is as confusing as the old tabs, so it's
> changed to @toolbar_grey. Now the dotted line of the separator can be "seen"
> with attention.
>
> Signed-off-by: Daniel Francis 
> ---
>  gtk3/theme/gtk-widgets.css.em |7 +++
>  1 file changed, 7 insertions(+)
>
> diff --git a/gtk3/theme/gtk-widgets.css.em b/gtk3/theme/gtk-widgets.css.em
> index dc7b964..34be86e 100644
> --- a/gtk3/theme/gtk-widgets.css.em
> +++ b/gtk3/theme/gtk-widgets.css.em
> @@ -117,6 +117,7 @@ icon_large = icon_base * 5
>
>  -GtkWidget-text-handle-width: 55px;
>  -GtkWidget-text-handle-height: 55px;
> +-GtkPaned-handle-size: 30;
>  }
>
>  /* Backgrounds and windows */
> @@ -784,3 +785,9 @@ EvView:selected,
>  ApDocView:selected {
>  background-color: @selection_grey;
>  }
> +
> +/* GtkPaned */
> +
> +.pane-separator {
> +background-color: @toolbar_grey;
> +}
> --
> 1.7.10.4
>



-- 
.. manuq ..
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel