Re: [Sugar-devel] Handlebars js

2015-06-25 Thread Gonzalo Odiard
You don't describe the problems. Please explain and if possible point to the code or examples. Gonzalo On Thu, Jun 25, 2015 at 1:30 PM, utkarsh Dhawan dhawanutka...@gmail.com wrote: Hi, I am working on a Sugar Activity called WebConfusion.It is basically a python webkit activity which

Re: [Sugar-devel] VM for building an ARM image

2015-06-25 Thread Gonzalo Odiard
Geogebra is Java, you probably don't need build anything. The Portable bundle you link is a huge package that include the jre for i686, x86_64 and the geogebra jars. To use in the XOs, have more sense include the jre in the image, and prepare a .xo just with the geogebra jars. If not, would be

Re: [Sugar-devel] VM for building an ARM image

2015-06-25 Thread Gustavo Duarte
Thanks James ! I'll try with these options, QEMU setup and on a XO4 with F18 (particularly, thanks for the tips, choice f18 instead f20). The goal of this work is build the latest portable version of Geogebra [1] on ARM arch, (isn't portable enough :( ). I'll let you know the results. Thank

Re: [Sugar-devel] Integrating the translations for sugar and sugar-toolkit-gtk3

2015-06-25 Thread Martin Abente
Hola de nuevo, @Edgar: si ingresas a las traducciones de sugar [1] y sugar-toolkit-gtk3 [2] a Aymara, verás que hay una opción que dice expand details (o expandir detalles en español). Al hacer clic en esa opción, la plataforma te va a mostrar algunos problemas con las traducciones de esos

[Sugar-devel] MusicKeyboard csound6 version

2015-06-25 Thread Gonzalo Odiard
I have released a version of MusicKeyboard ported to csound6. Sources: http://download.sugarlabs.org/sources/honey/MusicKeyboard/MusicKeyboard-9.tar.bz2 XO: http://dev.laptop.org/~gonzalo/activities/MusicKeyboard-9.xo This version is useful to package on distributions that do not support csound

Re: [Sugar-devel] [IAEP] Open issues

2015-06-25 Thread Dan Tenason
Wednesday, June 24, 2015 8:48 PM -05:00 from Sebastian Silva sebast...@fuentelibre.org: On 24/06/15 03:40, Sam P. wrote: IDK about the election but. Hopefully somebody who knows about that can respond. Here's a status report: I asked the board to appoint me election committee. Then the

Re: [Sugar-devel] Integrating the translations for sugar and sugar-toolkit-gtk3

2015-06-25 Thread Sebastian Silva
On 25/06/15 09:06, Martin Abente wrote: Hola de nuevo, @Edgar: (...) @Sebastian: podrías ser más explicito en cuanto a que deberíamos permitir? No entiendo que exactamente estás solicitando. Como también eres administrador de translate.sugarlabs.org http://translate.sugarlabs.org, y

Re: [Sugar-devel] Integrating the translations for sugar and sugar-toolkit-gtk3

2015-06-25 Thread Walter Bender
2015-06-25 12:18 GMT-04:00 Sebastian Silva sebast...@fuentelibre.org: On 25/06/15 09:06, Martin Abente wrote: Hola de nuevo, @Edgar: (...) @Sebastian: podrías ser más explicito en cuanto a que deberíamos permitir? No entiendo que exactamente estás solicitando. Como también eres

[Sugar-devel] Handlebars js

2015-06-25 Thread utkarsh Dhawan
Hi, I am working on a Sugar Activity called WebConfusion.It is basically a python webkit activity which displays HTML page in it.I am currently templating the webpages using the Handlebars js.Now the aim of the activity is to show texts on various topics of HTML,CSS and JavaScript.I want to

Re: [Sugar-devel] VM for building an ARM image

2015-06-25 Thread Gustavo Duarte
Gonzalo, The branch 5.0 of Geogebra include 3D grahpics, and has references to several jars architectures dependent, like: gluegen-rt-natives-linux-amd64.jar gluegen-rt-natives-linux-i586.jar javagiac-linux32.jar javagiac-linux64.jar jogl.all-natives-linux-amd64.jar

Re: [Sugar-devel] Handlebars js

2015-06-25 Thread utkarsh Dhawan
Hi Gonzalo, Ya I would try to be more explanatory this time. My code looks somewhat like this: script id=template type=text/x-handlebars-template {{#each this}} li h2{{Title}}/h2 {{#if content}} p{{{content}}}/p {{/if}} {{#if code}} div class=code{{code}}/div {{/if}} button