summaryrefslogtreecommitdiff
path: root/doc/ikiwiki.setup
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-06-02 05:43:58 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-06-02 05:43:58 +0000
commite087ae639f5a72cce6b4bc08399841c20951cb5f (patch)
treee82b3a5ba4dd811916fc318dddc2cee0de07a310 /doc/ikiwiki.setup
parent8bd6e9732a07c03507e34acb83e9f55b0a99dc37 (diff)
improve the ikiwiki.setup for git, hope I got everything right
Diffstat (limited to 'doc/ikiwiki.setup')
-rw-r--r--doc/ikiwiki.setup32
1 files changed, 23 insertions, 9 deletions
diff --git a/doc/ikiwiki.setup b/doc/ikiwiki.setup
index cda524ae1..89a331790 100644
--- a/doc/ikiwiki.setup
+++ b/doc/ikiwiki.setup
@@ -16,31 +16,45 @@ use IkiWiki::Setup::Standard {
url => "http://myhost/wiki",
cgiurl => "http://myhost/ikiwiki.cgi",
- #historyurl => "http://svn.myhost/trunk/[[file]]",
#diffurl => "http://svn.someurl/trunk/[[file]]?root=wiki&r1=[[r1]]&r2=[[r2]]",
#templatedir => "/usr/share/ikiwiki/templates",
- #rcs => "", # don't use svn
- rcs => "svn", # use svn (the default)
+ # Subversion stuff.
+ rcs => "svn",
+ #historyurl => "http://svn.myhost/trunk/[[file]]",
svnrepo => "/svn/wiki",
svnpath => "trunk",
+ # Git stuff.
+ #rcs => "git",
+ #historyurl => "http://git.host/gitweb.cgi?p=wiki.git;a=history;f=[[file]]",
+
wrappers => [
+ #{
+ # # The cgi wrapper.
+ # cgi => 1,
+ # wrapper => "/var/www/wiki/ikiwiki.cgi",
+ # wrappermode => "06755",
+ #},
{
- # The svn wrapper.
+ # The svn post-commit wrapper.
# Note that this will overwrite any exsting
# post-commit hook script, which may not be
# what you want.
- wrapper => "/svn/wiki/hooks/post-commit",
+ wrapper => "/svn/wikirepo/hooks/post-commit",
wrappermode => "04755",
# Enable mail notifications of commits.
notify => 1,
},
#{
- # # The cgi wrapper.
- # cgi => 1,
- # wrapper => "/var/www/wiki/ikiwiki.cgi",
- # wrappermode => "06755",
+ # # The git post-update wrapper.
+ # # Note that this will overwrite any exsting
+ # # post-commit hook script, which may not be
+ # # what you want.
+ # wrapper => "/git/wikirepo/hooks/post-update",
+ # wrappermode => "04755",
+ # # Enable mail notifications of commits.
+ # notify => 1,
#},
],