Skip to content

Commit 00fe87c

Browse files
committed
mv from daaku/rell => fbsamples/fbrell
1 parent 3fbda05 commit 00fe87c

File tree

13 files changed

+36
-36
lines changed

13 files changed

+36
-36
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
install:
2-
@go install github.com/daaku/rell
2+
@go install github.com/fbsamples/fbrell
33

44
test:
5-
@go test $$ARGS $(shell go list github.com/daaku/rell/... | grep -v /vendor/)
5+
@go test $$ARGS $(shell go list github.com/fbsamples/fbrell/... | grep -v /vendor/)

Procfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web: /app/rell
1+
web: /app/fbrell

bin/compile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ BUILD_DIR=$(cd "$1/" && pwd)
99
CACHE_DIR=$(cd "$2/" && pwd)
1010
ENV_DIR=$(cd "$3/" && pwd)
1111

12-
GO_IMPORT_PATH=github.com/daaku/rell
12+
GO_IMPORT_PATH=github.com/fbsamples/fbrell
1313
GO_VERSION=1.7
1414
GO_URL=https://storage.googleapis.com/golang/go${GO_VERSION}.linux-amd64.tar.gz
1515
OUTPUT_BIN=$BUILD_DIR/$(basename $GO_IMPORT_PATH)

examples/viewexamples/examples.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ import (
1919
"github.com/daaku/go.h.ui"
2020
"github.com/daaku/go.htmlwriter"
2121
"github.com/daaku/go.static"
22-
"github.com/daaku/rell/examples"
23-
"github.com/daaku/rell/rellenv"
24-
"github.com/daaku/rell/view"
2522
"github.com/daaku/sortutil"
2623
"github.com/facebookgo/counting"
24+
"github.com/fbsamples/fbrell/examples"
25+
"github.com/fbsamples/fbrell/rellenv"
26+
"github.com/fbsamples/fbrell/view"
2727
)
2828

2929
var (

main.go

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,23 @@ import (
1515
"github.com/daaku/go.browserid"
1616
"github.com/daaku/go.static"
1717
"github.com/daaku/go.trustforward"
18-
"github.com/daaku/rell/adminweb"
19-
"github.com/daaku/rell/examples"
20-
"github.com/daaku/rell/examples/viewexamples"
21-
"github.com/daaku/rell/oauth"
22-
"github.com/daaku/rell/og"
23-
"github.com/daaku/rell/og/viewog"
24-
"github.com/daaku/rell/rellenv"
25-
"github.com/daaku/rell/rellenv/appns"
26-
"github.com/daaku/rell/rellenv/empcheck"
27-
"github.com/daaku/rell/rellenv/viewcontext"
28-
"github.com/daaku/rell/web"
2918
"github.com/facebookgo/devrestarter"
3019
"github.com/facebookgo/fbapi"
3120
"github.com/facebookgo/fbapp"
3221
"github.com/facebookgo/flagenv"
3322
"github.com/facebookgo/httpcontrol"
3423
"github.com/facebookgo/httpdown"
24+
"github.com/fbsamples/fbrell/adminweb"
25+
"github.com/fbsamples/fbrell/examples"
26+
"github.com/fbsamples/fbrell/examples/viewexamples"
27+
"github.com/fbsamples/fbrell/oauth"
28+
"github.com/fbsamples/fbrell/og"
29+
"github.com/fbsamples/fbrell/og/viewog"
30+
"github.com/fbsamples/fbrell/rellenv"
31+
"github.com/fbsamples/fbrell/rellenv/appns"
32+
"github.com/fbsamples/fbrell/rellenv/empcheck"
33+
"github.com/fbsamples/fbrell/rellenv/viewcontext"
34+
"github.com/fbsamples/fbrell/web"
3535
"github.com/golang/groupcache/lru"
3636
)
3737

@@ -64,9 +64,9 @@ func main() {
6464
empCheckerAppID := flagSet.Uint64("empcheck-app-id", 0, "empcheck application id")
6565
empCheckerAppSecret := flagSet.String("empcheck-app-secret", "", "empcheck application secret")
6666
publicDir := flagSet.String(
67-
"public-dir", pkgDir("github.com/daaku/rell/public"), "public files directory")
67+
"public-dir", pkgDir("github.com/fbsamples/fbrell/public"), "public files directory")
6868
examplesDir := flagSet.String(
69-
"examples-dir", pkgDir("github.com/daaku/rell/examples/db"), "example files directory")
69+
"examples-dir", pkgDir("github.com/fbsamples/fbrell/examples/db"), "example files directory")
7070

7171
flagSet.Parse(os.Args[1:])
7272
if err := flagenv.ParseSet("RELL_", flagSet); err != nil {

oauth/oauth.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import (
1616
"github.com/daaku/go.fburl"
1717
"github.com/daaku/go.h"
1818
"github.com/daaku/go.static"
19-
"github.com/daaku/rell/rellenv"
2019
"github.com/facebookgo/fbapp"
20+
"github.com/fbsamples/fbrell/rellenv"
2121
)
2222

2323
const (

og/og.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717

1818
"github.com/daaku/go.fburl"
1919
"github.com/daaku/go.static"
20-
"github.com/daaku/rell/rellenv"
20+
"github.com/fbsamples/fbrell/rellenv"
2121
)
2222

2323
// The representation of of <meta property="{key}" content="{value}">.

og/og_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"testing"
88

99
"github.com/daaku/go.static"
10-
"github.com/daaku/rell/rellenv"
1110
"github.com/facebookgo/fbapp"
11+
"github.com/fbsamples/fbrell/rellenv"
1212
)
1313

1414
var defaultContext = (&rellenv.Parser{

og/viewog/og.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ import (
1212
"github.com/daaku/go.h"
1313
"github.com/daaku/go.h.js.fb"
1414
"github.com/daaku/go.static"
15-
"github.com/daaku/rell/og"
16-
"github.com/daaku/rell/rellenv"
17-
"github.com/daaku/rell/view"
15+
"github.com/fbsamples/fbrell/og"
16+
"github.com/fbsamples/fbrell/rellenv"
17+
"github.com/fbsamples/fbrell/view"
1818
)
1919

2020
type Handler struct {

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Development Environment
1313
You'll need [Go](https://golang.org/) to work on rell. Once you have it:
1414

1515
```sh
16-
go get github.com/daaku/rell
16+
go get github.com/fbsamples/fbrell
1717
rell
1818
```
1919

rellenv/context_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"testing"
99

1010
"github.com/daaku/go.trustforward"
11-
"github.com/daaku/rell/rellenv"
1211
"github.com/facebookgo/ensure"
1312
"github.com/facebookgo/fbapp"
13+
"github.com/fbsamples/fbrell/rellenv"
1414
)
1515

1616
const (

rellenv/viewcontext/context.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"runtime"
77

88
"github.com/daaku/go.httpdev"
9-
"github.com/daaku/rell/rellenv"
9+
"github.com/fbsamples/fbrell/rellenv"
1010
)
1111

1212
var rev string

web/web.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ import (
1212
"github.com/daaku/ctxmux"
1313
"github.com/daaku/go.signedrequest/appdata"
1414
"github.com/daaku/go.static"
15-
"github.com/daaku/rell/adminweb"
16-
"github.com/daaku/rell/examples/viewexamples"
17-
"github.com/daaku/rell/oauth"
18-
"github.com/daaku/rell/og/viewog"
19-
"github.com/daaku/rell/rellenv"
20-
"github.com/daaku/rell/rellenv/viewcontext"
21-
"github.com/daaku/rell/view"
2215
"github.com/facebookgo/fbapp"
16+
"github.com/fbsamples/fbrell/adminweb"
17+
"github.com/fbsamples/fbrell/examples/viewexamples"
18+
"github.com/fbsamples/fbrell/oauth"
19+
"github.com/fbsamples/fbrell/og/viewog"
20+
"github.com/fbsamples/fbrell/rellenv"
21+
"github.com/fbsamples/fbrell/rellenv/viewcontext"
22+
"github.com/fbsamples/fbrell/view"
2323
)
2424

2525
// The rell web application.

0 commit comments

Comments
 (0)