Mercurial > hg
comparison mercurial/hgweb/server.py @ 17427:57c6c24b9bc4
improve some comments and docstrings, fixing issues found when spell checking
author | Mads Kiilerich <mads@kiilerich.com> |
---|---|
date | Tue, 21 Aug 2012 02:41:20 +0200 |
parents | e7cfe3587ea4 |
children | c007e5c54b16 |
comparison
equal
deleted
inserted
replaced
17426:9724f8f8850b | 17427:57c6c24b9bc4 |
---|---|
10 from mercurial import util, error | 10 from mercurial import util, error |
11 from mercurial.hgweb import common | 11 from mercurial.hgweb import common |
12 from mercurial.i18n import _ | 12 from mercurial.i18n import _ |
13 | 13 |
14 def _splitURI(uri): | 14 def _splitURI(uri): |
15 """ Return path and query split from uri | 15 """Return path and query that has been split from uri |
16 | 16 |
17 Just like CGI environment, the path is unquoted, the query is | 17 Just like CGI environment, the path is unquoted, the query is |
18 not. | 18 not. |
19 """ | 19 """ |
20 if '?' in uri: | 20 if '?' in uri: |