urbit/sur/work.hoon
C. Guy Yarvin fc1068dfae Revert "Stripdown part 2."
This reverts commit afcc1cb9a80db3a687d7a2a1dc3bf1be38df5b68.
2016-01-25 16:52:58 -08:00

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 $~}
== ==
==
--