##// END OF EJS Templates
rhodecode.js: align addReviewMember html with pullrequest_show.html
rhodecode.js: align addReviewMember html with pullrequest_show.html

File last commit:

r4116:ffd45b18 rhodecode-2.2.5-gpl
r4172:031117f7 rhodecode-2.2.5-gpl
Show More
pre_receive_tmpl.py
34 lines | 951 B | text/x-python | PythonLexer
Implemented basic locking functionality....
r2726 #!/usr/bin/env python
import os
import sys
try:
import rhodecode
RC_HOOK_VER = '_TMPL_'
os.environ['RC_HOOK_VER'] = RC_HOOK_VER
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 from rhodecode.lib.hooks import handle_git_pre_receive as _handler
Implemented basic locking functionality....
r2726 except ImportError:
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 if os.environ.get('RC_DEBUG_GIT_HOOK'):
import traceback
print traceback.format_exc()
Implemented basic locking functionality....
r2726 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.
Fixed spelling of get's to gets
r4089 # Environ gets some additional info from rhodecode system
Implemented basic locking functionality....
r2726 # like IP or username from basic-auth
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 _handler(repo_path, push_data, os.environ)
Implemented basic locking functionality....
r2726 sys.exit(0)
if __name__ == '__main__':
main()