5 # |
5 # |
6 # This software may be used and distributed according to the terms of the |
6 # This software may be used and distributed according to the terms of the |
7 # GNU General Public License version 2, incorporated herein by reference. |
7 # GNU General Public License version 2, incorporated herein by reference. |
8 |
8 |
9 import os |
9 import os |
10 from mercurial import ui, hg, util, hook, error, encoding, templater |
10 from mercurial import ui, hg, hook, error, encoding, templater |
11 from common import get_mtime, ErrorResponse |
11 from common import get_mtime, ErrorResponse |
12 from common import HTTP_OK, HTTP_BAD_REQUEST, HTTP_NOT_FOUND, HTTP_SERVER_ERROR |
12 from common import HTTP_OK, HTTP_BAD_REQUEST, HTTP_NOT_FOUND, HTTP_SERVER_ERROR |
13 from common import HTTP_UNAUTHORIZED, HTTP_METHOD_NOT_ALLOWED |
13 from common import HTTP_UNAUTHORIZED, HTTP_METHOD_NOT_ALLOWED |
14 from request import wsgirequest |
14 from request import wsgirequest |
15 import webcommands, protocol, webutil |
15 import webcommands, protocol, webutil |