mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-18 04:11:49 +03:00
fc1068dfae
This reverts commit afcc1cb9a80db3a687d7a2a1dc3bf1be38df5b68.
59 lines
1.0 KiB
Plaintext
59 lines
1.0 KiB
Plaintext
::
|
|
:::: /hoon+work+sur
|
|
::
|
|
:: A block comment might go here!
|
|
::
|
|
/- talk
|
|
|%
|
|
++ client
|
|
$: tasks/(map @uvH client-task)
|
|
sort/(list @uvH)
|
|
==
|
|
++ client-task
|
|
$: archived/_|
|
|
audience/(set station:talk)
|
|
tax/task
|
|
==
|
|
++ task
|
|
$: id/@uvH
|
|
date-created/@da
|
|
version/@u
|
|
date-modified/@da
|
|
creator/@p
|
|
doer/(unit @p)
|
|
tags/(set @t)
|
|
date-due/(unit @da)
|
|
done/(unit @da)
|
|
title/@t
|
|
description/@t :: XX (list @t)
|
|
discussion/(list comment)
|
|
==
|
|
++ comment
|
|
$: date/@da
|
|
ship/@p
|
|
body/@t :: XX (list @t)
|
|
==
|
|
++ command
|
|
$% {$new audience/(set station:talk) task}
|
|
{$old id/@uvH dif/update}
|
|
{$sort p/(list @uvH)}
|
|
==
|
|
++ update :: XX rename, web-edit?
|
|
$% $: $set
|
|
$% {$audience to/(set station:talk)}
|
|
{$date-due p/(unit @da)}
|
|
{$title p/@t}
|
|
{$description p/@t}
|
|
{$tags p/(set @t)}
|
|
{$done p/?}
|
|
== ==
|
|
$: $add
|
|
$% {$comment @t}
|
|
== ==
|
|
$: $doer
|
|
$% {$release $~}
|
|
{$claim $~}
|
|
== ==
|
|
==
|
|
--
|