diff options
author | Jonas Smedegaard <dr@jones.dk> | 2008-08-10 12:58:45 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2008-08-10 12:58:45 +0200 |
commit | 3cfc45e2c94843a39ccd9ed4e667d30bae4cd41d (patch) | |
tree | f3beb820324a70bf3bd2d7ccdae4cf081db6b8c9 | |
parent | cf9d7b60d46c218c2fedc825922b5b1081a40ca3 (diff) | |
parent | 4b7c6e85f816bee9b1ba41f92ba6039add137e25 (diff) |
Merge branch 'master' into clean
Conflicts (manually resolved):
Makefile
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | ikiwiki.setup | 26 |
2 files changed, 16 insertions, 16 deletions
@@ -2,11 +2,11 @@ SOURCES = ikiwiki ikiwiki_ORIGIN = git://source.jones.dk/ikiwiki_MODULE ikiwiki_MODULES = templates basewiki smiley -ikiwiki_basewiki_FLAVORS = nonedit -ikiwiki_templates_FLAVORS = nonedit +#ikiwiki_basewiki_FLAVORS = nonedit +#ikiwiki_templates_FLAVORS = nonedit ikiwiki_POMODULES = basewiki smiley ikiwiki_BRANCH = clean-FLAVOR-LOCALE -ikiwiki_LOCALES = da nb +#ikiwiki_LOCALES = da nb ikiwiki_POLOCALES = da #dummy_MODULES = content_dummy diff --git a/ikiwiki.setup b/ikiwiki.setup index 5a5e016..fe84823 100644 --- a/ikiwiki.setup +++ b/ikiwiki.setup @@ -11,26 +11,26 @@ use IkiWiki::Setup::Standard { adminemail => 'me@example.org', # Be sure to customise these.. - srcdir => "/path/to/source", - destdir => "/var/www/wiki", + srcdir => $ENV{'HOME'} . "/private_webdata/examplewiki/content", + destdir => $ENV{'HOME'} . "/public_websites/wiki.example.org/wiki", - url => "http://example.org/wiki", - cgiurl => "http://example.org/wiki/ikiwiki.cgi", - #templatedir => "/usr/share/ikiwiki/templates", - #underlaydir => "/usr/share/ikiwiki/basewiki", + url => "http://wiki.example.org", + cgiurl => "http://wiki.example.org/ikiwiki.cgi", + templatedir => $ENV{'HOME'} . "/private_webdata/samplewiki/templates", + underlaydir => $ENV{'HOME'} . "/private_webdata/samplewiki/basewiki", # Git stuff. #rcs => "git", - #historyurl => "http://git.example.org/gitweb.cgi?p=wiki.git;a=history;f=[[file]]", - #diffurl => "http://git.example.org/gitweb.cgi?p=wiki.git;a=blobdiff;h=[[sha1_to]];hp=[[sha1_from]];hb=[[sha1_parent]];f=[[file]]", - #gitorigin_branch => "origin", + #historyurl => "http://git.example.org/?p=samplewiki_content.git;a=history;f=[[file]]", # ;hb=master + #diffurl => "http://git.example.org/?p=samplewiki_content.git;a=blobdiff;h=[[sha1_to]];hp=[[sha1_from]];hb=[[sha1_parent]];f=[[file]]", + #gitorigin_branch => "samplewiki", #gitmaster_branch => "master", wrappers => [ #{ # # The cgi wrapper. # cgi => 1, - # wrapper => "/var/www/wiki/ikiwiki.cgi", + # wrapper => $ENV{'HOME'} . "/public_cgi/wiki.example.org/ikiwiki.cgi", # wrappermode => "06755", #}, #{ @@ -38,7 +38,7 @@ use IkiWiki::Setup::Standard { # # Note that this will overwrite any existing # # post-update hook script, which may not be # # what you want. - # wrapper => "/git/wiki.git/hooks/post-update", + # wrapper => $ENV{'HOME'} . "/public_websites/git.example.org/samplewiki_content.git/hooks/post-update-ikiwiki", # wrappermode => "06755", #}, ], @@ -95,7 +95,7 @@ use IkiWiki::Setup::Standard { # If you want to disable any of the default plugins, list them here. #disable_plugins => [qw{inline htmlscrubber passwordauth openid}], # To add a directory to the perl search path, use this. - #libdir => "/home/me/.ikiwiki/", + #libdir => "/home/me/private_webdata/samplewiki/perl", # To override environment variable settings, you can list values here. #ENV => { @@ -141,7 +141,7 @@ use IkiWiki::Setup::Standard { #amazon_s3_key_id => 'XXXXXXXXXXXXXXXXXXXX', # And a file holding your secret key. This file *must* not be # readable by others! - #amazon_s3_key_file => "/home/me/.hide/.s3_key + #amazon_s3_key_file => "/home/me/secret_webdata/s3_key # The globally unique name of the bucket to use to store the wiki. #amazon_s3_bucket => "mywiki", # A prefix to prepend to each page name. |