aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/blog_posts_not_added_to_mercurial_repo.mdwn
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-03-05 17:13:24 -0500
committerJoey Hess <joey@kodama.kitenet.net>2008-03-05 17:13:24 -0500
commit90e3639281ffe65b4b882d5c29fde361f2483303 (patch)
tree87d3a13e556a4d65740ab61cb05ad2df5a7a73f6 /doc/bugs/blog_posts_not_added_to_mercurial_repo.mdwn
parent6352310f5cb687b7276798f3e3a9a2ee54f453f1 (diff)
downloadikiwiki-90e3639281ffe65b4b882d5c29fde361f2483303.tar
ikiwiki-90e3639281ffe65b4b882d5c29fde361f2483303.tar.gz
response
Diffstat (limited to 'doc/bugs/blog_posts_not_added_to_mercurial_repo.mdwn')
-rw-r--r--doc/bugs/blog_posts_not_added_to_mercurial_repo.mdwn5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/bugs/blog_posts_not_added_to_mercurial_repo.mdwn b/doc/bugs/blog_posts_not_added_to_mercurial_repo.mdwn
index 1d5ca2d0c..93d0aaf9f 100644
--- a/doc/bugs/blog_posts_not_added_to_mercurial_repo.mdwn
+++ b/doc/bugs/blog_posts_not_added_to_mercurial_repo.mdwn
@@ -7,3 +7,8 @@ It seems that, when adding a blog post, it is not immediately commited to the me
When I add a blog post, I see it on the wiki but it doesn't appear on `History` or `RecentChanges`. If I run `hg status` on the wiki source dir, I see the new file has been marked as `A` (ie, a new file that has not been commited).
If I then edit the blog post, **then** the file gets commited and I can see the edit on `History` and `RecentChanges`. The creation of the file remains unrecorded. --[[buo]]
+
+> Ikiwiki calls `rcs_add()` if the page is new, followed by `rcs_commit()`.
+> For mercurial, these run respectively `hg add` and `hg commit`. If the
+> add or commit fails, it will print a warning to stderr, you might check
+> apache's error.log to see if there's anything there. --[[Joey]]