Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

All of the documentation is maintained in a separate SVN repository to facilitate independent updates.

Checkout 1. Checkout the SVN repository.

Code Block
languagebash
svn checkout https://svn.apache.org/repos/asf/knox knox-site
cd knox-site
vi trunk/books/0.6.0/{section}.md
svn diff > KNOX-nnn.patch

2. Edit site or documentation files.  Note that there are no version branches in the SVN repo.  Each version of the guides are maintained in separate directories identified by {version} in the example command blow.  In addition, most of the guides are in Markdown format and are broken into multiple sections as indicated by {section}.md in the command below.

bash
Code Block
language
vi trunk/books/{version}/{section}.md

3. Create a patch.  We recommend naming the patch using the JIRA ID.  Upload the patch to the JIRA and request review from a committer.

bash
Code Block
language
svn diff > KNOX-nnn.patch

...