urbit/sur/work.hoon

59 lines
1.1 KiB
Plaintext
Raw Normal View History

2015-09-01 02:10:58 +03:00
::
:::: /hoon/work/sur
::
:: 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-08-19 22:44:33 +03:00
$: tasks=(map ,@uvH client-task)
sort=(list ,@uvH)
2015-08-18 22:56:53 +03:00
==
++ client-task
2015-08-27 01:21:21 +03:00
$: archived=_|
2015-08-19 03:12:54 +03:00
audience=(set station:talk)
2015-08-22 03:02:35 +03:00
tax=task
2015-08-18 22:56:53 +03:00
==
++ task
2015-08-19 22:44:33 +03:00
$: id=@uvH
2015-08-18 22:56:53 +03:00
date-created=@da
version=@u
date-modified=@da
2015-08-27 01:21:21 +03:00
creator=@p
doer=(unit ,@p)
2015-08-19 03:12:54 +03:00
tags=(set ,@t)
2015-08-20 03:36:40 +03:00
date-due=(unit ,@da)
done=(unit ,@da)
2015-08-18 22:56:53 +03:00
title=@t
2015-09-01 02:10:58 +03:00
description=@t :: XX (list ,@t)
2015-08-18 22:56:53 +03:00
discussion=(list comment)
==
++ comment
$: date=@da
ship=@p
2015-09-01 02:10:58 +03:00
body=@t :: XX (list ,@t)
2015-08-18 22:56:53 +03:00
==
2015-08-27 01:21:21 +03:00
++ command
2015-08-20 23:50:06 +03:00
$% [%new audience=(set station:talk) task]
2015-08-27 01:21:21 +03:00
[%old id=@uvH dif=update]
2015-08-19 22:44:33 +03:00
[%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-08-19 22:19:55 +03:00
$% $: %set
2015-08-28 02:50:21 +03:00
$% [%audience to=(set station:talk)]
[%date-due p=(unit ,@da)]
2015-08-19 22:19:55 +03:00
[%title p=@t]
[%description p=@t]
[%tags p=(set ,@t)]
2015-08-20 03:36:40 +03:00
[%done p=?]
2015-08-19 22:19:55 +03:00
== ==
$: %add
2015-08-20 03:36:40 +03:00
$% [%comment @t]
2015-08-19 22:19:55 +03:00
== ==
2015-08-27 01:34:26 +03:00
$: %doer
$% [%release ~]
2015-08-19 22:19:55 +03:00
[%claim ~]
== ==
==
2015-08-18 22:56:53 +03:00
--