Ikiwiki w/ translations ======================= Ikiwiki[1] is a perl-based wiki compiler. This is routines to manage translatable parts of Ikiwiki and translations into the following locales: * danish (da) by Jonas Smedegaard Installation ------------ To pull in all translatable and translated parts, do this: make To remove all translatable and translated parts, and anything else below those directories without warning, do this: make ultraclean Source ------ These routines are available at http://source.jones.dk/ as a GIT repository. Pull it like this: git clone http://source.jones.dk/ikiwiki.git To publish your own forked repository through web, you need to create a special public repository that you "push" your changes into from your private working repository (the --all option is rewuired only initially) - like this: GIT_DIR=public_dir/repository_name.git git --bare init --shared chmod +x public_dir/repository_name.git/hooks/post-update git push --all To resyncronize an older fork of the repository, re-applying local changes on top of the newer upstream GIT source, do like this from within your local forked repository: git remote add ikiwiki http://source.jones.dk/ikiwiki.git git fetch ikiwiki git rebase ikiwiki/master ---- References: [1] http://ikiwiki.info/