diff options
-rw-r--r-- | activate.go | 2 | ||||
-rw-r--r-- | checkjobs.go | 4 | ||||
-rw-r--r-- | db.go | 4 | ||||
-rw-r--r-- | deleteacc.go | 2 | ||||
-rw-r--r-- | handler.go | 2 | ||||
-rw-r--r-- | jobedit.go | 6 | ||||
-rw-r--r-- | jobs.go | 2 | ||||
-rw-r--r-- | login.go | 2 | ||||
-rw-r--r-- | mailing.go | 4 | ||||
-rw-r--r-- | mails.go | 4 | ||||
-rw-r--r-- | main.go | 4 | ||||
-rw-r--r-- | model/dbmodel.go | 2 | ||||
-rw-r--r-- | model/mysql/jobs.go | 4 | ||||
-rw-r--r-- | model/mysql/mysql.go | 2 | ||||
-rw-r--r-- | model/mysql/users.go | 2 | ||||
-rw-r--r-- | pwreset.go | 2 | ||||
-rw-r--r-- | register.go | 2 | ||||
-rw-r--r-- | settings.go | 2 | ||||
-rw-r--r-- | tpls.go | 2 |
19 files changed, 27 insertions, 27 deletions
diff --git a/activate.go b/activate.go index 74e2d76..cdc37a2 100644 --- a/activate.go +++ b/activate.go @@ -2,7 +2,7 @@ package main import ( "github.com/gorilla/sessions" - "kch42.de/gostuff/mailremind/model" + "github.com/kch42/mailremind/model" "log" "net/http" ) diff --git a/checkjobs.go b/checkjobs.go index 1bd94b2..af9e9e5 100644 --- a/checkjobs.go +++ b/checkjobs.go @@ -3,8 +3,8 @@ package main import ( "bytes" "fmt" - "kch42.de/gostuff/mailremind/confhelper" - "kch42.de/gostuff/mailremind/model" + "github.com/kch42/mailremind/confhelper" + "github.com/kch42/mailremind/model" "log" "time" ) @@ -1,8 +1,8 @@ package main import ( - "kch42.de/gostuff/mailremind/confhelper" - "kch42.de/gostuff/mailremind/model" + "github.com/kch42/mailremind/confhelper" + "github.com/kch42/mailremind/model" "log" ) diff --git a/deleteacc.go b/deleteacc.go index 24c90fe..36ef758 100644 --- a/deleteacc.go +++ b/deleteacc.go @@ -2,7 +2,7 @@ package main import ( "github.com/gorilla/sessions" - "kch42.de/gostuff/mailremind/model" + "github.com/kch42/mailremind/model" "log" "net/http" ) @@ -2,8 +2,8 @@ package main import ( "github.com/gorilla/sessions" + "github.com/kch42/mailremind/model" "html/template" - "kch42.de/gostuff/mailremind/model" "log" "net/http" ) @@ -3,9 +3,9 @@ package main import ( "github.com/gorilla/mux" "github.com/gorilla/sessions" - "kch42.de/gostuff/mailremind/confhelper" - "kch42.de/gostuff/mailremind/model" - "kch42.de/gostuff/mailremind/schedule" + "github.com/kch42/mailremind/confhelper" + "github.com/kch42/mailremind/model" + "github.com/kch42/mailremind/schedule" "log" "net/http" "net/url" @@ -2,7 +2,7 @@ package main import ( "github.com/gorilla/sessions" - "kch42.de/gostuff/mailremind/model" + "github.com/kch42/mailremind/model" "net/http" ) @@ -3,7 +3,7 @@ package main import ( "code.google.com/p/go.crypto/bcrypt" "github.com/gorilla/sessions" - "kch42.de/gostuff/mailremind/model" + "github.com/kch42/mailremind/model" "log" "net/http" ) @@ -1,8 +1,8 @@ package main import ( - "kch42.de/gostuff/mailremind/confhelper" - "kch42.de/gostuff/mailremind/mailing" + "github.com/kch42/mailremind/confhelper" + "github.com/kch42/mailremind/mailing" "log" ) @@ -3,8 +3,8 @@ package main import ( "bytes" "fmt" - "kch42.de/gostuff/mailremind/confhelper" - "kch42.de/gostuff/mailremind/model" + "github.com/kch42/mailremind/confhelper" + "github.com/kch42/mailremind/model" "log" "path" "text/template" @@ -6,9 +6,9 @@ import ( "fmt" "github.com/gorilla/mux" "github.com/gorilla/sessions" + "github.com/kch42/mailremind/confhelper" + _ "github.com/kch42/mailremind/model/mysql" "github.com/kch42/simpleconf" - "kch42.de/gostuff/mailremind/confhelper" - _ "kch42.de/gostuff/mailremind/model/mysql" "log" "math/rand" "net/http" diff --git a/model/dbmodel.go b/model/dbmodel.go index d4036d1..a4f4e4a 100644 --- a/model/dbmodel.go +++ b/model/dbmodel.go @@ -3,7 +3,7 @@ package model import ( "errors" "fmt" - "kch42.de/gostuff/mailremind/schedule" + "github.com/kch42/mailremind/schedule" "sync" "time" ) diff --git a/model/mysql/jobs.go b/model/mysql/jobs.go index eef5667..2f30005 100644 --- a/model/mysql/jobs.go +++ b/model/mysql/jobs.go @@ -3,8 +3,8 @@ package mysql import ( "database/sql" "fmt" - "kch42.de/gostuff/mailremind/model" - "kch42.de/gostuff/mailremind/schedule" + "github.com/kch42/mailremind/model" + "github.com/kch42/mailremind/schedule" "log" "time" ) diff --git a/model/mysql/mysql.go b/model/mysql/mysql.go index 08c55bc..6314a44 100644 --- a/model/mysql/mysql.go +++ b/model/mysql/mysql.go @@ -4,7 +4,7 @@ import ( "database/sql" "fmt" _ "github.com/go-sql-driver/mysql" - "kch42.de/gostuff/mailremind/model" + "github.com/kch42/mailremind/model" "strconv" ) diff --git a/model/mysql/users.go b/model/mysql/users.go index f4e3c1c..8d3eea6 100644 --- a/model/mysql/users.go +++ b/model/mysql/users.go @@ -2,7 +2,7 @@ package mysql import ( "database/sql" - "kch42.de/gostuff/mailremind/model" + "github.com/kch42/mailremind/model" "log" "time" ) @@ -3,7 +3,7 @@ package main import ( "code.google.com/p/go.crypto/bcrypt" "github.com/gorilla/sessions" - "kch42.de/gostuff/mailremind/model" + "github.com/kch42/mailremind/model" "log" "net/http" ) diff --git a/register.go b/register.go index 9c8e7c1..0b45ca3 100644 --- a/register.go +++ b/register.go @@ -3,7 +3,7 @@ package main import ( "code.google.com/p/go.crypto/bcrypt" "github.com/gorilla/sessions" - "kch42.de/gostuff/mailremind/model" + "github.com/kch42/mailremind/model" "log" "math/rand" "net/http" diff --git a/settings.go b/settings.go index 4bde9dc..4548ca3 100644 --- a/settings.go +++ b/settings.go @@ -3,7 +3,7 @@ package main import ( "code.google.com/p/go.crypto/bcrypt" "github.com/gorilla/sessions" - "kch42.de/gostuff/mailremind/model" + "github.com/kch42/mailremind/model" "log" "net/http" "time" @@ -1,8 +1,8 @@ package main import ( + "github.com/kch42/mailremind/confhelper" "html/template" - "kch42.de/gostuff/mailremind/confhelper" "log" "path" ) |