Developers/Documentation: Difference between revisions

From OLPC
Jump to navigation Jump to search
(→‎Tutorials: Better link)
(Added translation templates)
 
(8 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Developers}}
{{Developers}}
{{Translations}}
[[Developers/Communication|Previous]] [[Developers/FAQ|Next]]
[[Developers/Communication|Previous]] [[Developers/FAQ|Next]]


By the point, you should have a working Sugar environment (or a substitute for it), a project idea, and an idea how and where to ask for help if you have problems. The next step is to actually start coding.
By this point, you should have a working Sugar environment (or a substitute for it), a project idea, and an idea how and where to ask for help if you have problems. The next step is to actually start coding.


= Tutorials =
= Tutorials =
Line 13: Line 14:
* [[Game development HOWTO]] -- 5-minutes to your first activity in [[Pygame]]
* [[Game development HOWTO]] -- 5-minutes to your first activity in [[Pygame]]


[[Developers/Stack#EToys|EToys]]/Smalltalk developers will want to start with [[Smalltalk Development on XO]].
[[Developers/Stack#Etoys|Etoys]]/Smalltalk developers will want to start with [[Smalltalk Development on XO]].

Other developers will want to read about [[Sugarizing]] non-Python applications.


= Reference =
= Reference =
Line 32: Line 35:


* The [[:Category:Developers | Developer's Category]] collects everything in the wiki that's been tagged as pertaining to developers (it's a bit hard to navigate)
* The [[:Category:Developers | Developer's Category]] collects everything in the wiki that's been tagged as pertaining to developers (it's a bit hard to navigate)
* [[Developers Program]] focuses on development for the core system, but with information useful for activity developers as well
* [[Sugar Code Snippets]] a few canonical code fragments that may be of use when coding in PyGTK
* [[Sugar Code Snippets]] a few canonical code fragments that may be of use when coding in PyGTK


Line 44: Line 46:


Helping organize the wiki (the web site you are currently reading) to better document the platform and development process would also be very helpful.
Helping organize the wiki (the web site you are currently reading) to better document the platform and development process would also be very helpful.

== Wade's handy links list ==

Pulling the source to an existing activity from Git:

* [[Git]]

Creating a new activity:

* [[Activity tutorial]]
* [[Sugar Code Snippets]]
* http://dev.laptop.org/~cscott/joyride-1477-api/

For PyGTK activities:

* [[PyGTK]]
* [[PyGTK/Hello World Tutorial]]
* [[Beyond Hello World]]
* http://www.pygtk.org/docs/pygtk/index.html

For PyGame activities:

* [[Pygame]]
* http://pygame.org/docs/ref/index.html

For video playback using gstreamer:

* http://pygstdocs.berlios.de/pygst-reference/index.html

For supporting collaboration:

* [[Activity sharing]]

Submitting to OLPC:

* [[Project hosting]]
* [[Importing your project]]


[[Developers/Communication|Previous]] [[Developers/FAQ|Next]]
[[Developers/Communication|Previous]] [[Developers/FAQ|Next]]

Latest revision as of 04:56, 22 May 2011

  Please copy/paste "{{Translationlist | xx | origlang=en | translated={{{translated}}}}}" (where xx is ISO 639 language code for your translation) to Developers/Documentation/translations HowTo [ID# 256298]  +/-  

Previous Next

By this point, you should have a working Sugar environment (or a substitute for it), a project idea, and an idea how and where to ask for help if you have problems. The next step is to actually start coding.

Tutorials

PyGTK developers will find a collection of Tutorials available, from very simple Hello World projects to an in-depth description of the development of Block Party.

Pygame developers will likely want to start with:

Etoys/Smalltalk developers will want to start with Smalltalk Development on XO.

Other developers will want to read about Sugarizing non-Python applications.

Reference

  • API Reference -- pointers to the various libraries' reference documentation.

You can also run the pydoc script on an XO in order to have browseable pydoc documentation locally. To do this, open a Terminal activity and run:

 pydoc -p 8080

then open a Web Browser activity and go to the url:

 http://localhost:8080/

to view the documentation. This approach works best with Python-coded libraries which have spent some time on their docstrings (and generally requires that you know English, as most docstrings are written in English).

Resources

  • The Developer's Category collects everything in the wiki that's been tagged as pertaining to developers (it's a bit hard to navigate)
  • Sugar Code Snippets a few canonical code fragments that may be of use when coding in PyGTK

FAQ

The Developer's FAQ is large enough to merit its own page in the Developer's manual.

Contributing

As with most Open Source software projects, we have difficulties with documentation. We are very interested in finding people interested in documenting the system. If you are too shy about your coding skills to write code, helping us document the code-base would be an amazing and valuable contribution.

Helping organize the wiki (the web site you are currently reading) to better document the platform and development process would also be very helpful.

Wade's handy links list

Pulling the source to an existing activity from Git:

Creating a new activity:

For PyGTK activities:

For PyGame activities:

For video playback using gstreamer:

For supporting collaboration:

Submitting to OLPC:

Previous Next