Merge branch 'master' into master

This commit is contained in:
jola5
2017-01-19 23:07:49 +01:00
committed by GitHub
32 changed files with 261 additions and 9 deletions

View File

@@ -41,6 +41,13 @@ func apiGraph(c *gin.Context) {
buf := bytes.NewBufferString(graph.String())
if ext == "dot" || ext == "gv" {
// If the raw dot data is requested, return it as string.
// This allows client-side rendering rather than server-side.
c.String(200, buf.String())
return
}
command := exec.Command("dot", "-T"+ext)
command.Stderr = os.Stderr