[1] | 1 | svnbot -- A commit notification bot |
---|
| 2 | |
---|
| 3 | As nice as the CIA Open Source Notification System[1] is, I wanted |
---|
| 4 | something a little more simple. I was not overly interested in |
---|
| 5 | statistics, and Trac[2] provides most of what I need in a web-based |
---|
| 6 | interface to Subversion[3], I just wanted a simple IRC bot that would |
---|
| 7 | alert people when something is committed to a repository. |
---|
| 8 | |
---|
| 9 | |
---|
| 10 | REQUIREMENTS |
---|
| 11 | |
---|
| 12 | svnbot is written in Python, and uses the Twisted API: |
---|
| 13 | |
---|
| 14 | * Python (>=2.2), from http://python.org/ |
---|
| 15 | * Twisted 1.3, from http://twistedmatrix.com/ (untested in Twisted 2) |
---|
| 16 | |
---|
| 17 | |
---|
| 18 | USAGE |
---|
| 19 | |
---|
| 20 | Twisted provides packaging facilities to supposedly make things easy on |
---|
| 21 | running and configuring Twisted applications, but I haven't done that |
---|
| 22 | yet. :) |
---|
| 23 | |
---|
| 24 | Instead, edit svnbot.py to change the IRC server and channel, and run with: |
---|
| 25 | |
---|
| 26 | twistd -oy svnbot.py |
---|
| 27 | |
---|
| 28 | |
---|
| 29 | TODO |
---|
| 30 | |
---|
| 31 | * Stuff |
---|
| 32 | |
---|
| 33 | |
---|
| 34 | LICENSE |
---|
| 35 | |
---|
| 36 | Svnbot is free software; you can redistribute it and/or modify |
---|
| 37 | it under the terms of the GNU General Public License as published by |
---|
| 38 | the Free Software Foundation; either version 2 of the License, or |
---|
| 39 | (at your option) any later version. |
---|
| 40 | |
---|
| 41 | Svnbot is distributed in the hope that it will be useful, |
---|
| 42 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 43 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 44 | GNU General Public License for more details. |
---|
| 45 | |
---|
| 46 | You should have received a copy of the GNU General Public License |
---|
| 47 | along with Svnbot; if not, write to the Free Software |
---|
| 48 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
---|
| 49 | |
---|
| 50 | ---- |
---|
| 51 | 1. http://cia.navi.cx/ |
---|
| 52 | 2. http://www.edgewall.com/trac/ |
---|
| 53 | 3. http://subversion.tigris.org/ |
---|