For Developers only

This info is here for developers only. If you don't understand it, it's not for you.

  1. Create apidocs with pydoctor
  2. let's create a branch from trunk in svn:
  3. and merge that branch back into trunk, more precisely into a current trunk …



Create apidocs with pydoctor

pydoctor --add-package=./coherence \
         --html-output=docs/apidocs \
         --system-class=pydoctor.twistedmodel.TwistedSystem \
         --project-url=https://coherence.beebits.net \
         --project-name="Coherence" \
         --make-html \
         --html-viewsource-base=/browser/trunk \
         --html-use-sorttable \
         --html-use-splitlinks \
         --html-shorten-lists

let's create a branch from trunk in svn:

svn copy [-r nnn] https://coherence.beebits.net/svn/trunk/Coherence \
         https://coherence.beebits.net/svn/branches/u-name-it \
         -m "creating a branch"

and merge that branch back into trunk, more precisely into a current trunk working copy:

svn merge -r <branch-copy-revision>:<last-branch-revision> https://coherence.beebits.net/svn/branches/u-name-it
svn commit -m "merged all u-name-it branch changes <branch-copy-revision>:<last-branch-revision> back into trunk."