diff options
author | Giteabot <teabot@gitea.io> | 2023-04-08 17:13:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-08 23:13:43 +0200 |
commit | cfde557e231417b7fb3cde3e9bab70d05b7d182f (patch) | |
tree | bccaeb327e956c6c20750c4ec51314639c402201 /templates | |
parent | 3dbc63777fd624b69511bea8638c5da034a3a670 (diff) | |
download | gitea-cfde557e231417b7fb3cde3e9bab70d05b7d182f.tar.gz gitea-cfde557e231417b7fb3cde3e9bab70d05b7d182f.zip |
fix: do not escape space between PyPI repository url and package name… (#23981) (#24008)
Backport #23981 by @Gunzinger
…; 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: Daniel Gunzinger <daniel.gunzinger@gmail.com>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/package/content/pypi.tmpl | 2 |
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> |