├── .gitignore ├── Makefile ├── README.md ├── hello-world.ipynb ├── index.ipynb ├── lib └── vis │ ├── CONTRIBUTING.md │ ├── HISTORY.md │ ├── LICENSE-APACHE-2.0 │ ├── LICENSE-MIT │ ├── NOTICE │ ├── README.md │ ├── dist │ ├── img │ │ ├── network │ │ │ ├── acceptDeleteIcon.png │ │ │ ├── addNodeIcon.png │ │ │ ├── backIcon.png │ │ │ ├── connectIcon.png │ │ │ ├── cross.png │ │ │ ├── cross2.png │ │ │ ├── deleteIcon.png │ │ │ ├── downArrow.png │ │ │ ├── editIcon.png │ │ │ ├── leftArrow.png │ │ │ ├── minus.png │ │ │ ├── plus.png │ │ │ ├── rightArrow.png │ │ │ ├── upArrow.png │ │ │ └── zoomExtends.png │ │ └── timeline │ │ │ └── delete.png │ ├── vis.css │ ├── vis.js │ ├── vis.map │ ├── vis.min.css │ └── vis.min.js │ ├── docs │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── carousel.css │ │ ├── prettify.css │ │ ├── style.css │ │ └── tipuesearch.css │ ├── data │ │ ├── dataset.html │ │ ├── dataview.html │ │ └── index.html │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── graph2d │ │ └── index.html │ ├── graph3d │ │ └── index.html │ ├── img │ │ ├── arrow.svg │ │ ├── crossword.png │ │ ├── crosswordStrong.png │ │ ├── external-link-icons │ │ │ ├── external-link-icon-white.png │ │ │ ├── external-link-icon.png │ │ │ └── license.txt │ │ ├── graph │ │ │ ├── graph.png │ │ │ └── graph120x60.png │ │ ├── graph3d.png │ │ ├── graph3d120x60.png │ │ ├── timeline │ │ │ ├── timeline.png │ │ │ └── timeline120x60.png │ │ ├── vis_overview.odg │ │ └── vis_overview.png │ ├── index.html │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── docs.min.js │ │ ├── googleAnalytics.js │ │ ├── ie-emulation-modes-warning.js │ │ ├── ie10-viewport-bug-workaround.js │ │ ├── jquery.highlight.js │ │ ├── jquery.min.js │ │ ├── jquery.url.min.js │ │ ├── main.js │ │ ├── prettify │ │ │ ├── lang-apollo.js │ │ │ ├── lang-css.js │ │ │ ├── lang-hs.js │ │ │ ├── lang-lisp.js │ │ │ ├── lang-lua.js │ │ │ ├── lang-ml.js │ │ │ ├── lang-proto.js │ │ │ ├── lang-scala.js │ │ │ ├── lang-sql.js │ │ │ ├── lang-vb.js │ │ │ ├── lang-vhdl.js │ │ │ ├── lang-wiki.js │ │ │ ├── lang-yaml.js │ │ │ ├── prettify.css │ │ │ └── prettify.js │ │ ├── smooth-scroll.min.js │ │ ├── tipuesearch.config.js │ │ ├── tipuesearch.js │ │ ├── tipuesearch.min.js │ │ └── toggleTable.js │ ├── network │ │ ├── configure.html │ │ ├── edges.html │ │ ├── groups.html │ │ ├── index.html │ │ ├── interaction.html │ │ ├── layout.html │ │ ├── manipulation.html │ │ ├── nodes.html │ │ └── physics.html │ └── timeline │ │ └── index.html │ └── examples │ ├── googleAnalytics.js │ ├── graph2d │ ├── 01_basic.html │ ├── 02_bars.html │ ├── 03_groups.html │ ├── 04_rightAxis.html │ ├── 05_bothAxis.html │ ├── 06_interpolation.html │ ├── 07_scrollingAndSorting.html │ ├── 08_performance.html │ ├── 09_external_legend.html │ ├── 10_barsSideBySide.html │ ├── 11_barsSideBySideGroups.html │ ├── 12_customRange.html │ ├── 13_localization.html │ ├── 14_toggleGroups.html │ ├── 15_streaming_data.html │ ├── 16_bothAxisTitles.html │ ├── 17_dynamicStyling.html │ ├── 18_scatterplot.html │ ├── 19_labels.html │ └── default.css │ ├── graph3d │ ├── 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 │ ├── default.css │ └── playground │ │ ├── csv2array.js │ │ ├── csv2datatable.html │ │ ├── datasource.html │ │ ├── datasource.php │ │ ├── index.html │ │ ├── playground.css │ │ ├── playground.js │ │ └── prettify │ │ ├── lang-apollo.js │ │ ├── lang-css.js │ │ ├── lang-hs.js │ │ ├── lang-lisp.js │ │ ├── lang-lua.js │ │ ├── lang-ml.js │ │ ├── lang-proto.js │ │ ├── lang-scala.js │ │ ├── lang-sql.js │ │ ├── lang-vb.js │ │ ├── lang-vhdl.js │ │ ├── lang-wiki.js │ │ ├── lang-yaml.js │ │ ├── prettify.css │ │ └── prettify.js │ ├── network │ ├── basicUsage.html │ ├── data │ │ ├── datasets.html │ │ ├── dotLanguage │ │ │ ├── data │ │ │ │ ├── cellular_automata.gv.txt │ │ │ │ ├── computer_network.gv.txt │ │ │ │ └── simple.gv.txt │ │ │ ├── dotLanguage.html │ │ │ ├── dotPlayground.html │ │ │ └── graphvizGallery │ │ │ │ ├── fsm.gv.txt │ │ │ │ ├── hello.gv.txt │ │ │ │ ├── process.gv.txt │ │ │ │ ├── screenshots │ │ │ │ ├── fsm.png │ │ │ │ ├── hello.png │ │ │ │ ├── softmaint.png │ │ │ │ └── traffic_lights.png │ │ │ │ ├── siblings.gv.txt │ │ │ │ ├── softmaint.gv.txt │ │ │ │ ├── traffic_lights.gv.txt │ │ │ │ ├── transparency.gv.txt │ │ │ │ ├── twopi2.gv.txt │ │ │ │ ├── unix.gv.txt │ │ │ │ └── world.gv.txt │ │ ├── dynamicData.html │ │ ├── importingFromGephi.html │ │ ├── scalingCustom.html │ │ ├── scalingNodesEdges.html │ │ └── scalingNodesEdgesLabels.html │ ├── datasources │ │ ├── WorldCup2014.js │ │ └── WorldCup2014.json │ ├── edgeStyles │ │ ├── arrows.html │ │ ├── colors.html │ │ ├── dashes.html │ │ ├── smooth.html │ │ └── smoothWorldCup.html │ ├── events │ │ ├── interactionEvents.html │ │ ├── physicsEvents.html │ │ └── renderEvents.html │ ├── exampleApplications │ │ ├── lesMiserables.html │ │ ├── loadingBar.html │ │ ├── neighbourhoodHighlight.html │ │ ├── nodeLegend.html │ │ └── worldCupPerformance.html │ ├── exampleUtil.js │ ├── img │ │ ├── indonesia │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── refresh-cl │ │ │ ├── Hardware-Fax-icon.png │ │ │ ├── Hardware-Laptop-1-icon.png │ │ │ ├── Hardware-Mobile-Phone-icon.png │ │ │ ├── Hardware-My-Computer-3-icon.png │ │ │ ├── Hardware-My-PDA-02-icon.png │ │ │ ├── Hardware-My-PDA-04-icon.png │ │ │ ├── Hardware-My-PDA-05-icon.png │ │ │ ├── Hardware-My-Phone-Picture-icon.png │ │ │ ├── Hardware-Printer-Blue-icon.png │ │ │ ├── Misc-Scanner-default-icon.png │ │ │ ├── Network-Drive-icon.png │ │ │ ├── Network-Internet-Connection-icon.png │ │ │ ├── Network-Pipe-icon.png │ │ │ ├── System-Firewall-2-icon.png │ │ │ ├── System-Globe-icon.png │ │ │ └── license.txt │ │ └── soft-scraps-icons │ │ │ ├── Document-icon24.png │ │ │ ├── Document-icon32.png │ │ │ ├── Document-icon48.png │ │ │ ├── Email-icon24.png │ │ │ ├── Email-icon32.png │ │ │ ├── Email-icon48.png │ │ │ ├── Folder-icon24.png │ │ │ ├── Folder-icon32.png │ │ │ ├── Folder-icon48.png │ │ │ ├── Folder-icon64.png │ │ │ ├── Smiley-Angry-icon.png │ │ │ ├── Smiley-Grin-icon.png │ │ │ ├── User-Administrator-Blue-icon.png │ │ │ ├── User-Administrator-Green-icon.png │ │ │ ├── User-Coat-Blue-icon.png │ │ │ ├── User-Coat-Green-icon.png │ │ │ ├── User-Coat-Red-icon.png │ │ │ ├── User-Executive-Green-icon.png │ │ │ ├── User-Preppy-Blue-icon.png │ │ │ ├── User-Preppy-Red-icon.png │ │ │ └── license.txt │ ├── labels │ │ ├── labelAlignment.html │ │ ├── labelBackground.html │ │ ├── labelColorAndSize.html │ │ ├── labelStroke.html │ │ └── multilineText.html │ ├── layout │ │ ├── hierarchicalLayout.html │ │ ├── hierarchicalLayoutMethods.html │ │ ├── hierarchicalLayoutUserdefined.html │ │ └── randomSeed.html │ ├── nodeStyles │ │ ├── HTMLInNodes.html │ │ ├── circularImages.html │ │ ├── colors.html │ │ ├── customGroups.html │ │ ├── groups.html │ │ ├── icons.html │ │ ├── images.html │ │ ├── shadows.html │ │ ├── shapes.html │ │ └── shapesWithDashedBorders.html │ ├── other │ │ ├── animationShowcase.html │ │ ├── clustering.html │ │ ├── clusteringByZoom.html │ │ ├── configuration.html │ │ ├── manipulation.html │ │ ├── navigation.html │ │ └── performance.html │ └── physics │ │ └── physicsConfiguration.html │ └── timeline │ ├── basicUsage.html │ ├── dataHandling │ ├── dataSerialization.html │ └── loadExternalData.html │ ├── editing │ ├── customSnappingOfItems.html │ ├── editingItems.html │ ├── editingItemsCallbacks.html │ ├── individualEditableItems.html │ └── updateDataOnEvent.html │ ├── groups │ ├── groups.html │ ├── groupsEditable.html │ ├── groupsOrdering.html │ └── subgroups.html │ ├── interaction │ ├── animateWindow.html │ ├── clickToUse.html │ ├── eventListeners.html │ ├── limitMoveAndZoom.html │ ├── navigationMenu.html │ └── setSelection.html │ ├── items │ ├── backgroundAreas.html │ ├── backgroundAreasWithGroups.html │ ├── htmlContents.html │ ├── itemOrdering.html │ ├── pointItems.html │ └── rangeOverflowItem.html │ ├── other │ ├── customTimeBars.html │ ├── dataAttributes.html │ ├── dataAttributesAll.html │ ├── groupsPerformance.html │ ├── hidingPeriods.html │ ├── localization.html │ ├── performance.html │ ├── requirejs │ │ ├── requirejs_example.html │ │ └── scripts │ │ │ ├── main.js │ │ │ └── require.js │ └── timezone.html │ ├── resources │ ├── data │ │ ├── basic.json │ │ └── wk2014.json │ └── img │ │ ├── Hardware-Mobile-Phone-icon.png │ │ ├── attachment-icon.png │ │ ├── blog-post-edit-icon.png │ │ ├── comments-icon.png │ │ ├── community-users-icon.png │ │ ├── license.txt │ │ ├── license_aesthetica-2.txt │ │ ├── license_refresh-cl.txt │ │ ├── mail-icon.png │ │ ├── notes-edit-icon.png │ │ ├── product-icon.png │ │ └── truck-icon.png │ └── styling │ ├── axisOrientation.html │ ├── customCss.html │ ├── gridStyling.html │ ├── itemClassNames.html │ └── itemTemplates.html ├── panama.ipynb ├── requirements.txt ├── scripts ├── __init__.py ├── twitter.py └── vis.py ├── twitter.ipynb └── workshop.ipynb /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/ 2 | *.pyc 3 | *.html 4 | .idea 5 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/README.md -------------------------------------------------------------------------------- /hello-world.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/hello-world.ipynb -------------------------------------------------------------------------------- /index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/index.ipynb -------------------------------------------------------------------------------- /lib/vis/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/CONTRIBUTING.md -------------------------------------------------------------------------------- /lib/vis/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/HISTORY.md -------------------------------------------------------------------------------- /lib/vis/LICENSE-APACHE-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/LICENSE-APACHE-2.0 -------------------------------------------------------------------------------- /lib/vis/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/LICENSE-MIT -------------------------------------------------------------------------------- /lib/vis/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/NOTICE -------------------------------------------------------------------------------- /lib/vis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/README.md -------------------------------------------------------------------------------- /lib/vis/dist/img/network/acceptDeleteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/dist/img/network/acceptDeleteIcon.png -------------------------------------------------------------------------------- /lib/vis/dist/img/network/addNodeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/dist/img/network/addNodeIcon.png -------------------------------------------------------------------------------- /lib/vis/dist/img/network/backIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/dist/img/network/backIcon.png -------------------------------------------------------------------------------- /lib/vis/dist/img/network/connectIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/dist/img/network/connectIcon.png -------------------------------------------------------------------------------- /lib/vis/dist/img/network/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/dist/img/network/cross.png -------------------------------------------------------------------------------- /lib/vis/dist/img/network/cross2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/dist/img/network/cross2.png -------------------------------------------------------------------------------- /lib/vis/dist/img/network/deleteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/dist/img/network/deleteIcon.png -------------------------------------------------------------------------------- /lib/vis/dist/img/network/downArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/dist/img/network/downArrow.png -------------------------------------------------------------------------------- /lib/vis/dist/img/network/editIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/dist/img/network/editIcon.png -------------------------------------------------------------------------------- /lib/vis/dist/img/network/leftArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/dist/img/network/leftArrow.png -------------------------------------------------------------------------------- /lib/vis/dist/img/network/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/dist/img/network/minus.png -------------------------------------------------------------------------------- /lib/vis/dist/img/network/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/dist/img/network/plus.png -------------------------------------------------------------------------------- /lib/vis/dist/img/network/rightArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/dist/img/network/rightArrow.png -------------------------------------------------------------------------------- /lib/vis/dist/img/network/upArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/dist/img/network/upArrow.png -------------------------------------------------------------------------------- /lib/vis/dist/img/network/zoomExtends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/dist/img/network/zoomExtends.png -------------------------------------------------------------------------------- /lib/vis/dist/img/timeline/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/dist/img/timeline/delete.png -------------------------------------------------------------------------------- /lib/vis/dist/vis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/dist/vis.css -------------------------------------------------------------------------------- /lib/vis/dist/vis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/dist/vis.js -------------------------------------------------------------------------------- /lib/vis/dist/vis.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/dist/vis.map -------------------------------------------------------------------------------- /lib/vis/dist/vis.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/dist/vis.min.css -------------------------------------------------------------------------------- /lib/vis/dist/vis.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/dist/vis.min.js -------------------------------------------------------------------------------- /lib/vis/docs/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/css/bootstrap-theme.css -------------------------------------------------------------------------------- /lib/vis/docs/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /lib/vis/docs/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /lib/vis/docs/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/css/bootstrap.css -------------------------------------------------------------------------------- /lib/vis/docs/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/css/bootstrap.css.map -------------------------------------------------------------------------------- /lib/vis/docs/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/css/bootstrap.min.css -------------------------------------------------------------------------------- /lib/vis/docs/css/carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/css/carousel.css -------------------------------------------------------------------------------- /lib/vis/docs/css/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/css/prettify.css -------------------------------------------------------------------------------- /lib/vis/docs/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/css/style.css -------------------------------------------------------------------------------- /lib/vis/docs/css/tipuesearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/css/tipuesearch.css -------------------------------------------------------------------------------- /lib/vis/docs/data/dataset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/data/dataset.html -------------------------------------------------------------------------------- /lib/vis/docs/data/dataview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/data/dataview.html -------------------------------------------------------------------------------- /lib/vis/docs/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/data/index.html -------------------------------------------------------------------------------- /lib/vis/docs/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /lib/vis/docs/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /lib/vis/docs/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /lib/vis/docs/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /lib/vis/docs/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /lib/vis/docs/graph2d/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/graph2d/index.html -------------------------------------------------------------------------------- /lib/vis/docs/graph3d/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/graph3d/index.html -------------------------------------------------------------------------------- /lib/vis/docs/img/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/img/arrow.svg -------------------------------------------------------------------------------- /lib/vis/docs/img/crossword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/img/crossword.png -------------------------------------------------------------------------------- /lib/vis/docs/img/crosswordStrong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/img/crosswordStrong.png -------------------------------------------------------------------------------- /lib/vis/docs/img/external-link-icons/external-link-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/img/external-link-icons/external-link-icon-white.png -------------------------------------------------------------------------------- /lib/vis/docs/img/external-link-icons/external-link-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/img/external-link-icons/external-link-icon.png -------------------------------------------------------------------------------- /lib/vis/docs/img/external-link-icons/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/img/external-link-icons/license.txt -------------------------------------------------------------------------------- /lib/vis/docs/img/graph/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/img/graph/graph.png -------------------------------------------------------------------------------- /lib/vis/docs/img/graph/graph120x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/img/graph/graph120x60.png -------------------------------------------------------------------------------- /lib/vis/docs/img/graph3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/img/graph3d.png -------------------------------------------------------------------------------- /lib/vis/docs/img/graph3d120x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/img/graph3d120x60.png -------------------------------------------------------------------------------- /lib/vis/docs/img/timeline/timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/img/timeline/timeline.png -------------------------------------------------------------------------------- /lib/vis/docs/img/timeline/timeline120x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/img/timeline/timeline120x60.png -------------------------------------------------------------------------------- /lib/vis/docs/img/vis_overview.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/img/vis_overview.odg -------------------------------------------------------------------------------- /lib/vis/docs/img/vis_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/img/vis_overview.png -------------------------------------------------------------------------------- /lib/vis/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/index.html -------------------------------------------------------------------------------- /lib/vis/docs/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/bootstrap.js -------------------------------------------------------------------------------- /lib/vis/docs/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/bootstrap.min.js -------------------------------------------------------------------------------- /lib/vis/docs/js/docs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/docs.min.js -------------------------------------------------------------------------------- /lib/vis/docs/js/googleAnalytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/googleAnalytics.js -------------------------------------------------------------------------------- /lib/vis/docs/js/ie-emulation-modes-warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/ie-emulation-modes-warning.js -------------------------------------------------------------------------------- /lib/vis/docs/js/ie10-viewport-bug-workaround.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/ie10-viewport-bug-workaround.js -------------------------------------------------------------------------------- /lib/vis/docs/js/jquery.highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/jquery.highlight.js -------------------------------------------------------------------------------- /lib/vis/docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/jquery.min.js -------------------------------------------------------------------------------- /lib/vis/docs/js/jquery.url.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/jquery.url.min.js -------------------------------------------------------------------------------- /lib/vis/docs/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/main.js -------------------------------------------------------------------------------- /lib/vis/docs/js/prettify/lang-apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/prettify/lang-apollo.js -------------------------------------------------------------------------------- /lib/vis/docs/js/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/prettify/lang-css.js -------------------------------------------------------------------------------- /lib/vis/docs/js/prettify/lang-hs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/prettify/lang-hs.js -------------------------------------------------------------------------------- /lib/vis/docs/js/prettify/lang-lisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/prettify/lang-lisp.js -------------------------------------------------------------------------------- /lib/vis/docs/js/prettify/lang-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/prettify/lang-lua.js -------------------------------------------------------------------------------- /lib/vis/docs/js/prettify/lang-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/prettify/lang-ml.js -------------------------------------------------------------------------------- /lib/vis/docs/js/prettify/lang-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/prettify/lang-proto.js -------------------------------------------------------------------------------- /lib/vis/docs/js/prettify/lang-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/prettify/lang-scala.js -------------------------------------------------------------------------------- /lib/vis/docs/js/prettify/lang-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/prettify/lang-sql.js -------------------------------------------------------------------------------- /lib/vis/docs/js/prettify/lang-vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/prettify/lang-vb.js -------------------------------------------------------------------------------- /lib/vis/docs/js/prettify/lang-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/prettify/lang-vhdl.js -------------------------------------------------------------------------------- /lib/vis/docs/js/prettify/lang-wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/prettify/lang-wiki.js -------------------------------------------------------------------------------- /lib/vis/docs/js/prettify/lang-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/prettify/lang-yaml.js -------------------------------------------------------------------------------- /lib/vis/docs/js/prettify/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/prettify/prettify.css -------------------------------------------------------------------------------- /lib/vis/docs/js/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/prettify/prettify.js -------------------------------------------------------------------------------- /lib/vis/docs/js/smooth-scroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/smooth-scroll.min.js -------------------------------------------------------------------------------- /lib/vis/docs/js/tipuesearch.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/tipuesearch.config.js -------------------------------------------------------------------------------- /lib/vis/docs/js/tipuesearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/tipuesearch.js -------------------------------------------------------------------------------- /lib/vis/docs/js/tipuesearch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/tipuesearch.min.js -------------------------------------------------------------------------------- /lib/vis/docs/js/toggleTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/js/toggleTable.js -------------------------------------------------------------------------------- /lib/vis/docs/network/configure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/network/configure.html -------------------------------------------------------------------------------- /lib/vis/docs/network/edges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/network/edges.html -------------------------------------------------------------------------------- /lib/vis/docs/network/groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/network/groups.html -------------------------------------------------------------------------------- /lib/vis/docs/network/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/network/index.html -------------------------------------------------------------------------------- /lib/vis/docs/network/interaction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/network/interaction.html -------------------------------------------------------------------------------- /lib/vis/docs/network/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/network/layout.html -------------------------------------------------------------------------------- /lib/vis/docs/network/manipulation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/network/manipulation.html -------------------------------------------------------------------------------- /lib/vis/docs/network/nodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/network/nodes.html -------------------------------------------------------------------------------- /lib/vis/docs/network/physics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/network/physics.html -------------------------------------------------------------------------------- /lib/vis/docs/timeline/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/docs/timeline/index.html -------------------------------------------------------------------------------- /lib/vis/examples/googleAnalytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/googleAnalytics.js -------------------------------------------------------------------------------- /lib/vis/examples/graph2d/01_basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph2d/01_basic.html -------------------------------------------------------------------------------- /lib/vis/examples/graph2d/02_bars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph2d/02_bars.html -------------------------------------------------------------------------------- /lib/vis/examples/graph2d/03_groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph2d/03_groups.html -------------------------------------------------------------------------------- /lib/vis/examples/graph2d/04_rightAxis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph2d/04_rightAxis.html -------------------------------------------------------------------------------- /lib/vis/examples/graph2d/05_bothAxis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph2d/05_bothAxis.html -------------------------------------------------------------------------------- /lib/vis/examples/graph2d/06_interpolation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph2d/06_interpolation.html -------------------------------------------------------------------------------- /lib/vis/examples/graph2d/07_scrollingAndSorting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph2d/07_scrollingAndSorting.html -------------------------------------------------------------------------------- /lib/vis/examples/graph2d/08_performance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph2d/08_performance.html -------------------------------------------------------------------------------- /lib/vis/examples/graph2d/09_external_legend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph2d/09_external_legend.html -------------------------------------------------------------------------------- /lib/vis/examples/graph2d/10_barsSideBySide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph2d/10_barsSideBySide.html -------------------------------------------------------------------------------- /lib/vis/examples/graph2d/11_barsSideBySideGroups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph2d/11_barsSideBySideGroups.html -------------------------------------------------------------------------------- /lib/vis/examples/graph2d/12_customRange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph2d/12_customRange.html -------------------------------------------------------------------------------- /lib/vis/examples/graph2d/13_localization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph2d/13_localization.html -------------------------------------------------------------------------------- /lib/vis/examples/graph2d/14_toggleGroups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph2d/14_toggleGroups.html -------------------------------------------------------------------------------- /lib/vis/examples/graph2d/15_streaming_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph2d/15_streaming_data.html -------------------------------------------------------------------------------- /lib/vis/examples/graph2d/16_bothAxisTitles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph2d/16_bothAxisTitles.html -------------------------------------------------------------------------------- /lib/vis/examples/graph2d/17_dynamicStyling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph2d/17_dynamicStyling.html -------------------------------------------------------------------------------- /lib/vis/examples/graph2d/18_scatterplot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph2d/18_scatterplot.html -------------------------------------------------------------------------------- /lib/vis/examples/graph2d/19_labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph2d/19_labels.html -------------------------------------------------------------------------------- /lib/vis/examples/graph2d/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph2d/default.css -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/01_basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/01_basics.html -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/02_camera.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/02_camera.html -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/03_filter_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/03_filter_data.html -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/04_animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/04_animation.html -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/05_line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/05_line.html -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/06_moving_dots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/06_moving_dots.html -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/07_dot_cloud_colors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/07_dot_cloud_colors.html -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/08_dot_cloud_size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/08_dot_cloud_size.html -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/09_mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/09_mobile.html -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/10_styling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/10_styling.html -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/11_tooltips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/11_tooltips.html -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/12_custom_labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/12_custom_labels.html -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/default.css -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/playground/csv2array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/playground/csv2array.js -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/playground/csv2datatable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/playground/csv2datatable.html -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/playground/datasource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/playground/datasource.html -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/playground/datasource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/playground/datasource.php -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/playground/index.html -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/playground/playground.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/playground/playground.css -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/playground/playground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/playground/playground.js -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/playground/prettify/lang-apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/playground/prettify/lang-apollo.js -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/playground/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/playground/prettify/lang-css.js -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/playground/prettify/lang-hs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/playground/prettify/lang-hs.js -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/playground/prettify/lang-lisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/playground/prettify/lang-lisp.js -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/playground/prettify/lang-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/playground/prettify/lang-lua.js -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/playground/prettify/lang-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/playground/prettify/lang-ml.js -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/playground/prettify/lang-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/playground/prettify/lang-proto.js -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/playground/prettify/lang-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/playground/prettify/lang-scala.js -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/playground/prettify/lang-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/playground/prettify/lang-sql.js -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/playground/prettify/lang-vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/playground/prettify/lang-vb.js -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/playground/prettify/lang-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/playground/prettify/lang-vhdl.js -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/playground/prettify/lang-wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/playground/prettify/lang-wiki.js -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/playground/prettify/lang-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/playground/prettify/lang-yaml.js -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/playground/prettify/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/playground/prettify/prettify.css -------------------------------------------------------------------------------- /lib/vis/examples/graph3d/playground/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/graph3d/playground/prettify/prettify.js -------------------------------------------------------------------------------- /lib/vis/examples/network/basicUsage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/basicUsage.html -------------------------------------------------------------------------------- /lib/vis/examples/network/data/datasets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/datasets.html -------------------------------------------------------------------------------- /lib/vis/examples/network/data/dotLanguage/data/cellular_automata.gv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/dotLanguage/data/cellular_automata.gv.txt -------------------------------------------------------------------------------- /lib/vis/examples/network/data/dotLanguage/data/computer_network.gv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/dotLanguage/data/computer_network.gv.txt -------------------------------------------------------------------------------- /lib/vis/examples/network/data/dotLanguage/data/simple.gv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/dotLanguage/data/simple.gv.txt -------------------------------------------------------------------------------- /lib/vis/examples/network/data/dotLanguage/dotLanguage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/dotLanguage/dotLanguage.html -------------------------------------------------------------------------------- /lib/vis/examples/network/data/dotLanguage/dotPlayground.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/dotLanguage/dotPlayground.html -------------------------------------------------------------------------------- /lib/vis/examples/network/data/dotLanguage/graphvizGallery/fsm.gv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/dotLanguage/graphvizGallery/fsm.gv.txt -------------------------------------------------------------------------------- /lib/vis/examples/network/data/dotLanguage/graphvizGallery/hello.gv.txt: -------------------------------------------------------------------------------- 1 | digraph G {Hello->World} -------------------------------------------------------------------------------- /lib/vis/examples/network/data/dotLanguage/graphvizGallery/process.gv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/dotLanguage/graphvizGallery/process.gv.txt -------------------------------------------------------------------------------- /lib/vis/examples/network/data/dotLanguage/graphvizGallery/screenshots/fsm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/dotLanguage/graphvizGallery/screenshots/fsm.png -------------------------------------------------------------------------------- /lib/vis/examples/network/data/dotLanguage/graphvizGallery/screenshots/hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/dotLanguage/graphvizGallery/screenshots/hello.png -------------------------------------------------------------------------------- /lib/vis/examples/network/data/dotLanguage/graphvizGallery/screenshots/softmaint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/dotLanguage/graphvizGallery/screenshots/softmaint.png -------------------------------------------------------------------------------- /lib/vis/examples/network/data/dotLanguage/graphvizGallery/screenshots/traffic_lights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/dotLanguage/graphvizGallery/screenshots/traffic_lights.png -------------------------------------------------------------------------------- /lib/vis/examples/network/data/dotLanguage/graphvizGallery/siblings.gv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/dotLanguage/graphvizGallery/siblings.gv.txt -------------------------------------------------------------------------------- /lib/vis/examples/network/data/dotLanguage/graphvizGallery/softmaint.gv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/dotLanguage/graphvizGallery/softmaint.gv.txt -------------------------------------------------------------------------------- /lib/vis/examples/network/data/dotLanguage/graphvizGallery/traffic_lights.gv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/dotLanguage/graphvizGallery/traffic_lights.gv.txt -------------------------------------------------------------------------------- /lib/vis/examples/network/data/dotLanguage/graphvizGallery/transparency.gv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/dotLanguage/graphvizGallery/transparency.gv.txt -------------------------------------------------------------------------------- /lib/vis/examples/network/data/dotLanguage/graphvizGallery/twopi2.gv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/dotLanguage/graphvizGallery/twopi2.gv.txt -------------------------------------------------------------------------------- /lib/vis/examples/network/data/dotLanguage/graphvizGallery/unix.gv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/dotLanguage/graphvizGallery/unix.gv.txt -------------------------------------------------------------------------------- /lib/vis/examples/network/data/dotLanguage/graphvizGallery/world.gv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/dotLanguage/graphvizGallery/world.gv.txt -------------------------------------------------------------------------------- /lib/vis/examples/network/data/dynamicData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/dynamicData.html -------------------------------------------------------------------------------- /lib/vis/examples/network/data/importingFromGephi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/importingFromGephi.html -------------------------------------------------------------------------------- /lib/vis/examples/network/data/scalingCustom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/scalingCustom.html -------------------------------------------------------------------------------- /lib/vis/examples/network/data/scalingNodesEdges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/scalingNodesEdges.html -------------------------------------------------------------------------------- /lib/vis/examples/network/data/scalingNodesEdgesLabels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/data/scalingNodesEdgesLabels.html -------------------------------------------------------------------------------- /lib/vis/examples/network/datasources/WorldCup2014.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/datasources/WorldCup2014.js -------------------------------------------------------------------------------- /lib/vis/examples/network/datasources/WorldCup2014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/datasources/WorldCup2014.json -------------------------------------------------------------------------------- /lib/vis/examples/network/edgeStyles/arrows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/edgeStyles/arrows.html -------------------------------------------------------------------------------- /lib/vis/examples/network/edgeStyles/colors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/edgeStyles/colors.html -------------------------------------------------------------------------------- /lib/vis/examples/network/edgeStyles/dashes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/edgeStyles/dashes.html -------------------------------------------------------------------------------- /lib/vis/examples/network/edgeStyles/smooth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/edgeStyles/smooth.html -------------------------------------------------------------------------------- /lib/vis/examples/network/edgeStyles/smoothWorldCup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/edgeStyles/smoothWorldCup.html -------------------------------------------------------------------------------- /lib/vis/examples/network/events/interactionEvents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/events/interactionEvents.html -------------------------------------------------------------------------------- /lib/vis/examples/network/events/physicsEvents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/events/physicsEvents.html -------------------------------------------------------------------------------- /lib/vis/examples/network/events/renderEvents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/events/renderEvents.html -------------------------------------------------------------------------------- /lib/vis/examples/network/exampleApplications/lesMiserables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/exampleApplications/lesMiserables.html -------------------------------------------------------------------------------- /lib/vis/examples/network/exampleApplications/loadingBar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/exampleApplications/loadingBar.html -------------------------------------------------------------------------------- /lib/vis/examples/network/exampleApplications/neighbourhoodHighlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/exampleApplications/neighbourhoodHighlight.html -------------------------------------------------------------------------------- /lib/vis/examples/network/exampleApplications/nodeLegend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/exampleApplications/nodeLegend.html -------------------------------------------------------------------------------- /lib/vis/examples/network/exampleApplications/worldCupPerformance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/exampleApplications/worldCupPerformance.html -------------------------------------------------------------------------------- /lib/vis/examples/network/exampleUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/exampleUtil.js -------------------------------------------------------------------------------- /lib/vis/examples/network/img/indonesia/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/indonesia/1.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/indonesia/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/indonesia/10.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/indonesia/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/indonesia/11.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/indonesia/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/indonesia/12.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/indonesia/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/indonesia/13.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/indonesia/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/indonesia/14.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/indonesia/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/indonesia/2.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/indonesia/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/indonesia/3.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/indonesia/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/indonesia/4.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/indonesia/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/indonesia/5.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/indonesia/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/indonesia/6.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/indonesia/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/indonesia/7.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/indonesia/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/indonesia/8.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/indonesia/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/indonesia/9.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/refresh-cl/Hardware-Fax-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/refresh-cl/Hardware-Fax-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/refresh-cl/Hardware-Laptop-1-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/refresh-cl/Hardware-Laptop-1-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/refresh-cl/Hardware-Mobile-Phone-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/refresh-cl/Hardware-Mobile-Phone-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/refresh-cl/Hardware-My-Computer-3-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/refresh-cl/Hardware-My-Computer-3-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/refresh-cl/Hardware-My-PDA-02-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/refresh-cl/Hardware-My-PDA-02-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/refresh-cl/Hardware-My-PDA-04-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/refresh-cl/Hardware-My-PDA-04-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/refresh-cl/Hardware-My-PDA-05-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/refresh-cl/Hardware-My-PDA-05-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/refresh-cl/Hardware-My-Phone-Picture-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/refresh-cl/Hardware-My-Phone-Picture-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/refresh-cl/Hardware-Printer-Blue-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/refresh-cl/Hardware-Printer-Blue-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/refresh-cl/Misc-Scanner-default-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/refresh-cl/Misc-Scanner-default-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/refresh-cl/Network-Drive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/refresh-cl/Network-Drive-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/refresh-cl/Network-Internet-Connection-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/refresh-cl/Network-Internet-Connection-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/refresh-cl/Network-Pipe-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/refresh-cl/Network-Pipe-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/refresh-cl/System-Firewall-2-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/refresh-cl/System-Firewall-2-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/refresh-cl/System-Globe-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/refresh-cl/System-Globe-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/refresh-cl/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/refresh-cl/license.txt -------------------------------------------------------------------------------- /lib/vis/examples/network/img/soft-scraps-icons/Document-icon24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/soft-scraps-icons/Document-icon24.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/soft-scraps-icons/Document-icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/soft-scraps-icons/Document-icon32.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/soft-scraps-icons/Document-icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/soft-scraps-icons/Document-icon48.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/soft-scraps-icons/Email-icon24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/soft-scraps-icons/Email-icon24.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/soft-scraps-icons/Email-icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/soft-scraps-icons/Email-icon32.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/soft-scraps-icons/Email-icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/soft-scraps-icons/Email-icon48.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/soft-scraps-icons/Folder-icon24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/soft-scraps-icons/Folder-icon24.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/soft-scraps-icons/Folder-icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/soft-scraps-icons/Folder-icon32.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/soft-scraps-icons/Folder-icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/soft-scraps-icons/Folder-icon48.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/soft-scraps-icons/Folder-icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/soft-scraps-icons/Folder-icon64.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/soft-scraps-icons/Smiley-Angry-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/soft-scraps-icons/Smiley-Angry-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/soft-scraps-icons/Smiley-Grin-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/soft-scraps-icons/Smiley-Grin-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/soft-scraps-icons/User-Administrator-Blue-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/soft-scraps-icons/User-Administrator-Blue-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/soft-scraps-icons/User-Administrator-Green-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/soft-scraps-icons/User-Administrator-Green-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/soft-scraps-icons/User-Coat-Blue-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/soft-scraps-icons/User-Coat-Blue-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/soft-scraps-icons/User-Coat-Green-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/soft-scraps-icons/User-Coat-Green-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/soft-scraps-icons/User-Coat-Red-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/soft-scraps-icons/User-Coat-Red-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/soft-scraps-icons/User-Executive-Green-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/soft-scraps-icons/User-Executive-Green-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/soft-scraps-icons/User-Preppy-Blue-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/soft-scraps-icons/User-Preppy-Blue-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/soft-scraps-icons/User-Preppy-Red-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/soft-scraps-icons/User-Preppy-Red-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/network/img/soft-scraps-icons/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/img/soft-scraps-icons/license.txt -------------------------------------------------------------------------------- /lib/vis/examples/network/labels/labelAlignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/labels/labelAlignment.html -------------------------------------------------------------------------------- /lib/vis/examples/network/labels/labelBackground.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/labels/labelBackground.html -------------------------------------------------------------------------------- /lib/vis/examples/network/labels/labelColorAndSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/labels/labelColorAndSize.html -------------------------------------------------------------------------------- /lib/vis/examples/network/labels/labelStroke.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/labels/labelStroke.html -------------------------------------------------------------------------------- /lib/vis/examples/network/labels/multilineText.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/labels/multilineText.html -------------------------------------------------------------------------------- /lib/vis/examples/network/layout/hierarchicalLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/layout/hierarchicalLayout.html -------------------------------------------------------------------------------- /lib/vis/examples/network/layout/hierarchicalLayoutMethods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/layout/hierarchicalLayoutMethods.html -------------------------------------------------------------------------------- /lib/vis/examples/network/layout/hierarchicalLayoutUserdefined.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/layout/hierarchicalLayoutUserdefined.html -------------------------------------------------------------------------------- /lib/vis/examples/network/layout/randomSeed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/layout/randomSeed.html -------------------------------------------------------------------------------- /lib/vis/examples/network/nodeStyles/HTMLInNodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/nodeStyles/HTMLInNodes.html -------------------------------------------------------------------------------- /lib/vis/examples/network/nodeStyles/circularImages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/nodeStyles/circularImages.html -------------------------------------------------------------------------------- /lib/vis/examples/network/nodeStyles/colors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/nodeStyles/colors.html -------------------------------------------------------------------------------- /lib/vis/examples/network/nodeStyles/customGroups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/nodeStyles/customGroups.html -------------------------------------------------------------------------------- /lib/vis/examples/network/nodeStyles/groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/nodeStyles/groups.html -------------------------------------------------------------------------------- /lib/vis/examples/network/nodeStyles/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/nodeStyles/icons.html -------------------------------------------------------------------------------- /lib/vis/examples/network/nodeStyles/images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/nodeStyles/images.html -------------------------------------------------------------------------------- /lib/vis/examples/network/nodeStyles/shadows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/nodeStyles/shadows.html -------------------------------------------------------------------------------- /lib/vis/examples/network/nodeStyles/shapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/nodeStyles/shapes.html -------------------------------------------------------------------------------- /lib/vis/examples/network/nodeStyles/shapesWithDashedBorders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/nodeStyles/shapesWithDashedBorders.html -------------------------------------------------------------------------------- /lib/vis/examples/network/other/animationShowcase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/other/animationShowcase.html -------------------------------------------------------------------------------- /lib/vis/examples/network/other/clustering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/other/clustering.html -------------------------------------------------------------------------------- /lib/vis/examples/network/other/clusteringByZoom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/other/clusteringByZoom.html -------------------------------------------------------------------------------- /lib/vis/examples/network/other/configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/other/configuration.html -------------------------------------------------------------------------------- /lib/vis/examples/network/other/manipulation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/other/manipulation.html -------------------------------------------------------------------------------- /lib/vis/examples/network/other/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/other/navigation.html -------------------------------------------------------------------------------- /lib/vis/examples/network/other/performance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/other/performance.html -------------------------------------------------------------------------------- /lib/vis/examples/network/physics/physicsConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/network/physics/physicsConfiguration.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/basicUsage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/basicUsage.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/dataHandling/dataSerialization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/dataHandling/dataSerialization.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/dataHandling/loadExternalData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/dataHandling/loadExternalData.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/editing/customSnappingOfItems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/editing/customSnappingOfItems.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/editing/editingItems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/editing/editingItems.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/editing/editingItemsCallbacks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/editing/editingItemsCallbacks.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/editing/individualEditableItems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/editing/individualEditableItems.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/editing/updateDataOnEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/editing/updateDataOnEvent.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/groups/groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/groups/groups.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/groups/groupsEditable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/groups/groupsEditable.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/groups/groupsOrdering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/groups/groupsOrdering.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/groups/subgroups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/groups/subgroups.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/interaction/animateWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/interaction/animateWindow.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/interaction/clickToUse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/interaction/clickToUse.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/interaction/eventListeners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/interaction/eventListeners.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/interaction/limitMoveAndZoom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/interaction/limitMoveAndZoom.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/interaction/navigationMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/interaction/navigationMenu.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/interaction/setSelection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/interaction/setSelection.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/items/backgroundAreas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/items/backgroundAreas.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/items/backgroundAreasWithGroups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/items/backgroundAreasWithGroups.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/items/htmlContents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/items/htmlContents.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/items/itemOrdering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/items/itemOrdering.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/items/pointItems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/items/pointItems.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/items/rangeOverflowItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/items/rangeOverflowItem.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/other/customTimeBars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/other/customTimeBars.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/other/dataAttributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/other/dataAttributes.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/other/dataAttributesAll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/other/dataAttributesAll.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/other/groupsPerformance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/other/groupsPerformance.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/other/hidingPeriods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/other/hidingPeriods.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/other/localization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/other/localization.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/other/performance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/other/performance.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/other/requirejs/requirejs_example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/other/requirejs/requirejs_example.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/other/requirejs/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/other/requirejs/scripts/main.js -------------------------------------------------------------------------------- /lib/vis/examples/timeline/other/requirejs/scripts/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/other/requirejs/scripts/require.js -------------------------------------------------------------------------------- /lib/vis/examples/timeline/other/timezone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/other/timezone.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/resources/data/basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/resources/data/basic.json -------------------------------------------------------------------------------- /lib/vis/examples/timeline/resources/data/wk2014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/resources/data/wk2014.json -------------------------------------------------------------------------------- /lib/vis/examples/timeline/resources/img/Hardware-Mobile-Phone-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/resources/img/Hardware-Mobile-Phone-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/timeline/resources/img/attachment-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/resources/img/attachment-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/timeline/resources/img/blog-post-edit-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/resources/img/blog-post-edit-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/timeline/resources/img/comments-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/resources/img/comments-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/timeline/resources/img/community-users-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/resources/img/community-users-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/timeline/resources/img/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/resources/img/license.txt -------------------------------------------------------------------------------- /lib/vis/examples/timeline/resources/img/license_aesthetica-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/resources/img/license_aesthetica-2.txt -------------------------------------------------------------------------------- /lib/vis/examples/timeline/resources/img/license_refresh-cl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/resources/img/license_refresh-cl.txt -------------------------------------------------------------------------------- /lib/vis/examples/timeline/resources/img/mail-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/resources/img/mail-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/timeline/resources/img/notes-edit-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/resources/img/notes-edit-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/timeline/resources/img/product-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/resources/img/product-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/timeline/resources/img/truck-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/resources/img/truck-icon.png -------------------------------------------------------------------------------- /lib/vis/examples/timeline/styling/axisOrientation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/styling/axisOrientation.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/styling/customCss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/styling/customCss.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/styling/gridStyling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/styling/gridStyling.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/styling/itemClassNames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/styling/itemClassNames.html -------------------------------------------------------------------------------- /lib/vis/examples/timeline/styling/itemTemplates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/lib/vis/examples/timeline/styling/itemTemplates.html -------------------------------------------------------------------------------- /panama.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/panama.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/scripts/twitter.py -------------------------------------------------------------------------------- /scripts/vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/scripts/vis.py -------------------------------------------------------------------------------- /twitter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/twitter.ipynb -------------------------------------------------------------------------------- /workshop.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolewhite/neo4j-jupyter/HEAD/workshop.ipynb --------------------------------------------------------------------------------