aboutsummaryrefslogtreecommitdiff
path: root/doc/tips
diff options
context:
space:
mode:
authorhttps://id.koumbit.net/anarcat <https://id.koumbit.net/anarcat@web>2016-05-16 17:40:24 -0400
committeradmin <admin@branchable.com>2016-05-16 17:40:24 -0400
commite13dc8bbc744411da0c256d61b389efe48b7aa11 (patch)
tree823166ae0a474e96a01ffbcfbaf7ce6222d9a2a1 /doc/tips
parent5f6f9a1beab327be2728d44c1996408176f6800e (diff)
downloadikiwiki-e13dc8bbc744411da0c256d61b389efe48b7aa11.tar
ikiwiki-e13dc8bbc744411da0c256d61b389efe48b7aa11.tar.gz
add details on bot setup
Diffstat (limited to 'doc/tips')
-rw-r--r--doc/tips/monitor_page_changes_through_IRC.mdwn11
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/tips/monitor_page_changes_through_IRC.mdwn b/doc/tips/monitor_page_changes_through_IRC.mdwn
index 3c5d17ed4..b958b8906 100644
--- a/doc/tips/monitor_page_changes_through_IRC.mdwn
+++ b/doc/tips/monitor_page_changes_through_IRC.mdwn
@@ -9,3 +9,14 @@ the workaround I found so far was to join the `#ikiwiki` channel on freenode, an
this will watch for any change to this page. -- [[anarcat]]
hello anarcat, I'm editing your page! -- [[micah]]
+
+obviously, the above assumes that the wiki is already configured to send notifications on IRC when commits are done through the git repository. there are multiple ways of doing that, which somewhat fall outside the scope of Ikiwiki itself, since you should really learn how to do this elsewhere. All you need to know is that the hook needs to be in `repository.git/hooks/post-receive` file.
+
+there are basically two alternatives now:
+
+* [KGB](https://kgb.alioth.debian.org/) - a Perl script that has been running at Debian since 2009
+* [irker](http://www.catb.org/esr/irker/) - a Python script whipped up by ESR in the fall of CIA.vc (~2011), ignoring the existing KGB bot
+
+KGB is harder to setup ([tutorial](https://www.donarmstrong.com/posts/switching_to_kgb/)), as it , but more reliable than irker, in my experience. --[[anarcat]]
+
+See also [[todo/ikibot]] for another bot idea.