shrub/sur/work.hoon

59 lines
1.0 KiB
Plaintext
Raw Normal View History

2015-09-01 02:10:58 +03:00
::
2015-12-20 14:48:17 +03:00
:::: /hoon#work#sur
2015-09-01 02:10:58 +03:00
::
:: A block comment might go here!
::
2015-08-19 03:12:54 +03:00
/- talk
2015-08-18 22:56:53 +03:00
|%
++ client
2015-12-14 10:58:14 +03:00
$: tasks+(map @uvH client-task)
sort+(list @uvH)
2015-08-18 22:56:53 +03:00
==
++ client-task
2015-12-15 01:21:10 +03:00
$: archived+_|
audience+(set station:talk)
tax+task
2015-08-18 22:56:53 +03:00
==
++ task
2015-12-14 10:58:14 +03:00
$: 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)
2015-08-18 22:56:53 +03:00
==
++ comment
2015-12-14 10:58:14 +03:00
$: date+@da
ship+@p
body+@t :: XX (list @t)
2015-08-18 22:56:53 +03:00
==
2015-08-27 01:21:21 +03:00
++ command
2015-12-14 10:58:14 +03:00
$% {$new audience+(set station:talk) task}
{$old id+@uvH dif+update}
{$sort p+(list @uvH)}
2015-08-19 22:19:55 +03:00
==
2015-09-01 02:10:58 +03:00
++ update :: XX rename, web-edit?
2015-12-14 10:58:14 +03:00
$% $: $set
$% {$audience to+(set station:talk)}
{$date-due p+(unit @da)}
{$title p+@t}
{$description p+@t}
{$tags p+(set @t)}
{$done p+?}
2015-08-19 22:19:55 +03:00
== ==
2015-12-14 10:58:14 +03:00
$: $add
$% {$comment @t}
2015-08-19 22:19:55 +03:00
== ==
2015-12-14 10:58:14 +03:00
$: $doer
$% {$release $~}
{$claim $~}
2015-08-19 22:19:55 +03:00
== ==
==
2015-08-18 22:56:53 +03:00
--