[Updated] D8934: hgweb: let staticfile() look up path from default location unless provided
martinvonz (Martin von Zweigbergk)
phabricator at mercurial-scm.org
Sat Aug 22 23:32:39 UTC 2020
Closed by commit rHGdc9fe90bdbd5: hgweb: let staticfile() look up path from default location unless provided (authored by martinvonz).
This revision was automatically updated to reflect the committed changes.
CHANGED PRIOR TO COMMIT
https://phab.mercurial-scm.org/D8934?vs=22413&id=22419#toc
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D8934?vs=22413&id=22419
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D8934/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D8934
AFFECTED FILES
mercurial/hgweb/common.py
mercurial/hgweb/hgwebdir_mod.py
mercurial/hgweb/webcommands.py
CHANGE DETAILS
diff --git a/mercurial/hgweb/webcommands.py b/mercurial/hgweb/webcommands.py
--- a/mercurial/hgweb/webcommands.py
+++ b/mercurial/hgweb/webcommands.py
@@ -36,7 +36,6 @@
revsetlang,
scmutil,
smartset,
- templater,
templateutil,
)
@@ -1318,12 +1317,7 @@
# a repo owner may set web.static in .hg/hgrc to get any file
# readable by the user running the CGI script
static = web.config(b"web", b"static", untrusted=False)
- if not static:
- tp = web.templatepath or templater.templatedir()
- if tp is not None:
- static = os.path.join(tp, b'static')
-
- staticfile(static, fname, web.res)
+ staticfile(web.templatepath, static, fname, web.res)
return web.res.sendresponse()
diff --git a/mercurial/hgweb/hgwebdir_mod.py b/mercurial/hgweb/hgwebdir_mod.py
--- a/mercurial/hgweb/hgwebdir_mod.py
+++ b/mercurial/hgweb/hgwebdir_mod.py
@@ -413,12 +413,7 @@
else:
fname = req.qsparams[b'static']
static = self.ui.config(b"web", b"static", untrusted=False)
- if not static:
- tp = self.templatepath or templater.templatedir()
- if tp is not None:
- static = os.path.join(tp, b'static')
-
- staticfile(static, fname, res)
+ staticfile(self.templatepath, static, fname, res)
return res.sendresponse()
# top-level index
diff --git a/mercurial/hgweb/common.py b/mercurial/hgweb/common.py
--- a/mercurial/hgweb/common.py
+++ b/mercurial/hgweb/common.py
@@ -21,6 +21,7 @@
from .. import (
encoding,
pycompat,
+ templater,
util,
)
@@ -178,7 +179,7 @@
return True
-def staticfile(directory, fname, res):
+def staticfile(templatepath, directory, fname, res):
"""return a file inside directory with guessed Content-Type header
fname always uses '/' as directory separator and isn't allowed to
@@ -190,6 +191,11 @@
if not ispathsafe(fname):
return
+ if not directory:
+ tp = templatepath or templater.templatedir()
+ if tp is not None:
+ directory = os.path.join(tp, b'static')
+
fpath = os.path.join(*fname.split(b'/'))
path = os.path.join(directory, fpath)
try:
To: martinvonz, #hg-reviewers, indygreg
Cc: mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mercurial-scm.org/pipermail/mercurial-patches/attachments/20200822/521f1b4e/attachment-0002.html>
More information about the Mercurial-patches
mailing list