├── .gitignore ├── AUTHORS.txt ├── LICENSE.txt ├── README.md ├── bgplay.js ├── connectors ├── DataEmulator.js ├── JsonWrapGeneric.js ├── JsonWrapRipestat.js ├── StreamingAdapter.js ├── caida │ └── CaidaFacade.js └── isolario │ ├── IsolarioWebSocket.js │ ├── errors.js │ ├── isolarioFacade.js │ ├── jquery-2.0.3.min.js │ └── jquery.gracefulWebSocket.js ├── docs ├── api.js ├── assets │ ├── css │ │ ├── external-small.png │ │ ├── logo.png │ │ └── main.css │ ├── favicon.png │ ├── img │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── api-filter.js │ │ ├── api-list.js │ │ ├── api-search.js │ │ ├── apidocs.js │ │ └── yui-prettify.js │ └── vendor │ │ └── prettify │ │ ├── CHANGES.html │ │ ├── COPYING │ │ ├── README.html │ │ ├── prettify-min.css │ │ └── prettify-min.js ├── classes │ ├── BgpDataChecksView.html │ ├── Bgplay.html │ ├── ControllerView.html │ ├── Event.html │ ├── FullScreenView.html │ ├── GraphView.html │ ├── InfoPanelView.html │ ├── Instant.html │ ├── JsonWrapRipestat.html │ ├── LivePermalinkView.html │ ├── MainView.html │ ├── Node.html │ ├── NodePositionView.html │ ├── NodeView.html │ ├── Path.html │ ├── PathView.html │ ├── ScreenShotView.html │ ├── Source.html │ ├── Target.html │ ├── TimelineView.html │ └── index.html ├── data.json ├── files │ ├── index.html │ ├── lib_jquery-ui-timepicker-addon.js.html │ ├── lib_mustaches.js.html │ ├── model_Bgplay.js.html │ ├── model_Event.js.html │ ├── model_Instant.js.html │ ├── model_JsonWrapRipestat.js.html │ ├── model_Node.js.html │ ├── model_Path.js.html │ ├── model_Source.js.html │ ├── model_Target.js.html │ ├── utils_graph.js.html │ ├── view_BgpDataChecksView.js.html │ ├── view_ControllerView.js.html │ ├── view_FullScreenView.js.html │ ├── view_GraphView.js.html │ ├── view_InfoPanelView.js.html │ ├── view_LivePermalinkView.js.html │ ├── view_MainView.js.html │ ├── view_NodePositionView.js.html │ ├── view_NodeView.js.html │ ├── view_PathView.js.html │ ├── view_ScreenShotView.js.html │ ├── view_TimelineView.js.html │ ├── widget_js_widget_api_class.js.html │ └── widget_widget_api_class.js.html ├── index.html └── modules │ ├── index.html │ ├── model.html │ └── modules.html ├── favicon.ico ├── lib ├── Intersection.js ├── TreeMap.js ├── backbone.js ├── dateFormat.js ├── jquery-ui-timepicker-addon.js ├── jquery-ui.min.js ├── jquery.js ├── jquery.mousewheel.min.js ├── jquery.tinyscrollbar.min.js ├── jquery.xdomainajax.js ├── mustaches.js ├── raphael-pan.js ├── raphael.js ├── require.js ├── sylvester.src.js ├── underscore.js ├── wbrGraph2.js ├── wbrGraph3.js └── wbrGraphRemote.js ├── main.js ├── model ├── Bgplay.js ├── Cluster.js ├── Event.js ├── Instant.js ├── Node.js ├── Path.js ├── Source.js └── Target.js ├── modules ├── FullScreenView.js ├── LivePermalinkView.js ├── MainView.js ├── ScreenShotView.js ├── bgplay │ ├── AboutBgplayView.js │ ├── BgpDataChecksView.js │ ├── ControllerQuerySimpleView.js │ ├── ControllerView.js │ ├── GraphView.js │ ├── InfoPanelView.js │ ├── LegendView.js │ ├── NodePositionView.js │ ├── NodeView.js │ ├── OptionAnimationSpeedView.js │ ├── OptionGraphDeep.js │ ├── OptionLinkWeight.js │ ├── OptionPeerFilter.js │ ├── OptionPopupView.js │ ├── OptionRestoreGraph.js │ ├── PathView.js │ └── TimelineView.js ├── bgplay_ripestat │ ├── ControllerQuerySimpleViewRipestat.js │ ├── ControllerViewRipestat.js │ ├── MainViewRipestat.js │ ├── NodePositionViewRipestat.js │ └── OptionPopupViewRipestat.js ├── css │ ├── bgplay-ripestat.css │ ├── bgplay.css │ ├── cssAlert.css │ ├── jquery-ui-191.css │ ├── jquery.ui.datepicker.css │ ├── style.css │ ├── style_widget.css │ ├── tplay.css │ ├── tyniscrollbar.css │ └── ui-lightness │ │ ├── images │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_228ef1_256x240.png │ │ ├── ui-icons_ef8c08_256x240.png │ │ ├── ui-icons_ffd27a_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ │ └── jquery-ui-1.8.23.custom.css └── html │ ├── aboutBgplay.html │ ├── controller.html │ ├── controllerLight.html │ ├── controllerTraceroutes.html │ ├── gdbplot.html │ ├── graph.html │ ├── img │ ├── apply.png │ ├── attentionAlert.png │ ├── bg-scrollbar-thumb-y.png │ ├── bg-scrollbar-track-y.png │ ├── bg-scrollbar-trackend-y.png │ ├── bgplay_streaming_off.png │ ├── bgplay_streaming_on.png │ ├── bgplay_watermark.png │ ├── closeSlide.png │ ├── config.png │ ├── delete.png │ ├── discard.png │ ├── drawing.png │ ├── errorAlert.png │ ├── expand.png │ ├── fixedSlider.png │ ├── formerror.png │ ├── fullscreen.png │ ├── fullscreen_hover.png │ ├── info.png │ ├── infoAlert.png │ ├── jqueryui │ │ ├── animated-overlay.gif │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_55_fcfbf3_1x400.png │ │ ├── ui-bg_glass_65_dadada_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_75_f0f0f0_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ ├── ui-bg_highlight-hard_75_ffd1b3_1x100.png │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ ├── ui-bg_inset-soft_95_fef1ec_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_228ef1_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ ├── ui-icons_cd0a0a_256x240.png │ │ ├── ui-icons_ef8c08_256x240.png │ │ ├── ui-icons_ffd27a_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ ├── leftSlider.png │ ├── loading.gif │ ├── miniarrow_left.gif │ ├── miniarrow_right.gif │ ├── more.png │ ├── next.png │ ├── openSlide.png │ ├── pause.png │ ├── pause2.png │ ├── play.png │ ├── play2.png │ ├── play_next.png │ ├── play_next2.png │ ├── play_prev.png │ ├── play_prev2.png │ ├── prev.png │ ├── repeatEvent.png │ ├── rightSlider.png │ ├── screenshot.png │ ├── screenshot_hover.png │ ├── slider.png │ ├── stop.png │ ├── stop2.png │ ├── successAlert.png │ ├── touch_icon_disabled.png │ ├── touch_icon_enabled.png │ ├── validationAlert.png │ ├── warp.gif │ ├── wizard.png │ ├── zoom_in.png │ └── zoom_out.png │ ├── infoPanel.html │ ├── infoPanelClustered.html │ ├── js_nocors │ ├── aboutBgplay.html.js │ ├── controller.html.js │ ├── controllerLight.html.js │ ├── controllerTraceroutes.html.js │ ├── gdbplot.html.js │ ├── graph.html.js │ ├── infoPanel.html.js │ ├── infoPanelClustered.html.js │ ├── legend.html.js │ ├── main.html.js │ ├── nodePosition.html.js │ ├── nodePositionFixed.html.js │ ├── optionAnimationSpeed.html.js │ ├── optionGraphDeep.html.js │ ├── optionLinkWeight.html.js │ ├── optionPeerFilter.html.js │ ├── optionRestoreGraph.html.js │ ├── options.html.js │ └── timeline.html.js │ ├── legend.html │ ├── main.html │ ├── nodePosition.html │ ├── nodePositionFixed.html │ ├── optionAnimationSpeed.html │ ├── optionGraphDeep.html │ ├── optionLinkWeight.html │ ├── optionRestoreGraph.html │ ├── options.html │ └── timeline.html ├── run_bgplay.html ├── run_bgplay_realtime.html ├── test ├── TreeMapTestCase.js └── UpdateStateTestCase.js ├── utils ├── compatibilityTricks.js ├── cssAlert.js ├── general.js ├── graph.js └── validator.js └── widget ├── bgplay-isolario ├── bgplay-config.js ├── bgplay-loader.js └── bgplay-modules.js ├── bgplay-ripestat ├── bgplay-ripestat-config.js ├── bgplay-ripestat-loader.js └── bgplay-ripestat-modules.js ├── bgplay ├── bgplay-config.js ├── bgplay-loader.js └── bgplay-modules.js ├── bgplayjs-common-model.js └── bgplayjs-main-widget.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/README.md -------------------------------------------------------------------------------- /bgplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/bgplay.js -------------------------------------------------------------------------------- /connectors/DataEmulator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/connectors/DataEmulator.js -------------------------------------------------------------------------------- /connectors/JsonWrapGeneric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/connectors/JsonWrapGeneric.js -------------------------------------------------------------------------------- /connectors/JsonWrapRipestat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/connectors/JsonWrapRipestat.js -------------------------------------------------------------------------------- /connectors/StreamingAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/connectors/StreamingAdapter.js -------------------------------------------------------------------------------- /connectors/caida/CaidaFacade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/connectors/caida/CaidaFacade.js -------------------------------------------------------------------------------- /connectors/isolario/IsolarioWebSocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/connectors/isolario/IsolarioWebSocket.js -------------------------------------------------------------------------------- /connectors/isolario/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/connectors/isolario/errors.js -------------------------------------------------------------------------------- /connectors/isolario/isolarioFacade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/connectors/isolario/isolarioFacade.js -------------------------------------------------------------------------------- /connectors/isolario/jquery-2.0.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/connectors/isolario/jquery-2.0.3.min.js -------------------------------------------------------------------------------- /connectors/isolario/jquery.gracefulWebSocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/connectors/isolario/jquery.gracefulWebSocket.js -------------------------------------------------------------------------------- /docs/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/api.js -------------------------------------------------------------------------------- /docs/assets/css/external-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/assets/css/external-small.png -------------------------------------------------------------------------------- /docs/assets/css/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/assets/css/logo.png -------------------------------------------------------------------------------- /docs/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/assets/css/main.css -------------------------------------------------------------------------------- /docs/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/assets/favicon.png -------------------------------------------------------------------------------- /docs/assets/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/assets/img/spinner.gif -------------------------------------------------------------------------------- /docs/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/assets/index.html -------------------------------------------------------------------------------- /docs/assets/js/api-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/assets/js/api-filter.js -------------------------------------------------------------------------------- /docs/assets/js/api-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/assets/js/api-list.js -------------------------------------------------------------------------------- /docs/assets/js/api-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/assets/js/api-search.js -------------------------------------------------------------------------------- /docs/assets/js/apidocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/assets/js/apidocs.js -------------------------------------------------------------------------------- /docs/assets/js/yui-prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/assets/js/yui-prettify.js -------------------------------------------------------------------------------- /docs/assets/vendor/prettify/CHANGES.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/assets/vendor/prettify/CHANGES.html -------------------------------------------------------------------------------- /docs/assets/vendor/prettify/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/assets/vendor/prettify/COPYING -------------------------------------------------------------------------------- /docs/assets/vendor/prettify/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/assets/vendor/prettify/README.html -------------------------------------------------------------------------------- /docs/assets/vendor/prettify/prettify-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/assets/vendor/prettify/prettify-min.css -------------------------------------------------------------------------------- /docs/assets/vendor/prettify/prettify-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/assets/vendor/prettify/prettify-min.js -------------------------------------------------------------------------------- /docs/classes/BgpDataChecksView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/classes/BgpDataChecksView.html -------------------------------------------------------------------------------- /docs/classes/Bgplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/classes/Bgplay.html -------------------------------------------------------------------------------- /docs/classes/ControllerView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/classes/ControllerView.html -------------------------------------------------------------------------------- /docs/classes/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/classes/Event.html -------------------------------------------------------------------------------- /docs/classes/FullScreenView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/classes/FullScreenView.html -------------------------------------------------------------------------------- /docs/classes/GraphView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/classes/GraphView.html -------------------------------------------------------------------------------- /docs/classes/InfoPanelView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/classes/InfoPanelView.html -------------------------------------------------------------------------------- /docs/classes/Instant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/classes/Instant.html -------------------------------------------------------------------------------- /docs/classes/JsonWrapRipestat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/classes/JsonWrapRipestat.html -------------------------------------------------------------------------------- /docs/classes/LivePermalinkView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/classes/LivePermalinkView.html -------------------------------------------------------------------------------- /docs/classes/MainView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/classes/MainView.html -------------------------------------------------------------------------------- /docs/classes/Node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/classes/Node.html -------------------------------------------------------------------------------- /docs/classes/NodePositionView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/classes/NodePositionView.html -------------------------------------------------------------------------------- /docs/classes/NodeView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/classes/NodeView.html -------------------------------------------------------------------------------- /docs/classes/Path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/classes/Path.html -------------------------------------------------------------------------------- /docs/classes/PathView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/classes/PathView.html -------------------------------------------------------------------------------- /docs/classes/ScreenShotView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/classes/ScreenShotView.html -------------------------------------------------------------------------------- /docs/classes/Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/classes/Source.html -------------------------------------------------------------------------------- /docs/classes/Target.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/classes/Target.html -------------------------------------------------------------------------------- /docs/classes/TimelineView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/classes/TimelineView.html -------------------------------------------------------------------------------- /docs/classes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/classes/index.html -------------------------------------------------------------------------------- /docs/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/data.json -------------------------------------------------------------------------------- /docs/files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/index.html -------------------------------------------------------------------------------- /docs/files/lib_jquery-ui-timepicker-addon.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/lib_jquery-ui-timepicker-addon.js.html -------------------------------------------------------------------------------- /docs/files/lib_mustaches.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/lib_mustaches.js.html -------------------------------------------------------------------------------- /docs/files/model_Bgplay.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/model_Bgplay.js.html -------------------------------------------------------------------------------- /docs/files/model_Event.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/model_Event.js.html -------------------------------------------------------------------------------- /docs/files/model_Instant.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/model_Instant.js.html -------------------------------------------------------------------------------- /docs/files/model_JsonWrapRipestat.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/model_JsonWrapRipestat.js.html -------------------------------------------------------------------------------- /docs/files/model_Node.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/model_Node.js.html -------------------------------------------------------------------------------- /docs/files/model_Path.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/model_Path.js.html -------------------------------------------------------------------------------- /docs/files/model_Source.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/model_Source.js.html -------------------------------------------------------------------------------- /docs/files/model_Target.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/model_Target.js.html -------------------------------------------------------------------------------- /docs/files/utils_graph.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/utils_graph.js.html -------------------------------------------------------------------------------- /docs/files/view_BgpDataChecksView.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/view_BgpDataChecksView.js.html -------------------------------------------------------------------------------- /docs/files/view_ControllerView.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/view_ControllerView.js.html -------------------------------------------------------------------------------- /docs/files/view_FullScreenView.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/view_FullScreenView.js.html -------------------------------------------------------------------------------- /docs/files/view_GraphView.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/view_GraphView.js.html -------------------------------------------------------------------------------- /docs/files/view_InfoPanelView.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/view_InfoPanelView.js.html -------------------------------------------------------------------------------- /docs/files/view_LivePermalinkView.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/view_LivePermalinkView.js.html -------------------------------------------------------------------------------- /docs/files/view_MainView.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/view_MainView.js.html -------------------------------------------------------------------------------- /docs/files/view_NodePositionView.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/view_NodePositionView.js.html -------------------------------------------------------------------------------- /docs/files/view_NodeView.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/view_NodeView.js.html -------------------------------------------------------------------------------- /docs/files/view_PathView.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/view_PathView.js.html -------------------------------------------------------------------------------- /docs/files/view_ScreenShotView.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/view_ScreenShotView.js.html -------------------------------------------------------------------------------- /docs/files/view_TimelineView.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/view_TimelineView.js.html -------------------------------------------------------------------------------- /docs/files/widget_js_widget_api_class.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/widget_js_widget_api_class.js.html -------------------------------------------------------------------------------- /docs/files/widget_widget_api_class.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/files/widget_widget_api_class.js.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/modules/index.html -------------------------------------------------------------------------------- /docs/modules/model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/modules/model.html -------------------------------------------------------------------------------- /docs/modules/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/docs/modules/modules.html -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/favicon.ico -------------------------------------------------------------------------------- /lib/Intersection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/lib/Intersection.js -------------------------------------------------------------------------------- /lib/TreeMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/lib/TreeMap.js -------------------------------------------------------------------------------- /lib/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/lib/backbone.js -------------------------------------------------------------------------------- /lib/dateFormat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/lib/dateFormat.js -------------------------------------------------------------------------------- /lib/jquery-ui-timepicker-addon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/lib/jquery-ui-timepicker-addon.js -------------------------------------------------------------------------------- /lib/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/lib/jquery-ui.min.js -------------------------------------------------------------------------------- /lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/lib/jquery.js -------------------------------------------------------------------------------- /lib/jquery.mousewheel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/lib/jquery.mousewheel.min.js -------------------------------------------------------------------------------- /lib/jquery.tinyscrollbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/lib/jquery.tinyscrollbar.min.js -------------------------------------------------------------------------------- /lib/jquery.xdomainajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/lib/jquery.xdomainajax.js -------------------------------------------------------------------------------- /lib/mustaches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/lib/mustaches.js -------------------------------------------------------------------------------- /lib/raphael-pan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/lib/raphael-pan.js -------------------------------------------------------------------------------- /lib/raphael.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/lib/raphael.js -------------------------------------------------------------------------------- /lib/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/lib/require.js -------------------------------------------------------------------------------- /lib/sylvester.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/lib/sylvester.src.js -------------------------------------------------------------------------------- /lib/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/lib/underscore.js -------------------------------------------------------------------------------- /lib/wbrGraph2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/lib/wbrGraph2.js -------------------------------------------------------------------------------- /lib/wbrGraph3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/lib/wbrGraph3.js -------------------------------------------------------------------------------- /lib/wbrGraphRemote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/lib/wbrGraphRemote.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/main.js -------------------------------------------------------------------------------- /model/Bgplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/model/Bgplay.js -------------------------------------------------------------------------------- /model/Cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/model/Cluster.js -------------------------------------------------------------------------------- /model/Event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/model/Event.js -------------------------------------------------------------------------------- /model/Instant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/model/Instant.js -------------------------------------------------------------------------------- /model/Node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/model/Node.js -------------------------------------------------------------------------------- /model/Path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/model/Path.js -------------------------------------------------------------------------------- /model/Source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/model/Source.js -------------------------------------------------------------------------------- /model/Target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/model/Target.js -------------------------------------------------------------------------------- /modules/FullScreenView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/FullScreenView.js -------------------------------------------------------------------------------- /modules/LivePermalinkView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/LivePermalinkView.js -------------------------------------------------------------------------------- /modules/MainView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/MainView.js -------------------------------------------------------------------------------- /modules/ScreenShotView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/ScreenShotView.js -------------------------------------------------------------------------------- /modules/bgplay/AboutBgplayView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/bgplay/AboutBgplayView.js -------------------------------------------------------------------------------- /modules/bgplay/BgpDataChecksView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/bgplay/BgpDataChecksView.js -------------------------------------------------------------------------------- /modules/bgplay/ControllerQuerySimpleView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/bgplay/ControllerQuerySimpleView.js -------------------------------------------------------------------------------- /modules/bgplay/ControllerView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/bgplay/ControllerView.js -------------------------------------------------------------------------------- /modules/bgplay/GraphView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/bgplay/GraphView.js -------------------------------------------------------------------------------- /modules/bgplay/InfoPanelView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/bgplay/InfoPanelView.js -------------------------------------------------------------------------------- /modules/bgplay/LegendView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/bgplay/LegendView.js -------------------------------------------------------------------------------- /modules/bgplay/NodePositionView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/bgplay/NodePositionView.js -------------------------------------------------------------------------------- /modules/bgplay/NodeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/bgplay/NodeView.js -------------------------------------------------------------------------------- /modules/bgplay/OptionAnimationSpeedView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/bgplay/OptionAnimationSpeedView.js -------------------------------------------------------------------------------- /modules/bgplay/OptionGraphDeep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/bgplay/OptionGraphDeep.js -------------------------------------------------------------------------------- /modules/bgplay/OptionLinkWeight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/bgplay/OptionLinkWeight.js -------------------------------------------------------------------------------- /modules/bgplay/OptionPeerFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/bgplay/OptionPeerFilter.js -------------------------------------------------------------------------------- /modules/bgplay/OptionPopupView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/bgplay/OptionPopupView.js -------------------------------------------------------------------------------- /modules/bgplay/OptionRestoreGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/bgplay/OptionRestoreGraph.js -------------------------------------------------------------------------------- /modules/bgplay/PathView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/bgplay/PathView.js -------------------------------------------------------------------------------- /modules/bgplay/TimelineView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/bgplay/TimelineView.js -------------------------------------------------------------------------------- /modules/bgplay_ripestat/ControllerQuerySimpleViewRipestat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/bgplay_ripestat/ControllerQuerySimpleViewRipestat.js -------------------------------------------------------------------------------- /modules/bgplay_ripestat/ControllerViewRipestat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/bgplay_ripestat/ControllerViewRipestat.js -------------------------------------------------------------------------------- /modules/bgplay_ripestat/MainViewRipestat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/bgplay_ripestat/MainViewRipestat.js -------------------------------------------------------------------------------- /modules/bgplay_ripestat/NodePositionViewRipestat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/bgplay_ripestat/NodePositionViewRipestat.js -------------------------------------------------------------------------------- /modules/bgplay_ripestat/OptionPopupViewRipestat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/bgplay_ripestat/OptionPopupViewRipestat.js -------------------------------------------------------------------------------- /modules/css/bgplay-ripestat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/bgplay-ripestat.css -------------------------------------------------------------------------------- /modules/css/bgplay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/bgplay.css -------------------------------------------------------------------------------- /modules/css/cssAlert.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/css/jquery-ui-191.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/jquery-ui-191.css -------------------------------------------------------------------------------- /modules/css/jquery.ui.datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/jquery.ui.datepicker.css -------------------------------------------------------------------------------- /modules/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/style.css -------------------------------------------------------------------------------- /modules/css/style_widget.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/style_widget.css -------------------------------------------------------------------------------- /modules/css/tplay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/tplay.css -------------------------------------------------------------------------------- /modules/css/tyniscrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/tyniscrollbar.css -------------------------------------------------------------------------------- /modules/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /modules/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /modules/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /modules/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /modules/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /modules/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /modules/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /modules/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /modules/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /modules/css/ui-lightness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/ui-lightness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /modules/css/ui-lightness/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/ui-lightness/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /modules/css/ui-lightness/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/ui-lightness/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /modules/css/ui-lightness/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/ui-lightness/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /modules/css/ui-lightness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/ui-lightness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /modules/css/ui-lightness/jquery-ui-1.8.23.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/css/ui-lightness/jquery-ui-1.8.23.custom.css -------------------------------------------------------------------------------- /modules/html/aboutBgplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/aboutBgplay.html -------------------------------------------------------------------------------- /modules/html/controller.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/controller.html -------------------------------------------------------------------------------- /modules/html/controllerLight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/controllerLight.html -------------------------------------------------------------------------------- /modules/html/controllerTraceroutes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/controllerTraceroutes.html -------------------------------------------------------------------------------- /modules/html/gdbplot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/gdbplot.html -------------------------------------------------------------------------------- /modules/html/graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/graph.html -------------------------------------------------------------------------------- /modules/html/img/apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/apply.png -------------------------------------------------------------------------------- /modules/html/img/attentionAlert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/attentionAlert.png -------------------------------------------------------------------------------- /modules/html/img/bg-scrollbar-thumb-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/bg-scrollbar-thumb-y.png -------------------------------------------------------------------------------- /modules/html/img/bg-scrollbar-track-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/bg-scrollbar-track-y.png -------------------------------------------------------------------------------- /modules/html/img/bg-scrollbar-trackend-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/bg-scrollbar-trackend-y.png -------------------------------------------------------------------------------- /modules/html/img/bgplay_streaming_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/bgplay_streaming_off.png -------------------------------------------------------------------------------- /modules/html/img/bgplay_streaming_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/bgplay_streaming_on.png -------------------------------------------------------------------------------- /modules/html/img/bgplay_watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/bgplay_watermark.png -------------------------------------------------------------------------------- /modules/html/img/closeSlide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/closeSlide.png -------------------------------------------------------------------------------- /modules/html/img/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/config.png -------------------------------------------------------------------------------- /modules/html/img/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/delete.png -------------------------------------------------------------------------------- /modules/html/img/discard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/discard.png -------------------------------------------------------------------------------- /modules/html/img/drawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/drawing.png -------------------------------------------------------------------------------- /modules/html/img/errorAlert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/errorAlert.png -------------------------------------------------------------------------------- /modules/html/img/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/expand.png -------------------------------------------------------------------------------- /modules/html/img/fixedSlider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/fixedSlider.png -------------------------------------------------------------------------------- /modules/html/img/formerror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/formerror.png -------------------------------------------------------------------------------- /modules/html/img/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/fullscreen.png -------------------------------------------------------------------------------- /modules/html/img/fullscreen_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/fullscreen_hover.png -------------------------------------------------------------------------------- /modules/html/img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/info.png -------------------------------------------------------------------------------- /modules/html/img/infoAlert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/infoAlert.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/animated-overlay.gif -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-bg_glass_55_fcfbf3_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-bg_glass_55_fcfbf3_1x400.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-bg_glass_65_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-bg_glass_65_dadada_1x400.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-bg_glass_75_f0f0f0_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-bg_glass_75_f0f0f0_1x400.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-bg_highlight-hard_75_ffd1b3_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-bg_highlight-hard_75_ffd1b3_1x100.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-bg_inset-soft_95_fef1ec_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-bg_inset-soft_95_fef1ec_1x100.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /modules/html/img/jqueryui/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/jqueryui/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /modules/html/img/leftSlider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/leftSlider.png -------------------------------------------------------------------------------- /modules/html/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/loading.gif -------------------------------------------------------------------------------- /modules/html/img/miniarrow_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/miniarrow_left.gif -------------------------------------------------------------------------------- /modules/html/img/miniarrow_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/miniarrow_right.gif -------------------------------------------------------------------------------- /modules/html/img/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/more.png -------------------------------------------------------------------------------- /modules/html/img/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/next.png -------------------------------------------------------------------------------- /modules/html/img/openSlide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/openSlide.png -------------------------------------------------------------------------------- /modules/html/img/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/pause.png -------------------------------------------------------------------------------- /modules/html/img/pause2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/pause2.png -------------------------------------------------------------------------------- /modules/html/img/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/play.png -------------------------------------------------------------------------------- /modules/html/img/play2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/play2.png -------------------------------------------------------------------------------- /modules/html/img/play_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/play_next.png -------------------------------------------------------------------------------- /modules/html/img/play_next2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/play_next2.png -------------------------------------------------------------------------------- /modules/html/img/play_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/play_prev.png -------------------------------------------------------------------------------- /modules/html/img/play_prev2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/play_prev2.png -------------------------------------------------------------------------------- /modules/html/img/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/prev.png -------------------------------------------------------------------------------- /modules/html/img/repeatEvent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/repeatEvent.png -------------------------------------------------------------------------------- /modules/html/img/rightSlider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/rightSlider.png -------------------------------------------------------------------------------- /modules/html/img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/screenshot.png -------------------------------------------------------------------------------- /modules/html/img/screenshot_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/screenshot_hover.png -------------------------------------------------------------------------------- /modules/html/img/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/slider.png -------------------------------------------------------------------------------- /modules/html/img/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/stop.png -------------------------------------------------------------------------------- /modules/html/img/stop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/stop2.png -------------------------------------------------------------------------------- /modules/html/img/successAlert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/successAlert.png -------------------------------------------------------------------------------- /modules/html/img/touch_icon_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/touch_icon_disabled.png -------------------------------------------------------------------------------- /modules/html/img/touch_icon_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/touch_icon_enabled.png -------------------------------------------------------------------------------- /modules/html/img/validationAlert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/validationAlert.png -------------------------------------------------------------------------------- /modules/html/img/warp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/warp.gif -------------------------------------------------------------------------------- /modules/html/img/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/wizard.png -------------------------------------------------------------------------------- /modules/html/img/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/zoom_in.png -------------------------------------------------------------------------------- /modules/html/img/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/img/zoom_out.png -------------------------------------------------------------------------------- /modules/html/infoPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/infoPanel.html -------------------------------------------------------------------------------- /modules/html/infoPanelClustered.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/infoPanelClustered.html -------------------------------------------------------------------------------- /modules/html/js_nocors/aboutBgplay.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/js_nocors/aboutBgplay.html.js -------------------------------------------------------------------------------- /modules/html/js_nocors/controller.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/js_nocors/controller.html.js -------------------------------------------------------------------------------- /modules/html/js_nocors/controllerLight.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/js_nocors/controllerLight.html.js -------------------------------------------------------------------------------- /modules/html/js_nocors/controllerTraceroutes.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/js_nocors/controllerTraceroutes.html.js -------------------------------------------------------------------------------- /modules/html/js_nocors/gdbplot.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/js_nocors/gdbplot.html.js -------------------------------------------------------------------------------- /modules/html/js_nocors/graph.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/js_nocors/graph.html.js -------------------------------------------------------------------------------- /modules/html/js_nocors/infoPanel.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/js_nocors/infoPanel.html.js -------------------------------------------------------------------------------- /modules/html/js_nocors/infoPanelClustered.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/js_nocors/infoPanelClustered.html.js -------------------------------------------------------------------------------- /modules/html/js_nocors/legend.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/js_nocors/legend.html.js -------------------------------------------------------------------------------- /modules/html/js_nocors/main.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/js_nocors/main.html.js -------------------------------------------------------------------------------- /modules/html/js_nocors/nodePosition.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/js_nocors/nodePosition.html.js -------------------------------------------------------------------------------- /modules/html/js_nocors/nodePositionFixed.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/js_nocors/nodePositionFixed.html.js -------------------------------------------------------------------------------- /modules/html/js_nocors/optionAnimationSpeed.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/js_nocors/optionAnimationSpeed.html.js -------------------------------------------------------------------------------- /modules/html/js_nocors/optionGraphDeep.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/js_nocors/optionGraphDeep.html.js -------------------------------------------------------------------------------- /modules/html/js_nocors/optionLinkWeight.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/js_nocors/optionLinkWeight.html.js -------------------------------------------------------------------------------- /modules/html/js_nocors/optionPeerFilter.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/js_nocors/optionPeerFilter.html.js -------------------------------------------------------------------------------- /modules/html/js_nocors/optionRestoreGraph.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/js_nocors/optionRestoreGraph.html.js -------------------------------------------------------------------------------- /modules/html/js_nocors/options.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/js_nocors/options.html.js -------------------------------------------------------------------------------- /modules/html/js_nocors/timeline.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/js_nocors/timeline.html.js -------------------------------------------------------------------------------- /modules/html/legend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/legend.html -------------------------------------------------------------------------------- /modules/html/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/main.html -------------------------------------------------------------------------------- /modules/html/nodePosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/nodePosition.html -------------------------------------------------------------------------------- /modules/html/nodePositionFixed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/nodePositionFixed.html -------------------------------------------------------------------------------- /modules/html/optionAnimationSpeed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/optionAnimationSpeed.html -------------------------------------------------------------------------------- /modules/html/optionGraphDeep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/optionGraphDeep.html -------------------------------------------------------------------------------- /modules/html/optionLinkWeight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/optionLinkWeight.html -------------------------------------------------------------------------------- /modules/html/optionRestoreGraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/optionRestoreGraph.html -------------------------------------------------------------------------------- /modules/html/options.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /modules/html/timeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/modules/html/timeline.html -------------------------------------------------------------------------------- /run_bgplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/run_bgplay.html -------------------------------------------------------------------------------- /run_bgplay_realtime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/run_bgplay_realtime.html -------------------------------------------------------------------------------- /test/TreeMapTestCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/test/TreeMapTestCase.js -------------------------------------------------------------------------------- /test/UpdateStateTestCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/test/UpdateStateTestCase.js -------------------------------------------------------------------------------- /utils/compatibilityTricks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/utils/compatibilityTricks.js -------------------------------------------------------------------------------- /utils/cssAlert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/utils/cssAlert.js -------------------------------------------------------------------------------- /utils/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/utils/general.js -------------------------------------------------------------------------------- /utils/graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/utils/graph.js -------------------------------------------------------------------------------- /utils/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/utils/validator.js -------------------------------------------------------------------------------- /widget/bgplay-isolario/bgplay-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/widget/bgplay-isolario/bgplay-config.js -------------------------------------------------------------------------------- /widget/bgplay-isolario/bgplay-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/widget/bgplay-isolario/bgplay-loader.js -------------------------------------------------------------------------------- /widget/bgplay-isolario/bgplay-modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/widget/bgplay-isolario/bgplay-modules.js -------------------------------------------------------------------------------- /widget/bgplay-ripestat/bgplay-ripestat-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/widget/bgplay-ripestat/bgplay-ripestat-config.js -------------------------------------------------------------------------------- /widget/bgplay-ripestat/bgplay-ripestat-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/widget/bgplay-ripestat/bgplay-ripestat-loader.js -------------------------------------------------------------------------------- /widget/bgplay-ripestat/bgplay-ripestat-modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/widget/bgplay-ripestat/bgplay-ripestat-modules.js -------------------------------------------------------------------------------- /widget/bgplay/bgplay-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/widget/bgplay/bgplay-config.js -------------------------------------------------------------------------------- /widget/bgplay/bgplay-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/widget/bgplay/bgplay-loader.js -------------------------------------------------------------------------------- /widget/bgplay/bgplay-modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/widget/bgplay/bgplay-modules.js -------------------------------------------------------------------------------- /widget/bgplayjs-common-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/widget/bgplayjs-common-model.js -------------------------------------------------------------------------------- /widget/bgplayjs-main-widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimocandela/BGPlay/HEAD/widget/bgplayjs-main-widget.js --------------------------------------------------------------------------------