]> source.dussan.org Git - gitea.git/commit
Use filename as id/class prefix. (#16997) (#17000)
authorKN4CK3R <admin@oldschoolhack.me>
Thu, 9 Sep 2021 09:47:28 +0000 (11:47 +0200)
committerGitHub <noreply@github.com>
Thu, 9 Sep 2021 09:47:28 +0000 (10:47 +0100)
commit56ab5ec9eabbe1ddbbab195bd40360db0d5a4cb0
tree6de5493b07c9172312dd4a7f3208ba47dae014b0
parent3b13c5d41a35d6331b195b96a2ddb0e905cdcadb
Use filename as id/class prefix. (#16997) (#17000)

Currently the svg minifier (`make svg`) rewrites all `id` and `class` attributes in svg files. Every file gets the ids `a, b, ...`. If multiple svgs with ids are used on a page these ids are conflicting and the results are broken images.

| minified ids | unique ids |
| - | - |
| ![grafik](https://user-images.githubusercontent.com/1666336/132579375-59d3996f-c4e5-43b8-8c8d-82280c90d9e3.png) | ![grafik](https://user-images.githubusercontent.com/1666336/132579413-05bf9285-4e3b-4d0d-8f95-90b212405b05.png) |

This PR adds a prefix (the filename) to every id/class.

Follow up problem: Because we embed svg images there are duplicated ids if one svg image is used multiple times on a page. As those ids refer to the same content it may be no real problem because browser handle that fine.
build/generate-svg.js
public/img/svg/gitea-github.svg