Re: [Sugar-devel] [SANDBOX] Matetón-7

2013-03-07 Thread Rodrigo Pérez Fulloni
Hi! Thanks for the review.
1-I fixed it replacing service_name by bundle_id.
3-The activity is already using it, but since it doesn't need any other
toolbar, it appears to be the old style, but it isn't.

2- I hadn't noticed it. But I'm not sure how to fix that. The locale folder
doesn't exists in the repository neither. Locale is generated by pottle,
don't? Or should I do something I'm forgetting?

Thanks
Greetings!

--
Rodrigo Pérez Fulloni - http://www.rodripf.com


On Wed, Mar 6, 2013 at 3:31 PM, Sugar Labs Activities 
activit...@sugarlabs.org wrote:

 Activity Matetón-7 have been retained in the sandbox by a Sugar Labs
 Activities editor.

 Review Information:
 Reviewer: Alan Aguiar
 Comments: 1-Change the deprecated service_name by bundle_id
 2-No locale folder was generated. The activity is in english
 3-Would be good have new style of toolbar

 If you have questions about this review, please answer to this e-mail or
 join #sugar on chat.freenode.net.

 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] [ASLO] Release Pippy-52

2013-03-07 Thread Sugar Labs Activities
Activity Homepage:
http://activities.sugarlabs.org/addon/4041

Sugar Platform:
0.82 - 0.98

Download Now:
http://activities.sugarlabs.org/downloads/file/28515/pippy-52.xo

Release notes:
*Stop button now works (flavio danesse fdane...@activitycentral.com)

== Sources ==
*http://download.sugarlabs.org/sources/sucrose/fructose/Pippy/Pippy-52.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


Re: [Sugar-devel] Journal Backup Code.

2013-03-07 Thread Matias Basso
Hi again.

I can said that I finish to port to GTK-3 (Now the program can run), but I
have an issue that i can't solve.
I need to make a call to the Journal-Backup from my code, but when I do the
windows showsup and crush instantly.

*This is the code:*
from jarabe.journal.processdialog import VolumeBackupDialog
dialog = VolumeBackupDialog('/run/media/olpc/device')
dialog.show()

*And this is what I get when crush it:*
WARNING: root:No icon with the name activity-journal was found in the theme.
WARNING: root:No icon with the name activity-journal was found in the theme.

*Note:*
I tried, only for curiosity, commenting the line that load the icon, the
result is the same but without the Warnings.


2013/2/28 Matias Basso mba...@plan.ceibal.edu.uy

 Thx Daniel !

 That was one of the solution I had in mind. So, i will start to port to
 GTK3

 Thanks a lot!


 2013/2/28 Daniel Narvaez dwnarv...@gmail.com

 You cannot mix gtk2 and gtk3 code (more precisely static and dynamic
 gobject bindings). You will have to port the code to gtk3.

 On 28 February 2013 14:40, Matias Basso mba...@plan.ceibal.edu.uy
 wrote:
  Hi all!
 
  I have a code that use GTK-2, and in it I made an import:
 
  from jarabe.journal.processdialog import VolumeBackupDialog
 
  The problem is the next:
  I'm using now a Fedora-18 image in wich use GTK-3 (Sugar) and when I
 run the
  program this is what shows up:
 
  from  jarabe.journal.processdialog import VolumeBackupDialog
File
 /usr/lib/python2.7/site-packages/jarabe/journal/processdialog.py,
  line 19, in module
  from gi.repository import GObject
File /usr/lib/python2.7/site-packages/gi/__init__.py, line 27, in
  module
  from ._gi import _API, Repository
  ImportError: could not import gobject (error was: ImportError('When
 using
  gi.repository you must not import static modules like gobject. Please
  change all occurrences of import gobject to from gi.repository import
  GObject.',))
 
  Someone knows how to solve this?
  Thx! bye bye!!
 
  --
  Tec. MATIAS BASSO .-
  Investigación y Desarrollo - Plan Ceibal .-
  Centro Ceibal - Av. Italia 6201 - Montevideo, Uruguay .-
 
  ___
  Sugar-devel mailing list
  Sugar-devel@lists.sugarlabs.org
  http://lists.sugarlabs.org/listinfo/sugar-devel
 



 --
 Daniel Narvaez




 --
 Tec. MATIAS BASSO .-
 Investigación y Desarrollo - Plan Ceibal .-
 Centro Ceibal - Av. Italia 6201 - Montevideo, Uruguay .-




-- 
Tec. MATIAS BASSO .-
Investigación y Desarrollo - Plan Ceibal .-
Centro Ceibal - Av. Italia 6201 - Montevideo, Uruguay .-
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] Journal Backup Code.

2013-03-07 Thread Daniel Narvaez
Is the code somewhere? Hard to make a guess without a backtrace and without
the code :)

On Thursday, 7 March 2013, Matias Basso wrote:

 Hi again.

 I can said that I finish to port to GTK-3 (Now the program can run), but I
 have an issue that i can't solve.
 I need to make a call to the Journal-Backup from my code, but when I do
 the windows showsup and crush instantly.

 *This is the code:*
 from jarabe.journal.processdialog import VolumeBackupDialog
 dialog = VolumeBackupDialog('/run/media/olpc/device')
 dialog.show()

 *And this is what I get when crush it:*
 WARNING: root:No icon with the name activity-journal was found in the
 theme.
 WARNING: root:No icon with the name activity-journal was found in the
 theme.

 *Note:*
 I tried, only for curiosity, commenting the line that load the icon, the
 result is the same but without the Warnings.


 2013/2/28 Matias Basso mba...@plan.ceibal.edu.uy javascript:_e({},
 'cvml', 'mba...@plan.ceibal.edu.uy');

 Thx Daniel !

 That was one of the solution I had in mind. So, i will start to port to
 GTK3

 Thanks a lot!


 2013/2/28 Daniel Narvaez dwnarv...@gmail.com javascript:_e({}, 'cvml',
 'dwnarv...@gmail.com');

 You cannot mix gtk2 and gtk3 code (more precisely static and dynamic
 gobject bindings). You will have to port the code to gtk3.

 On 28 February 2013 14:40, Matias Basso 
 mba...@plan.ceibal.edu.uyjavascript:_e({}, 'cvml', 
 'mba...@plan.ceibal.edu.uy');
 wrote:
  Hi all!
 
  I have a code that use GTK-2, and in it I made an import:
 
  from jarabe.journal.processdialog import VolumeBackupDialog
 
  The problem is the next:
  I'm using now a Fedora-18 image in wich use GTK-3 (Sugar) and when I
 run the
  program this is what shows up:
 
  from  jarabe.journal.processdialog import VolumeBackupDialog
File
 /usr/lib/python2.7/site-packages/jarabe/journal/processdialog.py,
  line 19, in module
  from gi.repository import GObject
File /usr/lib/python2.7/site-packages/gi/__init__.py, line 27, in
  module
  from ._gi import _API, Repository
  ImportError: could not import gobject (error was: ImportError('When
 using
  gi.repository you must not import static modules like gobject. Please
  change all occurrences of import gobject to from gi.repository
 import
  GObject.',))
 
  Someone knows how to solve this?
  Thx! bye bye!!
 
  --
  Tec. MATIAS BASSO .-
  Investigación y Desarrollo - Plan Ceibal .-
  Centro Ceibal - Av. Italia 6201 - Montevideo, Uruguay .-
 
  ___
  Sugar-devel mailing list
  Sugar-devel@lists.sugarlabs.org javascript:_e({}, 'cvml',
 'Sugar-devel@lists.sugarlabs.org');
  http://lists.sugarlabs.org/listinfo/sugar-devel
 



 --
 Daniel Narvaez




 --
 Tec. MATIAS BASSO .-
 Investigación y Desarrollo - Plan Ceibal .-
 Centro Ceibal - Av. Italia 6201 - Montevideo, Uruguay .-




 --
 Tec. MATIAS BASSO .-
 Investigación y Desarrollo - Plan Ceibal .-
 Centro Ceibal - Av. Italia 6201 - Montevideo, Uruguay .-



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


Re: [Sugar-devel] Journal Backup Code.

2013-03-07 Thread Martin Abente
It should be at dextrose code base :)

On Thu, Mar 7, 2013 at 2:18 PM, Daniel Narvaez dwnarv...@gmail.com wrote:

 Is the code somewhere? Hard to make a guess without a backtrace and
 without the code :)


 On Thursday, 7 March 2013, Matias Basso wrote:

 Hi again.

 I can said that I finish to port to GTK-3 (Now the program can run), but
 I have an issue that i can't solve.
 I need to make a call to the Journal-Backup from my code, but when I do
 the windows showsup and crush instantly.

 *This is the code:*
 from jarabe.journal.processdialog import VolumeBackupDialog
 dialog = VolumeBackupDialog('/run/media/olpc/device')
 dialog.show()

 *And this is what I get when crush it:*
 WARNING: root:No icon with the name activity-journal was found in the
 theme.
 WARNING: root:No icon with the name activity-journal was found in the
 theme.

 *Note:*
 I tried, only for curiosity, commenting the line that load the icon, the
 result is the same but without the Warnings.


 2013/2/28 Matias Basso mba...@plan.ceibal.edu.uy

 Thx Daniel !

 That was one of the solution I had in mind. So, i will start to port to
 GTK3

 Thanks a lot!


 2013/2/28 Daniel Narvaez dwnarv...@gmail.com

 You cannot mix gtk2 and gtk3 code (more precisely static and dynamic
 gobject bindings). You will have to port the code to gtk3.

 On 28 February 2013 14:40, Matias Basso mba...@plan.ceibal.edu.uy
 wrote:
  Hi all!
 
  I have a code that use GTK-2, and in it I made an import:
 
  from jarabe.journal.processdialog import VolumeBackupDialog
 
  The problem is the next:
  I'm using now a Fedora-18 image in wich use GTK-3 (Sugar) and when I
 run the
  program this is what shows up:
 
  from  jarabe.journal.processdialog import VolumeBackupDialog
File
 /usr/lib/python2.7/site-packages/jarabe/journal/processdialog.py,
  line 19, in module
  from gi.repository import GObject
File /usr/lib/python2.7/site-packages/gi/__init__.py, line 27, in
  module
  from ._gi import _API, Repository
  ImportError: could not import gobject (error was: ImportError('When
 using
  gi.repository you must not import static modules like gobject.
 Please
  change all occurrences of import gobject to from gi.repository
 import
  GObject.',))
 
  Someone knows how to solve this?
  Thx! bye bye!!
 
  --
  Tec. MATIAS BASSO .-
  Investigación y Desarrollo - Plan Ceibal .-
  Centro Ceibal - Av. Italia 6201 - Montevideo, Uruguay .-
 
  ___
  Sugar-devel mailing list
  Sugar-devel@lists.sugarlabs.org
  http://lists.sugarlabs.org/listinfo/sugar-devel
 



 --
 Daniel Narvaez




 --
 Tec. MATIAS BASSO .-
 Investigación y Desarrollo - Plan Ceibal .-
 Centro Ceibal - Av. Italia 6201 - Montevideo, Uruguay .-




 --
 Tec. MATIAS BASSO .-
 Investigación y Desarrollo - Plan Ceibal .-
 Centro Ceibal - Av. Italia 6201 - Montevideo, Uruguay .-



 --
 Daniel Narvaez


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


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


Re: [Sugar-devel] Journal Backup Code.

2013-03-07 Thread Matias Basso
Sorry.!

Wrong list. XD


2013/3/7 Martin Abente martin.abente.lah...@gmail.com

 It should be at dextrose code base :)


 On Thu, Mar 7, 2013 at 2:18 PM, Daniel Narvaez dwnarv...@gmail.comwrote:

 Is the code somewhere? Hard to make a guess without a backtrace and
 without the code :)


 On Thursday, 7 March 2013, Matias Basso wrote:

 Hi again.

 I can said that I finish to port to GTK-3 (Now the program can run), but
 I have an issue that i can't solve.
 I need to make a call to the Journal-Backup from my code, but when I do
 the windows showsup and crush instantly.

 *This is the code:*
 from jarabe.journal.processdialog import VolumeBackupDialog
 dialog = VolumeBackupDialog('/run/media/olpc/device')
 dialog.show()

 *And this is what I get when crush it:*
 WARNING: root:No icon with the name activity-journal was found in the
 theme.
 WARNING: root:No icon with the name activity-journal was found in the
 theme.

 *Note:*
 I tried, only for curiosity, commenting the line that load the icon, the
 result is the same but without the Warnings.


 2013/2/28 Matias Basso mba...@plan.ceibal.edu.uy

 Thx Daniel !

 That was one of the solution I had in mind. So, i will start to port to
 GTK3

 Thanks a lot!


 2013/2/28 Daniel Narvaez dwnarv...@gmail.com

 You cannot mix gtk2 and gtk3 code (more precisely static and dynamic
 gobject bindings). You will have to port the code to gtk3.

 On 28 February 2013 14:40, Matias Basso mba...@plan.ceibal.edu.uy
 wrote:
  Hi all!
 
  I have a code that use GTK-2, and in it I made an import:
 
  from jarabe.journal.processdialog import VolumeBackupDialog
 
  The problem is the next:
  I'm using now a Fedora-18 image in wich use GTK-3 (Sugar) and when I
 run the
  program this is what shows up:
 
  from  jarabe.journal.processdialog import VolumeBackupDialog
File
 /usr/lib/python2.7/site-packages/jarabe/journal/processdialog.py,
  line 19, in module
  from gi.repository import GObject
File /usr/lib/python2.7/site-packages/gi/__init__.py, line 27, in
  module
  from ._gi import _API, Repository
  ImportError: could not import gobject (error was: ImportError('When
 using
  gi.repository you must not import static modules like gobject.
 Please
  change all occurrences of import gobject to from gi.repository
 import
  GObject.',))
 
  Someone knows how to solve this?
  Thx! bye bye!!
 
  --
  Tec. MATIAS BASSO .-
  Investigación y Desarrollo - Plan Ceibal .-
  Centro Ceibal - Av. Italia 6201 - Montevideo, Uruguay .-
 
  ___
  Sugar-devel mailing list
  Sugar-devel@lists.sugarlabs.org
  http://lists.sugarlabs.org/listinfo/sugar-devel
 



 --
 Daniel Narvaez




 --
 Tec. MATIAS BASSO .-
 Investigación y Desarrollo - Plan Ceibal .-
 Centro Ceibal - Av. Italia 6201 - Montevideo, Uruguay .-




 --
 Tec. MATIAS BASSO .-
 Investigación y Desarrollo - Plan Ceibal .-
 Centro Ceibal - Av. Italia 6201 - Montevideo, Uruguay .-



 --
 Daniel Narvaez


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





-- 
Tec. MATIAS BASSO .-
Investigación y Desarrollo - Plan Ceibal .-
Centro Ceibal - Av. Italia 6201 - Montevideo, Uruguay .-
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] [SANDBOX] Matetón-7

2013-03-07 Thread Alan Jhonn Aguiar Schwyn
2- I hadn't noticed it. But I'm not sure how to fix that. The locale folder 
doesn't exists in the repository neither. Locale is generated by pottle, 
don't? Or should I do something I'm forgetting?
No, pootle only creates the po folder.The locale folder is created 
automatically by the bundlebuilder.You must use it for make the XO or compile 
the po into locale.
For make the .xo do:
python setup.py dist_xo
Regards!
Alan  ___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


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

2013-03-07 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/28516/write-87.xo

Release notes:
Fix collaboration - SL #4436 (thanks Ajay Garg)


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] [RELEASE] Agora 2

2013-03-07 Thread Daniel Narvaez
# News

* Build inside a chroot to be able to support multiple linux
distribution and still be able to rely on a well know base system
(which is at the moment Fedora).
* Improved toolbars appeareance, now matching Sugar more closely.
* Simplified build and development workflow.
* Examples of how to use xi-grapics icons and toolbars API.
* Progress indication in omega-browse.

A lot more things that I can't remember right now :) Should write
release notes as we go...

# Infrastructure

* I created a google group for Agora development

https://groups.google.com/forum/?fromgroups#!forum/agora-dev

I'll keep posting release announcements to this list but if you are
interested in more frequent/detailed news and discussions please join
the group.

* Buildbot instance now running at

http://ayopa.org:8010.

# Thanks

Simon Schampijer (omega-browse progress)
Manuel Quiñones (various toolbar bits)

# How to try it

The main repository is now

https://github.com/ayopa/agora-devkit

See the README there on how to get started. The chroot stuff is pretty
tricky and not yet completely stable please let me know if you run
into issues.

# Next milestone

Milestone 3 will focus on automated testing and bug fixing. I hope to
close it quickly so that we can get back to features, but I feel we
need to get a few things right before writing more of the xi libraries
code. See the TODO for some more details

https://github.com/ayopa/agora-devkit/issues/1

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