Files
@ b2575bdb847c
Branch filter:
Location: kallithea/rhodecode/config/post_receive_tmpl.py - annotation
b2575bdb847c
850 B
text/x-python
diffs: drop diffs.differ
This function did not really add any value, it was yet another layer that was
hiding the bug that we use ref[1] without ref[0], and it had this strange
undefined behaviour for diffing across repos.
Inlining the call to .get_diff do not make the code more complex but makes it
more obvious what is going on so it can be cleaned up later.
This function did not really add any value, it was yet another layer that was
hiding the bug that we use ref[1] without ref[0], and it had this strange
undefined behaviour for diffing across repos.
Inlining the call to .get_diff do not make the code more complex but makes it
more obvious what is going on so it can be cleaned up later.
d3978233fcfa d3978233fcfa d3978233fcfa d3978233fcfa d3978233fcfa d3978233fcfa c0ec29b20eb6 c0ec29b20eb6 d3978233fcfa d3978233fcfa d3978233fcfa d3978233fcfa d3978233fcfa d3978233fcfa d3978233fcfa d3978233fcfa d3978233fcfa d3978233fcfa d3978233fcfa d3978233fcfa d3978233fcfa c0ec29b20eb6 d3978233fcfa d3978233fcfa d3978233fcfa d3978233fcfa d3978233fcfa d3978233fcfa d3978233fcfa d3978233fcfa d3978233fcfa | #!/usr/bin/env python
import os
import sys
try:
import rhodecode
RC_HOOK_VER = '_TMPL_'
os.environ['RC_HOOK_VER'] = RC_HOOK_VER
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('.')
push_data = sys.stdin.readlines()
# 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()
|