Are there service hooks for github wiki repos? Is there some other mechanism that github provides for me to track wiki edits?

link|improve this question
feedback

1 Answer

up vote 4 down vote accepted

Push approach: Within the GitHub API documentation, you can find documentation about setting up service hooks which can be triggered for one or more events. The gollum event is especially raised any time a Wiki page is updated.

JSON based pull approach: You can also leverage the Events HTTP API to retreive a JSON formated output of what happens on GitHub, then apply some filtering in order to isolate the events of type GollumEvent.

Below a quick JQuery based sample

<html>
<head>
<title>Gollum events</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
    $.getJSON('https://api.github.com/repos/holman/spark/events?callback=?', function(data) {

        var list = $('#gollum-events');

        $.each(data.data, function(key, val) {
            if (val.type == "GollumEvent") {
                $.each(val.payload.pages, function(key2, val2) {
                    list.append('<li id="' + key + '.' + key2 + '"><a href="' + val2.html_url + '">' + val2.page_name + '</a> [' + val.actor.login + ' @ ' + val.created_at + ']</li>');
                });
            }
        });
    });
});
</script>
</head>
<body>
<ul id="gollum-events"/>
</body>
</html>

Atom based pull approach: Last but not least, you can subscribe to the wiki changes atom feed. Go to the GitHub Wiki section of the repository, select the Pages sub tab, hover onto the orange icon, copy the link and paste into your favorite rss reader.

subscribe to changes

link|improve this answer
The push approach is what I was looking for, thanks. Next request would be some nice way to render the diffs for edits - similar to what you can see using the normal github ui. – Eric Bloch Dec 26 '11 at 23:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.