From b9b19740edb386ed6bc978438cc451b1145af23d Mon Sep 17 00:00:00 2001 From: jos Date: Mon, 4 May 2015 15:55:23 +0200 Subject: [PATCH] Removed "example*" name prefix from the graph3d examples --- .../{example01_basis.html => 01_basics.html} | 5 ++-- .../{example02_camera.html => 02_camera.html} | 5 ++-- ...mple03_filter.html => 03_filter_data.html} | 5 ++-- ...ample04_animate.html => 04_animation.html} | 5 ++-- .../{example05_line.html => 05_line.html} | 5 ++-- ...6_moving_dots.html => 06_moving_dots.html} | 5 ++-- ...d_colors.html => 07_dot_cloud_colors.html} | 5 ++-- ...cloud_size.html => 08_dot_cloud_size.html} | 2 +- .../{example09_mobile.html => 09_mobile.html} | 3 ++- ...{example10_styles.html => 10_styling.html} | 5 ++-- ...ample11_tooltips.html => 11_tooltips.html} | 5 ++-- ...ple12_ticks.html => 12_custom_labels.html} | 5 ++-- examples/graph3d/index.html | 27 ++++++++++--------- examples/graph3d/playground/index.html | 6 ++--- examples/network/index.html | 3 ++- examples/timeline/34_orientation.html | 1 + 16 files changed, 53 insertions(+), 39 deletions(-) rename examples/graph3d/{example01_basis.html => 01_basics.html} (74%) rename examples/graph3d/{example02_camera.html => 02_camera.html} (86%) rename examples/graph3d/{example03_filter.html => 03_filter_data.html} (75%) rename examples/graph3d/{example04_animate.html => 04_animation.html} (77%) rename examples/graph3d/{example05_line.html => 05_line.html} (73%) rename examples/graph3d/{example06_moving_dots.html => 06_moving_dots.html} (80%) rename examples/graph3d/{example07_dot_cloud_colors.html => 07_dot_cloud_colors.html} (75%) rename examples/graph3d/{example08_dot_cloud_size.html => 08_dot_cloud_size.html} (94%) rename examples/graph3d/{example09_mobile.html => 09_mobile.html} (82%) rename examples/graph3d/{example10_styles.html => 10_styling.html} (87%) rename examples/graph3d/{example11_tooltips.html => 11_tooltips.html} (84%) rename examples/graph3d/{example12_ticks.html => 12_custom_labels.html} (86%) diff --git a/examples/graph3d/example01_basis.html b/examples/graph3d/01_basics.html similarity index 74% rename from examples/graph3d/example01_basis.html rename to examples/graph3d/01_basics.html index c79355f0..10cd9e55 100644 --- a/examples/graph3d/example01_basis.html +++ b/examples/graph3d/01_basics.html @@ -1,4 +1,4 @@ - + Graph 3D demo @@ -50,7 +50,8 @@ graph = new vis.Graph3d(container, data, options); } - + +
diff --git a/examples/graph3d/example02_camera.html b/examples/graph3d/02_camera.html similarity index 86% rename from examples/graph3d/example02_camera.html rename to examples/graph3d/02_camera.html index 73ef0fd0..bbc9f7d0 100644 --- a/examples/graph3d/example02_camera.html +++ b/examples/graph3d/02_camera.html @@ -1,4 +1,4 @@ - + Graph 3D camera position @@ -79,7 +79,8 @@ graph.on('cameraPositionChange', onCameraPositionChange); } - + +

Graph 3d camera position

diff --git a/examples/graph3d/example03_filter.html b/examples/graph3d/03_filter_data.html similarity index 75% rename from examples/graph3d/example03_filter.html rename to examples/graph3d/03_filter_data.html index 6509ccdd..4fd4a739 100644 --- a/examples/graph3d/example03_filter.html +++ b/examples/graph3d/03_filter_data.html @@ -1,4 +1,4 @@ - + Graph 3D demo @@ -53,7 +53,8 @@ graph = new vis.Graph3d(container, data, options); } - + +
diff --git a/examples/graph3d/example04_animate.html b/examples/graph3d/04_animation.html similarity index 77% rename from examples/graph3d/example04_animate.html rename to examples/graph3d/04_animation.html index 8c6790aa..c0d99664 100644 --- a/examples/graph3d/example04_animate.html +++ b/examples/graph3d/04_animation.html @@ -1,4 +1,4 @@ - + Graph 3D animation demo @@ -60,7 +60,8 @@ graph = new vis.Graph3d(container, data, options); } - + +
diff --git a/examples/graph3d/example05_line.html b/examples/graph3d/05_line.html similarity index 73% rename from examples/graph3d/example05_line.html rename to examples/graph3d/05_line.html index a37260fd..40de188e 100644 --- a/examples/graph3d/example05_line.html +++ b/examples/graph3d/05_line.html @@ -1,4 +1,4 @@ - + Graph 3D line demo @@ -49,7 +49,8 @@ graph.setCameraPosition(0.4, undefined, undefined); } - + +
diff --git a/examples/graph3d/example06_moving_dots.html b/examples/graph3d/06_moving_dots.html similarity index 80% rename from examples/graph3d/example06_moving_dots.html rename to examples/graph3d/06_moving_dots.html index 940d5a6d..b24bb520 100644 --- a/examples/graph3d/example06_moving_dots.html +++ b/examples/graph3d/06_moving_dots.html @@ -1,4 +1,4 @@ - + Graph 3D animation moving dots @@ -67,7 +67,8 @@ graph = new vis.Graph3d(container, data, options); } - + +
diff --git a/examples/graph3d/example07_dot_cloud_colors.html b/examples/graph3d/07_dot_cloud_colors.html similarity index 75% rename from examples/graph3d/example07_dot_cloud_colors.html rename to examples/graph3d/07_dot_cloud_colors.html index 6a1008ae..07cab6de 100644 --- a/examples/graph3d/example07_dot_cloud_colors.html +++ b/examples/graph3d/07_dot_cloud_colors.html @@ -1,4 +1,4 @@ - + Graph 3D cloud with colored dots @@ -57,7 +57,8 @@ graph = new vis.Graph3d(container, data, options); } - + +
diff --git a/examples/graph3d/example08_dot_cloud_size.html b/examples/graph3d/08_dot_cloud_size.html similarity index 94% rename from examples/graph3d/example08_dot_cloud_size.html rename to examples/graph3d/08_dot_cloud_size.html index 923f48da..46218108 100644 --- a/examples/graph3d/example08_dot_cloud_size.html +++ b/examples/graph3d/08_dot_cloud_size.html @@ -1,4 +1,4 @@ - + Graph 3D cloud with sized dots diff --git a/examples/graph3d/example09_mobile.html b/examples/graph3d/09_mobile.html similarity index 82% rename from examples/graph3d/example09_mobile.html rename to examples/graph3d/09_mobile.html index d7ea8072..b3a99598 100644 --- a/examples/graph3d/example09_mobile.html +++ b/examples/graph3d/09_mobile.html @@ -70,7 +70,8 @@ graph = new vis.Graph3d(container, data, options); } - + +
diff --git a/examples/graph3d/example10_styles.html b/examples/graph3d/10_styling.html similarity index 87% rename from examples/graph3d/example10_styles.html rename to examples/graph3d/10_styling.html index fb8033a9..033b7ba5 100644 --- a/examples/graph3d/example10_styles.html +++ b/examples/graph3d/10_styling.html @@ -1,4 +1,4 @@ - + Graph 3D styles @@ -73,7 +73,8 @@ document.getElementById('yBarWidth').onchange = drawVisualization; } - + + diff --git a/examples/graph3d/example11_tooltips.html b/examples/graph3d/11_tooltips.html similarity index 84% rename from examples/graph3d/example11_tooltips.html rename to examples/graph3d/11_tooltips.html index b363cf08..6ae32a39 100644 --- a/examples/graph3d/example11_tooltips.html +++ b/examples/graph3d/11_tooltips.html @@ -1,4 +1,4 @@ - + Graph 3D tooltips @@ -73,7 +73,8 @@ document.getElementById('style').onchange = drawVisualization; } - + + diff --git a/examples/graph3d/example12_ticks.html b/examples/graph3d/12_custom_labels.html similarity index 86% rename from examples/graph3d/example12_ticks.html rename to examples/graph3d/12_custom_labels.html index 5acfba8d..b6fe8176 100644 --- a/examples/graph3d/example12_ticks.html +++ b/examples/graph3d/12_custom_labels.html @@ -1,4 +1,4 @@ - + Graph 3D Axis Ticks @@ -85,7 +85,8 @@ document.getElementById('style').onchange = drawVisualization; } - + + diff --git a/examples/graph3d/index.html b/examples/graph3d/index.html index 0321987d..603d6e56 100644 --- a/examples/graph3d/index.html +++ b/examples/graph3d/index.html @@ -1,24 +1,25 @@ - + +

Examples

-

example01_basis.html

-

example02_camera.html

-

example03_filter.html

-

example04_animate.html

-

example05_line.html

-

example06_moving_dots.html

-

example07_dot_cloud_colors.html

-

example08_dot_cloud_size.html

-

example09_mobile.html

-

example10_styles.html

-

example11_tooltips.html

-

example12_ticks.html

+

01_basics.html

+

02_camera.html

+

03_filter_data.html

+

04_animation.html

+

05_line.html

+

06_moving_dots.html

+

07_dot_cloud_colors.html

+

08_dot_cloud_size.html

+

09_mobile.html

+

10_styling.html

+

11_tooltips.html

+

12_custom_labels.html

Playground

Open the playground

diff --git a/examples/graph3d/playground/index.html b/examples/graph3d/playground/index.html index 72359c79..4f42260e 100644 --- a/examples/graph3d/playground/index.html +++ b/examples/graph3d/playground/index.html @@ -1,4 +1,4 @@ - + @@ -6,7 +6,6 @@ - @@ -17,7 +16,8 @@ // TODO } - + + diff --git a/examples/network/index.html b/examples/network/index.html index 1d8dad54..efba4e2c 100644 --- a/examples/network/index.html +++ b/examples/network/index.html @@ -5,7 +5,8 @@ vis.js | Network examples - + +
diff --git a/examples/timeline/34_orientation.html b/examples/timeline/34_orientation.html index cf907dc4..63f2bd9e 100644 --- a/examples/timeline/34_orientation.html +++ b/examples/timeline/34_orientation.html @@ -11,6 +11,7 @@ +