Metadata-Version: 1.0
Name: pd.subversion.notify
Version: 0.0.2
Summary: This programm used in subversion postcommit hook to send list of modified files to xmlrpc server
Home-page: http://www.dreambot.ru/product/DreamBotOtherReleases/pd.subversion.notify
Author: Andrey Orlov
Author-email: cray@neural.ru
License: GPL v2.1
Description: Short package description
        =========================
        
        Package developed to provide possibility send notification
        to xmlrpc-servers when data in svn has been updated.
        
        Package provide utility:
        
        pdsubversionnotify.py
        The program started, read update list from file and
        send it to server. When file and acquired it truncated.
        
        Used:
        
        pdsubversionnotify.py  <URL XMLRPC> <EXCHANGE FILE>
        
        
        Sample
        ------
        
        In subversion post-commit-hook please, write ::
        
        #!/bin/sh
        REPOS="$1"
        REV="$2"
        
        export LC_ALL=ru_RU.UTF-8
        svnlook changed --revision $REV $REPOS|
        grep -v "^D" |
        cut -b 5-|
        awk '{print "https://code.dreambot.ru/svn/"$0}' >>/var/tmp/allfiles.txt
        
        pdsubversionnotify <URL XMLRPC> /var/tmp/allfiles.txt
        
        
        
        
        
        * Tue Nov 20 2007 Andrey Orlov <cray@neural.ru> 0.0.2
        - Bugs with "t" switch fixed
        
        * Sun Nov 11 2007 Andrey Orlov <cray@neural.ru> 0.0.1
        - first official release
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Programming Language :: Python
Classifier: Operating System :: OS Independent
