summaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
Diffstat (limited to 'system')
-rw-r--r--system/addon/api.go2
-rw-r--r--system/admin/admin.go8
-rw-r--r--system/admin/config/config.go4
-rw-r--r--system/admin/handlers.go16
-rw-r--r--system/admin/server.go8
-rw-r--r--system/api/external.go6
-rw-r--r--system/api/handlers.go6
-rw-r--r--system/db/config.go2
-rw-r--r--system/db/content.go2
-rw-r--r--system/db/init.go4
-rw-r--r--system/db/user.go2
-rw-r--r--system/tls/enable.go2
12 files changed, 31 insertions, 31 deletions
diff --git a/system/addon/api.go b/system/addon/api.go
index 4c3152b..b79a29e 100644
--- a/system/addon/api.go
+++ b/system/addon/api.go
@@ -9,7 +9,7 @@ import (
"net/http"
"time"
- "github.com/bosssauce/ponzu/system/db"
+ "github.com/ponzu-cms/ponzu/system/db"
)
// ContentAll retrives all items from the HTTP API within the provided namespace
diff --git a/system/admin/admin.go b/system/admin/admin.go
index 78f607d..4d9df30 100644
--- a/system/admin/admin.go
+++ b/system/admin/admin.go
@@ -8,10 +8,10 @@ import (
"html/template"
"net/http"
- "github.com/bosssauce/ponzu/system/admin/user"
- "github.com/bosssauce/ponzu/system/api/analytics"
- "github.com/bosssauce/ponzu/system/db"
- "github.com/bosssauce/ponzu/system/item"
+ "github.com/ponzu-cms/ponzu/system/admin/user"
+ "github.com/ponzu-cms/ponzu/system/api/analytics"
+ "github.com/ponzu-cms/ponzu/system/db"
+ "github.com/ponzu-cms/ponzu/system/item"
)
var startAdminHTML = `<!doctype html>
diff --git a/system/admin/config/config.go b/system/admin/config/config.go
index ab17425..fdc1ae4 100644
--- a/system/admin/config/config.go
+++ b/system/admin/config/config.go
@@ -1,8 +1,8 @@
package config
import (
- "github.com/bosssauce/ponzu/management/editor"
- "github.com/bosssauce/ponzu/system/item"
+ "github.com/ponzu-cms/ponzu/management/editor"
+ "github.com/ponzu-cms/ponzu/system/item"
)
// Config represents the confirgurable options of the system
diff --git a/system/admin/handlers.go b/system/admin/handlers.go
index 266535a..7d33f80 100644
--- a/system/admin/handlers.go
+++ b/system/admin/handlers.go
@@ -11,14 +11,14 @@ import (
"strings"
"time"
- "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/upload"
- "github.com/bosssauce/ponzu/system/admin/user"
- "github.com/bosssauce/ponzu/system/api"
- "github.com/bosssauce/ponzu/system/db"
- "github.com/bosssauce/ponzu/system/item"
+ "github.com/ponzu-cms/ponzu/management/editor"
+ "github.com/ponzu-cms/ponzu/management/manager"
+ "github.com/ponzu-cms/ponzu/system/admin/config"
+ "github.com/ponzu-cms/ponzu/system/admin/upload"
+ "github.com/ponzu-cms/ponzu/system/admin/user"
+ "github.com/ponzu-cms/ponzu/system/api"
+ "github.com/ponzu-cms/ponzu/system/db"
+ "github.com/ponzu-cms/ponzu/system/item"
"github.com/gorilla/schema"
emailer "github.com/nilslice/email"
diff --git a/system/admin/server.go b/system/admin/server.go
index bc6f4d6..b99ec37 100644
--- a/system/admin/server.go
+++ b/system/admin/server.go
@@ -6,9 +6,9 @@ import (
"os"
"path/filepath"
- "github.com/bosssauce/ponzu/system/admin/user"
- "github.com/bosssauce/ponzu/system/api"
- "github.com/bosssauce/ponzu/system/db"
+ "github.com/ponzu-cms/ponzu/system/admin/user"
+ "github.com/ponzu-cms/ponzu/system/api"
+ "github.com/ponzu-cms/ponzu/system/db"
)
// Run adds Handlers to default http listener for Admin
@@ -42,7 +42,7 @@ func Run() {
log.Fatal("Couldn't find current directory for file server.")
}
- staticDir := filepath.Join(pwd, "cmd", "ponzu", "vendor", "github.com", "bosssauce", "ponzu", "system")
+ staticDir := filepath.Join(pwd, "cmd", "ponzu", "vendor", "github.com", "ponzu-cms", "ponzu", "system")
http.Handle("/admin/static/", db.CacheControl(http.FileServer(restrict(http.Dir(staticDir)))))
// API path needs to be registered within server package so that it is handled
diff --git a/system/api/external.go b/system/api/external.go
index 8112e29..86e4a99 100644
--- a/system/api/external.go
+++ b/system/api/external.go
@@ -7,9 +7,9 @@ import (
"strings"
"time"
- "github.com/bosssauce/ponzu/system/admin/upload"
- "github.com/bosssauce/ponzu/system/db"
- "github.com/bosssauce/ponzu/system/item"
+ "github.com/ponzu-cms/ponzu/system/admin/upload"
+ "github.com/ponzu-cms/ponzu/system/db"
+ "github.com/ponzu-cms/ponzu/system/item"
)
// Externalable accepts or rejects external POST requests to endpoints such as:
diff --git a/system/api/handlers.go b/system/api/handlers.go
index 1e2f1e2..788b2a0 100644
--- a/system/api/handlers.go
+++ b/system/api/handlers.go
@@ -8,9 +8,9 @@ import (
"strconv"
"strings"
- "github.com/bosssauce/ponzu/system/api/analytics"
- "github.com/bosssauce/ponzu/system/db"
- "github.com/bosssauce/ponzu/system/item"
+ "github.com/ponzu-cms/ponzu/system/api/analytics"
+ "github.com/ponzu-cms/ponzu/system/db"
+ "github.com/ponzu-cms/ponzu/system/item"
)
func typesHandler(res http.ResponseWriter, req *http.Request) {
diff --git a/system/db/config.go b/system/db/config.go
index 4bbf29b..0e49307 100644
--- a/system/db/config.go
+++ b/system/db/config.go
@@ -7,7 +7,7 @@ import (
"net/url"
"strings"
- "github.com/bosssauce/ponzu/system/admin/config"
+ "github.com/ponzu-cms/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 535b601..8bc76a6 100644
--- a/system/db/content.go
+++ b/system/db/content.go
@@ -10,7 +10,7 @@ import (
"strconv"
"strings"
- "github.com/bosssauce/ponzu/system/item"
+ "github.com/ponzu-cms/ponzu/system/item"
"github.com/boltdb/bolt"
"github.com/gorilla/schema"
diff --git a/system/db/init.go b/system/db/init.go
index 9a0c3e5..bf93bc6 100644
--- a/system/db/init.go
+++ b/system/db/init.go
@@ -4,8 +4,8 @@ import (
"encoding/json"
"log"
- "github.com/bosssauce/ponzu/system/admin/config"
- "github.com/bosssauce/ponzu/system/item"
+ "github.com/ponzu-cms/ponzu/system/admin/config"
+ "github.com/ponzu-cms/ponzu/system/item"
"github.com/boltdb/bolt"
"github.com/nilslice/jwt"
diff --git a/system/db/user.go b/system/db/user.go
index b92a62a..1b15a82 100644
--- a/system/db/user.go
+++ b/system/db/user.go
@@ -7,7 +7,7 @@ import (
"fmt"
"net/http"
- "github.com/bosssauce/ponzu/system/admin/user"
+ "github.com/ponzu-cms/ponzu/system/admin/user"
"github.com/boltdb/bolt"
"github.com/nilslice/jwt"
diff --git a/system/tls/enable.go b/system/tls/enable.go
index 4ade194..04f032a 100644
--- a/system/tls/enable.go
+++ b/system/tls/enable.go
@@ -9,7 +9,7 @@ import (
"path/filepath"
"time"
- "github.com/bosssauce/ponzu/system/db"
+ "github.com/ponzu-cms/ponzu/system/db"
"golang.org/x/crypto/acme/autocert"
)