| 11 | |
| 12 | == Development Code == |
| 13 | |
| 14 | You can [http://inn.eyrie.org/trac/browser browse the INN repository] using the Browse Source option in Trac. To check out the current development source, install a Subversion client and run: |
| 15 | |
| 16 | {{{ |
| 17 | svn co http://inn.eyrie.org/svn/trunk inn |
| 18 | }}} |
| 19 | |
| 20 | This will check out CURRENT. For STABLE instead, use: |
| 21 | |
| 22 | {{{ |
| 23 | svn co http://inn.eyrie.org/svn/branches/2.4 inn-2.4 |
| 24 | }}} |
| 25 | |
| 26 | This public repository is updated every hour from the active development repository and may therefore lag behind by as much as an hour. |
| 27 | |
| 28 | You can also download [http://inn.eyrie.org/snapshots/ nightly snapshots]. Snapshots are produced only if the current code compiles and passes the test suite, so they have undergone at least some basic validation, although they've not been tested by a human. |
| 29 | |
| 30 | Please submit all patches against the current trunk, not against a stable release. The development version of INN is often much different than the last stable release. |
| 31 | |
| 32 | Maintainers of INN who have an account on inn.eyrie.org should use: |
| 33 | |
| 34 | {{{ |
| 35 | svn co svn+ssh://inn.eyrie.org/srv/svn/inn/trunk inn |
| 36 | svn co svn+ssh://inn.eyrie.org/srv/svn/inn/branches/2.4 inn-2.4 |
| 37 | }}} |
| 38 | |
| 39 | to check out the development repository. |