diff --git a/CNAME b/CNAME deleted file mode 100644 index a527df55..00000000 --- a/CNAME +++ /dev/null @@ -1 +0,0 @@ -visjs.org \ No newline at end of file diff --git a/css/style.css b/css/style.css deleted file mode 100644 index 60e54dab..00000000 --- a/css/style.css +++ /dev/null @@ -1,94 +0,0 @@ - -#menu { - position: absolute; - left: -170px; - top: 35px; - background-color: #a7c8f9; - padding: 15px; - border-radius: 3px; -} - -#forkme { - position: fixed; - top: 0; - right: 0; - border: 0; -} - -div.nav { - text-align: center; -} - -div.nav ul { - text-decoration: none; - text-transform: uppercase; - - margin-bottom: 30px; - padding-left: 0; -} -li.nav { - -} - -div.nav ul li { - text-decoration: none; - text-transform: uppercase; - font-weight: normal; - font-size: 11pt; - - list-style: none; - margin-top: 5px; -} - -div.nav ul li ul li { - text-decoration: none; - text-transform: none; - font-weight: normal; - font-size: 11pt; - color: #4D4D4D; - - list-style: none; -} - -div.nav a { - color: #2B7CE9; - color: white; - font-weight: bold; -} - -.subtitle { - color: gray; - text-transform: uppercase; - font-size: 11pt; -} - -.download td { - border: none; - padding: 5px 20px 5px 0; -} - -.gallery .thumb { - display: inline-block; - text-align: center; - margin-right: 10px; - margin-bottom: 20px; -} - -.gallery .thumb img { - border: 1px solid white; - border-radius: 5px; - height: 90px; - margin: 0; -} - -.gallery .thumb a:hover img { - border-color: lightgray; -} - -.gallery .thumb div { - margin: 0; -} - -img { - border: 0; -} \ No newline at end of file diff --git a/favicon.ico b/favicon.ico deleted file mode 100644 index 5e84823d..00000000 Binary files a/favicon.ico and /dev/null differ diff --git a/index.html b/index.html deleted file mode 100644 index 737779a7..00000000 --- a/index.html +++ /dev/null @@ -1,366 +0,0 @@ - - - - - vis.js | a dynamic, browser-based visualization library - - - - - - - - - - - - - - - -
- - - -

- vis.js
- a visual interaction system -

- -

- Vis.js is a dynamic, browser based visualization library. - The library is designed to be easy to use, to handle large amounts - of dynamic data, and to enable manipulation of and interaction with the data. - The library consists of the components DataSet, Timeline, and Graph. -

-

- The vis.js library is developed by Almende B.V, - as part of the CHAP. -

- - -

Install

- -

npm

- -
-npm install vis
-
- -

bower

- -
-bower install vis
-
- -

download

- -Click here to download vis.js -(version 0.4.0) - - -

Example

- -

- A basic example demonstrating how to use the vis.js timeline is shown below. - See the gallery below for more examples. -

- -
<!doctype html>
-<html>
-<head>
-  <title>Timeline | Basic demo</title>
-  <script src="http://visjs.org/dist/vis.js"></script>
-  <link href="http://visjs.org/dist/vis.css" rel="stylesheet" type="text/css" />
-
-  <style type="text/css">
-    body, html {
-      font-family: sans-serif;
-    }
-  </style>
-</head>
-<body>
-<div id="mytimeline"></div>
-
-<script type="text/javascript">
-  var container = document.getElementById('mytimeline');
-  var data = [
-    {id: 1, content: 'item 1', start: '2013-04-20'},
-    {id: 2, content: 'item 2', start: '2013-04-14'},
-    {id: 3, content: 'item 3', start: '2013-04-18'},
-    {id: 4, content: 'item 4', start: '2013-04-16', end: '2013-04-19'},
-    {id: 5, content: 'item 5', start: '2013-04-25'},
-    {id: 6, content: 'item 6', start: '2013-04-27'}
-  ];
-  var options = {};
-  var timeline = new vis.Timeline(container, data, options);
-</script>
-</body>
-</html>
-
- - - -This gallery gives an idea of the features and possibilities of the library. -The source code of the examples can be found in the -examples directory. - -

Timeline

-

- The timeline from vis.js displays different types of data on a timeline. -

- - -

Graph

-

- The graph from vis.js visualizes graphs and networks with - customizable styles. -

- - - -

Docs

- -

- Documentation is available here: - Documentation -

- - -

License

- -

- Copyright (C) 2010-2014 Almende B.V. -

- -

- Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at -

- -

- http://www.apache.org/licenses/LICENSE-2.0 -

- -

- Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -

- - - Fork me on GitHub - - -
- - diff --git a/updateversion.js b/updateversion.js deleted file mode 100644 index 18878b6c..00000000 --- a/updateversion.js +++ /dev/null @@ -1,58 +0,0 @@ -// Update the version numbers and library sizes in index.html - -var fs = require('fs'), - zlib = require('zlib'); - -var VIS_ZIP = './dist/vis.js', - INDEX = 'index.html'; - -// read version from dist/vis.js -function version(callback) { - fs.readFile(VIS_ZIP, function (err, data) { - if (!err) { - var match = /@version\s*([\w\.-]*)/i.exec(data); - var version = undefined; - if (match) { - version = match[1]; - } - callback(null, version); - } - else { - callback(err); - } - }); -} - -// update version and library sizes in index.md -function updateVersion(version, callback) { - fs.readFile(INDEX, function (err, data) { - if (!err) { - data = String(data); - - data = data.replace(/([\w\.-]*)<\/span>/g, - '' + version + ''); - - fs.writeFile(INDEX, data, callback); - } - else { - callback(err); - } - }); -} - - -version(function (err, version) { - console.log('version: ' + version); - if (version) { - updateVersion(version, function (err, res) { - if (err) { - console.log(err); - } - else { - console.log('done'); - } - }); - } - else { - } -}); \ No newline at end of file