Karma: Difference between revisions
ChristophD (talk | contribs) |
KachachanC (talk | contribs) Tag: visualeditor |
||
| (47 intermediate revisions by 5 users not shown) | |||
| Line 1: | Line 1: | ||
<noinclude>{{GoogleTrans-en}}{{TOCleft}}</noinclude> | <noinclude>{{GoogleTrans-en}}{{TOCleft}} | ||
[[Category:GSoC]] | |||
[[Category:Project]]</noinclude> | |||
[[Image:Karma.png|right]] | [[Image:Karma.png|right]] | ||
== The Karma Project == | == The Karma Project == | ||
Karma is a framework for creating educational software using JavaScript, html5, and SVG. The Karma team is primarily focused on developing Sugar activities but you can also Karma to create lessons that run in any web browser that supports html5. The best ways to get involved are to join the [http://groups.google.com/group/karmajs mailing list] and [http://git.olenepal.org/karma/karma get the code] | |||
=== Rationale === | === Rationale === | ||
| Line 10: | Line 14: | ||
=== Status === | === Status === | ||
Karma is a sub-project of Sugar Labs that is under active development | Karma is a sub-project of Sugar Labs that is under active development. The latest examples can be seen at [http://karma.sugarlabs.org http://karma.sugarlabs.org]. You can also check out the [http://karmaproject.wordpress.com Karma Project blog] for updates. | ||
To try out the karma examples you need to have an html5-capable browser. The Browse activity within Sugar does not currently support html5. To try out karma within Sugar you need to install [http://dev.laptop.org/~bobbyp/surf/Surf-106.xo Surf] and its webkit dependencies or run Firefox 3.5 from the command-line. | To try out the karma examples you need to have an html5-capable browser. The Browse activity within Sugar does not currently support html5. To try out karma within Sugar you need to install [http://dev.laptop.org/~bobbyp/surf/Surf-106.xo Surf] and its webkit dependencies or run Firefox 3.5 from the command-line (yum install pywebkitgtk WebKit-gtk gnome-python2-gconf). | ||
The current focus of development is to convert Nepal's set of lessons coded in Squeak smalltalk. You can find the list of lessons to be converted [http://spreadsheets.google.com/pub?key=tweUJyn1BkEciHqVtSvCYDA&output=html here]. This is a good place for new contributors to get started | |||
=== What Karma Is === | === What Karma Is === | ||
| Line 29: | Line 34: | ||
=== What Karma Isn't === | === What Karma Isn't === | ||
* Karma is not compatible with Internet Explorer because Internet Explorer does not support html5 apis such as canvas, svg, localStorage, etc. | |||
* Karma is not meant to replace pyGTK as the dominant toolset for creating Sugar activities | * Karma is not meant to replace pyGTK as the dominant toolset for creating Sugar activities | ||
* Karma is not a tool for creating activities with complex 3D graphics. Karma is a tool for creating activities with simple 2D graphics | * Karma is not a tool for creating activities with complex 3D graphics. Karma is a tool for creating activities with simple 2D graphics | ||
| Line 42: | Line 48: | ||
* Unobtrusive JavaScript | * Unobtrusive JavaScript | ||
* No globals | * No globals | ||
* No native objects | * No extension of native objects | ||
=== Technical Architecture === | === Technical Architecture === | ||
* Run-time - Karma will work with basic functionality on any W3C standards-compliant browser that supports HTML5 tags canvas and | * Run-time - Karma will work with basic functionality on any W3C standards-compliant browser that supports HTML5 tags canvas, audio, and svg. This notably excludes Microsoft's Internet Explorer. Karma will be particularly tailored to work with Sugar's Journal and collaboration through Telepathy. Longer-term we hope to extend Karma to take advantage of Sugar's collaboration features. | ||
* Primary Programming language - | * Primary Programming language - [https://developer.mozilla.org/en/New_in_JavaScript_1.6 Javascript 1.6] | ||
* [[Karma/i18n|i18n]] -- Pervasive internationalization is a critical part of Karma | * [[Karma/i18n|i18n]] -- Pervasive internationalization is a critical part of Karma | ||
** Supported types of i18n | ** Supported types of i18n -- ToDo | ||
*** Output of Native Digits | *** Output of Native Digits | ||
*** Image switching per locale | *** Image switching per locale | ||
| Line 59: | Line 65: | ||
* Moodle Integration -- method to be determined | * Moodle Integration -- method to be determined | ||
* [[Karma/Bundle_layout|Repo and Bundle layout]] | * [[Karma/Bundle_layout|Repo and Bundle layout]] | ||
* UI Widgets | |||
** [[Scoreboard]] | |||
** Dialog -- use standard jQuery UI one? | |||
=== Conventions === | === Conventions === | ||
| Line 65: | Line 74: | ||
* The [[Karma/Dictionary|Karma Dictionary]] | * The [[Karma/Dictionary|Karma Dictionary]] | ||
* [[Karma/Specifications|Karma Specifications]] (early draft) | * [[Karma/Specifications|Karma Specifications]] (early draft) | ||
* Source Code stored in http://git. | * [[Karma/Anti-conventions|Anti-Conventions]] -- coding no-nos | ||
* | * [[Karma/Layout_Converted_Squeak_Lessons|Layout for converted Squeak Lessons]] | ||
* Source Code stored in http://git.olenepal.org/karma/karma | |||
* Each lesson must be in a folder named according to the schema "karma_Grade_Maths_title_WeekNo" where the week number is optional | |||
The following are valid names | |||
karma_3_Maths_LargestNumber_15 | |||
karma_2_English_MatchingPuzzle | |||
karma_6_Maths_AddingUpTo10_4 | |||
* Version Control and repository management see the [[Karma#Version_Control|Version Control]] section of this page | |||
* Unit testing is required for the karma.js library but not for individual lessons http://karma.sugarlabs.org/tests/ | |||
* Project Documentation kept in the Sugar Labs wiki | * Project Documentation kept in the Sugar Labs wiki | ||
* Coding conventions: Based | * Coding conventions: Based on [http://www.dojotoolkit.org/developer/StyleGuide Dojo Style Guide] | ||
** Use | ** Use sadCamelCase for function names and variables | ||
** Exception to above -- object constructors should start with a capital letter | ** Exception to above -- object constructors should start with a capital letter | ||
** | ** boolean variables should be prefixed with "is", "has", "can", or "should" | ||
** Whenever possible, use jslint | ** counters should be prefixed with "num" or "count" | ||
** Whenever possible, use [http://www.jslint.com/ jslint] | |||
* File naming conventions: lowercase letters, underscore instead of spaces (need to write more about it) | * File naming conventions: lowercase letters, underscore instead of spaces (need to write more about it) | ||
* Coding Pattern - We generally try to follow this coding pattern as it makes it easier to browse your code | |||
Put code in following order | |||
1) variable declarations | |||
2) method declarations | |||
3) method calls | |||
== Version Control == | |||
Currently all lessons are stored in the examples/ folder of [http://git.olenepal.org/karma/karma main karma repository] | |||
<strike> | |||
Here is how you can use the karma_lesson template to create a new repository from scratch | |||
$ git clone git://git.sugarlabs.org/karma_lesson/mainline.git | |||
$ mkdir ../karma_3_English_3 # create a new lesson directory following our naming convention | |||
$ cp -r * ../karma_3_English_3 | |||
$ cd ../karma_3_English_3 | |||
$ rm -r .git # make sure you get rid of the old git directory | |||
$ git init | |||
$ git add . | |||
$ git commit -a -m "first commit" | |||
Now go to the http://git.sugarlabs.org/projects/new, make sure you are logged in | |||
Create a new project, use the same name as you did for your lesson's main folder | |||
then, | |||
$ git remote add origin git://... # the pubic push url | |||
Then on to coding your lesson ;) | |||
From then on | |||
$ git push origin master # will sync your local tree w/ the server | |||
'''Tagging''' -- a karma lesson can be in only one of two states, stable or unstable. Any commit tagged 'stable' is the stable version of your code. Every other version of your code is unstable. We will not use numeric versioning such as 0.1, 1.0, 1.2, etc. for the foreseeable future. | |||
</strike> | |||
== | == Meetings == | ||
[[Karma:Meeting 21 December 2009]] | |||
== GSoC Project == | |||
Karma started as a GSoC project with Felipe Lopez Toledo "SubZero" as the student participant and [[USER:BryanWB| Bryan Berry]] as mentor. | |||
=== GSoC Meetings === | |||
Notes from GSoC meetings - kept for archival purposes | |||
* [[Karma:Meeting 12 May 2009]] | * [[Karma:Meeting 12 May 2009]] | ||
* [[Karma:Meeting 02 Jun 2009]] | * [[Karma:Meeting 02 Jun 2009]] | ||
| Line 111: | Line 147: | ||
* [[Karma:Meeting 18 Aug 2009]] | * [[Karma:Meeting 18 Aug 2009]] | ||
* [[Karma:Meeting 24 Aug 2009]] | * [[Karma:Meeting 24 Aug 2009]] | ||
* [[Karma:Meeting 08 Sep 2009]] | |||
* [[Karma:Meeting 14 Sep 2009]] | |||
* [[Karma:Meeting 21 Sep 2009]] | |||
* [[Karma:Meeting 21 December 2009]] | |||
== Project Roadmap == | |||
==== 0.1 "Osito" ==== | |||
Was completed September 11, 2009 | |||
* 1 Working example in "adding_up_to_10" | |||
* | * cleaned up documentation with jsdocs api documentation and cleaned up README.txt | ||
* | * integrate chakra and "adding_up_to_10" and knavbar | ||
* | * adding_up_to_10 works on the XO | ||
* | ** Surf | ||
* | ** Browse | ||
* | |||
==== 0.2 "Gatito" ==== | |||
Completed mid-December 2009 | |||
* unit testing added to karma.js using QUnit | |||
* | * API documented w/ jsdoc-toolkit | ||
* | * support for SVG and canvas animation | ||
* 3 working examples | |||
** Adding_Up_to_10 using both SVG and canvas | |||
** Quadrilaterals | |||
** "Conozco A Uruguay" done with karma -- 50% done | |||
==== 0.3 "niño" ==== | |||
Due 31 March 2010 | |||
* Full i18n support | |||
* All Squeak lessons converted to Karma | |||
* Integrate all of the existing E-Paath lesson into chakra | |||
* narwhal build script to build one giant karma bundle w/ all the E-Paath lessons inside it and chakra | |||
* At least 6 lessons ready that have been translated into 3 languages each | |||
* Version 0.1 draft of karma specification done | |||
==== | ==== Future Direction of Karma ==== | ||
No schedule yet. | |||
[[Karma/Future Direction|This page]] has more information. | |||
=== Library === | === Library === | ||
| Line 189: | Line 211: | ||
* http://www.smashingmagazine.com/2009/07/16/html5-and-the-future-of-the-web/ | * http://www.smashingmagazine.com/2009/07/16/html5-and-the-future-of-the-web/ | ||
* http://www.w3.org/TR/html5-diff/ Differences between html4 and html5 | * http://www.w3.org/TR/html5-diff/ Differences between html4 and html5 | ||
* [http://diveintohtml5.org/ Dive Into HTML5] | |||
General Web Design | General Web Design | ||
| Line 202: | Line 225: | ||
* http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html | * http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html | ||
SVG | |||
* The [http://www.w3.org/Graphics/SVG/IG/resources/svgprimer.html SVG Primer] a very detailed and in-depth resource | |||
* [http://raphaeljs.com/reference.html Raphaeljs documentation] | |||
* https://developer.mozilla.org/en/svg | |||
Javascript | Javascript | ||
* [http://eloquentjavascript.net Eloquent Javascript] best beginning javascript resource | |||
* "Javascript: The Good Parts" book by Doug Crockford | * "Javascript: The Good Parts" book by Doug Crockford | ||
* "jQuery in Action" book | * "jQuery in Action" book | ||
| Line 212: | Line 240: | ||
Coding Tools and Conventions | Coding Tools and Conventions | ||
* Firebug --- http://www.getfirebug.com | * Firebug --- http://www.getfirebug.com | ||
* Web-Inspector --- webkit's answer to firebug | |||
* Browsers --- We primarily work with Chromium and Firefox > 3.5 | |||
* For emacs users -- nxhtml mode and magit.el for working w/ git | * For emacs users -- nxhtml mode and magit.el for working w/ git | ||
* [http://www.jslint.com/ jslint] | |||
* [http://www.inkscape.org inkscape] | |||
* [http://narwhaljs.org narwhal] | |||
== Subpages == | == Subpages == | ||
{{Special:PrefixIndex/{{PAGENAMEE}}/}} | {{Special:PrefixIndex/{{PAGENAMEE}}/}} | ||