Hello guys,<div><br></div><div>Well I used fixed coordinates because that&#39;s the way it was done in the original Conozco Urugay (see datos/ciudades.txt)</div><div><br></div><div>Gabriel, if you need help I translating think I can give you hand, I don&#39;t no much about spanish but portuguese is my mother language and they are not that different :)</div>
<div><br></div><div>Take care,</div><div>Jose<br><br><div class="gmail_quote">On Fri, Oct 9, 2009 at 1:11 PM, Gabriel Eirea <span dir="ltr">&lt;<a href="mailto:geirea@gmail.com">geirea@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Hi,<br>
<br>
This is extremely cool.<br>
<br>
I agree with Bryan that it would be great to have svg from the start.<br>
I used a fixed bitmap image and then it became very difficult for<br>
scaling. Now I&#39;m working in zoomed-in versions for very local<br>
information, and I need to draw a new map for each one of the zones.<br>
The holy grail would be to have true cartographic information with<br>
different projections, then you could use GPS data and all kind of<br>
interesting options would open for us. Of course, this was not<br>
necessary for Uruguay because it is such a small country, but it may<br>
be necessary for larger countries or continents if you want to be able<br>
to zoom in and out.<br>
<br>
For those asking for translations, I apologize for not being very<br>
international. Almost all the strings are located in the file<br>
datos/niveles.txt. You can read about it here (in Spanish and<br>
unfinished yet, sorry):<br>
<br>
<a href="http://drupal.ceibaljam.org/?q=node/46" target="_blank">http://drupal.ceibaljam.org/?q=node/46</a><br>
<br>
I&#39;m trying to improve internationalization for the next version.<br>
There&#39;s even a Conozco Perú brewing somewhere in the Andes.<br>
<br>
Regards,<br>
<br>
Gabriel<br>
<br>
<br>
2009/10/9 Bryan Berry &lt;<a href="mailto:bryan@olenepal.org">bryan@olenepal.org</a>&gt;:<br>
<div><div></div><div class="h5">&gt; Hey Ze,<br>
&gt;<br>
&gt; Great start!<br>
&gt;<br>
&gt; I cloned your git repo and made a few changes<br>
&gt; <a href="http://github.com/bryanwb/Conozco-Uruguay" target="_blank">http://github.com/bryanwb/Conozco-Uruguay</a><br>
&gt;<br>
&gt;<br>
&gt; Just a few notes:<br>
&gt;<br>
&gt; U don&#39;t need the xml declaration anymore w/ html5<br>
&gt; so  &lt;?xml version=&quot;1.0&quot; encoding=&quot;iso-8859-1&quot;?&gt; and<br>
&gt;   xmlns=&quot;<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>&quot;   are no longer needed<br>
&gt;<br>
&gt; all u need is &lt;!DOCTYPE html&gt;<br>
&gt;<br>
&gt; I have copied the needed js files into js/ so u can run it as a<br>
&gt; standalone. Perhaps I should create a karma-base package that just has<br>
&gt; all requirements for creating a standalone lesson and nothing more.<br>
&gt;<br>
&gt; You can use jquery methods to make your code more succinct<br>
&gt;<br>
&gt; for instance:<br>
&gt;<br>
&gt; document.getElementById(&#39;mycanvas&#39;).addEventListener( . . .<br>
&gt;<br>
&gt; can become<br>
&gt;<br>
&gt; $(&#39;#mycanvas&#39;).bind(&#39;click&#39;, clicked, false);<br>
&gt;<br>
&gt; and<br>
&gt;<br>
&gt; document.getElementById(&#39;question&#39;).innerHTML = q.getPhrase;<br>
&gt;<br>
&gt; can become<br>
&gt;<br>
&gt; $(&#39;#question&#39;).html(q.getPhrase);<br>
&gt;<br>
&gt;<br>
&gt; I also see that you used static coordinates to represent the cities.<br>
&gt; This means the image can&#39;t be resized for different screen resolutions.<br>
&gt; It would be neat if we could do the same image as an SVG w/ the names of<br>
&gt; the capitals embedded as nodes. Then you could attach an event listener<br>
&gt; to each node.<br>
&gt;<br>
&gt; Each node would have an ID matching the City name and class=&quot;cities&quot;.<br>
&gt; You could then match the ID of the element clicked on against the city<br>
&gt; named in the question.<br>
&gt;<br>
&gt; Unfortunately, I have no idea how to do this ;)<br>
&gt;<br>
&gt;<br>
&gt; On Thu, 2009-10-08 at 18:04 +0100, Ze maria wrote:<br>
&gt;&gt; Hello guys,<br>
&gt;&gt; I started a port of the activity &quot;Conozco Uruguay&quot; (available at<br>
&gt;&gt; <a href="http://activities.sugarlabs.org/en-US/sugar/addon/4199" target="_blank">http://activities.sugarlabs.org/en-US/sugar/addon/4199</a>) from Python to<br>
&gt;&gt; the new Karma framework (downloaded from:<br>
&gt;&gt; <a href="http://git.sugarlabs.org/projects/karma" target="_blank">http://git.sugarlabs.org/projects/karma</a>).<br>
&gt;&gt; I&#39;m new to html5 and to the canvas element so don&#39;t be scared by the<br>
&gt;&gt; lookn&#39;feel :)<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Currently to only thing implemented is the capital game, where a<br>
&gt;&gt; person guesses where which capital of the state is located.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; By the way, I coulnd&#39;t get to work the Raphael function &#39;print&#39;, every<br>
&gt;&gt; time I try to use I get a :<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Error: f.fonts is undefined<br>
&gt;&gt; Source File:<br>
&gt;&gt; file:///Users/zemariamm/workspace/olenepal/mainline/js/raphael-min.js<br>
&gt;&gt; Line: 7<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; The code is available at <a href="http://github.com/zemariamm/Conozco-Uruguay" target="_blank">http://github.com/zemariamm/Conozco-Uruguay</a><br>
&gt;&gt; Comments, critics and sugestions are all welcome :)<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; (To run the code just download the new karma framework and drop the<br>
&gt;&gt; urugay activity code in the lessons directory)<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Take care,<br>
&gt;&gt; Jose<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; Sugar-devel mailing list<br>
&gt;&gt; <a href="mailto:Sugar-devel@lists.sugarlabs.org">Sugar-devel@lists.sugarlabs.org</a><br>
&gt;&gt; <a href="http://lists.sugarlabs.org/listinfo/sugar-devel" target="_blank">http://lists.sugarlabs.org/listinfo/sugar-devel</a><br>
&gt; --<br>
&gt; Bryan W. Berry<br>
&gt; Senior Engineer<br>
&gt; OLE Nepal, <a href="http://www.olenepal.org" target="_blank">http://www.olenepal.org</a><br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Sugar-devel mailing list<br>
&gt; <a href="mailto:Sugar-devel@lists.sugarlabs.org">Sugar-devel@lists.sugarlabs.org</a><br>
&gt; <a href="http://lists.sugarlabs.org/listinfo/sugar-devel" target="_blank">http://lists.sugarlabs.org/listinfo/sugar-devel</a><br>
&gt;<br>
</div></div></blockquote></div><br></div>