aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/Problem_with_editing_page_after_first_SVN_commit.mdwn
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-01-09 16:16:51 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-01-09 16:16:51 +0000
commit686d9518e34ca85fb91a654c54868f1036a5c3f3 (patch)
treea38ef443b9de7369065cbe3a7c35fe2d5b49c867 /doc/bugs/Problem_with_editing_page_after_first_SVN_commit.mdwn
parent8034090bf5c34f607169ace09a60b6b2a2e93b07 (diff)
downloadikiwiki-686d9518e34ca85fb91a654c54868f1036a5c3f3.tar
ikiwiki-686d9518e34ca85fb91a654c54868f1036a5c3f3.tar.gz
web commit by http://ptecza.myopenid.com/: Bug report
Diffstat (limited to 'doc/bugs/Problem_with_editing_page_after_first_SVN_commit.mdwn')
-rw-r--r--doc/bugs/Problem_with_editing_page_after_first_SVN_commit.mdwn51
1 files changed, 51 insertions, 0 deletions
diff --git a/doc/bugs/Problem_with_editing_page_after_first_SVN_commit.mdwn b/doc/bugs/Problem_with_editing_page_after_first_SVN_commit.mdwn
new file mode 100644
index 000000000..447a8bd1a
--- /dev/null
+++ b/doc/bugs/Problem_with_editing_page_after_first_SVN_commit.mdwn
@@ -0,0 +1,51 @@
+I have a strange problem with editing any page after its first SVN commit.
+I'm not sure whether it's my ikiwiki backport bug or my misunderstanding
+how ikiwiki works.
+
+Assume that I have Foo page with any content and I want to put there link
+to Bar page and next create the page. I do following steps:
+
+1. Click Edit link on Foo page
+
+2. Put the link to Bar page there and commit it by clicking "Save Page"
+ button
+
+ The Bar page is rendered correctly and now I can see ?Bar link. The URL
+ in the address bar of my browser is
+
+ http://my.host.com/wiki/foo.html?updated
+
+3. Click ?Bar link
+
+ Now I can see textarea for editing of page. It's empty, of course.
+
+ The page doesn't exists in my SVN repo yet and my Apache server knows
+ noting about it:
+
+ $ find /my/ikiwiki/src/dir/ -type f -name bar.mdwn
+ $ find /my/ikiwiki/dst/dir/ -type f -name bar.html
+
+4. Add some initial content and click "Save Page" button
+ to commit changes
+
+ The Foo page also is rendered correctly and now I can see what I wrote.
+ The URL in the address bar of my browser is
+
+ http://my.host.com/wiki/bar.html?updated
+
+ The page was added to the SVN repo and my Apache is able to serve it now:
+
+ $ find /my/ikiwiki/src/dir/ -type f -name bar.mdwn
+ /my/ikiwiki/src/dir/bar.mdwn
+ $ find /my/ikiwiki/dst/dir/ -type f -name bar.html
+ /my/ikiwiki/dst/dir/bar.html
+
+5. Change the content of Bar page by clicking Edit link
+
+ I can't do it, because the textarea is empty again. I have to run
+ `ikiwiki --setup ikiwiki.setup` command by hand to rebuild the page.
+ Then I can edit it.
+
+Where is my mistake?
+
+--Pawel \ No newline at end of file