summaryrefslogtreecommitdiff
path: root/README
blob: 963cb1ea9eb54ba879bac2b5dd1f3b3aa9844cf1 (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 first need to create a
  20. special public repository that you "push" your changes into from your private
  21. working repository - 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. To actually use your newly created public repository created above, you need to
  25. populate it with your current working repository (the --all option is only this
  26. once, not on subsequent pushes) - like this:
  27. git config remote.origin.url git-reference-to-public-repository
  28. git push --all
  29. To resyncronize an older fork of the repository, re-applying local changes on
  30. top of the newer upstream GIT source, do like this from within your local
  31. forked repository:
  32. git remote add ikiwiki http://source.jones.dk/ikiwiki.git
  33. git fetch ikiwiki
  34. git rebase ikiwiki/master
  35. ----
  36. References:
  37. [1] http://ikiwiki.info/