Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4bb5e7c

Browse files
committedAug 5, 2020
Add dashboard user guide
1 parent 808918e commit 4bb5e7c

22 files changed

+294
-0
lines changed
 

‎_includes/toc-dashboard.html

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<ul class="toc">
2+
<li class="toc-expander"><div>V</div></li>
3+
<li class="tocheader">
4+
<ul>
5+
<li class="toctitle active"><a href="/docs/dashboard/">Dashboard user guide</a></li>
6+
<li {% if page.url == "/docs/dashboard/introduction" %}class="active"{% endif %}><a href="/docs/dashboard/introduction">Introduction</a></li>
7+
<li {% if page.url == "/docs/dashboard/installation" %}class="active"{% endif %}><a href="/docs/dashboard/installation">Installation of dashboard</a></li>
8+
<li {% if page.url == "/docs/dashboard/configuration" %}class="active"{% endif %}><a href="/docs/dashboard/configuration">Dashboard configuration</a></li>
9+
<li {% if page.url == "/docs/dashboard/usage" %}class="active"{% endif %}><a href="/docs/dashboard/usage">Dashboard usage</a></li>
10+
<li {% if page.url == "/docs/dashboard/firststep" %}class="active"{% endif %}><a href="/docs/dashboard/firststep">The first step of dashboard</a></li>
11+
<li {% if page.url == "/docs/dashboard/widget" %}class="active"{% endif %}><a href="/docs/dashboard/widget">Widget</a></li>
12+
<li {% if page.url == "/docs/dashboard/layout" %}class="active"{% endif %}><a href="/docs/dashboard/layout">Layout</a></li>
13+
<li {% if page.url == "/docs/dashboard/nodes" %}class="active"{% endif %}><a href="/docs/dashboard/nodes">node-red-dashboard nodes</a></li>
14+
<li {% if page.url == "/docs/dashboard/extranodes" %}class="active"{% endif %}><a href="/docs/dashboard/extranodes">Dashboard extra nodes</a></li>
15+
</ul>
16+
</li>
17+
</ul>
18+
<script>
19+
$(function() {
20+
var pageToc = $("<ul></ul>").appendTo(".toc li.active:not(.toctitle)");
21+
$(".docs-content h3,.docs-content h4").each(function() {
22+
$('<li id="toc-item-'+$(this).attr('id')+'"><a style="font-size: 0.9em; padding-left: 50px;" href="#'+$(this).attr('id')+'">'+$(this).text()+'</a></li>').appendTo(pageToc)
23+
})
24+
})
25+
</script>

‎_layouts/docs-dashboard.html

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{% assign parent_url = '/docs/dashboard' %}
2+
{% assign parent_slug = 'dashboard' %}
3+
{% include docs-content.html %}

‎docs/dashboard/configuration-ja.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: docs-dashboard
3+
toc: toc-dashboard.html
4+
title: Dashbord configuration (ダッシュボードを設定する)
5+
---
6+
7+
### Changing URL for dashboard (ダッシュボードのURL変更)
8+
text
9+
10+
### Authentication of dashboard (ダッシュボード表示前に認証を行う)
11+
text
12+
13+
### Readonly setting for dashboard (ダッシュボードをreadonlyに設定する)
14+
text

‎docs/dashboard/configuration.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: docs-dashboard
3+
toc: toc-dashboard.html
4+
title: Dashboard configuration
5+
---
6+
7+
### Changing URL for dashboard
8+
text
9+
10+
### Authentication of dashboard
11+
text
12+
13+
### Readonly setting for dashboard
14+
text

‎docs/dashboard/extranodes-ja.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: docs-dashboard
3+
toc: toc-dashboard.html
4+
title: Dashboard extra nodes
5+
---
6+
7+
### Show richer table (リッチなテーブルを表示する)
8+
text
9+
10+
### Show list (リストを表示する)
11+
text
12+
13+
### Plot data on the map (地図上にデータを重ねて表示する)
14+
text
15+

‎docs/dashboard/extranodes.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: docs-dashboard
3+
toc: toc-dashboard.html
4+
title: Dashboard extra nodes
5+
---
6+
7+
### Show richer table
8+
text
9+
10+
### Show list
11+
text
12+
13+
### Plot data on the map
14+
text
15+

‎docs/dashboard/firststep-ja.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: docs-dashboard
3+
toc: toc-dashboard.html
4+
title: The first step of dashboard (はじめてのダッシュボード)
5+
---
6+
7+
### Creating dashboard to monitor CPU usage (CPU利用率を監視するdashboardを作成する)
8+
text

‎docs/dashboard/firststep.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: docs-dashboard
3+
toc: toc-dashboard.html
4+
title: The first step of dashboard
5+
---
6+
7+
### Creating dashboard to monitor CPU usage
8+
text

‎docs/dashboard/index-ja.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: docs-dashboard
3+
toc: toc-dashboard.html
4+
title: Dashboard user guide
5+
---
6+

‎docs/dashboard/index.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: docs-dashboard
3+
toc: toc-dashboard.html
4+
title: Dashboard user guide
5+
---
6+

‎docs/dashboard/installation-ja.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: docs-dashboard
3+
toc: toc-dashboard.html
4+
title: Installation of dashboard (ダッシュボードをインストールする)
5+
---
6+
7+
### Installing node-red-dashboard (node-red-dashboadのインストール)
8+
text

‎docs/dashboard/installation.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: docs-dashboard
3+
toc: toc-dashboard.html
4+
title: Installation of dashboard
5+
---
6+
7+
### Installing node-red-dashboard
8+
text

‎docs/dashboard/introduction-ja.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: docs-dashboard
3+
toc: toc-dashboard.html
4+
title: Introduction (はじめに)
5+
---
6+
7+
### What is dashboard? (ダッシュボードとは)
8+
text

‎docs/dashboard/introduction.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: docs-dashboard
3+
toc: toc-dashboard.html
4+
title: Introduction
5+
---
6+
7+
### What is dashboard?
8+
text

‎docs/dashboard/layout-ja.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: docs-dashboard
3+
toc: toc-dashboard.html
4+
title: Layout (レイアウト)
5+
---
6+
7+
### Change width on layout setting after adding group (グループを追加してレイアウトを横長に変更する)
8+
text

‎docs/dashboard/layout.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: docs-dashboard
3+
toc: toc-dashboard.html
4+
title: Layout
5+
---
6+
7+
### Change width on layout setting after adding group
8+
text

‎docs/dashboard/nodes-ja.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
layout: docs-dashboard
3+
toc: toc-dashboard.html
4+
title: node-red-dashboard nodes
5+
---
6+
7+
### Visualize data in real-time (リアルタイムデータを表示する)
8+
text
9+
10+
### Show time-series data (時系列データを表示する)
11+
text
12+
13+
### Switch status on dashboard (画面の状態を切り替える)
14+
text
15+
16+
### Show table (テーブルを表示する)
17+
text
18+
19+
### Show button with label (ラベル付きボタンを表示する)
20+
text
21+
22+
### Change setting values on dashboard (画面から設定値を変更する)
23+
text
24+
25+
### Move dashboard using switching tabs (複数のタブを切り替えて画面を遷移する)
26+
text

‎docs/dashboard/nodes.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
layout: docs-dashboard
3+
toc: toc-dashboard.html
4+
title: node-red-dashboard nodes
5+
---
6+
7+
### Visualize data in real-time
8+
text
9+
10+
### Show time-series data
11+
text
12+
13+
### Switch status on dashboard
14+
text
15+
16+
### Show simple table
17+
text
18+
19+
### Show button with label
20+
text
21+
22+
### Change setting values on dashboard
23+
text
24+
25+
### Move dashboard using switching tabs
26+
text

‎docs/dashboard/usage-ja.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
layout: docs-dashboard
3+
toc: toc-dashboard.html
4+
title: Dashboard usage (ダッシュボードを利用する)
5+
---
6+
7+
### Adding tabs and settings (タブの追加と設定)
8+
text
9+
10+
### Creating groups and settings (グループの作成と設定)
11+
text
12+
13+
### Setting sites (サイトの設定)
14+
text
15+
16+
### Theme settings (テーマの設定)
17+
text
18+
19+
### Creating links and settings (リンクの作成と設定)
20+
text
21+
22+
### Adding Widget to group (Widgetをグループへ追加する)
23+
text
24+
25+
### Width and height settings of widget (Widgetの幅と高さの設定)
26+
text
27+
28+
### Layout setting of widget (Widgetの配置の設定)
29+
text

‎docs/dashboard/usage.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
layout: docs-dashboard
3+
toc: toc-dashboard.html
4+
title: Dashboard usage
5+
---
6+
7+
### Adding tabs and settings
8+
text
9+
10+
### Creating groups and settings
11+
text
12+
13+
### Setting sites
14+
text
15+
16+
### Theme settings
17+
text
18+
19+
### Creating links and settings
20+
text
21+
22+
### Adding widget to group
23+
text
24+
25+
### Width and height settings of widget
26+
text
27+
28+
### Layout setting of widget
29+
text

‎docs/dashboard/widget-ja.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
layout: docs-dashboard
3+
toc: toc-dashboard.html
4+
title: Widget
5+
---
6+
7+
### Widget list (Widget一覧)
8+
text
9+
10+
### How to select widgets (Widgetの選び方)
11+
text

‎docs/dashboard/widget.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
layout: docs-dashboard
3+
toc: toc-dashboard.html
4+
title: Widget
5+
---
6+
7+
### Widget list
8+
text
9+
10+
### How to select widgets
11+
text

0 commit comments

Comments
 (0)
Please sign in to comment.