diff -uNr spinner-wiki-20021218/cgi-bin/wiki.cfg spinner-wiki-20021218-rhpath/cgi-bin/wiki.cfg --- spinner-wiki-20021218/cgi-bin/wiki.cfg Tue Oct 29 22:31:57 2002 +++ spinner-wiki-20021218-rhpath/cgi-bin/wiki.cfg Mon Jan 27 20:47:49 2003 @@ -41,12 +41,12 @@ # Note: BASE HREF will not work in templates unless the # full URL is used. -$baseUrl = "http://spinner-wiki.sourceforge.net"; +$baseUrl = "http://wiki.mydomain.com"; # baseDir may be used in the other config variables # if they were all relative to a common base. -$baseDir = "/home/groups/s/sp/spinner-wiki"; +$baseDir = "/var/wiki"; # the cgi folder, containing view.pl save.pl etc. $scriptUrl = "$baseUrl/cgi-bin"; diff -uNr spinner-wiki-20021218/cgi-bin/wiki.pm spinner-wiki-20021218-rhpath/cgi-bin/wiki.pm --- spinner-wiki-20021218/cgi-bin/wiki.pm Mon Dec 9 01:34:52 2002 +++ spinner-wiki-20021218-rhpath/cgi-bin/wiki.pm Mon Jan 27 17:20:18 2003 @@ -221,7 +221,7 @@ sub readVersion { my( $name, $rev) = @_; - return `/usr/local/bin/co -q -p$rev $textDir/$name.txt`; + return `/usr/bin/co -q -p$rev $textDir/$name.txt`; } @@ -289,7 +289,7 @@ if ($useRCS) { my( $topic) = @_; - my $tmp= `/usr/local/bin/rlog -h $textDir/$topic.txt`; + my $tmp= `/usr/bin/rlog -h $textDir/$topic.txt`; $tmp =~ /head: (.*?)\n/; return $1; } else { @@ -347,7 +347,7 @@ if ($oldText ne $text) { if ($saveToRCS and $oldText and ($oldAuthor ne $userName)) { # Backup old content to RCS if the user has changed. - `/usr/local/bin/ci -l -q -mnone -t-none -w'$userName' $name` + `/usr/bin/ci -l -q -mnone -t-none -w'$userName' $name` #(why was that back-quoted?) }