2020-07-12 14:40:56 +05:30
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2020-07-12 14:40:56 +05:30
|
|
|
|
2021-08-24 22:17:09 +05:30
|
|
|
//go:build bindata
|
2020-07-12 14:40:56 +05:30
|
|
|
|
|
|
|
package svg
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/public"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Discover returns a map of discovered SVG icons in bindata
|
|
|
|
func Discover() map[string]string {
|
|
|
|
svgs := make(map[string]string)
|
|
|
|
|
|
|
|
for _, file := range public.AssetNames() {
|
|
|
|
matched, _ := filepath.Match("img/svg/*.svg", file)
|
|
|
|
if matched {
|
|
|
|
content, err := public.Asset(file)
|
|
|
|
if err == nil {
|
2020-07-14 01:46:40 +05:30
|
|
|
filename := filepath.Base(file)
|
2020-07-12 14:40:56 +05:30
|
|
|
svgs[filename[:len(filename)-4]] = string(content)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return svgs
|
|
|
|
}
|