mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-14 04:19:22 +03:00
Added support for .ico files:
-/mar/ico/hoon * Utilizes similar structure to /mar/png/hoon, w/ changed mimetype -/lib/server * Added ico-response, again similar to png w/ same caching -/app/file-server * Added reference to ico-response:gen i showed you my ico, plz respond
This commit is contained in:
parent
d1327db316
commit
04537e6fc1
@ -222,6 +222,7 @@
|
|||||||
[~ %js] (js-response:gen file)
|
[~ %js] (js-response:gen file)
|
||||||
[~ %css] (css-response:gen file)
|
[~ %css] (css-response:gen file)
|
||||||
[~ %png] (png-response:gen file)
|
[~ %png] (png-response:gen file)
|
||||||
|
[~ %ico] (ico-response:gen file)
|
||||||
::
|
::
|
||||||
[~ %html]
|
[~ %html]
|
||||||
%. file
|
%. file
|
||||||
|
@ -110,6 +110,11 @@
|
|||||||
|= =octs
|
|= =octs
|
||||||
^- simple-payload:http
|
^- simple-payload:http
|
||||||
[[200 [['content-type' 'image/png'] max-1-wk ~]] `octs]
|
[[200 [['content-type' 'image/png'] max-1-wk ~]] `octs]
|
||||||
|
::
|
||||||
|
++ ico-response
|
||||||
|
|= =octs
|
||||||
|
^- simple-payload:http
|
||||||
|
[[200 [['content-type' 'image/x-icon'] max-1-wk ~]] `octs]
|
||||||
::
|
::
|
||||||
++ woff2-response
|
++ woff2-response
|
||||||
|= =octs
|
|= =octs
|
||||||
|
12
pkg/arvo/mar/ico.hoon
Normal file
12
pkg/arvo/mar/ico.hoon
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
|_ dat=@
|
||||||
|
++ grow
|
||||||
|
|%
|
||||||
|
++ mime [/image/x-icon (as-octs:mimes:html dat)]
|
||||||
|
--
|
||||||
|
++ grab
|
||||||
|
|%
|
||||||
|
++ mime |=([p=mite q=octs] q.q)
|
||||||
|
++ noun @
|
||||||
|
--
|
||||||
|
++ grad %mime
|
||||||
|
--
|
Loading…
Reference in New Issue
Block a user