]> sipb.mit.edu Git - ikiwiki.git/commitdiff
* Ikiwiki used to use svn as its RCS by default unless configured otherwise,
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Sat, 23 Dec 2006 06:55:18 +0000 (06:55 +0000)
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Sat, 23 Dec 2006 06:55:18 +0000 (06:55 +0000)
  now it defaults to using no RCS unless configured to do so.

IkiWiki.pm
debian/changelog
doc/bugs/HTML_is_not_update_nor_created_when_editing_markdown_via_CGI.mdwn

index 18f9ab3fed2c0053b149b3d95ae603363fc47362..b6a2a3649d83a608b1ea41e4d7d46695f0219460 100644 (file)
@@ -38,7 +38,7 @@ sub defaultconfig () { #{{{
        wikiname => "wiki",
        default_pageext => "mdwn",
        cgi => 0,
-       rcs => 'svn',
+       rcs => '',
        notify => 0,
        url => '',
        cgiurl => '',
index ce19d779c40e911626065c21f5c3354b0e871c96..3ae22f92c17c8c83428e93be2bf09c18037b3e51 100644 (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
 
index d9b18809d53f5805f6d06879eaf492fc0c4e4b37..b00dd46217895f92b99831b6c3a961fd9f4c330c 100644 (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
\ No newline at end of file
+>> --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]]