Skip to content

Commit 04433cf

Browse files
committed
Rename Day8 to day8 in GitHub URL
1 parent c6585ac commit 04433cf

34 files changed

+120
-120
lines changed

CHANGES.md

+53-53
Large diffs are not rendered by default.

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ y'know. Pretty good.
1414
1515

1616
[![Clojars Project](https://img.shields.io/clojars/v/re-frame.svg)](https://clojars.org/re-frame)
17-
[![GitHub license](https://img.shields.io/github/license/Day8/re-frame.svg)](license.txt)
18-
[![Circle CI](https://circleci.com/gh/Day8/re-frame/tree/master.svg?style=shield&circle-token=:circle-ci-badge-token)](https://circleci.com/gh/Day8/re-frame/tree/master)
17+
[![GitHub license](https://img.shields.io/github/license/day8/re-frame.svg)](license.txt)
18+
[![Circle CI](https://circleci.com/gh/day8/re-frame/tree/master.svg?style=shield&circle-token=:circle-ci-badge-token)](https://circleci.com/gh/day8/re-frame/tree/master)
1919

2020
## re-frame
2121

@@ -531,14 +531,14 @@ At this point, you know 50% of re-frame. <br>
531531
The full [docs are here](/docs/README.md) and the [FAQs are here](/docs/FAQs/README.md).
532532

533533
There are two example apps to play with: <br>
534-
https://github.com/Day8/re-frame/tree/master/examples
534+
https://github.com/day8/re-frame/tree/master/examples
535535

536536
Use a template to create your own project: <br>
537-
Client only: https://github.com/Day8/re-frame-template <br>
537+
Client only: https://github.com/day8/re-frame-template <br>
538538
Full Stack: http://www.luminusweb.net/
539539

540540
And please be sure to review these further resources: <br>
541-
https://github.com/Day8/re-frame/blob/master/docs/External-Resources.md
541+
https://github.com/day8/re-frame/blob/master/docs/External-Resources.md
542542

543543
### T-Shirt Unlocked
544544

docs/App-Structure.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ src
1616
└── subs.cljs <--- subscription handlers (query layer)
1717
```
1818

19-
For a living example of this approach, look at the [todomvc example](https://github.com/Day8/re-frame/tree/master/examples/todomvc).
19+
For a living example of this approach, look at the [todomvc example](https://github.com/day8/re-frame/tree/master/examples/todomvc).
2020

21-
*No really, you should absolutely look at the [todomvc example](https://github.com/Day8/re-frame/tree/master/examples/todomvc) example, as soon as possible. It contains all sorts of tips.*
21+
*No really, you should absolutely look at the [todomvc example](https://github.com/day8/re-frame/tree/master/examples/todomvc) example, as soon as possible. It contains all sorts of tips.*
2222

2323
### There's A Small Gotcha
2424

@@ -98,7 +98,7 @@ Where the first option might be preferrable since it ensures you require the han
9898
## I Want Real Examples!
9999

100100
Maybe look here:
101-
https://github.com/Day8/re-frame/blob/master/docs/External-Resources.md#examples-and-applications-using-re-frame
101+
https://github.com/day8/re-frame/blob/master/docs/External-Resources.md#examples-and-applications-using-re-frame
102102

103103
***
104104

docs/ApplicationState.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ And this enables us to catch errors early (and accurately). It increases confide
7474
that Types can increase confidence, only [a good schema can potentially provide more
7575
**leverage** than types](https://www.youtube.com/watch?v=nqY4nUMfus8).
7676

77-
4. Undo/Redo [becomes straight forward to implement](https://github.com/Day8/re-frame-undo).
77+
4. Undo/Redo [becomes straight forward to implement](https://github.com/day8/re-frame-undo).
7878
It is easy to snapshot and restore one central value. Immutable data structures have a
7979
feature called `structural sharing` which means it doesn't cost much RAM to keep the last, say, 200
8080
snapshots. All very efficient.
@@ -99,7 +99,7 @@ Of course, that means you'll have to learn [spec](http://clojure.org/about/spec)
9999
some overhead in that, so maybe, just maybe, in your initial experiments, you can
100100
get away without one. But not for long. Promise me you'll write a `spec`. Promise me. Okay, good.
101101

102-
Soon we'll look at the [todomvc example](https://github.com/Day8/re-frame/tree/master/examples/todomvc)
102+
Soon we'll look at the [todomvc example](https://github.com/day8/re-frame/tree/master/examples/todomvc)
103103
which shows how to use a spec. (Check out `src/db.cljs` for the spec itself, and then in `src/events.cljs` for
104104
how to write code which checks `app-db` against this spec after every single event has been
105105
processed.)

docs/CodeWalkthrough.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ In this tutorial, **we look at re-frame code**. By the end of it, you'll be at 7
1010

1111
## What Code?
1212

13-
This repo contains an `/examples` application called ["simple"](https://github.com/Day8/re-frame/tree/master/examples/simple),
14-
which contains 70 lines of code. We'll look at every line of [the file](https://github.com/Day8/re-frame/blob/master/examples/simple/src/simple/core.cljs).
13+
This repo contains an `/examples` application called ["simple"](https://github.com/day8/re-frame/tree/master/examples/simple),
14+
which contains 70 lines of code. We'll look at every line of [the file](https://github.com/day8/re-frame/blob/master/examples/simple/src/simple/core.cljs).
1515

1616
This app:
1717
- displays the current time in a nice big, colourful font
@@ -27,7 +27,7 @@ To run the code yourself:
2727
* Install leiningen (http://leiningen.org/#install)
2828

2929
Then:
30-
1. `git clone https://github.com/Day8/re-frame.git`
30+
1. `git clone https://github.com/day8/re-frame.git`
3131
2. `cd re-frame/examples/simple`
3232
3. `lein do clean, figwheel`
3333
4. wait a minute and then open <http://localhost:3449/example.html>
@@ -45,7 +45,7 @@ An online, interactive version of this tutorial page is [available here](http://
4545
## Namespace
4646

4747
Because this example is tiny, the source code is in a single namespace:
48-
https://github.com/Day8/re-frame/blob/master/examples/simple/src/simple/core.cljs
48+
https://github.com/day8/re-frame/blob/master/examples/simple/src/simple/core.cljs
4949

5050
Within this namespace, we'll need access to both `reagent` and `re-frame`.
5151
So, at the top, we start like this:
@@ -327,7 +327,7 @@ Here's the code:
327327
```
328328

329329
Like I said, both of these queries are trivial.
330-
See [todomvc.subs.clj](https://github.com/Day8/re-frame/blob/master/examples/todomvc/src/todomvc/subs.cljs)
330+
See [todomvc.subs.clj](https://github.com/day8/re-frame/blob/master/examples/todomvc/src/todomvc/subs.cljs)
331331
for more interesting ones.
332332

333333
## View Functions (domino 5)
@@ -492,13 +492,13 @@ structure exists in `app-db` before any subscriptions or event handlers run.
492492
## Next Steps
493493

494494
You should now take time to carefully review the
495-
[todomvc example application](https://github.com/Day8/re-frame/tree/master/examples/todomvc).
495+
[todomvc example application](https://github.com/day8/re-frame/tree/master/examples/todomvc).
496496
On the one hand, it contains a lot of very helpful practical advice. On the other, it does
497497
use some more advanced features like `interceptors` which are covered later in the docs.
498498

499499
After that, you'll be ready to write your own code. Perhaps you will use a
500500
template to create your own project: <br>
501-
Client only: https://github.com/Day8/re-frame-template <br>
501+
Client only: https://github.com/day8/re-frame-template <br>
502502
Full Stack: http://www.luminusweb.net/
503503

504504
Obviously, you should also go on to read the further documentation.

docs/Debugging.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
> The methods described in this page are now out of date. Included for historical reasons only.
2-
> [re-frame-10x](https://github.com/Day8/re-frame-10x) is now our recommeded tool.
2+
> [re-frame-10x](https://github.com/day8/re-frame-10x) is now our recommeded tool.
33
44
---
55

@@ -88,7 +88,7 @@ Then the customised tracer for cljs-devtools that includes a colour choice
8888
[![Clojars Project](http://clojars.org/day8/re-frame-tracer/latest-version.svg)](http://clojars.org/day8/re-frame-tracer)
8989

9090

91-
Next, we're going to assume that you have structured you app in the [recommended way](https://github.com/Day8/re-frame/tree/master/examples/todomvc/src/todomvc),
91+
Next, we're going to assume that you have structured you app in the [recommended way](https://github.com/day8/re-frame/tree/master/examples/todomvc/src/todomvc),
9292
meaning you have the namespaces `events.cljs`, `subs.cljs` and `views.cljs`.
9393
It is the functions within these namespaces that we wish to trace.
9494

@@ -207,7 +207,7 @@ If you are using v0.8.0 or later, then you can ignore this section.
207207
Prior to v0.8.0, subscriptions were done using `re-frame.core/reg-sub-raw`,
208208
instead of `re-frame.core/reg-sub` (which is now the preferred method).
209209

210-
Details of the changes can [be found here](https://github.com/Day8/re-frame/blob/master/CHANGES.md#080--20160819).
210+
Details of the changes can [be found here](https://github.com/day8/re-frame/blob/master/CHANGES.md#080--20160819).
211211

212212
When using `re-frame.core/reg-sub-raw`, you must explicitly use `reaction`. And
213213
unfortunately both `trace-forms` and `reaction` are macros and they don't work well together.

docs/EPs/001-CaptureHandlerMetadata.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ This EP proposes that:
4141
## Motivations
4242

4343
There's pressure from multiple directions to collect and retain more metadata about handlers:
44-
- tickets like [#457](https://github.com/Day8/re-frame/issues/457) want docstrings for handlers
44+
- tickets like [#457](https://github.com/day8/re-frame/issues/457) want docstrings for handlers
4545
- adding specs for events, so they can be checked at dev time
4646
- when re-frame becomes less of a framework and more of a library, handlers might
4747
need be "grouped" into "packages". So "package" information about handlers need to be supplied and retained.
4848
- Tooling support - we'd like `re-frame-10x` to actively help programmers when they are learning a
49-
new code base. That's one of [the four stated goals](https://github.com/Day8/re-frame-10x#helps-me-how).
49+
new code base. That's one of [the four stated goals](https://github.com/day8/re-frame-10x#helps-me-how).
5050
Ideally, re-frame would be capable of providing tooling with "a complete
5151
inventory" of an app's handlers, along with useful
5252
metadata on each handles. When an event is processed, the audit trail of

docs/EPs/002-ReframeInstances.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ progressive mutation of a global `registrar` (map) held internally within `re-fr
6363
Each registration adds a new entry to this `registrar`.
6464

6565
If you are troubled by the thought of side effects on globals, there's
66-
an [FAQ entry you may find interesting](https://github.com/Day8/re-frame/blob/master/docs/FAQs/ViewsOnGlobalRegistration.md).
66+
an [FAQ entry you may find interesting](https://github.com/day8/re-frame/blob/master/docs/FAQs/ViewsOnGlobalRegistration.md).
6767

6868
### Problem 1: Frames And Registrars
6969

docs/External-Resources.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Please add to this list by submitting a pull request.
99

1010
### Templates
1111

12-
* [re-frame-template](https://github.com/Day8/re-frame-template) - Generates the client side SPA
12+
* [re-frame-template](https://github.com/day8/re-frame-template) - Generates the client side SPA
1313
* [Luminus](http://www.luminusweb.net) - Generates SPA plus server side.
1414
* [re-natal](https://github.com/drapanjanas/re-natal) - React Native apps.
1515
* [Slush-reframe](https://github.com/kristianmandrup/slush-reframe) - A scaffolding generator for re-frame run using NodeJS. Based on re-frame `0.7.0`
@@ -18,7 +18,7 @@ Please add to this list by submitting a pull request.
1818

1919
### Examples and Applications Using re-frame
2020

21-
* [RealWorld](https://github.com/jacekschae/conduit) - heavily inspired by [todomvc](https://github.com/Day8/re-frame/tree/master/examples/todomvc) - well commented codebase with CRUD, auth, advanced patterns, etc) that adheres to the [RealWorld](https://github.com/gothinkster/realworld) spec and API.
21+
* [RealWorld](https://github.com/jacekschae/conduit) - heavily inspired by [todomvc](https://github.com/day8/re-frame/tree/master/examples/todomvc) - well commented codebase with CRUD, auth, advanced patterns, etc) that adheres to the [RealWorld](https://github.com/gothinkster/realworld) spec and API.
2222
* [BlueGenes](https://github.com/intermine/bluegenes) - searching and analysing genomic data, by the University of Cambridge
2323
* [Memento](https://gitlab.com/Numergent/memento) a private note-taking app. Uses compojure-api, PostgreSQL and token auth.
2424
* [RealWord](https://github.com/polymeris/re-frame-realword-example-app) has CRUD, auth. Adheres to [RealWorld](https://github.com/gothinkster/realworld) spec and API.
@@ -42,9 +42,9 @@ Please add to this list by submitting a pull request.
4242

4343
### Effect and CoEffect Handlers
4444

45-
* [async-flow-fx](https://github.com/Day8/re-frame-async-flow-fx) - manage a boot process dominated by async
46-
* [http-fx](https://github.com/Day8/re-frame-http-fx) - performing Ajax tasks (via cljs-ajax)
47-
* [re-frame-forward-events-fx](https://github.com/Day8/re-frame-forward-events-fx) - slightly exotic
45+
* [async-flow-fx](https://github.com/day8/re-frame-async-flow-fx) - manage a boot process dominated by async
46+
* [http-fx](https://github.com/day8/re-frame-http-fx) - performing Ajax tasks (via cljs-ajax)
47+
* [re-frame-forward-events-fx](https://github.com/day8/re-frame-forward-events-fx) - slightly exotic
4848
* [cookie-fx](https://github.com/SMX-LTD/re-frame-cookie-fx) - set and get cookies
4949
* [document-fx](https://github.com/SMX-LTD/re-frame-document-fx) - set and get on `js/document` attributes
5050
* [re-frame-youtube-fx](https://github.com/micmarsh/re-frame-youtube-fx) - YouTube iframe API wrapper
@@ -68,8 +68,8 @@ Please add to this list by submitting a pull request.
6868
### Tools, Techniques & Libraries
6969

7070
* [re-fill](https://github.com/metosin/re-fill) - routing and more
71-
* [re-frame-undo](https://github.com/Day8/re-frame-undo) - An undo library for re-frame
72-
* [re-frame-test](https://github.com/Day8/re-frame-test) - Advanced testing utilities
71+
* [re-frame-undo](https://github.com/day8/re-frame-undo) - An undo library for re-frame
72+
* [re-frame-test](https://github.com/day8/re-frame-test) - Advanced testing utilities
7373
* [Animation](http://www.upgradingdave.com/blog/posts/2016-12-17-permutation.html) using `react-flip-move`
7474
* [re-thread](https://github.com/yetanalytics/re-thread) - A library for running re-frame applications in Web Workers.
7575
* [re-frame-datatable](https://github.com/kishanov/re-frame-datatable) - DataTable UI component built for use with re-frame.
@@ -85,7 +85,7 @@ Please add to this list by submitting a pull request.
8585
#### Debugging
8686

8787

88-
* [re-frame-10x](https://github.com/Day8/re-frame-10x) - A debugging dashboard for re-frame
88+
* [re-frame-10x](https://github.com/day8/re-frame-10x) - A debugging dashboard for re-frame
8989
* [re-frisk](https://github.com/flexsurfer/re-frisk) - A library for visualizing re-frame data and events.
9090

9191
#### React Native

docs/FAQs/CatchingEventExceptions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ How can I detect exceptions in Event Handlers?
44

55
### Answer
66

7-
A suggested solution can be found in [this issue](https://github.com/Day8/re-frame/issues/231#issuecomment-249991378).
7+
A suggested solution can be found in [this issue](https://github.com/day8/re-frame/issues/231#issuecomment-249991378).
88

99
***
1010

docs/FAQs/DB_Normalisation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ These libraries might be interesting to you:
1010
- [SubGraph](https://github.com/vimsical/subgraph)
1111
- [pull](https://github.com/juxt/pull)
1212

13-
See also [this comment](https://github.com/Day8/re-frame/issues/304#issuecomment-269620609).
13+
See also [this comment](https://github.com/day8/re-frame/issues/304#issuecomment-269620609).
1414

1515
If you want to go whole hog and ditch `app-db` and embrace DataScript,
1616
then you might find [re-posh](https://github.com/denistakeda/re-posh) interesting.

docs/FAQs/Inspecting-app-db.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ If at a REPL, inspect: `re-frame.db/app-db`.
88

99
If at the js console, that's `window.re_frame.db.app_db.state`.
1010

11-
If you want a visual browser of app-db, along with inspecting subpaths of app-db, and diffing changes, use [re-frame-10x](https://github.com/Day8/re-frame-10x).
11+
If you want a visual browser of app-db, along with inspecting subpaths of app-db, and diffing changes, use [re-frame-10x](https://github.com/day8/re-frame-10x).
1212

1313
You are [using cljs-devtools](https://github.com/binaryage/cljs-devtools), right?
1414
If not, stop everything ([unless you are using re-natal](https://github.com/drapanjanas/re-natal/issues/137)) and immediately make that happen.

docs/FAQs/LoadOnMount.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ low level operation performed in the service of fulfilling
3535
the user's intent.
3636

3737
There's a useful effect handler available for HTTP work:
38-
https://github.com/Day8/re-frame-http-fx
38+
https://github.com/day8/re-frame-http-fx
3939

4040
Look at the "Real World App" example for inspiration:
4141
https://github.com/jacekschae/conduit

docs/FAQs/ViewsOnGlobalRegistration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ There are three ways to view this:
3737
within a map-ish structure (a `registrar`), once, on program load.
3838
So, if you feel uncomfortable with what re-frame does, you should also feel uncomfortable about using `defn`.
3939
Also, it would be useful to understand
40-
[how you are creating a virtual machine when you program re-frame](https://github.com/Day8/re-frame/blob/master/docs/MentalModelOmnibus.md#on-dsls-and-machines)
40+
[how you are creating a virtual machine when you program re-frame](https://github.com/day8/re-frame/blob/master/docs/MentalModelOmnibus.md#on-dsls-and-machines)
4141

4242

4343
While Point 3 is an interesting perspective to consider, the real discussion should probably be around points 1 and 2: is it a good idea for re-frame to tradeoff purity for simplicity? You can't really judge this

docs/FAQs/When-Does-Dispatch-Happen.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ How long after I call `dispatch` will the event be processed?
44

55
### Answer
66

7-
The answer is "it depends", but [this comment in the code](https://github.com/Day8/re-frame/blob/master/src/re_frame/router.cljc#L8-L60)
7+
The answer is "it depends", but [this comment in the code](https://github.com/day8/re-frame/blob/master/src/re_frame/router.cljc#L8-L60)
88
might provide you the answers you seek.
99

1010

docs/FAQs/Why-CLJC.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The trailing `c` in `.cljc` stands for `common`.
1313
Necessary interop for each platform can be found in
1414
`interop.clj` (for the JVM) and `interop.cljs` (for JS).
1515

16-
See also: https://github.com/Day8/re-frame-test
16+
See also: https://github.com/day8/re-frame-test
1717

1818

1919
***

docs/INTRO.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ y'know. Pretty good.
2222
2323

2424
[![Clojars Project](https://img.shields.io/clojars/v/re-frame.svg)](https://clojars.org/re-frame)
25-
[![GitHub license](https://img.shields.io/github/license/Day8/re-frame.svg)](license.txt)
26-
[![Circle CI](https://circleci.com/gh/Day8/re-frame/tree/master.svg?style=shield&circle-token=:circle-ci-badge-token)](https://circleci.com/gh/Day8/re-frame/tree/master)
25+
[![GitHub license](https://img.shields.io/github/license/day8/re-frame.svg)](license.txt)
26+
[![Circle CI](https://circleci.com/gh/day8/re-frame/tree/master.svg?style=shield&circle-token=:circle-ci-badge-token)](https://circleci.com/gh/day8/re-frame/tree/master)
2727

2828
## re-frame
2929

docs/Interceptors.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ And some Interceptor factories (functions that return Interceptors):
381381
- __after__: perform side effects, after a handler has run. Eg: use it to report if the data in `app-db` matches a schema.
382382
- __path__: a convenience. Simplifies our handlers. Acts almost like `update-in`.
383383

384-
In addition, [a Library like re-frame-undo](https://github.com/Day8/re-frame-undo) provides an Interceptor
384+
In addition, [a Library like re-frame-undo](https://github.com/day8/re-frame-undo) provides an Interceptor
385385
factory called `undoable` which checkpoints app state.
386386

387387

docs/Loading-Initial-Data.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ This assumes boolean flags are set in `app-db` when data was loaded from these s
194194
In simple cases, you can simplify matters by using `dispatch-sync` (instead of `dispatch`) in
195195
the main function.
196196

197-
This technique can be seen in the [TodoMVC Example](https://github.com/Day8/re-frame/blob/master/examples/todomvc/src/todomvc/core.cljs#L49).
197+
This technique can be seen in the [TodoMVC Example](https://github.com/day8/re-frame/blob/master/examples/todomvc/src/todomvc/core.cljs#L49).
198198

199199
`dispatch` queues an event for later processing, but `dispatch-sync` acts
200200
like a function call and handles an event immediately. That's useful for initial data

0 commit comments

Comments
 (0)