├── app ├── value-pre.html.template ├── edit.png ├── nodes.png ├── riak.png ├── stats.png ├── view.png ├── buckets.png ├── delete.png ├── offline.png ├── online.png ├── spinner.gif ├── timeout.png ├── riaklogo.png ├── value-image.html.template ├── key-content-type.html.template ├── edit-value.html.template ├── key.html.template ├── bucket-hooks.html.template ├── edit-key.html.template ├── bucket-empty.html.template ├── bucket-row.html.template ├── key-row.html.template ├── stats.html.template ├── key-meta.html.template ├── edit-key-content-type.html.template ├── sammy.nested_params-0.6.3.min.js ├── sammy.template-0.6.3.min.js ├── buckets.html.template ├── bucket.html.template ├── go ├── jquery.quicksearch.js ├── bucket-props.html.template ├── screen.css ├── rekon.js ├── sammy-0.6.3.min.js ├── json2.js ├── riak.js └── jquery-1.5.1.min.js ├── varnish ├── README.mkd ├── etc-varnish-default.vcl └── etc-default-varnish ├── install.sh ├── README.mkd ├── download.sh └── LICENSE /app/value-pre.html.template: -------------------------------------------------------------------------------- 1 |
<%= value %>2 | -------------------------------------------------------------------------------- /app/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho-labs/rekon/HEAD/app/edit.png -------------------------------------------------------------------------------- /app/nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho-labs/rekon/HEAD/app/nodes.png -------------------------------------------------------------------------------- /app/riak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho-labs/rekon/HEAD/app/riak.png -------------------------------------------------------------------------------- /app/stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho-labs/rekon/HEAD/app/stats.png -------------------------------------------------------------------------------- /app/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho-labs/rekon/HEAD/app/view.png -------------------------------------------------------------------------------- /app/buckets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho-labs/rekon/HEAD/app/buckets.png -------------------------------------------------------------------------------- /app/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho-labs/rekon/HEAD/app/delete.png -------------------------------------------------------------------------------- /app/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho-labs/rekon/HEAD/app/offline.png -------------------------------------------------------------------------------- /app/online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho-labs/rekon/HEAD/app/online.png -------------------------------------------------------------------------------- /app/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho-labs/rekon/HEAD/app/spinner.gif -------------------------------------------------------------------------------- /app/timeout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho-labs/rekon/HEAD/app/timeout.png -------------------------------------------------------------------------------- /app/riaklogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho-labs/rekon/HEAD/app/riaklogo.png -------------------------------------------------------------------------------- /app/value-image.html.template: -------------------------------------------------------------------------------- 1 |
<%= object.contentType %>5 |
3 | This feature is currently experimental. 4 |
5 | 6 | -------------------------------------------------------------------------------- /app/key.html.template: -------------------------------------------------------------------------------- 1 |3 | Pre Commit Hook: 4 | [ <%= pre_commit %> ] 5 |
6 |7 | Post Commit Hook: 8 | [ <%= post_commit %> ] 9 |
10 |3 |
4 | This bucket doesn't technically exist.
5 |
6 | Buckets come into existence only once they have had a key stored
7 |
8 | "inside" them or you set a bucket's properties explicitly.
9 |
11 | Add a key to persist this bucket. 12 |
13 | 14 || 6 | 7 | filter results 8 | | 9 |Value | 10 |
|---|---|
| <%= key %> | 16 |
17 | <%= typeof stats[key] == 'string' ? stats[key] : JSON.stringify(stats[key]) %>
18 | |
19 |
<%= object.vclock %>5 |
<%= object.etag %>11 |
<%= object.lastModified %>17 |
<%= JSON.stringify(object.indexes) %>23 |
<%= JSON.stringify(object.links) %>29 |
<%= JSON.stringify(object.metadata) %>35 |
| 6 | 7 | filter results 8 | | 9 |Keys | 10 |Props | 11 |Riak | 12 ||
|---|---|---|---|---|
|
17 |
18 | | ||||
| 26 | 31 | | 32 |||||
| 6 | 7 | Type to filter rows 8 | | 9 |View | 10 |Riak | 11 |Edit | 12 |Delete | 13 |
|---|---|---|---|---|
|
18 |
19 | | ||||
| 27 | 33 | | 34 |||||
1.0.2
20 |