From dd5e262804cf53a3078bc0a0370cd841ab290b74 Mon Sep 17 00:00:00 2001 From: Jeremy Saenz Date: Mon, 2 Dec 2013 19:34:20 -0800 Subject: [PATCH 1/2] Update README.md Added express and sinatra links --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index bdece74..2b0bb7d 100644 --- a/README.md +++ b/README.md @@ -300,4 +300,7 @@ To have more flexibility over port and host, use the `http.ListenAndServe` funct Martini is meant to be kept tiny and clean. Most contributions should end up in the [martini-contrib](http://github.com/codegangsta/martini-contrib) repository. If you do have a contribution for the core of Martini feel free to put up a Pull Request. ## About + +Inspired by [express](https://github.com/visionmedia/express) and [sinatra](https://github.com/sinatra/sinatra) + Martini is obsessively designed by none other than the [Code Gangsta](http://codegangsta.io/) From 6ecaa1c9dd5cbc5612ca3d4c4372ba07c80fb1f1 Mon Sep 17 00:00:00 2001 From: Jeremy Saenz Date: Tue, 3 Dec 2013 17:50:03 -0800 Subject: [PATCH 2/2] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 2b0bb7d..fc1b6ed 100644 --- a/README.md +++ b/README.md @@ -262,6 +262,9 @@ Start by looking in the [martini-contrib](http://github.com/codegangsta/martini- * [gzip](https://github.com/codegangsta/martini-contrib/tree/master/gzip) - Handler for adding gzip compress to requests * [render](https://github.com/codegangsta/martini-contrib/tree/master/render) - Handler that provides a service for easily rendering JSON and HTML templates. * [acceptlang](https://github.com/codegangsta/martini-contrib/tree/master/acceptlang) - Handler for parsing the `Accept-Language` HTTP header. +* [sessions](https://github.com/codegangsta/martini-contrib/tree/master/sessions) - Handler that provides a Session service. +* [web](https://github.com/codegangsta/martini-contrib/tree/master/web) - web.go Context compatibility. +* [strip](https://github.com/codegangsta/martini-contrib/tree/master/strip) - URL Prefix stripping. ### How do I integrate with existing servers?