Details
Details
- Reviewers
durin42 - Group Reviewers
hg-reviewers - Commits
- rHGe67a2e05fa8a: hgweb: clarify that apppath begins with a forward slash
Diff Detail
Diff Detail
- Repository
- rHG Mercurial
- Lint
Lint Skipped - Unit
Unit Tests Skipped
durin42 |
hg-reviewers |
Lint Skipped |
Unit Tests Skipped |
Path | Packages | |||
---|---|---|---|---|
M | mercurial/hgweb/request.py (3 lines) |
advertisedurl = attr.ib() | advertisedurl = attr.ib() | ||||
advertisedbaseurl = attr.ib() | advertisedbaseurl = attr.ib() | ||||
# URL scheme (part before ``://``). e.g. ``http`` or ``https``. | # URL scheme (part before ``://``). e.g. ``http`` or ``https``. | ||||
urlscheme = attr.ib() | urlscheme = attr.ib() | ||||
# Value of REMOTE_USER, if set, or None. | # Value of REMOTE_USER, if set, or None. | ||||
remoteuser = attr.ib() | remoteuser = attr.ib() | ||||
# Value of REMOTE_HOST, if set, or None. | # Value of REMOTE_HOST, if set, or None. | ||||
remotehost = attr.ib() | remotehost = attr.ib() | ||||
# WSGI application path. | # Relative WSGI application path. If defined, will begin with a | ||||
# ``/``. | |||||
apppath = attr.ib() | apppath = attr.ib() | ||||
# List of path parts to be used for dispatch. | # List of path parts to be used for dispatch. | ||||
dispatchparts = attr.ib() | dispatchparts = attr.ib() | ||||
# URL path component (no query string) used for dispatch. Can be | # URL path component (no query string) used for dispatch. Can be | ||||
# ``None`` to signal no path component given to the request, an | # ``None`` to signal no path component given to the request, an | ||||
# empty string to signal a request to the application's root URL, | # empty string to signal a request to the application's root URL, | ||||
# or a string not beginning with ``/`` containing the requested | # or a string not beginning with ``/`` containing the requested | ||||
# path under the application. | # path under the application. |