From 4faae9784e6595e5df5b58dcfa0ac4c66959f606 Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Mon, 18 Aug 2014 21:51:03 +0800 Subject: [PATCH] . --- README.md | 4 ++-- conf/wide.go | 2 +- editor/editors.go | 4 ++-- file/files.go | 2 +- main.go | 12 ++++++------ output/outputs.go | 2 +- shell/shells.go | 4 ++-- 7 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 2caf123..9f3095a 100644 --- a/README.md +++ b/README.md @@ -23,9 +23,9 @@ A simple Web **IDE** for golang. ## License ## -Copyright (c) 2014, Liang Ding (http://88250.b3log.org) +Copyright (c) 2014, B3log Team (http://b3log.org) -Licensed under the [Apache License 2.0](https://github.com/88250/wide/blob/master/LICENSE). +Licensed under the [Apache License 2.0](https://github.com/b3log/wide/blob/master/LICENSE). ## Credits ## diff --git a/conf/wide.go b/conf/wide.go index 97c2504..8ff78d7 100644 --- a/conf/wide.go +++ b/conf/wide.go @@ -3,7 +3,7 @@ package conf import ( "encoding/json" "flag" - "github.com/88250/wide/util" + "github.com/b3log/wide/util" "github.com/golang/glog" "io/ioutil" "os" diff --git a/editor/editors.go b/editor/editors.go index 8d97018..ae06259 100644 --- a/editor/editors.go +++ b/editor/editors.go @@ -3,8 +3,8 @@ package editor import ( "bytes" "encoding/json" - "github.com/88250/wide/session" - "github.com/88250/wide/util" + "github.com/b3log/wide/session" + "github.com/b3log/wide/util" "github.com/golang/glog" "github.com/gorilla/websocket" "net/http" diff --git a/file/files.go b/file/files.go index 3c4f522..beca44d 100644 --- a/file/files.go +++ b/file/files.go @@ -2,7 +2,7 @@ package file import ( "encoding/json" - "github.com/88250/wide/conf" + "github.com/b3log/wide/conf" "github.com/golang/glog" "io/ioutil" "net/http" diff --git a/main.go b/main.go index acbd12d..9128f94 100644 --- a/main.go +++ b/main.go @@ -5,12 +5,12 @@ package main // import ( - "github.com/88250/wide/conf" - "github.com/88250/wide/editor" - "github.com/88250/wide/file" - "github.com/88250/wide/output" - "github.com/88250/wide/session" - "github.com/88250/wide/shell" + "github.com/b3log/wide/conf" + "github.com/b3log/wide/editor" + "github.com/b3log/wide/file" + "github.com/b3log/wide/output" + "github.com/b3log/wide/session" + "github.com/b3log/wide/shell" "github.com/golang/glog" "html/template" "math/rand" diff --git a/output/outputs.go b/output/outputs.go index 8f18057..47bdf68 100644 --- a/output/outputs.go +++ b/output/outputs.go @@ -2,7 +2,7 @@ package output import ( "encoding/json" - "github.com/88250/wide/session" + "github.com/b3log/wide/session" "github.com/golang/glog" "github.com/gorilla/websocket" "io" diff --git a/shell/shells.go b/shell/shells.go index 0c3bf86..a261603 100644 --- a/shell/shells.go +++ b/shell/shells.go @@ -1,8 +1,8 @@ package shell import ( - "github.com/88250/wide/conf" - "github.com/88250/wide/session" + "github.com/b3log/wide/conf" + "github.com/b3log/wide/session" "github.com/golang/glog" "github.com/gorilla/websocket" "net/http"