1
0
Fork 0
forked from External/grumble

Migrate from mumbleapp.com to mumble.info.

This commit is contained in:
Mikkel Krautz 2014-04-15 14:13:00 +02:00
parent 48765ff1e8
commit 8302bb2b08
12 changed files with 33 additions and 33 deletions

View file

@ -24,6 +24,6 @@ and on Windows, do something like this (for cmd.exe):
Then, it's time to install Grumble. The following line should do the trick:
$ go get mumbleapp.com/grumble
$ go get mumble.info/grumble
And that should be it. Grumble has been built, and is available in $GOPATH/bin as 'grumble'.
And that should be it. Grumble has been built, and is available in $GOPATH/bin as 'grumble'.

View file

@ -6,7 +6,7 @@ package main
import (
"encoding/hex"
"mumbleapp.com/grumble/pkg/acl"
"mumble.info/grumble/pkg/acl"
)
// A Mumble channel

View file

@ -13,10 +13,10 @@ import (
"errors"
"io"
"log"
"mumbleapp.com/grumble/pkg/acl"
"mumbleapp.com/grumble/pkg/cryptstate"
"mumbleapp.com/grumble/pkg/mumbleproto"
"mumbleapp.com/grumble/pkg/packetdata"
"mumble.info/grumble/pkg/acl"
"mumble.info/grumble/pkg/cryptstate"
"mumble.info/grumble/pkg/mumbleproto"
"mumble.info/grumble/pkg/packetdata"
"net"
"runtime"
"time"

View file

@ -10,11 +10,11 @@ import (
"io"
"io/ioutil"
"log"
"mumbleapp.com/grumble/pkg/acl"
"mumbleapp.com/grumble/pkg/ban"
"mumbleapp.com/grumble/pkg/freezer"
"mumbleapp.com/grumble/pkg/mumbleproto"
"mumbleapp.com/grumble/pkg/serverconf"
"mumble.info/grumble/pkg/acl"
"mumble.info/grumble/pkg/ban"
"mumble.info/grumble/pkg/freezer"
"mumble.info/grumble/pkg/mumbleproto"
"mumble.info/grumble/pkg/serverconf"
"os"
"path/filepath"
"strconv"

View file

@ -6,7 +6,7 @@ package main
import (
"code.google.com/p/goprotobuf/proto"
"mumbleapp.com/grumble/pkg/replacefile"
"mumble.info/grumble/pkg/replacefile"
"io/ioutil"
"path/filepath"
"strconv"
@ -56,4 +56,4 @@ func (server *Server) freezeToFile() (err error) {
}
return nil
}
}

View file

@ -8,8 +8,8 @@ import (
"flag"
"fmt"
"log"
"mumbleapp.com/grumble/pkg/blobstore"
"mumbleapp.com/grumble/pkg/logtarget"
"mumble.info/grumble/pkg/blobstore"
"mumble.info/grumble/pkg/logtarget"
"os"
"path/filepath"
"regexp"

View file

@ -9,10 +9,10 @@ import (
"crypto/aes"
"crypto/tls"
"fmt"
"mumbleapp.com/grumble/pkg/acl"
"mumbleapp.com/grumble/pkg/ban"
"mumbleapp.com/grumble/pkg/freezer"
"mumbleapp.com/grumble/pkg/mumbleproto"
"mumble.info/grumble/pkg/acl"
"mumble.info/grumble/pkg/ban"
"mumble.info/grumble/pkg/freezer"
"mumble.info/grumble/pkg/mumbleproto"
"net"
"time"
)

View file

@ -13,8 +13,8 @@ import (
"database/sql"
"errors"
"log"
"mumbleapp.com/grumble/pkg/acl"
"mumbleapp.com/grumble/pkg/ban"
"mumble.info/grumble/pkg/acl"
"mumble.info/grumble/pkg/ban"
"net"
"os"
"path/filepath"

View file

@ -7,7 +7,7 @@ package cryptstate
import (
"crypto/aes"
"crypto/cipher"
"mumbleapp.com/grumble/pkg/cryptstate/ocb2"
"mumble.info/grumble/pkg/cryptstate/ocb2"
)
// ocb2Mode implements the OCB2-AES128 CryptoMode

View file

@ -17,14 +17,14 @@ import (
"fmt"
"hash"
"log"
"mumbleapp.com/grumble/pkg/acl"
"mumbleapp.com/grumble/pkg/ban"
"mumbleapp.com/grumble/pkg/freezer"
"mumbleapp.com/grumble/pkg/htmlfilter"
"mumbleapp.com/grumble/pkg/logtarget"
"mumbleapp.com/grumble/pkg/mumbleproto"
"mumbleapp.com/grumble/pkg/serverconf"
"mumbleapp.com/grumble/pkg/sessionpool"
"mumble.info/grumble/pkg/acl"
"mumble.info/grumble/pkg/ban"
"mumble.info/grumble/pkg/freezer"
"mumble.info/grumble/pkg/htmlfilter"
"mumble.info/grumble/pkg/logtarget"
"mumble.info/grumble/pkg/mumbleproto"
"mumble.info/grumble/pkg/serverconf"
"mumble.info/grumble/pkg/sessionpool"
"net"
"path/filepath"
"strings"

View file

@ -8,7 +8,7 @@ package main
import (
"fmt"
"mumbleapp.com/grumble/pkg/logtarget"
"mumble.info/grumble/pkg/logtarget"
"os"
"os/signal"
"syscall"

View file

@ -4,7 +4,7 @@
package main
import "mumbleapp.com/grumble/pkg/acl"
import "mumble.info/grumble/pkg/acl"
// A VoiceTarget holds information about a single
// VoiceTarget entry of a Client.