-
Notifications
You must be signed in to change notification settings - Fork 15
Port of git's "Smart HTTP" (git-http-backend) server component to Python WSGI interface.
License
LGPL-2.1, GPL-2.0 licenses found
Licenses found
LGPL-2.1
COPYING.LESSER
GPL-2.0
COPYING
dvdotsenko/git_http_backend.py
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
git_http_backend.py - Git "Smart HTTP" (git-http-backend) server implementation in Python for WSGI server architecture. =============================================== About git-http-backend: A special "Smart HTTP" git-specific RPC implementation allowing one to push data to remote repo and pull data from remote repo in a very efficient way, over regular HTTP (using POSTs and GETs) "Smart HTTP" RPC support was introduced in git client starting with v.1.6.6. The essense of "Smart HTTP" RPC is that it's a transport for communication between client and server's git-upload-pack and git-receive-pack - the commands ran on server when client, respectively, "pulls" and "pushes." "Screen-scraped" raw outputs of the commands are gzipped and are sent around as HTTP POSTs / replies. Some RPC-specific control strings and HTTP headers are introduced into communication stream to signal to git client that server supports "Smart HTTP" Client signals to the server that it supports "Smart HTTP" by talking over HTTP POST (vs. GET) PRC supports Basic Auth over HTTP and rudimentary, server-side (not file-system-side) ACL features. There is no published documentation on the RPC protocol. Per direct, personal inquiry with the author of the protocol and code I confirmed that the only published "documentaion" is the comment-less C code in the Git repo proper. About this project: The project is largely a translation of similar effort done in Ruby, called Grack - http://github.com/schacon/grack - by Scott Chacon <[email protected]> et al. (This readme file is modeled on the readme file in Grack) This project aims to supplement the C-based git-http-backend CGI handler distributed in mainline Git with a Python WSGI-compatible application. The default git-http-backend only runs under CGI on Apache. Furthermore, Git packagesbinaries containing http-backend.cgi are not availableon Windows (as of May 18, 2010. Checked in Cygwin). Python, WSGI-based git-http-backend implementation may run on practically any server, on almost any OS. Look for server-specific WSGI modules or wrap WSGI app into a Fast/S/CGI. At the most basic level, the application can be ran against Python's built-in WSGI server. Since there is no published documentation on Git's "Smart HTTP" RPC protocol, this implementation is largely a guess of how it works based on my reading of original C and Grack's Ruby code. Dependencies ======================== * Python 2.6.x, 2.7.x (3.x is very likely NOT to work.) * Git >= 1.6.6 (On the server and on the client side.) Installation ======================== See Examples folter. License ======================== See file named COPYING.LESSER for license terms governing over the entire project. (Some, explisitely labeled so constituent files/works are licensed under separate, more-permissive terms. See disclaimers at the start of the files for details.) This file is covered by the following copyright and permission notice(s): /* * Copyright (c) 2010 Daniel Dotsenko <[email protected]> * * Copying and distribution of this file, with or without modification, * are permitted in any medium without royalty provided the copyright * notice and this notice are preserved. This file is offered as-is, * without any warranty. * * This file incorporates work covered by the following copyright and * permission notice: * * (The MIT License) * * Copyright (c) 2009 Scott Chacon <[email protected]> * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * 'Software'), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
About
Port of git's "Smart HTTP" (git-http-backend) server component to Python WSGI interface.
Resources
License
LGPL-2.1, GPL-2.0 licenses found
Licenses found
LGPL-2.1
COPYING.LESSER
GPL-2.0
COPYING
Stars
Watchers
Forks
Packages 0
No packages published