##// END OF EJS Templates
diff parser: match the header order of hg diff --git patches...
diff parser: match the header order of hg diff --git patches The output might look like: diff --git a/A b/B old mode 100644 new mode 100755 rename from A rename to B --- a/A +++ b/B Such files were shown as 'modified binary file chmod 100644 => 100755' without diff. Now the chmod and diff will be shown ... but still not the rename. Correct parsing of headers do require a better parser - one do not just use a regexp.

File last commit:

r2617:c0ec29b2 beta
r3817:631e8000 beta
Show More
post_receive_tmpl.py
31 lines | 850 B | text/x-python | PythonLexer
chmod the hooks to 755, like all other githooks....
r2411 #!/usr/bin/env python
import os
import sys
try:
import rhodecode
Fixed githooks for fetching multiple tags and branches....
r2617 RC_HOOK_VER = '_TMPL_'
os.environ['RC_HOOK_VER'] = RC_HOOK_VER
chmod the hooks to 755, like all other githooks....
r2411 from rhodecode.lib.hooks import handle_git_post_receive
except ImportError:
rhodecode = None
def main():
if rhodecode is None:
# exit with success if we cannot import rhodecode !!
# this allows simply push to this repo even without
# rhodecode
sys.exit(0)
repo_path = os.path.abspath('.')
Fixed githooks for fetching multiple tags and branches....
r2617 push_data = sys.stdin.readlines()
chmod the hooks to 755, like all other githooks....
r2411 # os.environ is modified here by a subprocess call that
# runs git and later git executes this hook.
# Environ get's some additional info from rhodecode system
# like IP or username from basic-auth
handle_git_post_receive(repo_path, push_data, os.environ)
sys.exit(0)
if __name__ == '__main__':
main()