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
4f601761
Unverified
Commit
4f601761
authored
Nov 02, 2018
by
Torkel Ödegaard
Committed by
GitHub
Nov 02, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #13938 from tarekbecker/grafana-css-hash
Add [hash] to grafana.{light,dark}.css
parents
b770d52e
61ff9fe6
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
30 additions
and
10 deletions
+30
-10
.gitignore
+1
-0
pkg/middleware/middleware_test.go
+1
-0
pkg/middleware/recovery.go
+1
-1
pkg/middleware/recovery_test.go
+4
-0
pkg/models/context.go
+1
-1
pkg/setting/setting.go
+4
-0
public/views/error-template.html
+1
-1
public/views/index-template.html
+1
-1
scripts/webpack/webpack.common.js
+1
-1
scripts/webpack/webpack.dev.js
+7
-2
scripts/webpack/webpack.hot.js
+1
-1
scripts/webpack/webpack.prod.js
+7
-2
No files found.
.gitignore
View file @
4f601761
...
...
@@ -8,6 +8,7 @@ awsconfig
/dist
/public/build
/public/views/index.html
/public/views/error.html
/emails/dist
/public_gen
/public/vendor/npm
...
...
pkg/middleware/middleware_test.go
View file @
4f601761
...
...
@@ -18,6 +18,7 @@ import (
)
func
TestMiddlewareContext
(
t
*
testing
.
T
)
{
setting
.
ERR_TEMPLATE_NAME
=
"error-template"
Convey
(
"Given the grafana middleware"
,
t
,
func
()
{
middlewareScenario
(
"middleware should add context to injector"
,
func
(
sc
*
scenarioContext
)
{
...
...
pkg/middleware/recovery.go
View file @
4f601761
...
...
@@ -138,7 +138,7 @@ func Recovery() macaron.Handler {
c
.
JSON
(
500
,
resp
)
}
else
{
c
.
HTML
(
500
,
"error"
)
c
.
HTML
(
500
,
setting
.
ERR_TEMPLATE_NAME
)
}
}
}()
...
...
pkg/middleware/recovery_test.go
View file @
4f601761
...
...
@@ -8,11 +8,14 @@ import (
"github.com/grafana/grafana/pkg/bus"
m
"github.com/grafana/grafana/pkg/models"
"github.com/grafana/grafana/pkg/services/session"
"github.com/grafana/grafana/pkg/setting"
.
"github.com/smartystreets/goconvey/convey"
"gopkg.in/macaron.v1"
)
func
TestRecoveryMiddleware
(
t
*
testing
.
T
)
{
setting
.
ERR_TEMPLATE_NAME
=
"error-template"
Convey
(
"Given an api route that panics"
,
t
,
func
()
{
apiURL
:=
"/api/whatever"
recoveryScenario
(
"recovery middleware should return json"
,
apiURL
,
func
(
sc
*
scenarioContext
)
{
...
...
@@ -50,6 +53,7 @@ func recoveryScenario(desc string, url string, fn scenarioFunc) {
sc
:=
&
scenarioContext
{
url
:
url
,
}
viewsPath
,
_
:=
filepath
.
Abs
(
"../../public/views"
)
sc
.
m
=
macaron
.
New
()
...
...
pkg/models/context.go
View file @
4f601761
...
...
@@ -36,7 +36,7 @@ func (ctx *ReqContext) Handle(status int, title string, err error) {
ctx
.
Data
[
"AppSubUrl"
]
=
setting
.
AppSubUrl
ctx
.
Data
[
"Theme"
]
=
"dark"
ctx
.
HTML
(
status
,
"error"
)
ctx
.
HTML
(
status
,
setting
.
ERR_TEMPLATE_NAME
)
}
func
(
ctx
*
ReqContext
)
JsonOK
(
message
string
)
{
...
...
pkg/setting/setting.go
View file @
4f601761
...
...
@@ -39,6 +39,10 @@ const (
)
var
(
ERR_TEMPLATE_NAME
=
"error"
)
var
(
// App settings.
Env
=
DEV
AppUrl
string
...
...
public/views/error.html
→
public/views/error
-template
.html
View file @
4f601761
...
...
@@ -10,7 +10,7 @@
<base
href=
"[[.AppSubUrl]]/"
/>
<link
rel=
"stylesheet"
href=
"public/build/grafana.[[ .Theme ]].
css?v[[ .BuildVersion ]]
"
>
<link
rel=
"stylesheet"
href=
"public/build/grafana.[[ .Theme ]].
<%= webpack.hash %>.css
"
>
<link
rel=
"icon"
type=
"image/png"
href=
"public/img/fav32.png"
>
<link
rel=
"mask-icon"
href=
"public/img/grafana_mask_icon.svg"
color=
"#F05A28"
>
...
...
public/views/index
.
template.html
→
public/views/index
-
template.html
View file @
4f601761
...
...
@@ -15,7 +15,7 @@
<link
rel=
"mask-icon"
href=
"public/img/grafana_mask_icon.svg"
color=
"#F05A28"
>
<link
rel=
"apple-touch-icon"
sizes=
"180x180"
href=
"public/img/apple-touch-icon.png"
>
<link
rel=
"stylesheet"
href=
"public/build/grafana.[[ .Theme ]].
css?v[[ .BuildVersion ]]+[[ .BuildCommit ]]
"
>
<link
rel=
"stylesheet"
href=
"public/build/grafana.[[ .Theme ]].
<%= webpack.hash %>.css
"
>
<meta
name=
"apple-mobile-web-app-capable"
content=
"yes"
>
<meta
name=
"apple-mobile-web-app-status-bar-style"
content=
"black"
>
...
...
scripts/webpack/webpack.common.js
View file @
4f601761
...
...
@@ -47,7 +47,7 @@ module.exports = {
},
{
test
:
/
\.
html$/
,
exclude
:
/
index
\.
template
.html/
,
exclude
:
/
(
index|error
)\-
template
\
.
html/
,
use
:
[
{
loader
:
'ngtemplate-loader?relativeTo='
+
(
path
.
resolve
(
__dirname
,
'../../public'
))
+
'&prefix=public'
},
{
...
...
scripts/webpack/webpack.dev.js
View file @
4f601761
...
...
@@ -80,11 +80,16 @@ module.exports = merge(common, {
plugins
:
[
new
CleanWebpackPlugin
(
'../../public/build'
,
{
allowExternal
:
true
}),
new
MiniCssExtractPlugin
({
filename
:
"grafana.[name].css"
filename
:
"grafana.[name].[hash].css"
}),
new
HtmlWebpackPlugin
({
filename
:
path
.
resolve
(
__dirname
,
'../../public/views/error.html'
),
template
:
path
.
resolve
(
__dirname
,
'../../public/views/error-template.html'
),
inject
:
'false'
,
}),
new
HtmlWebpackPlugin
({
filename
:
path
.
resolve
(
__dirname
,
'../../public/views/index.html'
),
template
:
path
.
resolve
(
__dirname
,
'../../public/views/index
.
template.html'
),
template
:
path
.
resolve
(
__dirname
,
'../../public/views/index
-
template.html'
),
inject
:
'body'
,
chunks
:
[
'manifest'
,
'vendor'
,
'app'
],
}),
...
...
scripts/webpack/webpack.hot.js
View file @
4f601761
...
...
@@ -87,7 +87,7 @@ module.exports = merge(common, {
new
CleanWebpackPlugin
(
'../public/build'
,
{
allowExternal
:
true
}),
new
HtmlWebpackPlugin
({
filename
:
path
.
resolve
(
__dirname
,
'../../public/views/index.html'
),
template
:
path
.
resolve
(
__dirname
,
'../../public/views/index
.
template.html'
),
template
:
path
.
resolve
(
__dirname
,
'../../public/views/index
-
template.html'
),
inject
:
'body'
,
alwaysWriteToDisk
:
true
}),
...
...
scripts/webpack/webpack.prod.js
View file @
4f601761
...
...
@@ -71,15 +71,20 @@ module.exports = merge(common, {
plugins
:
[
new
MiniCssExtractPlugin
({
filename
:
"grafana.[name].css"
filename
:
"grafana.[name].
[hash].
css"
}),
new
ngAnnotatePlugin
(),
new
HtmlWebpackPlugin
({
filename
:
path
.
resolve
(
__dirname
,
'../../public/views/index.html'
),
template
:
path
.
resolve
(
__dirname
,
'../../public/views/index
.
template.html'
),
template
:
path
.
resolve
(
__dirname
,
'../../public/views/index
-
template.html'
),
inject
:
'body'
,
chunks
:
[
'vendor'
,
'app'
],
}),
new
HtmlWebpackPlugin
({
filename
:
path
.
resolve
(
__dirname
,
'../../public/views/error.html'
),
template
:
path
.
resolve
(
__dirname
,
'../../public/views/error-template.html'
),
inject
:
false
,
}),
function
()
{
this
.
hooks
.
done
.
tap
(
'Done'
,
function
(
stats
)
{
if
(
stats
.
compilation
.
errors
&&
stats
.
compilation
.
errors
.
length
)
{
...
...
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