diff options
-rw-r--r-- | cmd/ponzu/main.go | 6 | ||||
-rw-r--r-- | content/post.go | 2 | ||||
-rw-r--r-- | management/manager/manager.go | 2 | ||||
-rw-r--r-- | management/manager/process.go | 2 | ||||
-rw-r--r-- | system/admin/admin.go | 4 | ||||
-rw-r--r-- | system/admin/cache.go | 2 | ||||
-rw-r--r-- | system/admin/config/config.go | 4 | ||||
-rw-r--r-- | system/admin/handlers.go | 12 | ||||
-rw-r--r-- | system/admin/server.go | 2 | ||||
-rw-r--r-- | system/api/handlers.go | 4 | ||||
-rw-r--r-- | system/db/config.go | 2 | ||||
-rw-r--r-- | system/db/content.go | 6 | ||||
-rw-r--r-- | system/db/init.go | 4 | ||||
-rw-r--r-- | system/db/user.go | 2 |
14 files changed, 27 insertions, 27 deletions
diff --git a/cmd/ponzu/main.go b/cmd/ponzu/main.go index ab824a3..a13dd6c 100644 --- a/cmd/ponzu/main.go +++ b/cmd/ponzu/main.go @@ -8,9 +8,9 @@ import ( "os" "strings" - "../../system/admin" - "../../system/api" - "../../system/db" + "github.com/bosssauce/ponzu/system/admin" + "github.com/bosssauce/ponzu/system/api" + "github.com/bosssauce/ponzu/system/db" ) var usage = ` diff --git a/content/post.go b/content/post.go index 99887d8..e08106c 100644 --- a/content/post.go +++ b/content/post.go @@ -3,7 +3,7 @@ package content import ( "fmt" - "../management/editor" + "github.com/bosssauce/ponzu/management/editor" ) // Post is the generic content struct diff --git a/management/manager/manager.go b/management/manager/manager.go index 67cf051..c0056ac 100644 --- a/management/manager/manager.go +++ b/management/manager/manager.go @@ -5,7 +5,7 @@ import ( "fmt" "html/template" - "../editor" + "github.com/bosssauce/ponzu/management/editor" ) const managerHTML = ` diff --git a/management/manager/process.go b/management/manager/process.go index 153f8d9..ec09e45 100644 --- a/management/manager/process.go +++ b/management/manager/process.go @@ -5,7 +5,7 @@ import ( "strings" "unicode" - "../editor" + "github.com/bosssauce/ponzu/management/editor" "golang.org/x/text/transform" "golang.org/x/text/unicode/norm" diff --git a/system/admin/admin.go b/system/admin/admin.go index af8e688..b375eb6 100644 --- a/system/admin/admin.go +++ b/system/admin/admin.go @@ -6,8 +6,8 @@ import ( "bytes" "html/template" - "../../content" - "../../system/db" + "github.com/bosssauce/ponzu/content" + "github.com/bosssauce/ponzu/system/db" ) var startAdminHTML = `<!doctype html> diff --git a/system/admin/cache.go b/system/admin/cache.go index 0faf7ec..0de45af 100644 --- a/system/admin/cache.go +++ b/system/admin/cache.go @@ -5,7 +5,7 @@ import ( "net/http" "strings" - "../../system/db" + "github.com/bosssauce/ponzu/system/db" ) // CacheControl sets the default cache policy on static asset responses diff --git a/system/admin/config/config.go b/system/admin/config/config.go index 0da756f..c5ef1cd 100644 --- a/system/admin/config/config.go +++ b/system/admin/config/config.go @@ -1,8 +1,8 @@ package config import ( - "../../../content" - "../../../management/editor" + "github.com/bosssauce/ponzu/content" + "github.com/bosssauce/ponzu/management/editor" ) //Config represents the confirgurable options of the system diff --git a/system/admin/handlers.go b/system/admin/handlers.go index 32a8e95..41e1095 100644 --- a/system/admin/handlers.go +++ b/system/admin/handlers.go @@ -12,12 +12,12 @@ import ( "strings" "time" - "../../content" - "../../management/editor" - "../../management/manager" - "../../system/db" - "./config" - "./user" + "github.com/bosssauce/ponzu/content" + "github.com/bosssauce/ponzu/management/editor" + "github.com/bosssauce/ponzu/management/manager" + "github.com/bosssauce/ponzu/system/admin/config" + "github.com/bosssauce/ponzu/system/admin/user" + "github.com/bosssauce/ponzu/system/db" "github.com/nilslice/jwt" ) diff --git a/system/admin/server.go b/system/admin/server.go index 3f02a69..312a3de 100644 --- a/system/admin/server.go +++ b/system/admin/server.go @@ -3,7 +3,7 @@ package admin import ( "net/http" - "./user" + "github.com/bosssauce/ponzu/system/admin/user" ) // Run adds Handlers to default http listener for Admin diff --git a/system/api/handlers.go b/system/api/handlers.go index 7828419..5fb79bc 100644 --- a/system/api/handlers.go +++ b/system/api/handlers.go @@ -6,8 +6,8 @@ import ( "log" "net/http" - "../../content" - "../../system/db" + "github.com/bosssauce/ponzu/content" + "github.com/bosssauce/ponzu/system/db" ) func typesHandler(res http.ResponseWriter, req *http.Request) { diff --git a/system/db/config.go b/system/db/config.go index 4dc45e2..bfcafc6 100644 --- a/system/db/config.go +++ b/system/db/config.go @@ -8,7 +8,7 @@ import ( "net/url" "time" - "../admin/config" + "github.com/bosssauce/ponzu/system/admin/config" "github.com/boltdb/bolt" "github.com/gorilla/schema" diff --git a/system/db/content.go b/system/db/content.go index 740e7b1..d637085 100644 --- a/system/db/content.go +++ b/system/db/content.go @@ -8,9 +8,9 @@ import ( "strconv" "strings" - "../../content" - "../../management/editor" - "../../management/manager" + "github.com/bosssauce/ponzu/content" + "github.com/bosssauce/ponzu/management/editor" + "github.com/bosssauce/ponzu/management/manager" "github.com/boltdb/bolt" "github.com/gorilla/schema" diff --git a/system/db/init.go b/system/db/init.go index 3c47717..2d73b35 100644 --- a/system/db/init.go +++ b/system/db/init.go @@ -4,8 +4,8 @@ import ( "encoding/json" "log" - "../../content" - "../../system/admin/config" + "github.com/bosssauce/ponzu/content" + "github.com/bosssauce/ponzu/system/admin/config" "github.com/boltdb/bolt" "github.com/nilslice/jwt" diff --git a/system/db/user.go b/system/db/user.go index f4862b5..a3a0be3 100644 --- a/system/db/user.go +++ b/system/db/user.go @@ -5,7 +5,7 @@ import ( "encoding/json" "errors" - "../admin/user" + "github.com/bosssauce/ponzu/system/admin/user" "github.com/boltdb/bolt" ) |