Re: [Sugar-devel] [PATCH Chat v2] Scroll the chat log

2012-04-11 Thread Aleksey Lim
On Tue, Apr 10, 2012 at 10:46:59PM -0300, Manuel Kaufmann wrote: Check if the user pressed Page Up, Page Down, Home or End and scroll the window according the pressed key. This commit solves http://bugs.sugarlabs.org/ticket/2782 There is an issue, Home/End are needed for moving cursor in the

[Sugar-devel] Pilas Activity - interesting game engine

2012-04-11 Thread forster
http://wiki.sugarlabs.org/go/Activities/Pilas is interesting, I have translated the English documentation I can only get it to execute in immediate mode, I expect you can run it from Pippy or Terminal/python but I get import errors when I try Tony

Re: [Sugar-devel] Pilas Activity - interesting game engine

2012-04-11 Thread Manuel Quiñones
El día 11 de abril de 2012 05:15, fors...@ozonline.com.au escribió: http://wiki.sugarlabs.org/go/Activities/Pilas is interesting, I have translated the English documentation Great you translated it, yes indeed Pilas is great for programming learning. A internationalization effort was made

Re: [Sugar-devel] [PATCH Chat v2] Scroll the chat log

2012-04-11 Thread Manuel Quiñones
El día 11 de abril de 2012 03:27, Aleksey Lim alsr...@sugarlabs.org escribió: On Tue, Apr 10, 2012 at 10:46:59PM -0300, Manuel Kaufmann wrote: Check if the user pressed Page Up, Page Down, Home or End and scroll the window according the pressed key. This commit solves

Re: [Sugar-devel] [PATCH Maze] Comment bugfix and import missing

2012-04-11 Thread Manuel Quiñones
El día 11 de abril de 2012 01:01, Rafael Ortiz raf...@activitycentral.com escribió: 2012/4/10 Manuel Quiñones ma...@laptop.org El día 10 de abril de 2012 21:04, Rafael Ortiz raf...@activitycentral.com escribió: On Tue, Apr 10, 2012 at 2:58 PM, Manuel Kaufmann humi...@gmail.com wrote:

Re: [Sugar-devel] Running Maze on the XO

2012-04-11 Thread Manuel Quiñones
El día 10 de abril de 2012 17:44, Manuel Kaufmann humi...@gmail.com escribió: Hello guys, I'm trying to run Maze on the XO (build 883) but I get this error all the time: ImportError: No module named olpcgames I'm not sure why, because when I unzip the Maze-16.xo that I generated with

Re: [Sugar-devel] [PATCH Chat v2] Scroll the chat log

2012-04-11 Thread Manuel Kaufmann
On Wed, Apr 11, 2012 at 03:27, Aleksey Lim alsr...@sugarlabs.org wrote: Also, it might be predictable bu users that posting new messages will scroll history down. Mmm... here I don't agree with you. I think that is quite frustrating to look up for something in the history and get scrolled down

[Sugar-devel] [PATCH Chat v3] Scroll the chat log

2012-04-11 Thread Manuel Kaufmann
Check if the user pressed (Control +) Page Up, (Control +) Page Down, Control + Home or Control + End and scroll the window according the pressed key. This commit solves http://bugs.sugarlabs.org/ticket/2782 Signed-off-by: Manuel Kaufmann humi...@gmail.com --- activity.py | 22

Re: [Sugar-devel] Running Maze on the XO

2012-04-11 Thread Manuel Kaufmann
2012/4/11 Manuel Quiñones ma...@laptop.org: Does this still happen in latest git? Yes :( Did you try it? -- Kaufmann Manuel Blog: http://humitos.wordpress.com/ Porfolio: http://fotos.mkaufmann.com.ar/ PyAr: http://www.python.com.ar/ ___ Sugar-devel

Re: [Sugar-devel] Pilas Activity - interesting game engine

2012-04-11 Thread Manuel Quiñones
El día 11 de abril de 2012 10:09, Walter Bender walter.ben...@gmail.com escribió: 2012/4/11 Manuel Quiñones ma...@laptop.org: El día 11 de abril de 2012 05:15,  fors...@ozonline.com.au escribió: http://wiki.sugarlabs.org/go/Activities/Pilas is interesting, I have translated the English

Re: [Sugar-devel] Which activities use lxml?

2012-04-11 Thread Daniel Drake
On Tue, Apr 10, 2012 at 8:19 PM, Gary Martin garycmar...@googlemail.com wrote: On Tue, Apr 10, 2012 at 4:54 PM, Daniel Drake d...@laptop.org wrote: Until now, Read was using python-lxml for XML parsing in epub support. Gonzalo just pushed a patch that makes it use Python's internal XML

[Sugar-devel] Sign up and be part of EDUJAM! 2012!!

2012-04-11 Thread Leticia D. Romero C.
*Sign up and be part of EDUJAM! 2012!!* *Given the success of 2011 we want to meet again at an event to strengthen the community of developers and users of free educational software, especially in South America but also with the aim of increasing collaborative efforts with the rest of the world.*

Re: [Sugar-devel] Which activities use lxml?

2012-04-11 Thread Gonzalo Odiard
So I'm still feeling comfortable about dropping lxml and will probably do so soon. +1 Gonzalo PD: Then, can I increase wikipedia activity 2MB? :) ___ Sugar-devel mailing list Sugar-devel@lists.sugarlabs.org

Re: [Sugar-devel] [PATCH sugar] Don't treat SSID as UTF-8 character sequence (fixes SL#2023)

2012-04-11 Thread Sascha Silbe
Excerpts from Martin Langhoff's message of 2012-04-10 21:43:20 +0200: There is only one thing that still worries me. According to the spec, the ESSID may also contain nulls in the middle of the array. I don't know how NM handles such cases in its communication with nm-client via d-bus. I

Re: [Sugar-devel] [PATCH Chat] Don't treat the whole word as an URL

2012-04-11 Thread Aleksey Lim
On Wed, Apr 11, 2012 at 01:39:06PM -0300, Manuel Kaufmann wrote: Changed re.search to re.match because .search scan through the whole string looking for the regex. So, for example asodijfosidwww.google.comaosdfoisad with .search will be treated as a whole URL. With .match the complete word

Re: [Sugar-devel] [PATCH Chat v4] Scroll the chat log

2012-04-11 Thread Aleksey Lim
On Wed, Apr 11, 2012 at 02:08:19PM -0300, Manuel Kaufmann wrote: Check if the user pressed (Control +) Page Up, (Control +) Page Down, Control + Home or Control + End and scroll the window according the pressed key. Auto scroll again if the user entry a new message in the ChatBox. This