From ac949695791da439496c4ce96ddda3153437e23a Mon Sep 17 00:00:00 2001 From: Kevin Chabowski Date: Sat, 21 Sep 2013 12:01:16 +0200 Subject: Project will move to GitHub soon. --- activate.go | 2 +- checkjobs.go | 4 ++-- db.go | 4 ++-- deleteacc.go | 2 +- handler.go | 2 +- jobedit.go | 6 +++--- jobs.go | 2 +- login.go | 2 +- mailing.go | 4 ++-- mails.go | 4 ++-- main.go | 4 ++-- model/dbmodel.go | 2 +- model/mysql/jobs.go | 4 ++-- model/mysql/mysql.go | 2 +- model/mysql/users.go | 2 +- pwreset.go | 2 +- register.go | 2 +- settings.go | 2 +- 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" ) diff --git a/db.go b/db.go index 2f9abf2..b752693 100644 --- a/db.go +++ b/db.go @@ -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" ) diff --git a/handler.go b/handler.go index f0f6e1e..8e84e76 100644 --- a/handler.go +++ b/handler.go @@ -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" ) diff --git a/jobedit.go b/jobedit.go index 6057767..6799bf8 100644 --- a/jobedit.go +++ b/jobedit.go @@ -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" diff --git a/jobs.go b/jobs.go index d715a04..f94a656 100644 --- a/jobs.go +++ b/jobs.go @@ -2,7 +2,7 @@ package main import ( "github.com/gorilla/sessions" - "kch42.de/gostuff/mailremind/model" + "github.com/kch42/mailremind/model" "net/http" ) diff --git a/login.go b/login.go index 48b65e4..e7acbb0 100644 --- a/login.go +++ b/login.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" ) diff --git a/mailing.go b/mailing.go index efa9a01..0c2f26b 100644 --- a/mailing.go +++ b/mailing.go @@ -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" ) diff --git a/mails.go b/mails.go index dfae5d3..d43245e 100644 --- a/mails.go +++ b/mails.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" "path" "text/template" diff --git a/main.go b/main.go index d9bcb6a..503453f 100644 --- a/main.go +++ b/main.go @@ -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" ) diff --git a/pwreset.go b/pwreset.go index f772a0a..394b183 100644 --- a/pwreset.go +++ b/pwreset.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" ) 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" diff --git a/tpls.go b/tpls.go index a3a86a1..92cbeb0 100644 --- a/tpls.go +++ b/tpls.go @@ -1,8 +1,8 @@ package main import ( + "github.com/kch42/mailremind/confhelper" "html/template" - "kch42.de/gostuff/mailremind/confhelper" "log" "path" ) -- cgit v1.2.3-54-g00ecf