-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Puppet Node Graph json method #221
Comments
jpogran
added a commit
to jpogran/puppet-editor-services
that referenced
this issue
Mar 11, 2020
This commit changes the Node Graph method to return a json data hash instead of a dot graph to support puppetlabs/puppet-vscode#613
jpogran
added a commit
to jpogran/puppet-editor-services
that referenced
this issue
Mar 11, 2020
This commit changes the Node Graph method to return a json data hash instead of a dot graph to support puppetlabs/puppet-vscode#613
jpogran
added a commit
to jpogran/puppet-editor-services
that referenced
this issue
Mar 18, 2020
This removes the dot graph implementation and replaces it with a json data hash implementation. This is used by the newer client implementation using the cytoscape library.
jpogran
added a commit
to jpogran/puppet-editor-services
that referenced
this issue
Mar 18, 2020
This removes the dot graph implementation and replaces it with a json data hash implementation. This is used by the newer client implementation using the cytoscape library.
jpogran
added a commit
to jpogran/puppet-editor-services
that referenced
this issue
Mar 18, 2020
This removes the dot graph implementation and replaces it with a json data hash implementation. This is used by the newer client implementation using the cytoscape library.
glennsarti
added a commit
to glennsarti/puppet-editor-services
that referenced
this issue
Mar 20, 2020
Previously the NodeGraph response was entirely DOT language centric however the LSP should really be returning structured data which the client can deal with as it is trivial to convert it to DOT file, or whatever the visualisation library requires. This commit: * Changes the response object to GraphResponse which has an edges and vertices array of hashes. * Updates all of the the puppet_compilenodegraph LSP method to use the new GraphResponse type. * Updates all of the tests for the new response object type.
3 tasks
jpogran
added a commit
to jpogran/puppet-editor-services
that referenced
this issue
Mar 25, 2020
This removes the dot graph implementation and replaces it with an object that contains all the edges and vertices from the compiled node graph. This is used by the newer client implementation using the cytoscape library.
jpogran
added a commit
to jpogran/puppet-editor-services
that referenced
this issue
Mar 25, 2020
This removes the dot graph implementation and replaces it with an object that contains all the edges and vertices from the compiled node graph. This is used by the newer client implementation using the cytoscape library.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To support puppetlabs/puppet-vscode#613, the node graph method needs to return json instead of dot graphs
The text was updated successfully, but these errors were encountered: