* Ikiwiki used to use svn as its RCS by default unless configured otherwise,

now it defaults to using no RCS unless configured to do so.
master
joey 2006-12-23 06:55:18 +00:00
parent 201d11da0a
commit f4e3e47e12
3 changed files with 17 additions and 3 deletions

View File

@ -38,7 +38,7 @@ sub defaultconfig () { #{{{
wikiname => "wiki",
default_pageext => "mdwn",
cgi => 0,
rcs => 'svn',
rcs => '',
notify => 0,
url => '',
cgiurl => '',

4
debian/changelog vendored
View File

@ -6,8 +6,10 @@ ikiwiki (1.37) UNRELEASED; urgency=low
* Avoid creating edit links when the cgi url is not known.
* Avoid displaying discussion links at all, if there's not a discussion
page, when the cgi url isn't known.
* Ikiwiki used to use svn as its RCS by default unless configured otherwise,
now it defaults to using no RCS unless configured to do so.
-- Joey Hess <joeyh@debian.org> Sat, 23 Dec 2006 01:17:54 -0500
-- Joey Hess <joeyh@debian.org> Sat, 23 Dec 2006 01:51:49 -0500
ikiwiki (1.36) unstable; urgency=low

View File

@ -28,4 +28,16 @@ If this is documented, sorry I missed it.
>> I don't see any way in my configuration file for disabling this.
>> (I should figure out what happened with the subversion commits too...)
>>
>> --JeremyReed
>> --JeremyReed
>>> Defaulting that to svn in a bug. Fixed. In general, there are defaults
>>> for various things configurable by the config file, but they should not
>>> cause suprising behavior like this. For example, it defaults to
>>> supporting discussion pages. (You can see all the defaults near
>>> the top of `IkiWiki.pm`).
>>>
>>> The svn backend would have noticed that your wiki is not in svn, and
>>> avoided doing anything, BTW.
>>>
>>> I've changed the default setting that was making it use svn, so this
>>> bug is [[bugs/done]] --[[Joey]]