Skip to content

Instantly share code, notes, and snippets.

@hiredman
Created October 3, 2010 01:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hiredman/608183 to your computer and use it in GitHub Desktop.
Save hiredman/608183 to your computer and use it in GitHub Desktop.
(def f7
(a-if acceptable-encoding-avail?
g7
four-oh-six-not-acceptable))
(def f6
(a-if accept-encoding-exists?
g7
f7))
(def e6
(a-if
f6
four-oh-six-not-acceptable))
(def e5
(a-if acceptable-charset-exists?
e6
f6))
(def d5
(a-if accept-language-available?
e5
four-oh-six-not-acceptable))
(def d4
(a-if accept-language-exists?
d5
e5))
(def c4
(a-if acceptable-media-type?
d4
four-oh-six-not-acceptable))
(def c3
(a-if accept-exists?
c4
d4))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment