mirror of
https://github.com/urbit/shrub.git
synced 2024-12-14 11:08:45 +03:00
54 lines
968 B
Plaintext
54 lines
968 B
Plaintext
/- talk
|
|
|%
|
|
++ client
|
|
$: tasks=(map ,@uvH client-task)
|
|
sort=(list ,@uvH)
|
|
==
|
|
++ client-task
|
|
$: task=task
|
|
audience=(set station:talk)
|
|
==
|
|
++ task
|
|
$: id=@uvH
|
|
date-created=@da
|
|
version=@u
|
|
date-modified=@da
|
|
owner=@p
|
|
status=status
|
|
tags=(set ,@t)
|
|
date-due=(unit ,@da)
|
|
done=(unit ,@da)
|
|
title=@t
|
|
description=@t
|
|
discussion=(list comment)
|
|
==
|
|
++ comment
|
|
$: date=@da
|
|
ship=@p
|
|
body=@t
|
|
==
|
|
++ status ?(%announced %released %accepted)
|
|
++ command
|
|
$% [%new task audience=(set station:talk)]
|
|
[%old id=@uvH dif=update]
|
|
[%sort p=(list ,@uvH)]
|
|
==
|
|
++ update
|
|
$% $: %set
|
|
$% [%date-due p=(unit ,@da)]
|
|
[%title p=@t]
|
|
[%description p=@t]
|
|
[%tags p=(set ,@t)]
|
|
[%done p=?]
|
|
[%audience p=(set station:talk)]
|
|
== ==
|
|
$: %add
|
|
$% [%comment @t]
|
|
== ==
|
|
$: %own
|
|
$% [%announce ~]
|
|
[%claim ~]
|
|
== ==
|
|
==
|
|
--
|