48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/*
** Impl for /json/branch/list
**
**
** CLI mode options:
**
** --range X | -r X, where X is one of (open,closed,all)
** (only the first letter is significant, default=open).
** -a (same as --range a)
** -c (same as --range c)
**
** HTTP mode options:
**
** "range" GET/POST.payload parameter. FIXME: currently we also use
** POST, but really want to restrict this to POST.payload.
|
|
|
|
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/*
** Impl for /json/branch/list
**
**
** CLI mode options:
**
** -r|--range X, where X is one of (open,closed,all)
** (only the first letter is significant, default=open)
** -a (same as --range a)
** -c (same as --range c)
**
** HTTP mode options:
**
** "range" GET/POST.payload parameter. FIXME: currently we also use
** POST, but really want to restrict this to POST.payload.
|