├── .github └── workflows │ └── test.yml ├── .gitignore ├── .travis.yml ├── README.md ├── project.clj ├── src └── ring │ └── middleware │ ├── absolute_redirects.clj │ ├── authorization.clj │ ├── default_charset.clj │ ├── proxy_headers.clj │ └── x_headers.clj └── test └── ring └── middleware ├── absolute_redirects_test.clj ├── authorization_test.clj ├── default_charset_test.clj ├── proxy_headers_test.clj └── x_headers_test.clj /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ring-clojure/ring-headers/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ring-clojure/ring-headers/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: clojure 2 | script: lein test-all 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ring-clojure/ring-headers/HEAD/README.md -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ring-clojure/ring-headers/HEAD/project.clj -------------------------------------------------------------------------------- /src/ring/middleware/absolute_redirects.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ring-clojure/ring-headers/HEAD/src/ring/middleware/absolute_redirects.clj -------------------------------------------------------------------------------- /src/ring/middleware/authorization.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ring-clojure/ring-headers/HEAD/src/ring/middleware/authorization.clj -------------------------------------------------------------------------------- /src/ring/middleware/default_charset.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ring-clojure/ring-headers/HEAD/src/ring/middleware/default_charset.clj -------------------------------------------------------------------------------- /src/ring/middleware/proxy_headers.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ring-clojure/ring-headers/HEAD/src/ring/middleware/proxy_headers.clj -------------------------------------------------------------------------------- /src/ring/middleware/x_headers.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ring-clojure/ring-headers/HEAD/src/ring/middleware/x_headers.clj -------------------------------------------------------------------------------- /test/ring/middleware/absolute_redirects_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ring-clojure/ring-headers/HEAD/test/ring/middleware/absolute_redirects_test.clj -------------------------------------------------------------------------------- /test/ring/middleware/authorization_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ring-clojure/ring-headers/HEAD/test/ring/middleware/authorization_test.clj -------------------------------------------------------------------------------- /test/ring/middleware/default_charset_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ring-clojure/ring-headers/HEAD/test/ring/middleware/default_charset_test.clj -------------------------------------------------------------------------------- /test/ring/middleware/proxy_headers_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ring-clojure/ring-headers/HEAD/test/ring/middleware/proxy_headers_test.clj -------------------------------------------------------------------------------- /test/ring/middleware/x_headers_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ring-clojure/ring-headers/HEAD/test/ring/middleware/x_headers_test.clj --------------------------------------------------------------------------------