Merge branch 'new_macaron'

This commit is contained in:
Torkel Ödegaard
2016-01-13 15:48:49 +01:00
156 changed files with 10337 additions and 6330 deletions

View File

@@ -1,11 +1,11 @@
package api
import (
"github.com/Unknwon/macaron"
"github.com/go-macaron/binding"
"github.com/grafana/grafana/pkg/api/dtos"
"github.com/grafana/grafana/pkg/middleware"
m "github.com/grafana/grafana/pkg/models"
"github.com/macaron-contrib/binding"
"gopkg.in/macaron.v1"
)
// Register adds http routes

View File

@@ -4,11 +4,11 @@ import (
"encoding/json"
"net/http"
"github.com/Unknwon/macaron"
"github.com/grafana/grafana/pkg/log"
"github.com/grafana/grafana/pkg/metrics"
"github.com/grafana/grafana/pkg/middleware"
"github.com/grafana/grafana/pkg/setting"
"gopkg.in/macaron.v1"
)
var (

View File

@@ -102,6 +102,6 @@ func ProxyDataSourceRequest(c *middleware.Context) {
proxyPath := c.Params("*")
proxy := NewReverseProxy(ds, proxyPath, targetUrl)
proxy.Transport = dataProxyTransport
proxy.ServeHTTP(c.RW(), c.Req.Request)
proxy.ServeHTTP(c.Resp, c.Req.Request)
}
}

View File

@@ -24,7 +24,7 @@ import (
"strings"
"sync"
"github.com/Unknwon/macaron"
"gopkg.in/macaron.v1"
)
var Root string

View File

@@ -8,7 +8,7 @@ import (
"net/http"
"path"
"github.com/Unknwon/macaron"
"gopkg.in/macaron.v1"
"github.com/grafana/grafana/pkg/api"
"github.com/grafana/grafana/pkg/api/static"

View File

@@ -4,7 +4,7 @@ import (
"net/url"
"strings"
"github.com/Unknwon/macaron"
"gopkg.in/macaron.v1"
m "github.com/grafana/grafana/pkg/models"
"github.com/grafana/grafana/pkg/setting"

View File

@@ -20,9 +20,9 @@ import (
"net/http"
"time"
"github.com/Unknwon/macaron"
"github.com/grafana/grafana/pkg/log"
"github.com/grafana/grafana/pkg/setting"
"gopkg.in/macaron.v1"
)
func Logger() macaron.Handler {

View File

@@ -4,7 +4,7 @@ import (
"strconv"
"strings"
"github.com/Unknwon/macaron"
"gopkg.in/macaron.v1"
"github.com/grafana/grafana/pkg/bus"
"github.com/grafana/grafana/pkg/components/apikeygen"

View File

@@ -7,13 +7,13 @@ import (
"path/filepath"
"testing"
"github.com/Unknwon/macaron"
"github.com/go-macaron/session"
"github.com/grafana/grafana/pkg/bus"
m "github.com/grafana/grafana/pkg/models"
"github.com/grafana/grafana/pkg/setting"
"github.com/grafana/grafana/pkg/util"
"github.com/macaron-contrib/session"
. "github.com/smartystreets/goconvey/convey"
"gopkg.in/macaron.v1"
)
func TestMiddlewareContext(t *testing.T) {

View File

@@ -3,11 +3,11 @@ package middleware
import (
"fmt"
"github.com/Unknwon/macaron"
"github.com/grafana/grafana/pkg/bus"
"github.com/grafana/grafana/pkg/log"
m "github.com/grafana/grafana/pkg/models"
"github.com/grafana/grafana/pkg/setting"
"gopkg.in/macaron.v1"
)
func Quota(target string) macaron.Handler {

View File

@@ -3,12 +3,12 @@ package middleware
import (
"time"
"github.com/Unknwon/macaron"
"github.com/macaron-contrib/session"
_ "github.com/macaron-contrib/session/memcache"
_ "github.com/macaron-contrib/session/mysql"
_ "github.com/macaron-contrib/session/postgres"
_ "github.com/macaron-contrib/session/redis"
"github.com/go-macaron/session"
_ "github.com/go-macaron/session/memcache"
_ "github.com/go-macaron/session/mysql"
_ "github.com/go-macaron/session/postgres"
_ "github.com/go-macaron/session/redis"
"gopkg.in/macaron.v1"
)
const (

View File

@@ -3,11 +3,12 @@ package middleware
import (
"strings"
"github.com/Unknwon/macaron"
"github.com/go-macaron/gzip"
"gopkg.in/macaron.v1"
)
func Gziper() macaron.Handler {
macaronGziper := macaron.Gziper()
macaronGziper := gzip.Gziper()
return func(ctx *macaron.Context) {
requestPath := ctx.Req.URL.RequestURI()

View File

@@ -3,8 +3,8 @@ package middleware
import (
"strings"
"github.com/Unknwon/macaron"
"github.com/grafana/grafana/pkg/setting"
"gopkg.in/macaron.v1"
)
func ValidateHostHeader(domain string) macaron.Handler {

View File

@@ -16,7 +16,7 @@ import (
"runtime"
"strings"
"github.com/macaron-contrib/session"
"github.com/go-macaron/session"
"gopkg.in/ini.v1"
"github.com/grafana/grafana/pkg/log"