summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorDaniel Gunzinger <daniel.gunzinger@gmail.com>2023-04-08 20:57:00 +0200
committerGitHub <noreply@github.com>2023-04-08 14:57:00 -0400
commit31ae81fe7071ce8e177e6ff047fc5293c547b30d (patch)
treebdb4de2675aacb9110646cdcdad3d866c45a1d84 /templates
parent94fde46151eea73fb080fc24463291f3bdf3dbd0 (diff)
downloadgitea-31ae81fe7071ce8e177e6ff047fc5293c547b30d.tar.gz
gitea-31ae81fe7071ce8e177e6ff047fc5293c547b30d.zip
fix: do not escape space between PyPI repository url and package name… (#23981)
…; add trailing slash to PyPI repository URL (in accordance to PEP-503) This should solve Issue #23980, by moving the space in front of the package name and the package name out of the `gitea-origin-url` block. It also adds a trailing slash to the PyPI repository URL in accordance to [Python PEP-503](https://peps.python.org/pep-0503/). Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Diffstat (limited to 'templates')
-rw-r--r--templates/package/content/pypi.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/package/content/pypi.tmpl b/templates/package/content/pypi.tmpl
index 8dbed5395e..2576bdd9de 100644
--- a/templates/package/content/pypi.tmpl
+++ b/templates/package/content/pypi.tmpl
@@ -4,7 +4,7 @@
<div class="ui form">
<div class="field">
<label>{{svg "octicon-terminal"}} {{.locale.Tr "packages.pypi.install"}}</label>
- <div class="markup"><pre class="code-block"><code>pip install --index-url <gitea-origin-url data-url="{{AppSubUrl}}/api/packages/{{.PackageDescriptor.Owner.Name}}/pypi/simple {{.PackageDescriptor.Package.Name}}"></gitea-origin-url></code></pre></div>
+ <div class="markup"><pre class="code-block"><code>pip install --index-url <gitea-origin-url data-url="{{AppSubUrl}}/api/packages/{{.PackageDescriptor.Owner.Name}}/pypi/simple/"></gitea-origin-url> {{.PackageDescriptor.Package.Name}}</code></pre></div>
</div>
<div class="field">
<label>{{.locale.Tr "packages.pypi.documentation" | Safe}}</label>