Download 1. .bookmarks

Transcript
Download Source Code
Subversion Checkout of Source Code
Getting Subversion
How to Checkout
Geotools Repository
Download Source Code
Source code releases are made available on a monthly basis and are available on the downloads page.
http://sourceforge.net/projects/geotools/files
Source code encoding is UTF-8.
Subversion Checkout of Source Code
Geotools makes use of the Subversion revision control system. It is an advanced version management tool with the same command line syntax
as CVS.
You do not need any special permission to have read-only access to the source code. Please just check out the code and have fun.
If you are interested in getting commit permission later you can look into 4 Roles and Responsibilities...
Getting Subversion
Our 3 Subversion Optional Install contains everything you need to know - instructions for setting up svn on Windows and Lunix.
All of these instructs require the use of a specific config file.
DANGER
1. Download this config file:
config
2. Copy it to right location for your platform
Windows XP: C:\Documents and Settings\Pierrick\Application Data\Subversion\config
Windows Vista: C:\Users\Jody\AppData\Roaming\Subversion\config
Linux: ~/.subversion/config
If you do not do this binary and xml files may get messed up (subversion uses this config file to tell when to change linefeeds
between windows and linux)
How to Checkout
Source code checkout instructions:
1. Navigate to where you want the checkout with the command line
C:\java>
2. Checkout geotools using svn (a new directory "trunk" will be created):
C:\java>svn co http://svn.osgeo.org/geotools/trunk trunk
3. This will create a trunk directory that contains the source code for this project
You may also use subversion to checkout a stable version of geotools:
svn co http://svn.osgeo.org/geotools/branches/2.5.x stable
Take the time to read the subversion book before diving into subversion.