├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── README.md ├── TODO.txt ├── _config.yml ├── client ├── .gitignore ├── README.md ├── babel.config.js ├── custom_modules │ └── v-runtime-template │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ ├── v-runtime-template.cjs.js │ │ ├── v-runtime-template.es.js │ │ ├── v-runtime-template.js │ │ └── v-runtime-template.min.js │ │ ├── index.js │ │ └── package.json ├── img │ ├── error.png │ ├── hourglass.png │ ├── info.png │ ├── logo.svg │ ├── success.png │ └── warning.png ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── grid.gif │ ├── index.html │ ├── mxGraph │ │ ├── css │ │ │ ├── common.css │ │ │ └── explorer.css │ │ ├── images │ │ │ ├── button.gif │ │ │ ├── close.gif │ │ │ ├── collapsed.gif │ │ │ ├── error.gif │ │ │ ├── expanded.gif │ │ │ ├── maximize.gif │ │ │ ├── minimize.gif │ │ │ ├── normalize.gif │ │ │ ├── point.gif │ │ │ ├── resize.gif │ │ │ ├── separator.gif │ │ │ ├── submenu.gif │ │ │ ├── transparent.gif │ │ │ ├── warning.gif │ │ │ ├── warning.png │ │ │ ├── window-title.gif │ │ │ └── window.gif │ │ ├── js │ │ │ ├── editor │ │ │ │ ├── mxDefaultKeyHandler.js │ │ │ │ ├── mxDefaultPopupMenu.js │ │ │ │ ├── mxDefaultToolbar.js │ │ │ │ └── mxEditor.js │ │ │ ├── handler │ │ │ │ ├── mxCellHighlight.js │ │ │ │ ├── mxCellMarker.js │ │ │ │ ├── mxCellTracker.js │ │ │ │ ├── mxConnectionHandler.js │ │ │ │ ├── mxConstraintHandler.js │ │ │ │ ├── mxEdgeHandler.js │ │ │ │ ├── mxEdgeSegmentHandler.js │ │ │ │ ├── mxElbowEdgeHandler.js │ │ │ │ ├── mxGraphHandler.js │ │ │ │ ├── mxHandle.js │ │ │ │ ├── mxKeyHandler.js │ │ │ │ ├── mxPanningHandler.js │ │ │ │ ├── mxPopupMenuHandler.js │ │ │ │ ├── mxRubberband.js │ │ │ │ ├── mxSelectionCellsHandler.js │ │ │ │ ├── mxTooltipHandler.js │ │ │ │ └── mxVertexHandler.js │ │ │ ├── io │ │ │ │ ├── mxCellCodec.js │ │ │ │ ├── mxChildChangeCodec.js │ │ │ │ ├── mxCodec.js │ │ │ │ ├── mxCodecRegistry.js │ │ │ │ ├── mxDefaultKeyHandlerCodec.js │ │ │ │ ├── mxDefaultPopupMenuCodec.js │ │ │ │ ├── mxDefaultToolbarCodec.js │ │ │ │ ├── mxEditorCodec.js │ │ │ │ ├── mxGenericChangeCodec.js │ │ │ │ ├── mxGraphCodec.js │ │ │ │ ├── mxGraphViewCodec.js │ │ │ │ ├── mxModelCodec.js │ │ │ │ ├── mxObjectCodec.js │ │ │ │ ├── mxRootChangeCodec.js │ │ │ │ ├── mxStylesheetCodec.js │ │ │ │ └── mxTerminalChangeCodec.js │ │ │ ├── layout │ │ │ │ ├── hierarchical │ │ │ │ │ ├── model │ │ │ │ │ │ ├── mxGraphAbstractHierarchyCell.js │ │ │ │ │ │ ├── mxGraphHierarchyEdge.js │ │ │ │ │ │ ├── mxGraphHierarchyModel.js │ │ │ │ │ │ ├── mxGraphHierarchyNode.js │ │ │ │ │ │ └── mxSwimlaneModel.js │ │ │ │ │ ├── mxHierarchicalLayout.js │ │ │ │ │ ├── mxSwimlaneLayout.js │ │ │ │ │ └── stage │ │ │ │ │ │ ├── mxCoordinateAssignment.js │ │ │ │ │ │ ├── mxHierarchicalLayoutStage.js │ │ │ │ │ │ ├── mxMedianHybridCrossingReduction.js │ │ │ │ │ │ ├── mxMinimumCycleRemover.js │ │ │ │ │ │ └── mxSwimlaneOrdering.js │ │ │ │ ├── mxCircleLayout.js │ │ │ │ ├── mxCompactTreeLayout.js │ │ │ │ ├── mxCompositeLayout.js │ │ │ │ ├── mxEdgeLabelLayout.js │ │ │ │ ├── mxFastOrganicLayout.js │ │ │ │ ├── mxGraphLayout.js │ │ │ │ ├── mxParallelEdgeLayout.js │ │ │ │ ├── mxPartitionLayout.js │ │ │ │ ├── mxRadialTreeLayout.js │ │ │ │ └── mxStackLayout.js │ │ │ ├── model │ │ │ │ ├── mxCell.js │ │ │ │ ├── mxCellPath.js │ │ │ │ ├── mxGeometry.js │ │ │ │ └── mxGraphModel.js │ │ │ ├── mxClient.js │ │ │ ├── shape │ │ │ │ ├── mxActor.js │ │ │ │ ├── mxArrow.js │ │ │ │ ├── mxArrowConnector.js │ │ │ │ ├── mxCloud.js │ │ │ │ ├── mxConnector.js │ │ │ │ ├── mxCylinder.js │ │ │ │ ├── mxDoubleEllipse.js │ │ │ │ ├── mxEllipse.js │ │ │ │ ├── mxHexagon.js │ │ │ │ ├── mxImageShape.js │ │ │ │ ├── mxLabel.js │ │ │ │ ├── mxLine.js │ │ │ │ ├── mxMarker.js │ │ │ │ ├── mxPolyline.js │ │ │ │ ├── mxRectangleShape.js │ │ │ │ ├── mxRhombus.js │ │ │ │ ├── mxShape.js │ │ │ │ ├── mxStencil.js │ │ │ │ ├── mxStencilRegistry.js │ │ │ │ ├── mxSwimlane.js │ │ │ │ ├── mxText.js │ │ │ │ └── mxTriangle.js │ │ │ ├── util │ │ │ │ ├── mxAbstractCanvas2D.js │ │ │ │ ├── mxAnimation.js │ │ │ │ ├── mxAutoSaveManager.js │ │ │ │ ├── mxClipboard.js │ │ │ │ ├── mxConstants.js │ │ │ │ ├── mxDictionary.js │ │ │ │ ├── mxDivResizer.js │ │ │ │ ├── mxDragSource.js │ │ │ │ ├── mxEffects.js │ │ │ │ ├── mxEvent.js │ │ │ │ ├── mxEventObject.js │ │ │ │ ├── mxEventSource.js │ │ │ │ ├── mxForm.js │ │ │ │ ├── mxGuide.js │ │ │ │ ├── mxImage.js │ │ │ │ ├── mxImageBundle.js │ │ │ │ ├── mxImageExport.js │ │ │ │ ├── mxLog.js │ │ │ │ ├── mxMorphing.js │ │ │ │ ├── mxMouseEvent.js │ │ │ │ ├── mxObjectIdentity.js │ │ │ │ ├── mxPanningManager.js │ │ │ │ ├── mxPoint.js │ │ │ │ ├── mxPopupMenu.js │ │ │ │ ├── mxRectangle.js │ │ │ │ ├── mxResources.js │ │ │ │ ├── mxSvgCanvas2D.js │ │ │ │ ├── mxToolbar.js │ │ │ │ ├── mxUndoManager.js │ │ │ │ ├── mxUndoableEdit.js │ │ │ │ ├── mxUrlConverter.js │ │ │ │ ├── mxUtils.js │ │ │ │ ├── mxVmlCanvas2D.js │ │ │ │ ├── mxWindow.js │ │ │ │ ├── mxXmlCanvas2D.js │ │ │ │ └── mxXmlRequest.js │ │ │ └── view │ │ │ │ ├── mxCellEditor.js │ │ │ │ ├── mxCellOverlay.js │ │ │ │ ├── mxCellRenderer.js │ │ │ │ ├── mxCellState.js │ │ │ │ ├── mxCellStatePreview.js │ │ │ │ ├── mxConnectionConstraint.js │ │ │ │ ├── mxEdgeStyle.js │ │ │ │ ├── mxGraph.js │ │ │ │ ├── mxGraphSelectionModel.js │ │ │ │ ├── mxGraphView.js │ │ │ │ ├── mxLayoutManager.js │ │ │ │ ├── mxMultiplicity.js │ │ │ │ ├── mxOutline.js │ │ │ │ ├── mxPerimeter.js │ │ │ │ ├── mxPrintPreview.js │ │ │ │ ├── mxStyleRegistry.js │ │ │ │ ├── mxStylesheet.js │ │ │ │ ├── mxSwimlaneManager.js │ │ │ │ └── mxTemporaryCellStates.js │ │ └── resources │ │ │ ├── editor.txt │ │ │ ├── editor_de.txt │ │ │ ├── editor_zh.txt │ │ │ ├── graph.txt │ │ │ ├── graph_de.txt │ │ │ └── graph_zh.txt │ └── node_viewer.html ├── src │ ├── App.vue │ ├── Constants.js │ ├── EventBus.js │ ├── NodeEditor │ │ ├── Canvas.js │ │ └── CodeNode.js │ ├── NodeViewer │ │ ├── NodeViewer.vue │ │ └── NodeViewer_main.js │ ├── assets │ │ ├── logo.png │ │ └── logo.svg │ ├── components │ │ ├── BigDisplay.vue │ │ ├── CodeEditor.vue │ │ ├── ConnectionOrderControl.vue │ │ ├── Console.vue │ │ ├── ExplorerMenu.vue │ │ ├── Grid.vue │ │ ├── Grid │ │ │ ├── Cell.vue │ │ │ └── Grid.vue │ │ ├── LibrarySaveDialog.vue │ │ ├── NodeDisplay.vue │ │ ├── OptionsDialog.vue │ │ ├── Plot.vue │ │ ├── RefactorFunctionalize.vue │ │ ├── SideBar.vue │ │ ├── SmallDisplay.vue │ │ └── grid_component.zip │ ├── directives │ │ └── InitDirective.js │ ├── main.js │ ├── plugins │ │ └── vuetify.js │ ├── socket.js │ └── store.js ├── vue.config.js └── webpack.config.js ├── deploy.txt ├── docs └── index.md ├── pkg ├── LICENSE ├── MANIFEST.in ├── PyWeaver │ ├── Graph.py │ ├── LibraryManager.py │ ├── NodeTemplate.py │ ├── Nodes.py │ ├── __init__.py │ ├── client_pref.json │ ├── code_parsing.py │ ├── lib │ │ ├── core │ │ │ ├── Functions │ │ │ │ ├── Piecewise Function │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ │ └── Sigmoid │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ ├── Input │ │ │ │ ├── Linear Space │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ │ └── Vector │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ ├── New Node │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ │ ├── Plot │ │ │ │ ├── Generic │ │ │ │ │ ├── Chart │ │ │ │ │ │ ├── code.py │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── ui.html │ │ │ │ │ │ └── ui_script.js │ │ │ │ │ └── Trace │ │ │ │ │ │ ├── code.py │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── ui.html │ │ │ │ │ │ └── ui_script.js │ │ │ │ ├── Pyplot │ │ │ │ │ └── Pyplot demo │ │ │ │ │ │ ├── code.py │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── ui.html │ │ │ │ │ │ └── ui_script.js │ │ │ │ ├── Scatter │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── reedme.txt │ │ │ │ │ ├── script.js │ │ │ │ │ ├── simple_plot_logic.py │ │ │ │ │ └── ui.html │ │ │ │ └── Statistics │ │ │ │ │ ├── Histogram │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ │ │ └── Pair Plot │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ ├── Signal Analysis │ │ │ │ ├── Change Detection │ │ │ │ │ └── Mean Change Point Detection │ │ │ │ │ │ ├── code.py │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── ui.html │ │ │ │ │ │ └── ui_script.js │ │ │ │ ├── Convolution │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ │ ├── Filter │ │ │ │ │ ├── Exponential smoothing │ │ │ │ │ │ ├── code.py │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── ui.html │ │ │ │ │ │ └── ui_script.js │ │ │ │ │ ├── Gaussian Filter │ │ │ │ │ │ ├── code.py │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── ui.html │ │ │ │ │ │ └── ui_script.js │ │ │ │ │ ├── Hample Filter │ │ │ │ │ │ ├── code.py │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── ui.html │ │ │ │ │ │ └── ui_script.js │ │ │ │ │ ├── Savitzky-Golay Filter │ │ │ │ │ │ ├── code.py │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── ui.html │ │ │ │ │ │ └── ui_script.js │ │ │ │ │ ├── Wiener Filter │ │ │ │ │ │ ├── code.py │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── ui.html │ │ │ │ │ │ └── ui_script.js │ │ │ │ │ └── Window functions │ │ │ │ │ │ ├── code.py │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── ui.html │ │ │ │ │ │ └── ui_script.js │ │ │ │ ├── Noise │ │ │ │ │ └── White Noise │ │ │ │ │ │ ├── code.py │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── ui.html │ │ │ │ │ │ └── ui_script.js │ │ │ │ ├── Pad │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ │ ├── Regression │ │ │ │ │ ├── Piecewise Linearization │ │ │ │ │ │ ├── code.py │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── ui.html │ │ │ │ │ │ └── ui_script.js │ │ │ │ │ ├── Polynomial fit │ │ │ │ │ │ ├── code.py │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── ui.html │ │ │ │ │ │ └── ui_script.js │ │ │ │ │ └── Spline │ │ │ │ │ │ ├── code.py │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── ui.html │ │ │ │ │ │ └── ui_script.js │ │ │ │ ├── Signal Correlation │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ │ └── Spectral Analysis │ │ │ │ │ ├── Fourier Transform │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ │ │ └── Inverse Real Fourier Transform │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ ├── Stats │ │ │ │ ├── Approximations │ │ │ │ │ └── Approximate Normal │ │ │ │ │ │ ├── code.py │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── ui.html │ │ │ │ │ │ └── ui_script.js │ │ │ │ └── PDF │ │ │ │ │ └── Normal │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── script.js │ │ │ │ │ └── ui.html │ │ │ └── Vector Manipulation │ │ │ │ └── Bins │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ └── local │ │ │ └── Shell │ │ │ └── PI Series │ │ │ ├── PI Series │ │ │ ├── code.py │ │ │ ├── meta.json │ │ │ ├── ui.html │ │ │ └── ui_script.js │ │ │ ├── PI Series_1 │ │ │ ├── code.py │ │ │ ├── meta.json │ │ │ ├── ui.html │ │ │ └── ui_script.js │ │ │ ├── PI Series_2 │ │ │ ├── code.py │ │ │ ├── meta.json │ │ │ ├── ui.html │ │ │ └── ui_script.js │ │ │ ├── code.py │ │ │ ├── ui.html │ │ │ └── ui_script.js │ ├── main.py │ ├── model_manager.py │ ├── results_encoder.py │ └── static │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── MaterialIcons-Regular.0509ab09.woff2 │ │ ├── MaterialIcons-Regular.29b882f0.woff │ │ ├── MaterialIcons-Regular.96c47680.eot │ │ ├── MaterialIcons-Regular.da4ea5cd.ttf │ │ ├── Roboto-Black.313a6563.woff │ │ ├── Roboto-Black.59eb3601.woff2 │ │ ├── Roboto-BlackItalic.cc2fadc3.woff │ │ ├── Roboto-BlackItalic.f75569f8.woff2 │ │ ├── Roboto-Bold.50d75e48.woff │ │ ├── Roboto-Bold.b52fac2b.woff2 │ │ ├── Roboto-BoldItalic.4fe0f73c.woff │ │ ├── Roboto-BoldItalic.94008e69.woff2 │ │ ├── Roboto-Light.c73eb1ce.woff │ │ ├── Roboto-Light.d26871e8.woff2 │ │ ├── Roboto-LightItalic.13efe6cb.woff │ │ ├── Roboto-LightItalic.e8eaae90.woff2 │ │ ├── Roboto-Medium.1d659482.woff │ │ ├── Roboto-Medium.90d16760.woff2 │ │ ├── Roboto-MediumItalic.13ec0eb5.woff2 │ │ ├── Roboto-MediumItalic.83e114c3.woff │ │ ├── Roboto-Regular.35b07eb2.woff │ │ ├── Roboto-Regular.73f0a88b.woff2 │ │ ├── Roboto-RegularItalic.4357beb8.woff2 │ │ ├── Roboto-RegularItalic.f5902d5e.woff │ │ ├── Roboto-Thin.ad538a69.woff2 │ │ ├── Roboto-Thin.d3b47375.woff │ │ ├── Roboto-ThinItalic.5b4a33e1.woff2 │ │ └── Roboto-ThinItalic.8a96edbb.woff │ │ ├── grid.gif │ │ ├── img │ │ ├── error.3aacd2be.png │ │ ├── hourglass.14df74c7.png │ │ ├── success.0295b738.png │ │ └── warning.a999d80d.png │ │ ├── index.html │ │ ├── mxGraph │ │ ├── css │ │ │ ├── common.css │ │ │ └── explorer.css │ │ ├── images │ │ │ ├── button.gif │ │ │ ├── close.gif │ │ │ ├── collapsed.gif │ │ │ ├── error.gif │ │ │ ├── expanded.gif │ │ │ ├── maximize.gif │ │ │ ├── minimize.gif │ │ │ ├── normalize.gif │ │ │ ├── point.gif │ │ │ ├── resize.gif │ │ │ ├── separator.gif │ │ │ ├── submenu.gif │ │ │ ├── transparent.gif │ │ │ ├── warning.gif │ │ │ ├── warning.png │ │ │ ├── window-title.gif │ │ │ └── window.gif │ │ ├── js │ │ │ ├── editor │ │ │ │ ├── mxDefaultKeyHandler.js │ │ │ │ ├── mxDefaultPopupMenu.js │ │ │ │ ├── mxDefaultToolbar.js │ │ │ │ └── mxEditor.js │ │ │ ├── handler │ │ │ │ ├── mxCellHighlight.js │ │ │ │ ├── mxCellMarker.js │ │ │ │ ├── mxCellTracker.js │ │ │ │ ├── mxConnectionHandler.js │ │ │ │ ├── mxConstraintHandler.js │ │ │ │ ├── mxEdgeHandler.js │ │ │ │ ├── mxEdgeSegmentHandler.js │ │ │ │ ├── mxElbowEdgeHandler.js │ │ │ │ ├── mxGraphHandler.js │ │ │ │ ├── mxHandle.js │ │ │ │ ├── mxKeyHandler.js │ │ │ │ ├── mxPanningHandler.js │ │ │ │ ├── mxPopupMenuHandler.js │ │ │ │ ├── mxRubberband.js │ │ │ │ ├── mxSelectionCellsHandler.js │ │ │ │ ├── mxTooltipHandler.js │ │ │ │ └── mxVertexHandler.js │ │ │ ├── io │ │ │ │ ├── mxCellCodec.js │ │ │ │ ├── mxChildChangeCodec.js │ │ │ │ ├── mxCodec.js │ │ │ │ ├── mxCodecRegistry.js │ │ │ │ ├── mxDefaultKeyHandlerCodec.js │ │ │ │ ├── mxDefaultPopupMenuCodec.js │ │ │ │ ├── mxDefaultToolbarCodec.js │ │ │ │ ├── mxEditorCodec.js │ │ │ │ ├── mxGenericChangeCodec.js │ │ │ │ ├── mxGraphCodec.js │ │ │ │ ├── mxGraphViewCodec.js │ │ │ │ ├── mxModelCodec.js │ │ │ │ ├── mxObjectCodec.js │ │ │ │ ├── mxRootChangeCodec.js │ │ │ │ ├── mxStylesheetCodec.js │ │ │ │ └── mxTerminalChangeCodec.js │ │ │ ├── layout │ │ │ │ ├── hierarchical │ │ │ │ │ ├── model │ │ │ │ │ │ ├── mxGraphAbstractHierarchyCell.js │ │ │ │ │ │ ├── mxGraphHierarchyEdge.js │ │ │ │ │ │ ├── mxGraphHierarchyModel.js │ │ │ │ │ │ ├── mxGraphHierarchyNode.js │ │ │ │ │ │ └── mxSwimlaneModel.js │ │ │ │ │ ├── mxHierarchicalLayout.js │ │ │ │ │ ├── mxSwimlaneLayout.js │ │ │ │ │ └── stage │ │ │ │ │ │ ├── mxCoordinateAssignment.js │ │ │ │ │ │ ├── mxHierarchicalLayoutStage.js │ │ │ │ │ │ ├── mxMedianHybridCrossingReduction.js │ │ │ │ │ │ ├── mxMinimumCycleRemover.js │ │ │ │ │ │ └── mxSwimlaneOrdering.js │ │ │ │ ├── mxCircleLayout.js │ │ │ │ ├── mxCompactTreeLayout.js │ │ │ │ ├── mxCompositeLayout.js │ │ │ │ ├── mxEdgeLabelLayout.js │ │ │ │ ├── mxFastOrganicLayout.js │ │ │ │ ├── mxGraphLayout.js │ │ │ │ ├── mxParallelEdgeLayout.js │ │ │ │ ├── mxPartitionLayout.js │ │ │ │ ├── mxRadialTreeLayout.js │ │ │ │ └── mxStackLayout.js │ │ │ ├── model │ │ │ │ ├── mxCell.js │ │ │ │ ├── mxCellPath.js │ │ │ │ ├── mxGeometry.js │ │ │ │ └── mxGraphModel.js │ │ │ ├── mxClient.js │ │ │ ├── shape │ │ │ │ ├── mxActor.js │ │ │ │ ├── mxArrow.js │ │ │ │ ├── mxArrowConnector.js │ │ │ │ ├── mxCloud.js │ │ │ │ ├── mxConnector.js │ │ │ │ ├── mxCylinder.js │ │ │ │ ├── mxDoubleEllipse.js │ │ │ │ ├── mxEllipse.js │ │ │ │ ├── mxHexagon.js │ │ │ │ ├── mxImageShape.js │ │ │ │ ├── mxLabel.js │ │ │ │ ├── mxLine.js │ │ │ │ ├── mxMarker.js │ │ │ │ ├── mxPolyline.js │ │ │ │ ├── mxRectangleShape.js │ │ │ │ ├── mxRhombus.js │ │ │ │ ├── mxShape.js │ │ │ │ ├── mxStencil.js │ │ │ │ ├── mxStencilRegistry.js │ │ │ │ ├── mxSwimlane.js │ │ │ │ ├── mxText.js │ │ │ │ └── mxTriangle.js │ │ │ ├── util │ │ │ │ ├── mxAbstractCanvas2D.js │ │ │ │ ├── mxAnimation.js │ │ │ │ ├── mxAutoSaveManager.js │ │ │ │ ├── mxClipboard.js │ │ │ │ ├── mxConstants.js │ │ │ │ ├── mxDictionary.js │ │ │ │ ├── mxDivResizer.js │ │ │ │ ├── mxDragSource.js │ │ │ │ ├── mxEffects.js │ │ │ │ ├── mxEvent.js │ │ │ │ ├── mxEventObject.js │ │ │ │ ├── mxEventSource.js │ │ │ │ ├── mxForm.js │ │ │ │ ├── mxGuide.js │ │ │ │ ├── mxImage.js │ │ │ │ ├── mxImageBundle.js │ │ │ │ ├── mxImageExport.js │ │ │ │ ├── mxLog.js │ │ │ │ ├── mxMorphing.js │ │ │ │ ├── mxMouseEvent.js │ │ │ │ ├── mxObjectIdentity.js │ │ │ │ ├── mxPanningManager.js │ │ │ │ ├── mxPoint.js │ │ │ │ ├── mxPopupMenu.js │ │ │ │ ├── mxRectangle.js │ │ │ │ ├── mxResources.js │ │ │ │ ├── mxSvgCanvas2D.js │ │ │ │ ├── mxToolbar.js │ │ │ │ ├── mxUndoManager.js │ │ │ │ ├── mxUndoableEdit.js │ │ │ │ ├── mxUrlConverter.js │ │ │ │ ├── mxUtils.js │ │ │ │ ├── mxVmlCanvas2D.js │ │ │ │ ├── mxWindow.js │ │ │ │ ├── mxXmlCanvas2D.js │ │ │ │ └── mxXmlRequest.js │ │ │ └── view │ │ │ │ ├── mxCellEditor.js │ │ │ │ ├── mxCellOverlay.js │ │ │ │ ├── mxCellRenderer.js │ │ │ │ ├── mxCellState.js │ │ │ │ ├── mxCellStatePreview.js │ │ │ │ ├── mxConnectionConstraint.js │ │ │ │ ├── mxEdgeStyle.js │ │ │ │ ├── mxGraph.js │ │ │ │ ├── mxGraphSelectionModel.js │ │ │ │ ├── mxGraphView.js │ │ │ │ ├── mxLayoutManager.js │ │ │ │ ├── mxMultiplicity.js │ │ │ │ ├── mxOutline.js │ │ │ │ ├── mxPerimeter.js │ │ │ │ ├── mxPrintPreview.js │ │ │ │ ├── mxStyleRegistry.js │ │ │ │ ├── mxStylesheet.js │ │ │ │ ├── mxSwimlaneManager.js │ │ │ │ └── mxTemporaryCellStates.js │ │ └── resources │ │ │ ├── editor.txt │ │ │ ├── editor_de.txt │ │ │ ├── editor_zh.txt │ │ │ ├── graph.txt │ │ │ ├── graph_de.txt │ │ │ └── graph_zh.txt │ │ └── node_viewer.html ├── README.md ├── bin │ ├── pyweaver-main.py │ └── pyweaver.bat ├── build │ ├── lib │ │ └── PyWeaver │ │ │ ├── Graph.py │ │ │ ├── LibraryManager.py │ │ │ ├── NodeTemplate.py │ │ │ ├── Nodes.py │ │ │ ├── __init__.py │ │ │ ├── client_pref.json │ │ │ ├── code_parsing.py │ │ │ ├── lib │ │ │ ├── core │ │ │ │ ├── Input │ │ │ │ │ └── Vector │ │ │ │ │ │ ├── code.py │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── ui.html │ │ │ │ │ │ └── ui_script.js │ │ │ │ ├── Plot │ │ │ │ │ ├── Generic │ │ │ │ │ │ ├── Chart │ │ │ │ │ │ │ ├── code.py │ │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ │ ├── ui.html │ │ │ │ │ │ │ └── ui_script.js │ │ │ │ │ │ └── Trace │ │ │ │ │ │ │ ├── code.py │ │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ │ ├── ui.html │ │ │ │ │ │ │ └── ui_script.js │ │ │ │ │ ├── Scatter │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── reedme.txt │ │ │ │ │ │ ├── script.js │ │ │ │ │ │ ├── simple_plot_logic.py │ │ │ │ │ │ └── ui.html │ │ │ │ │ └── Statistics │ │ │ │ │ │ ├── Histogram │ │ │ │ │ │ ├── code.py │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── ui.html │ │ │ │ │ │ └── ui_script.js │ │ │ │ │ │ └── Pair Plot │ │ │ │ │ │ ├── code.py │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── ui.html │ │ │ │ │ │ └── ui_script.js │ │ │ │ ├── Stats │ │ │ │ │ ├── Approximations │ │ │ │ │ │ └── Approximate Normal │ │ │ │ │ │ │ ├── code.py │ │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ │ ├── ui.html │ │ │ │ │ │ │ └── ui_script.js │ │ │ │ │ └── PDF │ │ │ │ │ │ └── Normal │ │ │ │ │ │ ├── code.py │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── script.js │ │ │ │ │ │ └── ui.html │ │ │ │ └── Vector Manipulation │ │ │ │ │ └── Bins │ │ │ │ │ ├── code.py │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ └── local │ │ │ │ └── Shell │ │ │ │ └── PI Series │ │ │ │ ├── code.py │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ │ ├── main.py │ │ │ ├── model_manager.py │ │ │ ├── results_encoder.py │ │ │ └── static │ │ │ ├── favicon.ico │ │ │ ├── fonts │ │ │ ├── MaterialIcons-Regular.0509ab09.woff2 │ │ │ ├── MaterialIcons-Regular.29b882f0.woff │ │ │ ├── MaterialIcons-Regular.96c47680.eot │ │ │ ├── MaterialIcons-Regular.da4ea5cd.ttf │ │ │ ├── Roboto-Black.313a6563.woff │ │ │ ├── Roboto-Black.59eb3601.woff2 │ │ │ ├── Roboto-BlackItalic.cc2fadc3.woff │ │ │ ├── Roboto-BlackItalic.f75569f8.woff2 │ │ │ ├── Roboto-Bold.50d75e48.woff │ │ │ ├── Roboto-Bold.b52fac2b.woff2 │ │ │ ├── Roboto-BoldItalic.4fe0f73c.woff │ │ │ ├── Roboto-BoldItalic.94008e69.woff2 │ │ │ ├── Roboto-Light.c73eb1ce.woff │ │ │ ├── Roboto-Light.d26871e8.woff2 │ │ │ ├── Roboto-LightItalic.13efe6cb.woff │ │ │ ├── Roboto-LightItalic.e8eaae90.woff2 │ │ │ ├── Roboto-Medium.1d659482.woff │ │ │ ├── Roboto-Medium.90d16760.woff2 │ │ │ ├── Roboto-MediumItalic.13ec0eb5.woff2 │ │ │ ├── Roboto-MediumItalic.83e114c3.woff │ │ │ ├── Roboto-Regular.35b07eb2.woff │ │ │ ├── Roboto-Regular.73f0a88b.woff2 │ │ │ ├── Roboto-RegularItalic.4357beb8.woff2 │ │ │ ├── Roboto-RegularItalic.f5902d5e.woff │ │ │ ├── Roboto-Thin.ad538a69.woff2 │ │ │ ├── Roboto-Thin.d3b47375.woff │ │ │ ├── Roboto-ThinItalic.5b4a33e1.woff2 │ │ │ └── Roboto-ThinItalic.8a96edbb.woff │ │ │ ├── grid.gif │ │ │ ├── img │ │ │ ├── error.3aacd2be.png │ │ │ ├── hourglass.14df74c7.png │ │ │ ├── success.0295b738.png │ │ │ └── warning.a999d80d.png │ │ │ ├── index.html │ │ │ └── mxGraph │ │ │ ├── css │ │ │ ├── common.css │ │ │ └── explorer.css │ │ │ ├── images │ │ │ ├── button.gif │ │ │ ├── close.gif │ │ │ ├── collapsed.gif │ │ │ ├── error.gif │ │ │ ├── expanded.gif │ │ │ ├── maximize.gif │ │ │ ├── minimize.gif │ │ │ ├── normalize.gif │ │ │ ├── point.gif │ │ │ ├── resize.gif │ │ │ ├── separator.gif │ │ │ ├── submenu.gif │ │ │ ├── transparent.gif │ │ │ ├── warning.gif │ │ │ ├── warning.png │ │ │ ├── window-title.gif │ │ │ └── window.gif │ │ │ ├── js │ │ │ ├── editor │ │ │ │ ├── mxDefaultKeyHandler.js │ │ │ │ ├── mxDefaultPopupMenu.js │ │ │ │ ├── mxDefaultToolbar.js │ │ │ │ └── mxEditor.js │ │ │ ├── handler │ │ │ │ ├── mxCellHighlight.js │ │ │ │ ├── mxCellMarker.js │ │ │ │ ├── mxCellTracker.js │ │ │ │ ├── mxConnectionHandler.js │ │ │ │ ├── mxConstraintHandler.js │ │ │ │ ├── mxEdgeHandler.js │ │ │ │ ├── mxEdgeSegmentHandler.js │ │ │ │ ├── mxElbowEdgeHandler.js │ │ │ │ ├── mxGraphHandler.js │ │ │ │ ├── mxHandle.js │ │ │ │ ├── mxKeyHandler.js │ │ │ │ ├── mxPanningHandler.js │ │ │ │ ├── mxPopupMenuHandler.js │ │ │ │ ├── mxRubberband.js │ │ │ │ ├── mxSelectionCellsHandler.js │ │ │ │ ├── mxTooltipHandler.js │ │ │ │ └── mxVertexHandler.js │ │ │ ├── io │ │ │ │ ├── mxCellCodec.js │ │ │ │ ├── mxChildChangeCodec.js │ │ │ │ ├── mxCodec.js │ │ │ │ ├── mxCodecRegistry.js │ │ │ │ ├── mxDefaultKeyHandlerCodec.js │ │ │ │ ├── mxDefaultPopupMenuCodec.js │ │ │ │ ├── mxDefaultToolbarCodec.js │ │ │ │ ├── mxEditorCodec.js │ │ │ │ ├── mxGenericChangeCodec.js │ │ │ │ ├── mxGraphCodec.js │ │ │ │ ├── mxGraphViewCodec.js │ │ │ │ ├── mxModelCodec.js │ │ │ │ ├── mxObjectCodec.js │ │ │ │ ├── mxRootChangeCodec.js │ │ │ │ ├── mxStylesheetCodec.js │ │ │ │ └── mxTerminalChangeCodec.js │ │ │ ├── layout │ │ │ │ ├── hierarchical │ │ │ │ │ ├── model │ │ │ │ │ │ ├── mxGraphAbstractHierarchyCell.js │ │ │ │ │ │ ├── mxGraphHierarchyEdge.js │ │ │ │ │ │ ├── mxGraphHierarchyModel.js │ │ │ │ │ │ ├── mxGraphHierarchyNode.js │ │ │ │ │ │ └── mxSwimlaneModel.js │ │ │ │ │ ├── mxHierarchicalLayout.js │ │ │ │ │ ├── mxSwimlaneLayout.js │ │ │ │ │ └── stage │ │ │ │ │ │ ├── mxCoordinateAssignment.js │ │ │ │ │ │ ├── mxHierarchicalLayoutStage.js │ │ │ │ │ │ ├── mxMedianHybridCrossingReduction.js │ │ │ │ │ │ ├── mxMinimumCycleRemover.js │ │ │ │ │ │ └── mxSwimlaneOrdering.js │ │ │ │ ├── mxCircleLayout.js │ │ │ │ ├── mxCompactTreeLayout.js │ │ │ │ ├── mxCompositeLayout.js │ │ │ │ ├── mxEdgeLabelLayout.js │ │ │ │ ├── mxFastOrganicLayout.js │ │ │ │ ├── mxGraphLayout.js │ │ │ │ ├── mxParallelEdgeLayout.js │ │ │ │ ├── mxPartitionLayout.js │ │ │ │ ├── mxRadialTreeLayout.js │ │ │ │ └── mxStackLayout.js │ │ │ ├── model │ │ │ │ ├── mxCell.js │ │ │ │ ├── mxCellPath.js │ │ │ │ ├── mxGeometry.js │ │ │ │ └── mxGraphModel.js │ │ │ ├── mxClient.js │ │ │ ├── shape │ │ │ │ ├── mxActor.js │ │ │ │ ├── mxArrow.js │ │ │ │ ├── mxArrowConnector.js │ │ │ │ ├── mxCloud.js │ │ │ │ ├── mxConnector.js │ │ │ │ ├── mxCylinder.js │ │ │ │ ├── mxDoubleEllipse.js │ │ │ │ ├── mxEllipse.js │ │ │ │ ├── mxHexagon.js │ │ │ │ ├── mxImageShape.js │ │ │ │ ├── mxLabel.js │ │ │ │ ├── mxLine.js │ │ │ │ ├── mxMarker.js │ │ │ │ ├── mxPolyline.js │ │ │ │ ├── mxRectangleShape.js │ │ │ │ ├── mxRhombus.js │ │ │ │ ├── mxShape.js │ │ │ │ ├── mxStencil.js │ │ │ │ ├── mxStencilRegistry.js │ │ │ │ ├── mxSwimlane.js │ │ │ │ ├── mxText.js │ │ │ │ └── mxTriangle.js │ │ │ ├── util │ │ │ │ ├── mxAbstractCanvas2D.js │ │ │ │ ├── mxAnimation.js │ │ │ │ ├── mxAutoSaveManager.js │ │ │ │ ├── mxClipboard.js │ │ │ │ ├── mxConstants.js │ │ │ │ ├── mxDictionary.js │ │ │ │ ├── mxDivResizer.js │ │ │ │ ├── mxDragSource.js │ │ │ │ ├── mxEffects.js │ │ │ │ ├── mxEvent.js │ │ │ │ ├── mxEventObject.js │ │ │ │ ├── mxEventSource.js │ │ │ │ ├── mxForm.js │ │ │ │ ├── mxGuide.js │ │ │ │ ├── mxImage.js │ │ │ │ ├── mxImageBundle.js │ │ │ │ ├── mxImageExport.js │ │ │ │ ├── mxLog.js │ │ │ │ ├── mxMorphing.js │ │ │ │ ├── mxMouseEvent.js │ │ │ │ ├── mxObjectIdentity.js │ │ │ │ ├── mxPanningManager.js │ │ │ │ ├── mxPoint.js │ │ │ │ ├── mxPopupMenu.js │ │ │ │ ├── mxRectangle.js │ │ │ │ ├── mxResources.js │ │ │ │ ├── mxSvgCanvas2D.js │ │ │ │ ├── mxToolbar.js │ │ │ │ ├── mxUndoManager.js │ │ │ │ ├── mxUndoableEdit.js │ │ │ │ ├── mxUrlConverter.js │ │ │ │ ├── mxUtils.js │ │ │ │ ├── mxVmlCanvas2D.js │ │ │ │ ├── mxWindow.js │ │ │ │ ├── mxXmlCanvas2D.js │ │ │ │ └── mxXmlRequest.js │ │ │ └── view │ │ │ │ ├── mxCellEditor.js │ │ │ │ ├── mxCellOverlay.js │ │ │ │ ├── mxCellRenderer.js │ │ │ │ ├── mxCellState.js │ │ │ │ ├── mxCellStatePreview.js │ │ │ │ ├── mxConnectionConstraint.js │ │ │ │ ├── mxEdgeStyle.js │ │ │ │ ├── mxGraph.js │ │ │ │ ├── mxGraphSelectionModel.js │ │ │ │ ├── mxGraphView.js │ │ │ │ ├── mxLayoutManager.js │ │ │ │ ├── mxMultiplicity.js │ │ │ │ ├── mxOutline.js │ │ │ │ ├── mxPerimeter.js │ │ │ │ ├── mxPrintPreview.js │ │ │ │ ├── mxStyleRegistry.js │ │ │ │ ├── mxStylesheet.js │ │ │ │ ├── mxSwimlaneManager.js │ │ │ │ └── mxTemporaryCellStates.js │ │ │ └── resources │ │ │ ├── editor.txt │ │ │ ├── editor_de.txt │ │ │ ├── editor_zh.txt │ │ │ ├── graph.txt │ │ │ ├── graph_de.txt │ │ │ └── graph_zh.txt │ └── scripts-3.7 │ │ ├── pyweaver-main.py │ │ └── pyweaver.bat ├── pyweaver.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── requires.txt │ └── top_level.txt ├── setup.cfg └── setup.py └── server ├── .gitignore ├── PyWeaver ├── Graph.py ├── LibraryManager.py ├── NodeTemplate.py ├── Nodes.py ├── Variable.py ├── __init__.py ├── client_pref.json ├── code_parsing.py ├── lib │ ├── core │ │ ├── Data Frame │ │ │ └── Data Frame Apply Function │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ ├── Excel │ │ │ ├── Excel Table │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ │ ├── Extract Series │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ │ └── Numpy to Excel │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ ├── Finance │ │ │ └── Stock data │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ ├── Functions │ │ │ ├── Piecewise Function │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ │ └── Sigmoid │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ ├── Input │ │ │ ├── Float │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ │ ├── Integer │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ │ ├── Linear Space │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ │ ├── Table │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ │ └── Vector │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ ├── New Node │ │ │ ├── code.py │ │ │ ├── meta.json │ │ │ ├── ui.html │ │ │ └── ui_script.js │ │ ├── Numerical Analysis │ │ │ ├── Quick Derivative │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ │ └── Series Integrate │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ ├── Plot │ │ │ ├── Generic │ │ │ │ ├── Chart │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ │ └── Trace │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ ├── Pyplot │ │ │ │ └── Pyplot demo │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ ├── Scatter │ │ │ │ ├── meta.json │ │ │ │ ├── reedme.txt │ │ │ │ ├── script.js │ │ │ │ ├── simple_plot_logic.py │ │ │ │ └── ui.html │ │ │ └── Statistics │ │ │ │ ├── Histogram │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ │ │ └── Pair Plot │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ ├── Signal Analysis │ │ │ ├── Change Detection │ │ │ │ ├── Mean Change Point Detection │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ │ └── Segment Signal │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ ├── Convolution │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ │ ├── Filter │ │ │ │ ├── Exponential smoothing │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ │ ├── Gaussian Filter │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ │ ├── Hample Filter │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ │ ├── Savitzky-Golay Filter │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ │ ├── Wiener Filter │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ │ └── Window functions │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ ├── Noise │ │ │ │ └── White Noise │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ ├── Pad │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ │ ├── Regression │ │ │ │ ├── Piecewise Linearization │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ │ ├── Polynomial fit │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ │ └── Spline │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ ├── Signal Correlation │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ │ └── Spectral Analysis │ │ │ │ ├── Fourier Transform │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ │ │ └── Inverse Real Fourier Transform │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ ├── Stats │ │ │ ├── Approximations │ │ │ │ └── Approximate Normal │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── ui.html │ │ │ │ │ └── ui_script.js │ │ │ ├── PDF │ │ │ │ └── Normal │ │ │ │ │ ├── code.py │ │ │ │ │ ├── meta.json │ │ │ │ │ ├── script.js │ │ │ │ │ └── ui.html │ │ │ └── Samplers │ │ │ │ ├── Beta Distribution Sampler │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ │ │ ├── Normal Sampler │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ │ │ ├── Triangular Sampler │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ │ │ └── Uniform Sampler │ │ │ │ ├── code.py │ │ │ │ ├── meta.json │ │ │ │ ├── ui.html │ │ │ │ └── ui_script.js │ │ └── Vector Manipulation │ │ │ ├── Bins │ │ │ ├── code.py │ │ │ ├── meta.json │ │ │ ├── ui.html │ │ │ └── ui_script.js │ │ │ └── Map │ │ │ ├── code.py │ │ │ ├── meta.json │ │ │ ├── ui.html │ │ │ └── ui_script.js │ └── local │ │ └── Shell │ │ └── PI Series │ │ ├── PI Series │ │ ├── code.py │ │ ├── meta.json │ │ ├── ui.html │ │ └── ui_script.js │ │ ├── PI Series_1 │ │ ├── code.py │ │ ├── meta.json │ │ ├── ui.html │ │ └── ui_script.js │ │ ├── PI Series_2 │ │ ├── code.py │ │ ├── meta.json │ │ ├── ui.html │ │ └── ui_script.js │ │ ├── code.py │ │ ├── ui.html │ │ └── ui_script.js ├── main.py ├── model_manager.py ├── refactor_magic.py └── results_encoder.py └── test ├── .cache └── v │ └── cache │ └── lastfailed ├── code_parse_test.py ├── context.py ├── main_test.py └── res ├── test_1.py ├── test_2.py └── test_3.py /.gitignore: -------------------------------------------------------------------------------- 1 | pkg 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/README.md -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/TODO.txt -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/_config.yml -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/README.md -------------------------------------------------------------------------------- /client/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/babel.config.js -------------------------------------------------------------------------------- /client/custom_modules/v-runtime-template/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/custom_modules/v-runtime-template/LICENSE -------------------------------------------------------------------------------- /client/custom_modules/v-runtime-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/custom_modules/v-runtime-template/README.md -------------------------------------------------------------------------------- /client/custom_modules/v-runtime-template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/custom_modules/v-runtime-template/index.js -------------------------------------------------------------------------------- /client/custom_modules/v-runtime-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/custom_modules/v-runtime-template/package.json -------------------------------------------------------------------------------- /client/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/img/error.png -------------------------------------------------------------------------------- /client/img/hourglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/img/hourglass.png -------------------------------------------------------------------------------- /client/img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/img/info.png -------------------------------------------------------------------------------- /client/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/img/logo.svg -------------------------------------------------------------------------------- /client/img/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/img/success.png -------------------------------------------------------------------------------- /client/img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/img/warning.png -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/grid.gif -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/mxGraph/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/css/common.css -------------------------------------------------------------------------------- /client/public/mxGraph/css/explorer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/css/explorer.css -------------------------------------------------------------------------------- /client/public/mxGraph/images/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/images/button.gif -------------------------------------------------------------------------------- /client/public/mxGraph/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/images/close.gif -------------------------------------------------------------------------------- /client/public/mxGraph/images/collapsed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/images/collapsed.gif -------------------------------------------------------------------------------- /client/public/mxGraph/images/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/images/error.gif -------------------------------------------------------------------------------- /client/public/mxGraph/images/expanded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/images/expanded.gif -------------------------------------------------------------------------------- /client/public/mxGraph/images/maximize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/images/maximize.gif -------------------------------------------------------------------------------- /client/public/mxGraph/images/minimize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/images/minimize.gif -------------------------------------------------------------------------------- /client/public/mxGraph/images/normalize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/images/normalize.gif -------------------------------------------------------------------------------- /client/public/mxGraph/images/point.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/images/point.gif -------------------------------------------------------------------------------- /client/public/mxGraph/images/resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/images/resize.gif -------------------------------------------------------------------------------- /client/public/mxGraph/images/separator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/images/separator.gif -------------------------------------------------------------------------------- /client/public/mxGraph/images/submenu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/images/submenu.gif -------------------------------------------------------------------------------- /client/public/mxGraph/images/transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/images/transparent.gif -------------------------------------------------------------------------------- /client/public/mxGraph/images/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/images/warning.gif -------------------------------------------------------------------------------- /client/public/mxGraph/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/images/warning.png -------------------------------------------------------------------------------- /client/public/mxGraph/images/window-title.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/images/window-title.gif -------------------------------------------------------------------------------- /client/public/mxGraph/images/window.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/images/window.gif -------------------------------------------------------------------------------- /client/public/mxGraph/js/editor/mxDefaultKeyHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/editor/mxDefaultKeyHandler.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/editor/mxDefaultPopupMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/editor/mxDefaultPopupMenu.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/editor/mxDefaultToolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/editor/mxDefaultToolbar.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/editor/mxEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/editor/mxEditor.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/handler/mxCellHighlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/handler/mxCellHighlight.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/handler/mxCellMarker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/handler/mxCellMarker.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/handler/mxCellTracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/handler/mxCellTracker.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/handler/mxConnectionHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/handler/mxConnectionHandler.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/handler/mxConstraintHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/handler/mxConstraintHandler.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/handler/mxEdgeHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/handler/mxEdgeHandler.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/handler/mxEdgeSegmentHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/handler/mxEdgeSegmentHandler.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/handler/mxElbowEdgeHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/handler/mxElbowEdgeHandler.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/handler/mxGraphHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/handler/mxGraphHandler.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/handler/mxHandle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/handler/mxHandle.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/handler/mxKeyHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/handler/mxKeyHandler.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/handler/mxPanningHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/handler/mxPanningHandler.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/handler/mxPopupMenuHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/handler/mxPopupMenuHandler.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/handler/mxRubberband.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/handler/mxRubberband.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/handler/mxSelectionCellsHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/handler/mxSelectionCellsHandler.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/handler/mxTooltipHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/handler/mxTooltipHandler.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/handler/mxVertexHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/handler/mxVertexHandler.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/io/mxCellCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/io/mxCellCodec.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/io/mxChildChangeCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/io/mxChildChangeCodec.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/io/mxCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/io/mxCodec.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/io/mxCodecRegistry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/io/mxCodecRegistry.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/io/mxDefaultKeyHandlerCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/io/mxDefaultKeyHandlerCodec.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/io/mxDefaultPopupMenuCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/io/mxDefaultPopupMenuCodec.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/io/mxDefaultToolbarCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/io/mxDefaultToolbarCodec.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/io/mxEditorCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/io/mxEditorCodec.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/io/mxGenericChangeCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/io/mxGenericChangeCodec.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/io/mxGraphCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/io/mxGraphCodec.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/io/mxGraphViewCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/io/mxGraphViewCodec.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/io/mxModelCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/io/mxModelCodec.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/io/mxObjectCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/io/mxObjectCodec.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/io/mxRootChangeCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/io/mxRootChangeCodec.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/io/mxStylesheetCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/io/mxStylesheetCodec.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/io/mxTerminalChangeCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/io/mxTerminalChangeCodec.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/layout/mxCircleLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/layout/mxCircleLayout.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/layout/mxCompactTreeLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/layout/mxCompactTreeLayout.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/layout/mxCompositeLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/layout/mxCompositeLayout.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/layout/mxEdgeLabelLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/layout/mxEdgeLabelLayout.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/layout/mxFastOrganicLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/layout/mxFastOrganicLayout.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/layout/mxGraphLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/layout/mxGraphLayout.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/layout/mxParallelEdgeLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/layout/mxParallelEdgeLayout.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/layout/mxPartitionLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/layout/mxPartitionLayout.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/layout/mxRadialTreeLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/layout/mxRadialTreeLayout.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/layout/mxStackLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/layout/mxStackLayout.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/model/mxCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/model/mxCell.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/model/mxCellPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/model/mxCellPath.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/model/mxGeometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/model/mxGeometry.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/model/mxGraphModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/model/mxGraphModel.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/mxClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/mxClient.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/shape/mxActor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/shape/mxActor.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/shape/mxArrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/shape/mxArrow.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/shape/mxArrowConnector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/shape/mxArrowConnector.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/shape/mxCloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/shape/mxCloud.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/shape/mxConnector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/shape/mxConnector.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/shape/mxCylinder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/shape/mxCylinder.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/shape/mxDoubleEllipse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/shape/mxDoubleEllipse.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/shape/mxEllipse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/shape/mxEllipse.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/shape/mxHexagon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/shape/mxHexagon.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/shape/mxImageShape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/shape/mxImageShape.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/shape/mxLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/shape/mxLabel.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/shape/mxLine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/shape/mxLine.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/shape/mxMarker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/shape/mxMarker.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/shape/mxPolyline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/shape/mxPolyline.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/shape/mxRectangleShape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/shape/mxRectangleShape.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/shape/mxRhombus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/shape/mxRhombus.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/shape/mxShape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/shape/mxShape.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/shape/mxStencil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/shape/mxStencil.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/shape/mxStencilRegistry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/shape/mxStencilRegistry.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/shape/mxSwimlane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/shape/mxSwimlane.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/shape/mxText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/shape/mxText.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/shape/mxTriangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/shape/mxTriangle.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxAbstractCanvas2D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxAbstractCanvas2D.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxAnimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxAnimation.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxAutoSaveManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxAutoSaveManager.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxClipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxClipboard.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxConstants.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxDictionary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxDictionary.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxDivResizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxDivResizer.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxDragSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxDragSource.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxEffects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxEffects.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxEvent.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxEventObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxEventObject.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxEventSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxEventSource.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxForm.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxGuide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxGuide.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxImage.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxImageBundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxImageBundle.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxImageExport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxImageExport.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxLog.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxMorphing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxMorphing.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxMouseEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxMouseEvent.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxObjectIdentity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxObjectIdentity.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxPanningManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxPanningManager.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxPoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxPoint.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxPopupMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxPopupMenu.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxRectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxRectangle.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxResources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxResources.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxSvgCanvas2D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxSvgCanvas2D.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxToolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxToolbar.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxUndoManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxUndoManager.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxUndoableEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxUndoableEdit.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxUrlConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxUrlConverter.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxUtils.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxVmlCanvas2D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxVmlCanvas2D.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxWindow.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxXmlCanvas2D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxXmlCanvas2D.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/util/mxXmlRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/util/mxXmlRequest.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/view/mxCellEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/view/mxCellEditor.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/view/mxCellOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/view/mxCellOverlay.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/view/mxCellRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/view/mxCellRenderer.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/view/mxCellState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/view/mxCellState.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/view/mxCellStatePreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/view/mxCellStatePreview.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/view/mxConnectionConstraint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/view/mxConnectionConstraint.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/view/mxEdgeStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/view/mxEdgeStyle.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/view/mxGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/view/mxGraph.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/view/mxGraphSelectionModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/view/mxGraphSelectionModel.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/view/mxGraphView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/view/mxGraphView.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/view/mxLayoutManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/view/mxLayoutManager.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/view/mxMultiplicity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/view/mxMultiplicity.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/view/mxOutline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/view/mxOutline.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/view/mxPerimeter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/view/mxPerimeter.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/view/mxPrintPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/view/mxPrintPreview.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/view/mxStyleRegistry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/view/mxStyleRegistry.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/view/mxStylesheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/view/mxStylesheet.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/view/mxSwimlaneManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/view/mxSwimlaneManager.js -------------------------------------------------------------------------------- /client/public/mxGraph/js/view/mxTemporaryCellStates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/js/view/mxTemporaryCellStates.js -------------------------------------------------------------------------------- /client/public/mxGraph/resources/editor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/resources/editor.txt -------------------------------------------------------------------------------- /client/public/mxGraph/resources/editor_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/resources/editor_de.txt -------------------------------------------------------------------------------- /client/public/mxGraph/resources/editor_zh.txt: -------------------------------------------------------------------------------- 1 | askZoom=进入缩放(%25) 2 | properties=属性 3 | outline=轮廓 4 | tasks=任务 5 | help=帮助 -------------------------------------------------------------------------------- /client/public/mxGraph/resources/graph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/resources/graph.txt -------------------------------------------------------------------------------- /client/public/mxGraph/resources/graph_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/resources/graph_de.txt -------------------------------------------------------------------------------- /client/public/mxGraph/resources/graph_zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/mxGraph/resources/graph_zh.txt -------------------------------------------------------------------------------- /client/public/node_viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/public/node_viewer.html -------------------------------------------------------------------------------- /client/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/App.vue -------------------------------------------------------------------------------- /client/src/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/Constants.js -------------------------------------------------------------------------------- /client/src/EventBus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/EventBus.js -------------------------------------------------------------------------------- /client/src/NodeEditor/Canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/NodeEditor/Canvas.js -------------------------------------------------------------------------------- /client/src/NodeEditor/CodeNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/NodeEditor/CodeNode.js -------------------------------------------------------------------------------- /client/src/NodeViewer/NodeViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/NodeViewer/NodeViewer.vue -------------------------------------------------------------------------------- /client/src/NodeViewer/NodeViewer_main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/NodeViewer/NodeViewer_main.js -------------------------------------------------------------------------------- /client/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/assets/logo.png -------------------------------------------------------------------------------- /client/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/assets/logo.svg -------------------------------------------------------------------------------- /client/src/components/BigDisplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/components/BigDisplay.vue -------------------------------------------------------------------------------- /client/src/components/CodeEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/components/CodeEditor.vue -------------------------------------------------------------------------------- /client/src/components/ConnectionOrderControl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/components/ConnectionOrderControl.vue -------------------------------------------------------------------------------- /client/src/components/Console.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/components/Console.vue -------------------------------------------------------------------------------- /client/src/components/ExplorerMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/components/ExplorerMenu.vue -------------------------------------------------------------------------------- /client/src/components/Grid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/components/Grid.vue -------------------------------------------------------------------------------- /client/src/components/Grid/Cell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/components/Grid/Cell.vue -------------------------------------------------------------------------------- /client/src/components/Grid/Grid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/components/Grid/Grid.vue -------------------------------------------------------------------------------- /client/src/components/LibrarySaveDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/components/LibrarySaveDialog.vue -------------------------------------------------------------------------------- /client/src/components/NodeDisplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/components/NodeDisplay.vue -------------------------------------------------------------------------------- /client/src/components/OptionsDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/components/OptionsDialog.vue -------------------------------------------------------------------------------- /client/src/components/Plot.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/components/Plot.vue -------------------------------------------------------------------------------- /client/src/components/RefactorFunctionalize.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/components/RefactorFunctionalize.vue -------------------------------------------------------------------------------- /client/src/components/SideBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/components/SideBar.vue -------------------------------------------------------------------------------- /client/src/components/SmallDisplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/components/SmallDisplay.vue -------------------------------------------------------------------------------- /client/src/components/grid_component.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/components/grid_component.zip -------------------------------------------------------------------------------- /client/src/directives/InitDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/directives/InitDirective.js -------------------------------------------------------------------------------- /client/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/main.js -------------------------------------------------------------------------------- /client/src/plugins/vuetify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/plugins/vuetify.js -------------------------------------------------------------------------------- /client/src/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/socket.js -------------------------------------------------------------------------------- /client/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/src/store.js -------------------------------------------------------------------------------- /client/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/vue.config.js -------------------------------------------------------------------------------- /client/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/client/webpack.config.js -------------------------------------------------------------------------------- /deploy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/deploy.txt -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/docs/index.md -------------------------------------------------------------------------------- /pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/LICENSE -------------------------------------------------------------------------------- /pkg/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/MANIFEST.in -------------------------------------------------------------------------------- /pkg/PyWeaver/Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/Graph.py -------------------------------------------------------------------------------- /pkg/PyWeaver/LibraryManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/LibraryManager.py -------------------------------------------------------------------------------- /pkg/PyWeaver/NodeTemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/NodeTemplate.py -------------------------------------------------------------------------------- /pkg/PyWeaver/Nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/Nodes.py -------------------------------------------------------------------------------- /pkg/PyWeaver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/__init__.py -------------------------------------------------------------------------------- /pkg/PyWeaver/client_pref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/client_pref.json -------------------------------------------------------------------------------- /pkg/PyWeaver/code_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/code_parsing.py -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Functions/Piecewise Function/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Functions/Piecewise Function/code.py -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Functions/Piecewise Function/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Functions/Piecewise Function/meta.json -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Functions/Piecewise Function/ui.html: -------------------------------------------------------------------------------- 1 | Piecewise Function -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Functions/Piecewise Function/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Functions/Sigmoid/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Functions/Sigmoid/code.py -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Functions/Sigmoid/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Functions/Sigmoid/meta.json -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Functions/Sigmoid/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Functions/Sigmoid/ui.html -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Functions/Sigmoid/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Input/Linear Space/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Input/Linear Space/code.py -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Input/Linear Space/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Input/Linear Space/meta.json -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Input/Linear Space/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Input/Linear Space/ui.html -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Input/Linear Space/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Input/Vector/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Input/Vector/code.py -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Input/Vector/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Input/Vector/meta.json -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Input/Vector/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Input/Vector/ui.html -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Input/Vector/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/New Node/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/New Node/code.py -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/New Node/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/New Node/meta.json -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/New Node/ui.html: -------------------------------------------------------------------------------- 1 | New Node -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/New Node/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Generic/Chart/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Plot/Generic/Chart/code.py -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Generic/Chart/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Plot/Generic/Chart/meta.json -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Generic/Chart/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Plot/Generic/Chart/ui.html -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Generic/Chart/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Generic/Trace/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Plot/Generic/Trace/code.py -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Generic/Trace/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Plot/Generic/Trace/meta.json -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Generic/Trace/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Plot/Generic/Trace/ui.html -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Generic/Trace/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Pyplot/Pyplot demo/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Plot/Pyplot/Pyplot demo/code.py -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Pyplot/Pyplot demo/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Plot/Pyplot/Pyplot demo/meta.json -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Pyplot/Pyplot demo/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Plot/Pyplot/Pyplot demo/ui.html -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Pyplot/Pyplot demo/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Scatter/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Plot/Scatter/meta.json -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Scatter/reedme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Plot/Scatter/reedme.txt -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Scatter/script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Scatter/simple_plot_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Plot/Scatter/simple_plot_logic.py -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Scatter/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Plot/Scatter/ui.html -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Statistics/Histogram/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Plot/Statistics/Histogram/code.py -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Statistics/Histogram/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Plot/Statistics/Histogram/meta.json -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Statistics/Histogram/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Plot/Statistics/Histogram/ui.html -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Statistics/Histogram/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Statistics/Pair Plot/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Plot/Statistics/Pair Plot/code.py -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Statistics/Pair Plot/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Plot/Statistics/Pair Plot/meta.json -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Statistics/Pair Plot/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Plot/Statistics/Pair Plot/ui.html -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Plot/Statistics/Pair Plot/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Change Detection/Mean Change Point Detection/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Convolution/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Signal Analysis/Convolution/code.py -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Convolution/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Signal Analysis/Convolution/meta.json -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Convolution/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Signal Analysis/Convolution/ui.html -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Convolution/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Filter/Exponential smoothing/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Filter/Gaussian Filter/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Filter/Hample Filter/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Filter/Savitzky-Golay Filter/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Filter/Wiener Filter/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Filter/Window functions/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Noise/White Noise/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Pad/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Signal Analysis/Pad/code.py -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Pad/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Signal Analysis/Pad/meta.json -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Pad/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Signal Analysis/Pad/ui.html -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Pad/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Regression/Piecewise Linearization/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Regression/Polynomial fit/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Regression/Spline/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Signal Correlation/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Spectral Analysis/Fourier Transform/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Spectral Analysis/Inverse Real Fourier Transform/ui.html: -------------------------------------------------------------------------------- 1 | Inverse 2 |
3 | Real Fourier Transform -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Signal Analysis/Spectral Analysis/Inverse Real Fourier Transform/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Stats/Approximations/Approximate Normal/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Stats/PDF/Normal/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Stats/PDF/Normal/code.py -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Stats/PDF/Normal/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Stats/PDF/Normal/meta.json -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Stats/PDF/Normal/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Stats/PDF/Normal/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Stats/PDF/Normal/ui.html -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Vector Manipulation/Bins/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Vector Manipulation/Bins/code.py -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Vector Manipulation/Bins/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/core/Vector Manipulation/Bins/meta.json -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Vector Manipulation/Bins/ui.html: -------------------------------------------------------------------------------- 1 | Bin Values -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/core/Vector Manipulation/Bins/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/local/Shell/PI Series/PI Series/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/local/Shell/PI Series/PI Series/code.py -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/local/Shell/PI Series/PI Series/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/local/Shell/PI Series/PI Series/meta.json -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/local/Shell/PI Series/PI Series/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/local/Shell/PI Series/PI Series/ui.html -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/local/Shell/PI Series/PI Series/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/local/Shell/PI Series/PI Series_1/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/local/Shell/PI Series/PI Series_1/code.py -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/local/Shell/PI Series/PI Series_1/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/local/Shell/PI Series/PI Series_1/meta.json -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/local/Shell/PI Series/PI Series_1/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/local/Shell/PI Series/PI Series_1/ui.html -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/local/Shell/PI Series/PI Series_1/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/local/Shell/PI Series/PI Series_2/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/local/Shell/PI Series/PI Series_2/code.py -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/local/Shell/PI Series/PI Series_2/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/local/Shell/PI Series/PI Series_2/meta.json -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/local/Shell/PI Series/PI Series_2/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/local/Shell/PI Series/PI Series_2/ui.html -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/local/Shell/PI Series/PI Series_2/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/local/Shell/PI Series/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/local/Shell/PI Series/code.py -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/local/Shell/PI Series/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/lib/local/Shell/PI Series/ui.html -------------------------------------------------------------------------------- /pkg/PyWeaver/lib/local/Shell/PI Series/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/PyWeaver/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/main.py -------------------------------------------------------------------------------- /pkg/PyWeaver/model_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/model_manager.py -------------------------------------------------------------------------------- /pkg/PyWeaver/results_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/results_encoder.py -------------------------------------------------------------------------------- /pkg/PyWeaver/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/favicon.ico -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/MaterialIcons-Regular.0509ab09.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/MaterialIcons-Regular.0509ab09.woff2 -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/MaterialIcons-Regular.29b882f0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/MaterialIcons-Regular.29b882f0.woff -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/MaterialIcons-Regular.96c47680.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/MaterialIcons-Regular.96c47680.eot -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/MaterialIcons-Regular.da4ea5cd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/MaterialIcons-Regular.da4ea5cd.ttf -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-Black.313a6563.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-Black.313a6563.woff -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-Black.59eb3601.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-Black.59eb3601.woff2 -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-BlackItalic.cc2fadc3.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-BlackItalic.cc2fadc3.woff -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-BlackItalic.f75569f8.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-BlackItalic.f75569f8.woff2 -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-Bold.50d75e48.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-Bold.50d75e48.woff -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-Bold.b52fac2b.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-Bold.b52fac2b.woff2 -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-BoldItalic.4fe0f73c.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-BoldItalic.4fe0f73c.woff -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-BoldItalic.94008e69.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-BoldItalic.94008e69.woff2 -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-Light.c73eb1ce.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-Light.c73eb1ce.woff -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-Light.d26871e8.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-Light.d26871e8.woff2 -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-LightItalic.13efe6cb.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-LightItalic.13efe6cb.woff -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-LightItalic.e8eaae90.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-LightItalic.e8eaae90.woff2 -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-Medium.1d659482.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-Medium.1d659482.woff -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-Medium.90d16760.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-Medium.90d16760.woff2 -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-MediumItalic.13ec0eb5.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-MediumItalic.13ec0eb5.woff2 -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-MediumItalic.83e114c3.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-MediumItalic.83e114c3.woff -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-Regular.35b07eb2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-Regular.35b07eb2.woff -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-Regular.73f0a88b.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-Regular.73f0a88b.woff2 -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-RegularItalic.4357beb8.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-RegularItalic.4357beb8.woff2 -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-RegularItalic.f5902d5e.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-RegularItalic.f5902d5e.woff -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-Thin.ad538a69.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-Thin.ad538a69.woff2 -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-Thin.d3b47375.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-Thin.d3b47375.woff -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-ThinItalic.5b4a33e1.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-ThinItalic.5b4a33e1.woff2 -------------------------------------------------------------------------------- /pkg/PyWeaver/static/fonts/Roboto-ThinItalic.8a96edbb.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/fonts/Roboto-ThinItalic.8a96edbb.woff -------------------------------------------------------------------------------- /pkg/PyWeaver/static/grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/grid.gif -------------------------------------------------------------------------------- /pkg/PyWeaver/static/img/error.3aacd2be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/img/error.3aacd2be.png -------------------------------------------------------------------------------- /pkg/PyWeaver/static/img/hourglass.14df74c7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/img/hourglass.14df74c7.png -------------------------------------------------------------------------------- /pkg/PyWeaver/static/img/success.0295b738.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/img/success.0295b738.png -------------------------------------------------------------------------------- /pkg/PyWeaver/static/img/warning.a999d80d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/img/warning.a999d80d.png -------------------------------------------------------------------------------- /pkg/PyWeaver/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/index.html -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/css/common.css -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/css/explorer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/css/explorer.css -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/images/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/images/button.gif -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/images/close.gif -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/images/collapsed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/images/collapsed.gif -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/images/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/images/error.gif -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/images/expanded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/images/expanded.gif -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/images/maximize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/images/maximize.gif -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/images/minimize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/images/minimize.gif -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/images/normalize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/images/normalize.gif -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/images/point.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/images/point.gif -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/images/resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/images/resize.gif -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/images/separator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/images/separator.gif -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/images/submenu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/images/submenu.gif -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/images/transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/images/transparent.gif -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/images/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/images/warning.gif -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/images/warning.png -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/images/window-title.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/images/window-title.gif -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/images/window.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/images/window.gif -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/editor/mxDefaultKeyHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/editor/mxDefaultKeyHandler.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/editor/mxDefaultPopupMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/editor/mxDefaultPopupMenu.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/editor/mxDefaultToolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/editor/mxDefaultToolbar.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/editor/mxEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/editor/mxEditor.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/handler/mxCellHighlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/handler/mxCellHighlight.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/handler/mxCellMarker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/handler/mxCellMarker.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/handler/mxCellTracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/handler/mxCellTracker.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/handler/mxConnectionHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/handler/mxConnectionHandler.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/handler/mxConstraintHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/handler/mxConstraintHandler.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/handler/mxEdgeHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/handler/mxEdgeHandler.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/handler/mxEdgeSegmentHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/handler/mxEdgeSegmentHandler.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/handler/mxElbowEdgeHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/handler/mxElbowEdgeHandler.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/handler/mxGraphHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/handler/mxGraphHandler.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/handler/mxHandle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/handler/mxHandle.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/handler/mxKeyHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/handler/mxKeyHandler.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/handler/mxPanningHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/handler/mxPanningHandler.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/handler/mxPopupMenuHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/handler/mxPopupMenuHandler.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/handler/mxRubberband.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/handler/mxRubberband.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/handler/mxTooltipHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/handler/mxTooltipHandler.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/handler/mxVertexHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/handler/mxVertexHandler.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/io/mxCellCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/io/mxCellCodec.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/io/mxChildChangeCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/io/mxChildChangeCodec.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/io/mxCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/io/mxCodec.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/io/mxCodecRegistry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/io/mxCodecRegistry.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/io/mxDefaultKeyHandlerCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/io/mxDefaultKeyHandlerCodec.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/io/mxDefaultPopupMenuCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/io/mxDefaultPopupMenuCodec.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/io/mxDefaultToolbarCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/io/mxDefaultToolbarCodec.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/io/mxEditorCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/io/mxEditorCodec.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/io/mxGenericChangeCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/io/mxGenericChangeCodec.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/io/mxGraphCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/io/mxGraphCodec.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/io/mxGraphViewCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/io/mxGraphViewCodec.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/io/mxModelCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/io/mxModelCodec.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/io/mxObjectCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/io/mxObjectCodec.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/io/mxRootChangeCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/io/mxRootChangeCodec.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/io/mxStylesheetCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/io/mxStylesheetCodec.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/io/mxTerminalChangeCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/io/mxTerminalChangeCodec.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/layout/mxCircleLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/layout/mxCircleLayout.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/layout/mxCompactTreeLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/layout/mxCompactTreeLayout.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/layout/mxCompositeLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/layout/mxCompositeLayout.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/layout/mxEdgeLabelLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/layout/mxEdgeLabelLayout.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/layout/mxFastOrganicLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/layout/mxFastOrganicLayout.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/layout/mxGraphLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/layout/mxGraphLayout.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/layout/mxParallelEdgeLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/layout/mxParallelEdgeLayout.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/layout/mxPartitionLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/layout/mxPartitionLayout.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/layout/mxRadialTreeLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/layout/mxRadialTreeLayout.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/layout/mxStackLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/layout/mxStackLayout.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/model/mxCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/model/mxCell.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/model/mxCellPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/model/mxCellPath.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/model/mxGeometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/model/mxGeometry.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/model/mxGraphModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/model/mxGraphModel.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/mxClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/mxClient.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/shape/mxActor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/shape/mxActor.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/shape/mxArrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/shape/mxArrow.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/shape/mxArrowConnector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/shape/mxArrowConnector.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/shape/mxCloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/shape/mxCloud.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/shape/mxConnector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/shape/mxConnector.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/shape/mxCylinder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/shape/mxCylinder.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/shape/mxDoubleEllipse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/shape/mxDoubleEllipse.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/shape/mxEllipse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/shape/mxEllipse.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/shape/mxHexagon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/shape/mxHexagon.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/shape/mxImageShape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/shape/mxImageShape.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/shape/mxLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/shape/mxLabel.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/shape/mxLine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/shape/mxLine.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/shape/mxMarker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/shape/mxMarker.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/shape/mxPolyline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/shape/mxPolyline.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/shape/mxRectangleShape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/shape/mxRectangleShape.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/shape/mxRhombus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/shape/mxRhombus.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/shape/mxShape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/shape/mxShape.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/shape/mxStencil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/shape/mxStencil.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/shape/mxStencilRegistry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/shape/mxStencilRegistry.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/shape/mxSwimlane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/shape/mxSwimlane.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/shape/mxText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/shape/mxText.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/shape/mxTriangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/shape/mxTriangle.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxAbstractCanvas2D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxAbstractCanvas2D.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxAnimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxAnimation.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxAutoSaveManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxAutoSaveManager.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxClipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxClipboard.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxConstants.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxDictionary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxDictionary.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxDivResizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxDivResizer.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxDragSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxDragSource.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxEffects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxEffects.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxEvent.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxEventObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxEventObject.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxEventSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxEventSource.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxForm.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxGuide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxGuide.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxImage.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxImageBundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxImageBundle.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxImageExport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxImageExport.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxLog.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxMorphing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxMorphing.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxMouseEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxMouseEvent.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxObjectIdentity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxObjectIdentity.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxPanningManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxPanningManager.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxPoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxPoint.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxPopupMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxPopupMenu.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxRectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxRectangle.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxResources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxResources.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxSvgCanvas2D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxSvgCanvas2D.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxToolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxToolbar.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxUndoManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxUndoManager.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxUndoableEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxUndoableEdit.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxUrlConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxUrlConverter.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxUtils.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxVmlCanvas2D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxVmlCanvas2D.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxWindow.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxXmlCanvas2D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxXmlCanvas2D.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/util/mxXmlRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/util/mxXmlRequest.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/view/mxCellEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/view/mxCellEditor.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/view/mxCellOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/view/mxCellOverlay.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/view/mxCellRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/view/mxCellRenderer.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/view/mxCellState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/view/mxCellState.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/view/mxCellStatePreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/view/mxCellStatePreview.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/view/mxConnectionConstraint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/view/mxConnectionConstraint.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/view/mxEdgeStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/view/mxEdgeStyle.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/view/mxGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/view/mxGraph.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/view/mxGraphSelectionModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/view/mxGraphSelectionModel.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/view/mxGraphView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/view/mxGraphView.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/view/mxLayoutManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/view/mxLayoutManager.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/view/mxMultiplicity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/view/mxMultiplicity.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/view/mxOutline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/view/mxOutline.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/view/mxPerimeter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/view/mxPerimeter.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/view/mxPrintPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/view/mxPrintPreview.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/view/mxStyleRegistry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/view/mxStyleRegistry.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/view/mxStylesheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/view/mxStylesheet.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/view/mxSwimlaneManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/view/mxSwimlaneManager.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/js/view/mxTemporaryCellStates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/js/view/mxTemporaryCellStates.js -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/resources/editor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/resources/editor.txt -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/resources/editor_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/resources/editor_de.txt -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/resources/editor_zh.txt: -------------------------------------------------------------------------------- 1 | askZoom=进入缩放(%25) 2 | properties=属性 3 | outline=轮廓 4 | tasks=任务 5 | help=帮助 -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/resources/graph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/resources/graph.txt -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/resources/graph_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/resources/graph_de.txt -------------------------------------------------------------------------------- /pkg/PyWeaver/static/mxGraph/resources/graph_zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/mxGraph/resources/graph_zh.txt -------------------------------------------------------------------------------- /pkg/PyWeaver/static/node_viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/PyWeaver/static/node_viewer.html -------------------------------------------------------------------------------- /pkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/README.md -------------------------------------------------------------------------------- /pkg/bin/pyweaver-main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/bin/pyweaver-main.py -------------------------------------------------------------------------------- /pkg/bin/pyweaver.bat: -------------------------------------------------------------------------------- 1 | python %~dp0pyweaver-main.py -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/Graph.py -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/LibraryManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/LibraryManager.py -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/NodeTemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/NodeTemplate.py -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/Nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/Nodes.py -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/__init__.py -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/client_pref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/client_pref.json -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/code_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/code_parsing.py -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Input/Vector/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/lib/core/Input/Vector/code.py -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Input/Vector/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/lib/core/Input/Vector/meta.json -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Input/Vector/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/lib/core/Input/Vector/ui.html -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Input/Vector/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Plot/Generic/Chart/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/lib/core/Plot/Generic/Chart/code.py -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Plot/Generic/Chart/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/lib/core/Plot/Generic/Chart/meta.json -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Plot/Generic/Chart/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/lib/core/Plot/Generic/Chart/ui.html -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Plot/Generic/Chart/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Plot/Generic/Trace/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/lib/core/Plot/Generic/Trace/code.py -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Plot/Generic/Trace/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/lib/core/Plot/Generic/Trace/meta.json -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Plot/Generic/Trace/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/lib/core/Plot/Generic/Trace/ui.html -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Plot/Generic/Trace/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Plot/Scatter/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/lib/core/Plot/Scatter/meta.json -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Plot/Scatter/reedme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/lib/core/Plot/Scatter/reedme.txt -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Plot/Scatter/script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Plot/Scatter/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/lib/core/Plot/Scatter/ui.html -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Plot/Statistics/Histogram/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Plot/Statistics/Pair Plot/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Stats/Approximations/Approximate Normal/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Stats/PDF/Normal/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/lib/core/Stats/PDF/Normal/code.py -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Stats/PDF/Normal/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/lib/core/Stats/PDF/Normal/meta.json -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Stats/PDF/Normal/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Stats/PDF/Normal/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/lib/core/Stats/PDF/Normal/ui.html -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Vector Manipulation/Bins/ui.html: -------------------------------------------------------------------------------- 1 | Bin Values -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/core/Vector Manipulation/Bins/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/local/Shell/PI Series/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/lib/local/Shell/PI Series/code.py -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/local/Shell/PI Series/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/lib/local/Shell/PI Series/ui.html -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/lib/local/Shell/PI Series/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/main.py -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/model_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/model_manager.py -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/results_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/results_encoder.py -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/favicon.ico -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/fonts/Roboto-Black.313a6563.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/fonts/Roboto-Black.313a6563.woff -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/fonts/Roboto-Bold.50d75e48.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/fonts/Roboto-Bold.50d75e48.woff -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/fonts/Roboto-Bold.b52fac2b.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/fonts/Roboto-Bold.b52fac2b.woff2 -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/fonts/Roboto-Light.c73eb1ce.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/fonts/Roboto-Light.c73eb1ce.woff -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/fonts/Roboto-Thin.ad538a69.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/fonts/Roboto-Thin.ad538a69.woff2 -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/fonts/Roboto-Thin.d3b47375.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/fonts/Roboto-Thin.d3b47375.woff -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/grid.gif -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/img/error.3aacd2be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/img/error.3aacd2be.png -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/img/hourglass.14df74c7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/img/hourglass.14df74c7.png -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/img/success.0295b738.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/img/success.0295b738.png -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/img/warning.a999d80d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/img/warning.a999d80d.png -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/index.html -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/css/common.css -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/css/explorer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/css/explorer.css -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/images/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/images/button.gif -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/images/close.gif -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/images/collapsed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/images/collapsed.gif -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/images/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/images/error.gif -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/images/expanded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/images/expanded.gif -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/images/maximize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/images/maximize.gif -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/images/minimize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/images/minimize.gif -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/images/normalize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/images/normalize.gif -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/images/point.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/images/point.gif -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/images/resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/images/resize.gif -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/images/separator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/images/separator.gif -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/images/submenu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/images/submenu.gif -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/images/transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/images/transparent.gif -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/images/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/images/warning.gif -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/images/warning.png -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/images/window-title.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/images/window-title.gif -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/images/window.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/images/window.gif -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/editor/mxEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/editor/mxEditor.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/handler/mxHandle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/handler/mxHandle.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/io/mxCellCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/io/mxCellCodec.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/io/mxCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/io/mxCodec.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/io/mxCodecRegistry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/io/mxCodecRegistry.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/io/mxEditorCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/io/mxEditorCodec.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/io/mxGraphCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/io/mxGraphCodec.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/io/mxModelCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/io/mxModelCodec.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/io/mxObjectCodec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/io/mxObjectCodec.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/model/mxCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/model/mxCell.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/model/mxCellPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/model/mxCellPath.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/model/mxGeometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/model/mxGeometry.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/model/mxGraphModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/model/mxGraphModel.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/mxClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/mxClient.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxActor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxActor.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxArrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxArrow.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxCloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxCloud.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxConnector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxConnector.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxCylinder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxCylinder.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxEllipse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxEllipse.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxHexagon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxHexagon.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxImageShape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxImageShape.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxLabel.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxLine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxLine.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxMarker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxMarker.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxPolyline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxPolyline.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxRhombus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxRhombus.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxShape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxShape.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxStencil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxStencil.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxSwimlane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxSwimlane.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxText.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxTriangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/shape/mxTriangle.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxAnimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxAnimation.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxClipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxClipboard.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxConstants.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxDictionary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxDictionary.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxDivResizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxDivResizer.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxDragSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxDragSource.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxEffects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxEffects.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxEvent.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxEventObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxEventObject.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxEventSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxEventSource.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxForm.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxGuide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxGuide.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxImage.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxImageBundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxImageBundle.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxImageExport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxImageExport.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxLog.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxMorphing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxMorphing.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxMouseEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxMouseEvent.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxPoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxPoint.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxPopupMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxPopupMenu.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxRectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxRectangle.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxResources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxResources.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxSvgCanvas2D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxSvgCanvas2D.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxToolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxToolbar.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxUndoManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxUndoManager.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxUtils.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxVmlCanvas2D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxVmlCanvas2D.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxWindow.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxXmlCanvas2D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxXmlCanvas2D.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxXmlRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/util/mxXmlRequest.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/view/mxCellEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/view/mxCellEditor.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/view/mxCellOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/view/mxCellOverlay.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/view/mxCellState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/view/mxCellState.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/view/mxEdgeStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/view/mxEdgeStyle.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/view/mxGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/view/mxGraph.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/view/mxGraphView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/view/mxGraphView.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/view/mxOutline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/view/mxOutline.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/view/mxPerimeter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/view/mxPerimeter.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/js/view/mxStylesheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/js/view/mxStylesheet.js -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/resources/editor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/resources/editor.txt -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/resources/editor_zh.txt: -------------------------------------------------------------------------------- 1 | askZoom=进入缩放(%25) 2 | properties=属性 3 | outline=轮廓 4 | tasks=任务 5 | help=帮助 -------------------------------------------------------------------------------- /pkg/build/lib/PyWeaver/static/mxGraph/resources/graph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/lib/PyWeaver/static/mxGraph/resources/graph.txt -------------------------------------------------------------------------------- /pkg/build/scripts-3.7/pyweaver-main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/build/scripts-3.7/pyweaver-main.py -------------------------------------------------------------------------------- /pkg/build/scripts-3.7/pyweaver.bat: -------------------------------------------------------------------------------- 1 | python %~dp0pyweaver-main.py -------------------------------------------------------------------------------- /pkg/pyweaver.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/pyweaver.egg-info/PKG-INFO -------------------------------------------------------------------------------- /pkg/pyweaver.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/pyweaver.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /pkg/pyweaver.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkg/pyweaver.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/pyweaver.egg-info/requires.txt -------------------------------------------------------------------------------- /pkg/pyweaver.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | PyWeaver 2 | -------------------------------------------------------------------------------- /pkg/setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /pkg/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/pkg/setup.py -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | *.bat 2 | *.pyc 3 | .idea -------------------------------------------------------------------------------- /server/PyWeaver/Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/Graph.py -------------------------------------------------------------------------------- /server/PyWeaver/LibraryManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/LibraryManager.py -------------------------------------------------------------------------------- /server/PyWeaver/NodeTemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/NodeTemplate.py -------------------------------------------------------------------------------- /server/PyWeaver/Nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/Nodes.py -------------------------------------------------------------------------------- /server/PyWeaver/Variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/Variable.py -------------------------------------------------------------------------------- /server/PyWeaver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/__init__.py -------------------------------------------------------------------------------- /server/PyWeaver/client_pref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/client_pref.json -------------------------------------------------------------------------------- /server/PyWeaver/code_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/code_parsing.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Data Frame/Data Frame Apply Function/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Excel/Excel Table/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Excel/Excel Table/code.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Excel/Excel Table/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Excel/Excel Table/meta.json -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Excel/Excel Table/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Excel/Excel Table/ui.html -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Excel/Excel Table/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Excel/Extract Series/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Excel/Extract Series/code.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Excel/Extract Series/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Excel/Extract Series/meta.json -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Excel/Extract Series/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Excel/Extract Series/ui.html -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Excel/Extract Series/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Excel/Numpy to Excel/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Excel/Numpy to Excel/code.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Excel/Numpy to Excel/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Excel/Numpy to Excel/meta.json -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Excel/Numpy to Excel/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Excel/Numpy to Excel/ui.html -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Excel/Numpy to Excel/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Finance/Stock data/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Finance/Stock data/code.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Finance/Stock data/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Finance/Stock data/meta.json -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Finance/Stock data/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Finance/Stock data/ui.html -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Finance/Stock data/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Functions/Piecewise Function/ui.html: -------------------------------------------------------------------------------- 1 | Piecewise Function -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Functions/Piecewise Function/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Functions/Sigmoid/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Functions/Sigmoid/code.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Functions/Sigmoid/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Functions/Sigmoid/meta.json -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Functions/Sigmoid/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Functions/Sigmoid/ui.html -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Functions/Sigmoid/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Input/Float/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Input/Float/code.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Input/Float/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Input/Float/meta.json -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Input/Float/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Input/Float/ui.html -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Input/Float/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Input/Integer/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Input/Integer/code.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Input/Integer/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Input/Integer/meta.json -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Input/Integer/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Input/Integer/ui.html -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Input/Integer/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Input/Linear Space/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Input/Linear Space/code.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Input/Linear Space/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Input/Linear Space/meta.json -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Input/Linear Space/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Input/Linear Space/ui.html -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Input/Linear Space/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Input/Table/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Input/Table/code.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Input/Table/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Input/Table/meta.json -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Input/Table/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Input/Table/ui.html -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Input/Table/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Input/Vector/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Input/Vector/code.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Input/Vector/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Input/Vector/meta.json -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Input/Vector/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Input/Vector/ui.html -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Input/Vector/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/New Node/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/New Node/code.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/New Node/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/New Node/meta.json -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/New Node/ui.html: -------------------------------------------------------------------------------- 1 | New Node -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/New Node/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Numerical Analysis/Quick Derivative/ui.html: -------------------------------------------------------------------------------- 1 | Quick Derivative -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Numerical Analysis/Quick Derivative/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Numerical Analysis/Series Integrate/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Generic/Chart/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Plot/Generic/Chart/code.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Generic/Chart/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Plot/Generic/Chart/meta.json -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Generic/Chart/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Plot/Generic/Chart/ui.html -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Generic/Chart/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Generic/Trace/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Plot/Generic/Trace/code.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Generic/Trace/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Plot/Generic/Trace/meta.json -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Generic/Trace/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Plot/Generic/Trace/ui.html -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Generic/Trace/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Pyplot/Pyplot demo/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Plot/Pyplot/Pyplot demo/code.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Pyplot/Pyplot demo/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Plot/Pyplot/Pyplot demo/meta.json -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Pyplot/Pyplot demo/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Plot/Pyplot/Pyplot demo/ui.html -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Pyplot/Pyplot demo/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Scatter/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Plot/Scatter/meta.json -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Scatter/reedme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Plot/Scatter/reedme.txt -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Scatter/script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Scatter/simple_plot_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Plot/Scatter/simple_plot_logic.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Scatter/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Plot/Scatter/ui.html -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Statistics/Histogram/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Plot/Statistics/Histogram/code.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Statistics/Histogram/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Plot/Statistics/Histogram/ui.html -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Statistics/Histogram/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Statistics/Pair Plot/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Plot/Statistics/Pair Plot/code.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Statistics/Pair Plot/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Plot/Statistics/Pair Plot/ui.html -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Plot/Statistics/Pair Plot/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Signal Analysis/Change Detection/Mean Change Point Detection/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Signal Analysis/Change Detection/Segment Signal/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Signal Analysis/Convolution/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Signal Analysis/Filter/Exponential smoothing/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Signal Analysis/Filter/Gaussian Filter/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Signal Analysis/Filter/Hample Filter/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Signal Analysis/Filter/Savitzky-Golay Filter/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Signal Analysis/Filter/Wiener Filter/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Signal Analysis/Filter/Window functions/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Signal Analysis/Noise/White Noise/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Signal Analysis/Pad/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Signal Analysis/Pad/code.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Signal Analysis/Pad/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Signal Analysis/Pad/meta.json -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Signal Analysis/Pad/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Signal Analysis/Pad/ui.html -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Signal Analysis/Pad/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Signal Analysis/Regression/Piecewise Linearization/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Signal Analysis/Regression/Polynomial fit/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Signal Analysis/Regression/Spline/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Signal Analysis/Signal Correlation/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Signal Analysis/Spectral Analysis/Fourier Transform/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Signal Analysis/Spectral Analysis/Inverse Real Fourier Transform/ui.html: -------------------------------------------------------------------------------- 1 | Inverse 2 |
3 | Real Fourier Transform -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Signal Analysis/Spectral Analysis/Inverse Real Fourier Transform/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Stats/Approximations/Approximate Normal/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Stats/PDF/Normal/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Stats/PDF/Normal/code.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Stats/PDF/Normal/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Stats/PDF/Normal/meta.json -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Stats/PDF/Normal/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Stats/PDF/Normal/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Stats/PDF/Normal/ui.html -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Stats/Samplers/Beta Distribution Sampler/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Stats/Samplers/Normal Sampler/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Stats/Samplers/Triangular Sampler/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Stats/Samplers/Uniform Sampler/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Vector Manipulation/Bins/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Vector Manipulation/Bins/code.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Vector Manipulation/Bins/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Vector Manipulation/Bins/meta.json -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Vector Manipulation/Bins/ui.html: -------------------------------------------------------------------------------- 1 | Bin Values -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Vector Manipulation/Bins/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Vector Manipulation/Map/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Vector Manipulation/Map/code.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Vector Manipulation/Map/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/core/Vector Manipulation/Map/meta.json -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Vector Manipulation/Map/ui.html: -------------------------------------------------------------------------------- 1 | Map -------------------------------------------------------------------------------- /server/PyWeaver/lib/core/Vector Manipulation/Map/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/local/Shell/PI Series/PI Series/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/local/Shell/PI Series/PI Series/code.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/local/Shell/PI Series/PI Series/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/local/Shell/PI Series/PI Series/ui.html -------------------------------------------------------------------------------- /server/PyWeaver/lib/local/Shell/PI Series/PI Series/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/local/Shell/PI Series/PI Series_1/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/local/Shell/PI Series/PI Series_2/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/lib/local/Shell/PI Series/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/local/Shell/PI Series/code.py -------------------------------------------------------------------------------- /server/PyWeaver/lib/local/Shell/PI Series/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/lib/local/Shell/PI Series/ui.html -------------------------------------------------------------------------------- /server/PyWeaver/lib/local/Shell/PI Series/ui_script.js: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/PyWeaver/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/main.py -------------------------------------------------------------------------------- /server/PyWeaver/model_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/model_manager.py -------------------------------------------------------------------------------- /server/PyWeaver/refactor_magic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/refactor_magic.py -------------------------------------------------------------------------------- /server/PyWeaver/results_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/PyWeaver/results_encoder.py -------------------------------------------------------------------------------- /server/test/.cache/v/cache/lastfailed: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/test/code_parse_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/test/code_parse_test.py -------------------------------------------------------------------------------- /server/test/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/test/context.py -------------------------------------------------------------------------------- /server/test/main_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/test/main_test.py -------------------------------------------------------------------------------- /server/test/res/test_1.py: -------------------------------------------------------------------------------- 1 | def f(): 2 | pass -------------------------------------------------------------------------------- /server/test/res/test_2.py: -------------------------------------------------------------------------------- 1 | def f(x = None): 2 | pass -------------------------------------------------------------------------------- /server/test/res/test_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleskovar/PyWeaver/HEAD/server/test/res/test_3.py --------------------------------------------------------------------------------