summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaria Carolin Chabowski <laria@laria.me>2016-08-16 08:13:19 +0200
committerLaria Carolin Chabowski <laria@laria.me>2016-08-16 08:13:19 +0200
commit330438bb1353bc93dcab2c7848d258e8ccf41379 (patch)
treec1edfedf1e44bdd00e5656d347fac19e748750b4
parentaff7bc512d5726a020e4107690abd24ae91b1b48 (diff)
downloadsimplechat-330438bb1353bc93dcab2c7848d258e8ccf41379.tar.gz
simplechat-330438bb1353bc93dcab2c7848d258e8ccf41379.tar.bz2
simplechat-330438bb1353bc93dcab2c7848d258e8ccf41379.zip
rename github accountHEADmaster
-rw-r--r--README.markdown6
-rw-r--r--main.go2
-rw-r--r--tpls/home.html2
-rw-r--r--websock.go2
4 files changed, 6 insertions, 6 deletions
diff --git a/README.markdown b/README.markdown
index 168d6c4..9d43341 100644
--- a/README.markdown
+++ b/README.markdown
@@ -4,14 +4,14 @@ A simple websocket-based chatserver written in Go.
## Installation
-`go get github.com/kch42/simplechat`
+`go get github.com/silvasur/simplechat`
You will also need the [jQuery](http://jquery.com) library. Download the minified version from <http://jquery.com/download/> and save it as `static/jquery.min.js`
## Screenshot
-![Screenshot](http://kch42.de/cg/81e9bd66.png)
+![Screenshot](http://hi-im.laria.me/cg/81e9bd66.png)
## You are also free to use my public installation
-[chat.kch42.net](http://chat.kch42.net)
+[chat.silvasur.net](http://chat.silvasur.net)
diff --git a/main.go b/main.go
index 6bf55c4..18cde85 100644
--- a/main.go
+++ b/main.go
@@ -3,7 +3,7 @@ package main
import (
"flag"
"github.com/gorilla/mux"
- "github.com/kch42/simplechat/chat"
+ "github.com/silvasur/simplechat/chat"
"log"
"math"
"math/rand"
diff --git a/tpls/home.html b/tpls/home.html
index 61b5678..6e6f4b0 100644
--- a/tpls/home.html
+++ b/tpls/home.html
@@ -38,7 +38,7 @@
<h2>Open source</h2>
<div class="content">
- <p>simplechat is open source. Go get the sources on <a href="http://github.com/kch42/simplechat">GitHub</a>!</p>
+ <p>simplechat is open source. Go get the sources on <a href="http://github.com/silvasur/simplechat">GitHub</a>!</p>
</div>
</section>
</body>
diff --git a/websock.go b/websock.go
index f42580f..edbeaaa 100644
--- a/websock.go
+++ b/websock.go
@@ -3,7 +3,7 @@ package main
import (
"code.google.com/p/go.net/websocket"
"github.com/gorilla/mux"
- "github.com/kch42/simplechat/chat"
+ "github.com/silvasur/simplechat/chat"
"net/http"
"time"
)