Changes

Line 1: Line 1: −
For new Activities:
+
== Documentation for activity authors ==
    Create a Gitorious project repository at http://git.sugarlabs.org/ and start hacking on your code! :-)
  −
    Request a trac component for your activity at http://dev.sugarlabs.org/
  −
    Open a trac ticket to request addition to Pootle our translation system (if your strings are mature)
  −
    Add your Activity to http://wiki.sugarlabs.org/go/Sugar_on_a_Stick/Roadmap if you want to be on the SoaS distro
     −
Do you have an idea for a new Activity you'd like to write but don't know how to begin?  Here's some advice:
+
See [[Activity Team/Resources]].
   −
1).  Don't try to write a Sugar Activity right away.  Instead, write a standalone Python program that does what you want, then convert it to a Sugar Activity, being sure to keep a copy of the non-Sugarized version around for future use.  There are several reasons for this, but the chief one is that standalone programs are easier to test, especially if you are not currently a Linux user.  A standalone Python program can run anywhere, but a Sugar Activity really needs Sugar running on top of Linux.  You can run your standalone Python program on an XO using the Terminal Activity.
+
== Checklist for new activities ==
   −
When I add new features to my Sugar Activities I generally try to get the feature working on the standalone version first. I did this with text to speech in Read Etexts, for instance. This was useful because when I ran into problems I had a standalone app I could send to the speech-dispatcher mailing list so they could easily recreate my problem.
+
* Create a GitHub project repository at http://github.com and start hacking on your code! :-)
 +
* Request a trac component for your activity at http://bugs.sugarlabs.org/
 +
* Open a trac ticket to request addition to http://translate.sugarlabs.org/ (when your strings are mature)
 +
* Add your Activity to http://wiki.sugarlabs.org/go/Sugar_on_a_Stick/Roadmap if you want to be on the SoaS distro
   −
2).  Sugar Activities are generally made with pygtk or pygame, and I believe pygtk is the more common of the two.  These are both cross platform and have online tutorials, as does Python itself:
+
* If your Activity is migrating over from the OLPC infrastructure, see: [[Activity_Team/How_to_migrate_from_OLPC|How to migrate from OLPC]].
   −
* http://www.python.org/
+
== When releasing an existing Activity ==
* http://www.pygtk.org/
  −
* http://www.pygame.org/news.html
     −
3). You'll want a good code-highlighting editor that understands Python. A couple of good ones:
+
* If you have one, update your wiki page at http://wiki.sugarlabs.org/go/Activities/<actvity-name>
 +
* Upload your new .xo bundle, screenshots, notes to http://activities.sugarlabs.org/
 +
* Unless your source code is already available through git, upload a .bz2 source tarball to shell.sugarlabs.org /upload/sugar/sources/honey (e.g., scp to download.sugarlabs.org:/srv/upload/sources/fructose/...)
 +
* Edit http://wiki.sugarlabs.org/go/Development_Team/Source_Code and make sure it's pointing to your latest source tarball
   −
* Eric: http://eric-ide.python-projects.org/eric4-download.html
+
== Before you write a new activity ==
* Gedit: http://projects.gnome.org/gedit/
     −
These are a bit more complicated to install than typical Windows programs. They are included in every Linux distribution, though.
+
Do you have an idea for a new Activity you'd like to write but don't know how to begin? Here's some advice:
   −
4)To make and test a Sugarized Activity you really should have a Linux distribution installed.  The best for this purpose is probably Fedora 10, which includes the Sugar environment, eric, gedit, python, pygame, pygtk, a tool for making SVG icons, and lots of other useful stuffYou can run Linux on the same computer as Windows XP (by partitioning your hard drive, something the Fedora installer will do for you) and choose which one you want to run at boot time.  Fedora 10 is no more difficult to install than Windows is, even if you want to run it and Windows on the same machine, and will run on hardware that would be inadequate for current versions of WindowsA Pentium III with 256 meg of RAM and a few gig of hard disk is more than adequate for Sugar development.
+
* Don't try to write a Sugar Activity right awayInstead, write a standalone Python program that does what you want, then convert it to a Sugar Activity, being sure to keep a copy of the non-Sugarized version around for future useThere are several reasons for this, but the chief one is that standalone programs are easier to test, especially if you are not currently a Linux user.  A standalone Python program can run anywhere, but a Sugar Activity really needs Sugar running on top of LinuxYou can run your standalone Python program on an XO using the Terminal Activity.
   −
The Sugar environment that comes with Fedora 10 should be adequate for creating ActivitiesIt is not the latest version of Sugar, but keep in mind that most XO laptops won't be running the latest Sugar either.
+
When I add new features to my Sugar Activities I generally try to get the feature working on the standalone version first.  I did this with text to speech in Read Etexts, for instanceThis was useful because when I ran into problems I had a standalone app I could send to the speech-dispatcher mailing list so they could easily recreate my problem.
   −
If you don't want to have anything to do with Linux you ''could'' make a standalone Python program and find a collaborator to Sugarize it for youYou could also attempt to develop your Activity using Sugar on a Stick, or an actual XO, but this would probably be more trouble than simply installing Fedora 10.
+
* You'll want a good code-highlighting editor that understands Python.  A couple of good ones:
 +
:* Eric: http://eric-ide.python-projects.org/eric4-download.html
 +
:* Gedit: http://projects.gnome.org/gedit/
 +
:These are a bit more complicated to install than typical Windows programsThey are included in every Linux distribution, though.
   −
5).  When you are ready to Sugarize your Python program, read these articles:
+
* To make and test a Sugarized Activity you really should have a Linux distribution installed.  The best for this purpose is probably Fedora, which includes the latest Sugar environment, eric, gedit, Python, pygame, PyGTK, a tool for making SVG icons, and lots of other useful stuff.  You can run Linux on the same computer as Windows (by partitioning your hard drive, something the Fedora installer will do for you) and choose which one you want to run at boot timeFedora is no more difficult to install than Windows is, even if you want to run it and Windows on the same machine, and will run on hardware that would be inadequate for current versions of Windows.  A Pentium III with 256 meg of RAM and a few gig of hard disk is more than adequate for Sugar development.
   −
* http://wiki.sugarlabs.org/go/Development_Team/Almanac
+
* If you don't want to have anything to do with Linux, you ''could'' make a standalone Python program and find a collaborator to Sugarize it for you. You could also attempt to develop your Activity using Sugar on a Stick, or an actual XO, but this would probably be more trouble than simply installing Fedora 10.
* http://wiki.laptop.org/go/Beyond_Hello_World
      
Feel free to ignore any of this advice if it doesn't seem applicable.  I hope that you'll find it gives you a place to start.
 
Feel free to ignore any of this advice if it doesn't seem applicable.  I hope that you'll find it gives you a place to start.
   −
See also: [[Activity_Team/Resources]] , [[Modifying_Activities]] and [[Activities/Turtle_Art/Patching]]
+
See also: [[Activity_Team/Resources]] , [[Activity_Team/Modifing_an_Activity]] and [[Activities/Turtle_Art/Patching]]
    
==Additional tips and common "gotchas"==
 
==Additional tips and common "gotchas"==