Skip to content

Clojure implementation of the URI Template (RFC 6570), level 4 compliant.

Notifications You must be signed in to change notification settings

dfa1/uritemplate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

# uritemplate

Clojure implementation of the URI Template (RFC 6570), level 4 compliant.

## Usage

user=> (let [bitbucket (uritemplate "http://bitbucket.org/{user}/{project}")]
  (bitbucket {:user "dfa" :project "uritemplate"}))
http://bitbucket.org/dfa/uritemplate
user=>

## Todo

- improve error reporting:
   + missing } in templates
   + empty templates
   + prefix together with explode
- uriparser?
    (let [example-parser (uri-parser "http://example.com/{role}/{user}")]
      (example-parser "http://example.com/admin/dfa")) ; yields {:role "admin"
      	  :user "user" }

## Inspired by

http://code.google.com/p/uri-templates/
http://static.springsource.org/spring/docs/3.0.x/javadoc-api/org/springframework/web/util/UriTemplate.html

## License

Copyright (C) 2011-2014 Davide Angelocola

Distributed under the Eclipse Public License, the same as Clojure.

About

Clojure implementation of the URI Template (RFC 6570), level 4 compliant.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published