summaryrefslogtreecommitdiff
path: root/README
blob: f94aedcf8c14382277cc32e97628735a9891289c (plain)
  1. Ikiwiki w/ translations
  2. =======================
  3. Ikiwiki[1] is a perl-based wiki compiler.
  4. This is routines to manage translatable parts of Ikiwiki and translations into
  5. the following locales:
  6. * danish (da) by Jonas Smedegaard <dr@jones.dk>
  7. Installation
  8. ------------
  9. To pull in all translatable and translated parts, do this:
  10. make
  11. To remove all translatable and translated parts, and anything else below those
  12. directories without warning, do this:
  13. make ultraclean
  14. Source
  15. ------
  16. These routines are available at http://source.jones.dk/ as a GIT repository.
  17. Pull it like this:
  18. git clone http://source.jones.dk/ikiwiki.git
  19. To publish your own forked repository through web, you need to create a special
  20. public repository that you "push" your changes into from your private working
  21. repository (the --all option is rewuired only initially) - like this:
  22. GIT_DIR=public_dir/repository_name.git git --bare init --shared
  23. chmod +x public_dir/repository_name.git/hooks/post-update
  24. git push --all
  25. To resyncronize an older fork of the repository, re-applying local changes on
  26. top of the newer upstream GIT source, do like this from within your local
  27. forked repository:
  28. git remote add ikiwiki http://source.jones.dk/ikiwiki.git
  29. git fetch ikiwiki
  30. git rebase ikiwiki/master
  31. ----
  32. References:
  33. [1] http://ikiwiki.info/