Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/hgweb/common.py @ 37152:cc0a6ea95d98
lfs: add support for serving blob files
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Sat, 17 Mar 2018 01:53:44 -0400 |
parents | a2566597acb5 |
children | 31a0d47d69b3 |
comparison
equal
deleted
inserted
replaced
37151:ea6fc58524d7 | 37152:cc0a6ea95d98 |
---|---|
21 ) | 21 ) |
22 | 22 |
23 httpserver = util.httpserver | 23 httpserver = util.httpserver |
24 | 24 |
25 HTTP_OK = 200 | 25 HTTP_OK = 200 |
26 HTTP_CREATED = 201 | |
26 HTTP_NOT_MODIFIED = 304 | 27 HTTP_NOT_MODIFIED = 304 |
27 HTTP_BAD_REQUEST = 400 | 28 HTTP_BAD_REQUEST = 400 |
28 HTTP_UNAUTHORIZED = 401 | 29 HTTP_UNAUTHORIZED = 401 |
29 HTTP_FORBIDDEN = 403 | 30 HTTP_FORBIDDEN = 403 |
30 HTTP_NOT_FOUND = 404 | 31 HTTP_NOT_FOUND = 404 |