mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-22 14:21:34 +03:00
1.8 KiB
1.8 KiB
:tree
is the web filesystem interface.
Internals
somethins something coffeescript
/[desk]/tree/{path}.json
tree/json.hook accepts a schema in light noun encoding¹
++ schema (dict ,[term $|(mark schema)])
++ dict |*(a=_,* $&([a (dict a)] a))
which is normalized and type-checked(request types are %t
text, %r
html-derived tree, and %j
arbitrary json) to a query
list of
[%kids query]
, the only recursive value, which executes for all subpaths XX descent is only currently supported to a single level as a performance optimization[%name %t]
, the node name[%snip %r]
, a snippet, extracted viareact-snip-json
[%head %r]
, the first header, extracted viareact-head-json
[%body %r]
, thereact-json
body[%meta %j]
, json frontmatter per themdy
mark definition[%index %j]
, a search index generated from the first header of each file in a path below the request one (SLOW)
Per this specification, the current access points will be migrated:
- (json.hook)
""
tobody:'r' kids:{name:'t'}
"?body.r__kids_name.t"
"?kids"
tokids:{name:'t' body:'r'}
"?kids_name.t_body.r"
"?snip"
tokids:{name:'t' body:'r' head:'r' meta:'j'}
"?kids_name.t_body.r"
"?heads"
toindex:'j'
"?index.j"
¹In the examples,
=< (cook to-noun (cook to-tree apex))
|%
++ data $|(term [n=@ l=data r=data])
++ apex ;~(plug sym (star ;~(plug delim sym)))
++ delim ;~(pose (cold 0 dot) (cook lent (plus cab)))
++ to-noun |=(a=data ?@(a a [$(a l.a) $(a r.a)]))
++ to-tree
|= [acc=data a=(list ,[p=@u q=term])]
%+ roll a =< .(acc ^acc)
|= [[n=@u v=term] acc=data]
?@ acc [n acc v]
?: (gth n n.acc) [n acc v]
acc(r $(acc r.acc))
--
Curtis, this can be full coin %many if you wish.