snufkin / bot_commit

Format (git) commit messages and post them on IRC

Home Page:http://drupal.org/project/bot_commit

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

$Id$

About
=====

This is a Drupal module using the Drupal IRC bot (http://drupal.org/project/bot). It implements an XML-RPC method
to receive details of commits. 

Setup
=====

1. On the site where you run the bot just install the module and set the message key.
2. Copy the PHP script and the xmlrpc.inc from the scripts directory to the server where you push your commits. 
3. Edit and set the key to the one you just configured above, also set the server to your bot server.
4. Edit the post-receive hook in your repository, to have eg: /usr/share/bin/php /home/git/git-irc.php

Example
=======
Post-receive hook with repository name extraction (expects a repository name <myproject>.git):

#!/bin/sh                                                                                                                                                                                                     ACTIVE_TREE=`pwd`
PROJECT=`echo "$ACTIVE_TREE" | sed -e "s/.*repositories\/\(.*.git\)/\1/"`
/usr/bin/php /Users/balu/projects/git-irc.php $PROJECT


TODO
====

Currently only git is supported, and even there only one commit message works per push.
Add support for github.

About

Format (git) commit messages and post them on IRC

http://drupal.org/project/bot_commit


Languages

Language:PHP 86.5%Language:Python 13.5%