Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
dddd155a
Commit
dddd155a
authored
Mar 15, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:grafana/grafana
parents
c4117145
cba7c172
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
17 deletions
+23
-17
pkg/plugins/frontend_plugin.go
+9
-6
pkg/plugins/models.go
+8
-10
public/app/plugins/datasource/graphite/img/graphite_logo.png
+0
-0
public/app/plugins/datasource/graphite/plugin.json
+6
-1
No files found.
pkg/plugins/frontend_plugin.go
View file @
dddd155a
...
...
@@ -3,9 +3,9 @@ package plugins
import
(
"net/url"
"path"
"path/filepath"
"strings"
"github.com/grafana/grafana/pkg/setting"
"github.com/grafana/grafana/pkg/util"
)
...
...
@@ -14,10 +14,9 @@ type FrontendPluginBase struct {
}
func
(
fp
*
FrontendPluginBase
)
initFrontendPlugin
()
{
if
fp
.
StaticRoot
!=
""
{
fp
.
StaticRootAbs
=
filepath
.
Join
(
fp
.
PluginDir
,
fp
.
StaticRoot
)
if
isInternalPlugin
(
fp
.
PluginDir
)
{
StaticRoutes
=
append
(
StaticRoutes
,
&
PluginStaticRoute
{
Directory
:
fp
.
StaticRootAbs
,
Directory
:
fp
.
PluginDir
,
PluginId
:
fp
.
Id
,
})
}
...
...
@@ -41,7 +40,7 @@ func getPluginLogoUrl(path, baseUrl string) string {
}
func
(
fp
*
FrontendPluginBase
)
setPathsBasedOnApp
(
app
*
AppPlugin
)
{
appSubPath
:=
strings
.
Replace
(
fp
.
PluginDir
,
app
.
StaticRootAbs
,
""
,
1
)
appSubPath
:=
strings
.
Replace
(
fp
.
PluginDir
,
app
.
PluginDir
,
""
,
1
)
fp
.
IncludedInAppId
=
app
.
Id
fp
.
BaseUrl
=
app
.
BaseUrl
fp
.
Module
=
util
.
JoinUrlFragments
(
"plugins/"
+
app
.
Id
,
appSubPath
)
+
"/module"
...
...
@@ -49,7 +48,7 @@ func (fp *FrontendPluginBase) setPathsBasedOnApp(app *AppPlugin) {
func
(
fp
*
FrontendPluginBase
)
handleModuleDefaults
()
{
if
fp
.
StaticRoot
!=
""
{
if
isInternalPlugin
(
fp
.
PluginDir
)
{
fp
.
Module
=
path
.
Join
(
"plugins"
,
fp
.
Id
,
"module"
)
fp
.
BaseUrl
=
path
.
Join
(
"public/plugins"
,
fp
.
Id
)
return
...
...
@@ -59,6 +58,10 @@ func (fp *FrontendPluginBase) handleModuleDefaults() {
fp
.
BaseUrl
=
path
.
Join
(
"public/app/plugins"
,
fp
.
Type
,
fp
.
Id
)
}
func
isInternalPlugin
(
pluginDir
string
)
bool
{
return
!
strings
.
Contains
(
pluginDir
,
setting
.
StaticRootPath
)
}
func
evalRelativePluginUrlPath
(
pathStr
string
,
baseUrl
string
)
string
{
if
pathStr
==
""
{
return
""
...
...
pkg/plugins/models.go
View file @
dddd155a
...
...
@@ -30,16 +30,14 @@ type PluginLoader interface {
}
type
PluginBase
struct
{
Type
string
`json:"type"`
Name
string
`json:"name"`
Id
string
`json:"id"`
Info
PluginInfo
`json:"info"`
Dependencies
PluginDependencies
`json:"dependencies"`
Includes
[]
*
PluginInclude
`json:"includes"`
Module
string
`json:"module"`
BaseUrl
string
`json:"baseUrl"`
StaticRoot
string
`json:"staticRoot"`
StaticRootAbs
string
`json:"-"`
Type
string
`json:"type"`
Name
string
`json:"name"`
Id
string
`json:"id"`
Info
PluginInfo
`json:"info"`
Dependencies
PluginDependencies
`json:"dependencies"`
Includes
[]
*
PluginInclude
`json:"includes"`
Module
string
`json:"module"`
BaseUrl
string
`json:"baseUrl"`
IncludedInAppId
string
`json:"-"`
PluginDir
string
`json:"-"`
...
...
public/app/plugins/datasource/graphite/img/graphite_logo.png
0 → 100644
View file @
dddd155a
6.14 KB
public/app/plugins/datasource/graphite/plugin.json
View file @
dddd155a
...
...
@@ -14,6 +14,10 @@
"author"
:
{
"name"
:
"Grafana Project"
,
"url"
:
"http://grafana.org"
},
"logos"
:
{
"small"
:
"img/graphite_logo.png"
,
"large"
:
"img/graphite_logo.png"
}
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment