summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2013-09-21 12:01:16 +0200
committerKevin Chabowski <kevin@kch42.de>2013-09-21 12:01:16 +0200
commitac949695791da439496c4ce96ddda3153437e23a (patch)
tree641c459649110178950017cb9fdd260431d63f1b
parentbc1dd802e346f02f36888174d9095baf12352f48 (diff)
downloadmailremind-ac949695791da439496c4ce96ddda3153437e23a.tar.gz
mailremind-ac949695791da439496c4ce96ddda3153437e23a.tar.bz2
mailremind-ac949695791da439496c4ce96ddda3153437e23a.zip
Project will move to GitHub soon.
-rw-r--r--activate.go2
-rw-r--r--checkjobs.go4
-rw-r--r--db.go4
-rw-r--r--deleteacc.go2
-rw-r--r--handler.go2
-rw-r--r--jobedit.go6
-rw-r--r--jobs.go2
-rw-r--r--login.go2
-rw-r--r--mailing.go4
-rw-r--r--mails.go4
-rw-r--r--main.go4
-rw-r--r--model/dbmodel.go2
-rw-r--r--model/mysql/jobs.go4
-rw-r--r--model/mysql/mysql.go2
-rw-r--r--model/mysql/users.go2
-rw-r--r--pwreset.go2
-rw-r--r--register.go2
-rw-r--r--settings.go2
-rw-r--r--tpls.go2
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"
)