Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also .

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also .
...
  • 5 commits
  • 7 files changed
  • 0 commit comments
  • 1 contributor
Showing with 35 additions and 61 deletions.
  1. +17 −0 HISTORY.md
  2. +4 −47 README.md
  3. +5 −5 project.clj
  4. +1 −1 ring-core/project.clj
  5. +3 −3 ring-devel/project.clj
  6. +3 −3 ring-jetty-adapter/project.clj
  7. +2 −2 ring-servlet/project.clj
View
17 HISTORY.md
@@ -1,3 +1,20 @@
+## 1.1.0 (2012-04-23)
+
+* Support for SSL client certificates in Jetty adapter
+* Jetty adapter dependency upgraded to 7.6.1
+* wrap-cookies support for Joda-Time objects in expires and max-age attributes
+* Added wrap-head middleware
+* wrap-file middleware has option to follow symlinks
+* Added form-encode and form-decode to ring.util.codec
+* Fixed url-encode and url-decode to handle "+" correctly
+* Added ring.util.io namespace
+* Deprecated ring.util.test namespace
+* Hiccup ring-devel dependency upgraded to 1.0.0
+* Added more functions to ring.util.response
+* Default number of Jetty adapter threads is now 50
+* Support for KeyStore instances in Jetty adapter
+* Jetty configurator option now always applied last
+
## 1.0.2 (2012-01-25)
* Updated clj-stacktrace to 0.2.4 to fix swank-clojure issue
View
51 README.md
@@ -1,48 +1,5 @@
-# Ring
+## Ring has moved to: <https://github.com/ring-clojure/ring>
-Ring is a Clojure web applications library inspired by Python's WSGI
-and Ruby's Rack. By abstracting the details of HTTP into a simple,
-unified API, Ring allows web applications to be constructed of modular
-components that can be shared among a variety of applications, web
-servers, and web frameworks.
-
-The [SPEC][1] file at the root of this distribution for provides a
-complete description of the Ring interface.
-
-[1]: https://github.com/mmcgrana/ring/blob/master/SPEC
-
-## Libraries
-
-* ring-core - essential functions for handling parameters, cookies and more
-* ring-devel - functions for developing and debugging Ring applications
-* ring-servlet - construct Java servlets from Ring handlers
-* ring-jetty-adapter - a Ring adapter that uses the Jetty webserver
-
-## Installation
-
-To include one of the above libraries, for example `ring-core`, add
-the following to your `:dependencies`:
-
- [ring/ring-core "1.0.2"]
-
-To include all of them:
-
- [ring "1.0.2"]
-
-## Documentation
-
-* [Wiki](https://github.com/mmcgrana/ring/wiki)
-* [API docs](http://mmcgrana.github.com/ring)
-
-## Community
-
-* [Google group](http://groups.google.com/group/ring-clojure)
-
-## Thanks
-
-This project borrows heavily from Ruby's Rack and Python's WSGI;
-thanks to those communities for their work.
-
-## License
-
-Copyright (c) 2009-2012 Mark McGranaghan and released under an MIT license.
+Ring has been moved to dedicated GitHub organization. This repository
+will no longer be updated, so please update your bookmarks and
+GitHub watches.
View
10 project.clj
@@ -1,11 +1,11 @@
-(defproject ring "1.1.0-RC1"
+(defproject ring "1.1.0"
:description "A Clojure web applications library."
:url "http://github.com/mmcgrana/ring"
:dependencies
- [[ring/ring-core "1.1.0-RC1"]
- [ring/ring-devel "1.1.0-RC1"]
- [ring/ring-jetty-adapter "1.1.0-RC1"]
- [ring/ring-servlet "1.1.0-RC1"]]
+ [[ring/ring-core "1.1.0"]
+ [ring/ring-devel "1.1.0"]
+ [ring/ring-jetty-adapter "1.1.0"]
+ [ring/ring-servlet "1.1.0"]]
:plugins
[[lein-sub "0.2.0"]
[codox "0.6.1"]]
View
2 ring-core/project.clj
@@ -1,4 +1,4 @@
-(defproject ring/ring-core "1.1.0-RC1"
+(defproject ring/ring-core "1.1.0"
:description "Ring core libraries."
:url "http://github.com/mmcgrana/ring"
:dependencies [[org.clojure/clojure "1.2.1"]
View
6 ring-devel/project.clj
@@ -1,7 +1,7 @@
-(defproject ring/ring-devel "1.1.0-RC1"
+(defproject ring/ring-devel "1.1.0"
:description "Ring development and debugging libraries."
:url "http://github.com/mmcgrana/ring"
- :dependencies [[ring/ring-core "1.1.0-RC1"]
- [hiccup "1.0.0-RC2"]
+ :dependencies [[ring/ring-core "1.1.0"]
+ [hiccup "1.0.0"]
[clj-stacktrace "0.2.4"]
[ns-tracker "0.1.1"]])
View
6 ring-jetty-adapter/project.clj
@@ -1,8 +1,8 @@
-(defproject ring/ring-jetty-adapter "1.1.0-RC1"
+(defproject ring/ring-jetty-adapter "1.1.0"
:description "Ring Jetty adapter."
:url "http://github.com/mmcgrana/ring"
- :dependencies [[ring/ring-core "1.1.0-RC1"]
- [ring/ring-servlet "1.1.0-RC1"]
+ :dependencies [[ring/ring-core "1.1.0"]
+ [ring/ring-servlet "1.1.0"]
[org.eclipse.jetty/jetty-server "7.6.1.v20120215"]]
:profiles
{:dev {:dependencies [[clj-http "0.3.2"]]}})
View
4 ring-servlet/project.clj
@@ -1,5 +1,5 @@
-(defproject ring/ring-servlet "1.1.0-RC1"
+(defproject ring/ring-servlet "1.1.0"
:description "Ring servlet utilities."
:url "http://github.com/mmcgrana/ring"
- :dependencies [[ring/ring-core "1.1.0-RC1"]
+ :dependencies [[ring/ring-core "1.1.0"]
[javax.servlet/servlet-api "2.5"]])

No commit comments for this range