]> sipb.mit.edu Git - ikiwiki.git/blob - doc/forum/Various_ways_to_use_Subversion_with_ikiwiki.mdwn
(no commit message)
[ikiwiki.git] / doc / forum / Various_ways_to_use_Subversion_with_ikiwiki.mdwn
1 [[!meta date="2007-08-17 03:54:10 +0000"]]
2
3 I'm playing around with various ways that I can use subversion with ikiwiki.
4
5 * Is it possible to have ikiwiki point to a subversion repository which is on a different server?  The basic checkin/checkout functionality seems to work but there doesn't seem to be any way to make the post-commit hook work for a non-local server?
6
7 > This is difficult to do since ikiwiki's post-commit wrapper expects to
8 > run on a machine that contains both the svn repository and the .ikiwiki
9 > state directory. However, with recent versions of ikiwiki, you can get
10 > away without running the post-commit wrapper on commit, and all you lose
11 > is the ability to send commit notification emails.
12
13 > (And now that [[recentchanges]] includes rss, you can just subscribe to
14 > that, no need to worry about commit notification emails anymore.)
15
16 * Is it possible / sensible to have ikiwiki share a subversion repository with other data (either completely unrelated files or another ikiwiki instance)?  This works in part but again the post-commit hook seems problematic.
17
18 --[[AdamShand]]
19
20 > Sure, see ikiwiki's subversion repository for example of non-wiki files
21 > in the same repo. If you have two wikis in one repository, you will need
22 > to write a post-commit script that calls the post-commit wrappers for each
23 > wiki. --[[Joey]]