Changes between Version 5 and Version 6 of NewParrotDeveloperGuide
- Timestamp:
- 12/10/08 17:09:49 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
NewParrotDeveloperGuide
v5 v6 8 8 9 9 * [http://perl.org Perl] 10 * perl-doc10 * [http://perldoc.perl.org/perldoc.html perldoc] (provided by package {{{perl-doc}}} on Debian/Ubuntu). 11 11 * [http://subversion.tigris.org/ subversion] 12 12 * [http://freshmeat.net/projects/diffstat/ diffstat] … … 16 16 If your going to become part of the development team, you'll need to check out a local copy of the source code. You can visit the [http://www.parrotcode.org/source.html download] page on the main Parrot web site for full details. You'll need to make sure you have the following already installed on your machine. 17 17 18 Assuming you've got Perl, perl -doc and Subversion installed you'll be doing something like this.18 Assuming you've got Perl, perldoc and Subversion installed you'll be doing something like this. 19 19 20 20 {{{ … … 46 46 == Learning Parrot == 47 47 48 You've downloaded, configured, compiled, tested and created the html documentation for Parrot. Now it's time to start reading. Parrots source documentation is stored in [http://en.wikipedia.org/wiki/Plain_Old_Documentation POD] format. If you ran make html you can the view the documentation as html. The file docs/html/index.html is the place to start. An alternative and more flexible method for viewing the documentation is to use [http://search.cpan.org/dist/Pod-Perldoc/lib/perldoc.pod perl -doc] to view the actual pod files. Perldoc will allow you to view the pod files formated as man pages. It cannot be stressed enough how important it is to read the documentation for this project.48 You've downloaded, configured, compiled, tested and created the html documentation for Parrot. Now it's time to start reading. Parrots source documentation is stored in [http://en.wikipedia.org/wiki/Plain_Old_Documentation POD] format. If you ran make html you can the view the documentation as html. The file docs/html/index.html is the place to start. An alternative and more flexible method for viewing the documentation is to use [http://search.cpan.org/dist/Pod-Perldoc/lib/perldoc.pod perldoc] to view the actual pod files. Perldoc will allow you to view the pod files formated as man pages. It cannot be stressed enough how important it is to read the documentation for this project. 49 49 50 50 The bare minimum reading needed to get you off the ground is: