Files
@ 7e5f8c12a3fc
Branch filter:
Location: kallithea/rhodecode/config/pre_receive_tmpl.py - annotation
7e5f8c12a3fc
951 B
text/x-python
First step in two-part process to rename directories to kallithea.
This first step is to change all references in the files where they refer
to the old directory name.
This first step is to change all references in the files where they refer
to the old directory name.
aa17c7a1b8a5 aa17c7a1b8a5 aa17c7a1b8a5 aa17c7a1b8a5 aa17c7a1b8a5 7e5f8c12a3fc aa17c7a1b8a5 aa17c7a1b8a5 7e5f8c12a3fc aa17c7a1b8a5 ffd45b185016 ffd45b185016 ffd45b185016 7e5f8c12a3fc aa17c7a1b8a5 aa17c7a1b8a5 aa17c7a1b8a5 7e5f8c12a3fc aa17c7a1b8a5 aa17c7a1b8a5 aa17c7a1b8a5 aa17c7a1b8a5 aa17c7a1b8a5 aa17c7a1b8a5 aa17c7a1b8a5 aa17c7a1b8a5 aa17c7a1b8a5 a5888ca796b5 aa17c7a1b8a5 ffd45b185016 aa17c7a1b8a5 aa17c7a1b8a5 aa17c7a1b8a5 aa17c7a1b8a5 | #!/usr/bin/env python
import os
import sys
try:
import kallithea
RC_HOOK_VER = '_TMPL_'
os.environ['RC_HOOK_VER'] = RC_HOOK_VER
from kallithea.lib.hooks import handle_git_pre_receive as _handler
except ImportError:
if os.environ.get('RC_DEBUG_GIT_HOOK'):
import traceback
print traceback.format_exc()
kallithea = None
def main():
if kallithea 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 gets some additional info from rhodecode system
# like IP or username from basic-auth
_handler(repo_path, push_data, os.environ)
sys.exit(0)
if __name__ == '__main__':
main()
|