Skip to content

Commit

Permalink
twstrike -> coyim
Browse files Browse the repository at this point in the history
  • Loading branch information
juniorz committed Oct 2, 2017
1 parent 4756764 commit 9e03626
Show file tree
Hide file tree
Showing 157 changed files with 393 additions and 393 deletions.
10 changes: 5 additions & 5 deletions cli.go
Expand Up @@ -3,11 +3,11 @@
package main

import (
"github.com/twstrike/coyim/cli"
"github.com/twstrike/coyim/cli/terminal/real"
"github.com/twstrike/coyim/i18n"
"github.com/twstrike/coyim/session"
"github.com/twstrike/coyim/xmpp"
"github.com/coyim/coyim/cli"
"github.com/coyim/coyim/cli/terminal/real"
"github.com/coyim/coyim/i18n"
"github.com/coyim/coyim/session"
"github.com/coyim/coyim/xmpp"
)

func runClient() {
Expand Down
2 changes: 1 addition & 1 deletion cli/commands.go
@@ -1,6 +1,6 @@
package cli

import "github.com/twstrike/coyim/client"
import "github.com/coyim/coyim/client"

func (c *cliUI) ExecuteCmd(comm interface{}) {
c.commands <- comm
Expand Down
4 changes: 2 additions & 2 deletions cli/edit_roster.go
Expand Up @@ -8,8 +8,8 @@ import (
"os"
"path/filepath"

"github.com/twstrike/coyim/ui"
"github.com/twstrike/coyim/xmpp/data"
"github.com/coyim/coyim/ui"
"github.com/coyim/coyim/xmpp/data"
)

// RosterEdit contains information about a pending roster edit. Roster edits
Expand Down
2 changes: 1 addition & 1 deletion cli/input.go
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"sync"

"github.com/twstrike/coyim/cli/terminal"
"github.com/coyim/coyim/cli/terminal"
)

type uiCommand struct {
Expand Down
4 changes: 2 additions & 2 deletions cli/input_test.go
Expand Up @@ -6,8 +6,8 @@ import (
"reflect"
"testing"

"github.com/twstrike/coyim/i18n"
"github.com/twstrike/gotk3adapter/glib_mock"
"github.com/coyim/coyim/i18n"
"github.com/coyim/gotk3adapter/glib_mock"

. "gopkg.in/check.v1"
)
Expand Down
6 changes: 3 additions & 3 deletions cli/session_events.go
Expand Up @@ -5,9 +5,9 @@ import (
"log"
"time"

"github.com/twstrike/coyim/session/events"
"github.com/twstrike/coyim/ui"
"github.com/twstrike/coyim/xmpp/utils"
"github.com/coyim/coyim/session/events"
"github.com/coyim/coyim/ui"
"github.com/coyim/coyim/xmpp/utils"
)

func (c *cliUI) handleSessionEvent(ev events.Event) {
Expand Down
2 changes: 1 addition & 1 deletion cli/term.go
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"time"

"github.com/twstrike/coyim/cli/terminal"
"github.com/coyim/coyim/cli/terminal"
)

func updateTerminalSize(term terminal.Terminal, tc terminal.Control) {
Expand Down
2 changes: 1 addition & 1 deletion cli/terminal/real/terminal.go
Expand Up @@ -3,7 +3,7 @@ package real
import (
"io"

"github.com/twstrike/coyim/cli/terminal"
"github.com/coyim/coyim/cli/terminal"
ssh_terminal "golang.org/x/crypto/ssh/terminal"
)

Expand Down
6 changes: 3 additions & 3 deletions cli/tls.go
Expand Up @@ -4,9 +4,9 @@ import (
"crypto/x509"
"errors"

"github.com/twstrike/coyim/config"
"github.com/twstrike/coyim/digests"
ourtls "github.com/twstrike/coyim/tls"
"github.com/coyim/coyim/config"
"github.com/coyim/coyim/digests"
ourtls "github.com/coyim/coyim/tls"
)

func (c *cliUI) verifier() ourtls.Verifier {
Expand Down
22 changes: 11 additions & 11 deletions cli/ui.go
Expand Up @@ -15,17 +15,17 @@ import (
"syscall"
"time"

"github.com/twstrike/coyim/cli/terminal"
"github.com/twstrike/coyim/client"
"github.com/twstrike/coyim/config"
"github.com/twstrike/coyim/roster"
"github.com/twstrike/coyim/servers"
sessions "github.com/twstrike/coyim/session/access"
"github.com/twstrike/coyim/tls"
"github.com/twstrike/coyim/xmpp/data"
xi "github.com/twstrike/coyim/xmpp/interfaces"

"github.com/twstrike/otr3"
"github.com/coyim/coyim/cli/terminal"
"github.com/coyim/coyim/client"
"github.com/coyim/coyim/config"
"github.com/coyim/coyim/roster"
"github.com/coyim/coyim/servers"
sessions "github.com/coyim/coyim/session/access"
"github.com/coyim/coyim/tls"
"github.com/coyim/coyim/xmpp/data"
xi "github.com/coyim/coyim/xmpp/interfaces"

"github.com/coyim/otr3"

"golang.org/x/net/proxy"
)
Expand Down
2 changes: 1 addition & 1 deletion client/commands.go
@@ -1,6 +1,6 @@
package client

import "github.com/twstrike/coyim/config"
import "github.com/coyim/coyim/config"

// AuthorizeFingerprintCmd is a command that represents a request to authorize a fingerprint
type AuthorizeFingerprintCmd struct {
Expand Down
2 changes: 1 addition & 1 deletion client/conversation.go
Expand Up @@ -3,7 +3,7 @@ package client
import (
"math/rand"

"github.com/twstrike/otr3"
"github.com/coyim/otr3"
)

// Conversation represents a conversation with encryption capabilities
Expand Down
2 changes: 1 addition & 1 deletion client/conversation_manager.go
Expand Up @@ -3,7 +3,7 @@ package client
import (
"sync"

"github.com/twstrike/otr3"
"github.com/coyim/otr3"
)

// ConversationBuilder represents an entity capable of building Conversations
Expand Down
6 changes: 3 additions & 3 deletions client/conversation_manager_test.go
Expand Up @@ -5,9 +5,9 @@ import (
"log"
"testing"

"github.com/twstrike/coyim/i18n"
"github.com/twstrike/gotk3adapter/glib_mock"
"github.com/twstrike/otr3"
"github.com/coyim/coyim/i18n"
"github.com/coyim/gotk3adapter/glib_mock"
"github.com/coyim/otr3"

. "gopkg.in/check.v1"
)
Expand Down
2 changes: 1 addition & 1 deletion client/conversation_test.go
Expand Up @@ -3,7 +3,7 @@ package client
import (
"errors"

"github.com/twstrike/otr3"
"github.com/coyim/otr3"
)
import . "gopkg.in/check.v1"

Expand Down
4 changes: 2 additions & 2 deletions config/account.go
Expand Up @@ -6,8 +6,8 @@ import (
"strconv"
"time"

"github.com/twstrike/coyim/xmpp/utils"
"github.com/twstrike/otr3"
"github.com/coyim/coyim/xmpp/utils"
"github.com/coyim/otr3"
)

// Account contains the configuration for one account
Expand Down
2 changes: 1 addition & 1 deletion config/account_test.go
@@ -1,7 +1,7 @@
package config

import (
"github.com/twstrike/otr3"
"github.com/coyim/otr3"

. "gopkg.in/check.v1"
)
Expand Down
4 changes: 2 additions & 2 deletions config/config_test.go
Expand Up @@ -8,8 +8,8 @@ import (
"strings"
"testing"

"github.com/twstrike/coyim/i18n"
"github.com/twstrike/gotk3adapter/glib_mock"
"github.com/coyim/coyim/i18n"
"github.com/coyim/gotk3adapter/glib_mock"

. "gopkg.in/check.v1"
)
Expand Down
10 changes: 5 additions & 5 deletions config/connection_policy.go
Expand Up @@ -13,11 +13,11 @@ import (

"golang.org/x/net/proxy"

ournet "github.com/twstrike/coyim/net"
"github.com/twstrike/coyim/servers"
ourtls "github.com/twstrike/coyim/tls"
"github.com/twstrike/coyim/xmpp/data"
"github.com/twstrike/coyim/xmpp/interfaces"
ournet "github.com/coyim/coyim/net"
"github.com/coyim/coyim/servers"
ourtls "github.com/coyim/coyim/tls"
"github.com/coyim/coyim/xmpp/data"
"github.com/coyim/coyim/xmpp/interfaces"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions config/connection_policy_test.go
Expand Up @@ -7,8 +7,8 @@ import (

"golang.org/x/net/proxy"

ournet "github.com/twstrike/coyim/net"
"github.com/twstrike/coyim/xmpp"
ournet "github.com/coyim/coyim/net"
"github.com/coyim/coyim/xmpp"
. "gopkg.in/check.v1"
)

Expand Down
2 changes: 1 addition & 1 deletion config/importer/adium.go
Expand Up @@ -8,7 +8,7 @@ import (
"strings"

plist "github.com/DHowett/go-plist"
"github.com/twstrike/coyim/config"
"github.com/coyim/coyim/config"
)

// In $HOME
Expand Down
2 changes: 1 addition & 1 deletion config/importer/adium_test.go
@@ -1,7 +1,7 @@
package importer

import (
"github.com/twstrike/coyim/config"
"github.com/coyim/coyim/config"
. "gopkg.in/check.v1"
)

Expand Down
2 changes: 1 addition & 1 deletion config/importer/all.go
@@ -1,6 +1,6 @@
package importer

import "github.com/twstrike/coyim/config"
import "github.com/coyim/coyim/config"

// TryImportAll will try to import from all known importers
func TryImportAll() map[string][]*config.ApplicationConfig {
Expand Down
2 changes: 1 addition & 1 deletion config/importer/gajim.go
Expand Up @@ -12,7 +12,7 @@ import (
"strings"

"github.com/hydrogen18/stalecucumber"
"github.com/twstrike/coyim/config"
"github.com/coyim/coyim/config"
)

const gajimOtrDataKeyExtension = ".key3"
Expand Down
4 changes: 2 additions & 2 deletions config/importer/gajim_test.go
Expand Up @@ -3,8 +3,8 @@ package importer
import (
"fmt"

"github.com/twstrike/coyim/config"
"github.com/twstrike/otr3"
"github.com/coyim/coyim/config"
"github.com/coyim/otr3"
. "gopkg.in/check.v1"
)

Expand Down
2 changes: 1 addition & 1 deletion config/importer/pidgin.go
Expand Up @@ -6,7 +6,7 @@ import (
"sort"
"strconv"

"github.com/twstrike/coyim/config"
"github.com/coyim/coyim/config"
)

// In $HOME or $APPDATA
Expand Down
6 changes: 3 additions & 3 deletions config/importer/pidgin_like.go
Expand Up @@ -9,9 +9,9 @@ import (
"strconv"
"strings"

"github.com/twstrike/coyim/config"
"github.com/twstrike/coyim/xmpp/utils"
"github.com/twstrike/otr3"
"github.com/coyim/coyim/config"
"github.com/coyim/coyim/xmpp/utils"
"github.com/coyim/otr3"
)

// ImportKeysFromPidginStyle will try to read keys in Pidgin style from the given file
Expand Down
2 changes: 1 addition & 1 deletion config/importer/pidgin_test.go
@@ -1,7 +1,7 @@
package importer

import (
"github.com/twstrike/coyim/config"
"github.com/coyim/coyim/config"
. "gopkg.in/check.v1"
)

Expand Down
2 changes: 1 addition & 1 deletion config/importer/xmpp_client.go
Expand Up @@ -5,7 +5,7 @@ import (
"encoding/json"
"io/ioutil"

"github.com/twstrike/coyim/config"
"github.com/coyim/coyim/config"
)

type xmppClientConfig struct {
Expand Down
4 changes: 2 additions & 2 deletions config/importer/xmpp_client_test.go
Expand Up @@ -6,8 +6,8 @@ import (
"log"
"testing"

"github.com/twstrike/coyim/i18n"
"github.com/twstrike/gotk3adapter/glib_mock"
"github.com/coyim/coyim/i18n"
"github.com/coyim/gotk3adapter/glib_mock"

. "gopkg.in/check.v1"
)
Expand Down
2 changes: 1 addition & 1 deletion config/pins.go
Expand Up @@ -7,7 +7,7 @@ import (
"encoding/json"
"sort"

"github.com/twstrike/coyim/digests"
"github.com/coyim/coyim/digests"
)

// CertificatePinForSerialization represents a certificate pin in its serialized form
Expand Down
2 changes: 1 addition & 1 deletion config/xmpp.go
Expand Up @@ -3,7 +3,7 @@ package config
import (
"net/url"

ournet "github.com/twstrike/coyim/net"
ournet "github.com/coyim/coyim/net"
"golang.org/x/net/proxy"
)

Expand Down
2 changes: 1 addition & 1 deletion event/otr_event_handler.go
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"log"

"github.com/twstrike/otr3"
"github.com/coyim/otr3"
)

// SecurityChange describes a change in the security state of a Conversation.
Expand Down
6 changes: 3 additions & 3 deletions event/otr_event_handler_test.go
Expand Up @@ -7,9 +7,9 @@ import (
"log"
"testing"

"github.com/twstrike/coyim/i18n"
"github.com/twstrike/gotk3adapter/glib_mock"
"github.com/twstrike/otr3"
"github.com/coyim/coyim/i18n"
"github.com/coyim/gotk3adapter/glib_mock"
"github.com/coyim/otr3"

. "gopkg.in/check.v1"
)
Expand Down
18 changes: 9 additions & 9 deletions gtk.go
Expand Up @@ -3,15 +3,15 @@
package main

import (
"github.com/twstrike/coyim/gui"
"github.com/twstrike/coyim/gui/settings"
"github.com/twstrike/coyim/i18n"
"github.com/twstrike/coyim/session"
"github.com/twstrike/coyim/xmpp"
"github.com/twstrike/gotk3adapter/gdka"
"github.com/twstrike/gotk3adapter/gliba"
"github.com/twstrike/gotk3adapter/gtka"
"github.com/twstrike/gotk3adapter/pangoa"
"github.com/coyim/coyim/gui"
"github.com/coyim/coyim/gui/settings"
"github.com/coyim/coyim/i18n"
"github.com/coyim/coyim/session"
"github.com/coyim/coyim/xmpp"
"github.com/coyim/gotk3adapter/gdka"
"github.com/coyim/gotk3adapter/gliba"
"github.com/coyim/gotk3adapter/gtka"
"github.com/coyim/gotk3adapter/pangoa"
)

func runClient() {
Expand Down

0 comments on commit 9e03626

Please sign in to comment.