Change links to point to reagent-project

This commit is contained in:
Dan Holmsand 2014-11-06 20:21:38 +01:00
parent cf84b88e60
commit d188be004e
6 changed files with 8 additions and 7 deletions

View File

@ -1,8 +1,9 @@
# Reagent
A simple [ClojureScript](http://github.com/clojure/clojurescript) interface to
[React](http://facebook.github.io/react/).
A simple [ClojureScript](http://github.com/clojure/clojurescript) interface to [React](http://facebook.github.io/react/).
The main repository for Reagent is now located [here](https://github.com/reagent-project/reagent).
Reagent provides a way to write efficient React components using (almost) nothing but plain ClojureScript functions.

View File

@ -14,7 +14,7 @@
"index.html" (fvar intro/main)
"news/index.html" (fvar news/main))
(def github {:href "https://github.com/holmsand/reagent"})
(def github {:href "https://github.com/reagent-project/reagent"})
(defn github-badge []
[:a.github-badge

View File

@ -109,7 +109,7 @@
(defonce src-for (partial common/src-for funmap))
(defn intro []
(let [github {:href "https://github.com/holmsand/reagent"}
(let [github {:href "https://github.com/reagent-project/reagent"}
clojurescript {:href "https://github.com/clojure/clojurescript"}
react {:href "http://facebook.github.io/react/"}
hiccup {:href "https://github.com/weavejester/hiccup"}

View File

@ -32,7 +32,7 @@
(defn main [{:keys [summary]}]
(let [head "All arguments allowed"
geometry {:href "https://github.com/holmsand/reagent/tree/master/examples/geometry"}
geometry {:href "https://github.com/reagent-project/reagent/tree/master/examples/geometry"}
jonase {:href "https://github.com/jonase"}]
[:div.reagent-demo
[:h1 [link {:href (fvar main)} head]]

View File

@ -21,7 +21,7 @@
hopclock {:href "http://pmbauer.github.io/2014/01/27/hoplon-binary-clock/"}
om {:href "https://github.com/swannodette/om"}
hoplon {:href "http://hoplon.io"}
clocksrc {:href "https://github.com/holmsand/reagent/blob/master/demo/reagentdemo/news/binaryclock.cljs"}]
clocksrc {:href "https://github.com/reagent-project/reagent/blob/master/demo/reagentdemo/news/binaryclock.cljs"}]
[:div.reagent-demo
[:h1 [link {:href (fvar main)} head]]

View File

@ -1,6 +1,6 @@
(defproject reagent "0.4.4-SNAPSHOT"
:url "http://github.com/holmsand/reagent"
:url "http://github.com/reagent-project/reagent"
:license {:name "MIT"}
:description "A simple ClojureScript interface to React"
:dependencies [[org.clojure/clojure "1.6.0"]