1 I have a strange problem with editing any page after its first SVN commit.
2 I'm not sure whether it's my ikiwiki backport bug or my misunderstanding
5 Assume that I have Foo page with any content and I want to put there link
6 to Bar page and next create the page. I do following steps:
8 1. Click Edit link on Foo page
10 2. Put the link to Bar page there and commit it by clicking "Save Page"
13 The Bar page is rendered correctly and now I can see ?Bar link. The URL
14 in the address bar of my browser is
16 http://my.host.com/wiki/foo.html?updated
20 Now I can see textarea for editing of page. It's empty, of course.
22 The page doesn't exists in my SVN repo yet and my Apache server knows
25 $ find /my/ikiwiki/src/dir/ -type f -name bar.mdwn
26 $ find /my/ikiwiki/dst/dir/ -type f -name bar.html
28 4. Add some initial content and click "Save Page" button
31 The Foo page also is rendered correctly and now I can see what I wrote.
32 The URL in the address bar of my browser is
34 http://my.host.com/wiki/bar.html?updated
36 The page was added to the SVN repo and my Apache is able to serve it now:
38 $ find /my/ikiwiki/src/dir/ -type f -name bar.mdwn
39 /my/ikiwiki/src/dir/bar.mdwn
40 $ find /my/ikiwiki/dst/dir/ -type f -name bar.html
41 /my/ikiwiki/dst/dir/bar.html
43 5. Change the content of Bar page by clicking Edit link
45 I can't do it, because the textarea is empty again. I have to run
46 `ikiwiki --setup ikiwiki.setup` command by hand to rebuild the page.