diff options
-rw-r--r-- | README.txt | 12 | ||||
-rw-r--r-- | src/clojure/contrib/http/agent.clj | 4 |
2 files changed, 12 insertions, 4 deletions
@@ -8,12 +8,18 @@ useful to a large part of the clojure community. Clojure-contrib is open source under the Eclipse Public License and is copyrighted by Rich Hickey and the various contributors. -The official repository for clojure-contrib is +The official source repository for clojure-contrib is http://github.com/richhickey/clojure-contrib. +Issues are maintained in the Assembla space at http://www.assembla.com/spaces/dashboard/index/clojure-contrib + For the latest documentation of the capabilities and APIs available in clojure-contrib, please see http://richhickey.github.com/clojure-contrib/ +General discussion occurs in the Clojure Google group (http://groups.google.com/group/clojure ) +and developer discussions are in the Clojure Dev Google group +(http://groups.google.com/group/clojure-dev ). + Building Clojure-contrib ------------------------ @@ -31,7 +37,7 @@ ant -Dclojure.jar=<path> This will produce a clojure-contrib.jar file that you can add to your classpath. The nightly-build and stable-build targets are intended for use on the -Tapestry360 continuous integration server (http://tapestry.formos.com/bamboo). +Tapestry360 continuous integration server (http://tapestry.formos.com/bamboo ). They require the presense of the Maven Ant Tasks in the Ant lib folder. @@ -42,7 +48,7 @@ There are currently two versions of clojure-contrib, stored in separate branches on github. The master branch represents the latest and greatest contrib code and -is tied to the master branch of clojure (http://github.com/richhickey/clojure). +is tied to the master branch of clojure (http://github.com/richhickey/clojure ). If you're using this branch, you'll want to be sure to keep your clojure and clojure-contrib code in sync, though breaking changes between them are pretty rare in practice. diff --git a/src/clojure/contrib/http/agent.clj b/src/clojure/contrib/http/agent.clj index 806cb1af..bff3c250 100644 --- a/src/clojure/contrib/http/agent.clj +++ b/src/clojure/contrib/http/agent.clj @@ -58,7 +58,9 @@ :handler (fn [agnt] (with-open [w (d/writer \"/tmp/out\")] (d/copy (stream agnt) w)))) -"} +" + :author "Stuart Sierra" + } clojure.contrib.http.agent (:require [clojure.contrib.http.connection :as c] |