Skip to content

Commit

Permalink
Update url
Browse files Browse the repository at this point in the history
  • Loading branch information
sdgandhi committed Mar 7, 2021
1 parent e18a3fc commit b3c3982
Show file tree
Hide file tree
Showing 19 changed files with 56 additions and 56 deletions.
30 changes: 15 additions & 15 deletions allbrowsers/import.go
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
package allbrowsers

import (
// _ "github.com/zellyn/kooky/browsh"
_ "github.com/zellyn/kooky/chrome"
// _ "github.com/zellyn/kooky/dillo"
// _ "github.com/zellyn/kooky/edge"
// _ "github.com/zellyn/kooky/elinks"
// _ "github.com/zellyn/kooky/epiphany"
_ "github.com/zellyn/kooky/firefox"
// _ "github.com/zellyn/kooky/ie"
// _ "github.com/zellyn/kooky/konqueror"
// _ "github.com/zellyn/kooky/lynx"
// _ "github.com/zellyn/kooky/netscape"
// _ "github.com/zellyn/kooky/opera"
_ "github.com/zellyn/kooky/safari"
// _ "github.com/zellyn/kooky/uzbl"
// _ "github.com/zellyn/kooky/w3m"
// _ "github.com/newnoetic/kooky/browsh"
_ "github.com/newnoetic/kooky/chrome"
// _ "github.com/newnoetic/kooky/dillo"
// _ "github.com/newnoetic/kooky/edge"
// _ "github.com/newnoetic/kooky/elinks"
// _ "github.com/newnoetic/kooky/epiphany"
_ "github.com/newnoetic/kooky/firefox"
// _ "github.com/newnoetic/kooky/ie"
// _ "github.com/newnoetic/kooky/konqueror"
// _ "github.com/newnoetic/kooky/lynx"
// _ "github.com/newnoetic/kooky/netscape"
// _ "github.com/newnoetic/kooky/opera"
_ "github.com/newnoetic/kooky/safari"
// _ "github.com/newnoetic/kooky/uzbl"
// _ "github.com/newnoetic/kooky/w3m"
)
6 changes: 3 additions & 3 deletions auto_example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package kooky_test
import (
"fmt"

"github.com/zellyn/kooky"
_ "github.com/zellyn/kooky/allbrowsers" // This registers all cookiestore finders!
// _ "github.com/zellyn/kooky/chrome" // load only the chrome cookiestore finder
"github.com/newnoetic/kooky"
_ "github.com/newnoetic/kooky/allbrowsers" // This registers all cookiestore finders!
// _ "github.com/newnoetic/kooky/chrome" // load only the chrome cookiestore finder
)

func ExampleReadCookies_all() {
Expand Down
6 changes: 3 additions & 3 deletions chrome/chrome_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"testing"
"time"

"github.com/zellyn/kooky"
"github.com/zellyn/kooky/internal/chrome"
"github.com/zellyn/kooky/internal/testutils"
"github.com/newnoetic/kooky"
"github.com/newnoetic/kooky/internal/chrome"
"github.com/newnoetic/kooky/internal/testutils"
)

// d18f6247db68045dfbab126d814baf2cf1512141391
Expand Down
8 changes: 4 additions & 4 deletions chrome/find.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package chrome

import (
"github.com/zellyn/kooky"
"github.com/zellyn/kooky/internal"
"github.com/zellyn/kooky/internal/chrome"
"github.com/zellyn/kooky/internal/chrome/find"
"github.com/newnoetic/kooky"
"github.com/newnoetic/kooky/internal"
"github.com/newnoetic/kooky/internal/chrome"
"github.com/newnoetic/kooky/internal/chrome/find"
)

type chromeFinder struct{}
Expand Down
4 changes: 2 additions & 2 deletions cookiestores_example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package kooky_test
import (
"fmt"

"github.com/zellyn/kooky"
_ "github.com/zellyn/kooky/allbrowsers" // register cookiestore finders
"github.com/newnoetic/kooky"
_ "github.com/newnoetic/kooky/allbrowsers" // register cookiestore finders
)

var filters = []kooky.Filter{
Expand Down
2 changes: 1 addition & 1 deletion export_example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package kooky_test
import (
"os"

"github.com/zellyn/kooky"
"github.com/newnoetic/kooky"
)

var cookieFile = `cookies.txt`
Expand Down
2 changes: 1 addition & 1 deletion filter_example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"regexp"

"github.com/zellyn/kooky"
"github.com/newnoetic/kooky"
)

// example regex matching base64 strings
Expand Down
4 changes: 2 additions & 2 deletions filtercookies_example_test.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package kooky_test

import (
"github.com/zellyn/kooky"
_ "github.com/zellyn/kooky/allbrowsers" // register cookiestore finders
"github.com/newnoetic/kooky"
_ "github.com/newnoetic/kooky/allbrowsers" // register cookiestore finders
)

var cookieName = `NID`
Expand Down
8 changes: 4 additions & 4 deletions find.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ func RegisterFinder(browser string, finder CookieStoreFinder) {
//
// Register cookie store finders for all browsers like this:
//
// import _ "github.com/zellyn/kooky/allbrowsers"
// import _ "github.com/newnoetic/kooky/allbrowsers"
//
// Or only a specific browser:
//
// import _ "github.com/zellyn/kooky/chrome"
// import _ "github.com/newnoetic/kooky/chrome"
func FindAllCookieStores() []CookieStore {
var ret []CookieStore

Expand Down Expand Up @@ -90,11 +90,11 @@ func FindAllCookieStores() []CookieStore {
//
// Register cookie store finders for all browsers like this:
//
// import _ "github.com/zellyn/kooky/allbrowsers"
// import _ "github.com/newnoetic/kooky/allbrowsers"
//
// Or only a specific browser:
//
// import _ "github.com/zellyn/kooky/chrome"
// import _ "github.com/newnoetic/kooky/chrome"
func ReadCookies(filters ...Filter) []*Cookie {
var ret []*Cookie

Expand Down
8 changes: 4 additions & 4 deletions firefox/find.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package firefox

import (
"github.com/zellyn/kooky"
"github.com/zellyn/kooky/internal"
"github.com/zellyn/kooky/internal/firefox"
"github.com/zellyn/kooky/internal/firefox/find"
"github.com/newnoetic/kooky"
"github.com/newnoetic/kooky/internal"
"github.com/newnoetic/kooky/internal/firefox"
"github.com/newnoetic/kooky/internal/firefox/find"
)

type firefoxFinder struct{}
Expand Down
4 changes: 2 additions & 2 deletions firefox/firefox.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package firefox

import (
"github.com/zellyn/kooky"
"github.com/zellyn/kooky/internal/firefox"
"github.com/newnoetic/kooky"
"github.com/newnoetic/kooky/internal/firefox"
)

func ReadCookies(filename string, filters ...kooky.Filter) ([]*kooky.Cookie, error) {
Expand Down
2 changes: 1 addition & 1 deletion firefox/firefox_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
"time"

"github.com/zellyn/kooky/internal/testutils"
"github.com/newnoetic/kooky/internal/testutils"
)

func TestReadCookies(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions internal/chrome/chrome.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (

"golang.org/x/crypto/pbkdf2"

"github.com/zellyn/kooky"
"github.com/zellyn/kooky/internal/utils"
"github.com/newnoetic/kooky"
"github.com/newnoetic/kooky/internal/utils"
)

// Thanks to https://gist.github.com/dacort/bd6a5116224c594b14db
Expand Down
4 changes: 2 additions & 2 deletions internal/chrome/cookiestore.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"errors"

"github.com/go-sqlite/sqlite3"
"github.com/zellyn/kooky"
"github.com/zellyn/kooky/internal"
"github.com/newnoetic/kooky"
"github.com/newnoetic/kooky/internal"
)

type CookieStore struct {
Expand Down
4 changes: 2 additions & 2 deletions internal/firefox/cookiestore.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"errors"

"github.com/go-sqlite/sqlite3"
"github.com/zellyn/kooky"
"github.com/zellyn/kooky/internal"
"github.com/newnoetic/kooky"
"github.com/newnoetic/kooky/internal"
)

type CookieStore struct {
Expand Down
4 changes: 2 additions & 2 deletions internal/firefox/firefox.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"time"

"github.com/zellyn/kooky"
"github.com/zellyn/kooky/internal/utils"
"github.com/newnoetic/kooky"
"github.com/newnoetic/kooky/internal/utils"

"github.com/bobesa/go-domain-util/domainutil"
)
Expand Down
4 changes: 2 additions & 2 deletions safari/find.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"os"
"path/filepath"

"github.com/zellyn/kooky"
"github.com/zellyn/kooky/internal"
"github.com/newnoetic/kooky"
"github.com/newnoetic/kooky/internal"
)

type safariFinder struct{}
Expand Down
4 changes: 2 additions & 2 deletions safari/safari.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
"math"
"time"

"github.com/zellyn/kooky"
"github.com/zellyn/kooky/internal"
"github.com/newnoetic/kooky"
"github.com/newnoetic/kooky/internal"
)

type fileHeader struct {
Expand Down
4 changes: 2 additions & 2 deletions safari/safari_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"testing"
"time"

"github.com/zellyn/kooky"
"github.com/zellyn/kooky/internal/testutils"
"github.com/newnoetic/kooky"
"github.com/newnoetic/kooky/internal/testutils"
)

// d18f6247db68045dfbab126d814baf2cf1512141391
Expand Down

0 comments on commit b3c3982

Please sign in to comment.