Skip to content
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

Several improvements to generator-sprotty, fixed links #388

Merged
merged 1 commit into from
Oct 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ This project is governed by the [Eclipse Community Code of Conduct](https://gith

The following communication channels are available:

* [GitHub issues](https://github.com/eclipse/sprotty/issues) - for bug reports, feature requests, etc.
* [GitHub issues](https://github.com/eclipse-sprotty/sprotty/issues) - for bug reports, feature requests, etc.
* [Eclipse community forum](https://www.eclipse.org/forums/index.php/f/443/) - for questions
* [Gitter chat](https://gitter.im/eclipse/sprotty) - for questions and project-related discussion
* [Developer mailing list](https://accounts.eclipse.org/mailing-list/sprotty-dev) - for organizational issues (e.g. elections of new committers)

In case you have a question, please look into the [documentation in the Wiki](https://github.com/eclipse/sprotty/wiki) first. If you don't find any answer there, feel free to use the chat, forum or issues to get help.
In case you have a question, please look into the [documentation](https://sprotty.org/docs/) first. If you don't find any answer there, feel free to use the chat, forum or issues to get help.

## How to Contribute

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![Sprotty](./sprotty-logo-500px.png)

[![Gitpod - Code Now](https://img.shields.io/badge/Gitpod-code%20now-blue.svg?longCache=true)](https://gitpod.io#https://github.com/eclipse/sprotty)
[![Gitpod - Code Now](https://img.shields.io/badge/Gitpod-code%20now-blue.svg?longCache=true)](https://gitpod.io#https://github.com/eclipse-sprotty/sprotty)
[![Join the chat at https://gitter.im/eclipse/sprotty](https://badges.gitter.im/eclipse/sprotty.svg)](https://gitter.im/eclipse/sprotty?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

This is the client part of _Sprotty_, a next-generation, open-source diagramming framework built with web technologies.
Expand All @@ -26,16 +26,16 @@ Some selected features:

The Sprotty project spans across four GitHub repositories.

* [sprotty](https://github.com/eclipse/sprotty) (this repository) contains the client code (`sprotty`), shared code for Node.js servers (`sprotty-protocol`), ELK layout integration (`sprotty-elk`) and examples.
* [sprotty-server](https://github.com/eclipse/sprotty-server) contains server code for Java and includes server-side diagram layout, the extension of the Language Server Protocol, and the integration with the Xtext framework.
* [sprotty-theia](https://github.com/eclipse/sprotty-theia) contains the glue code to integrate Sprotty views in the Theia IDE.
* [sprotty-vscode](https://github.com/eclipse/sprotty-vscode) contains the glue code to integrate Sprotty views in VS Code.
* [sprotty](https://github.com/eclipse-sprotty/sprotty) (this repository) contains the client code (`sprotty`), shared code for Node.js servers (`sprotty-protocol`), ELK layout integration (`sprotty-elk`) and examples.
* [sprotty-server](https://github.com/eclipse-sprotty/sprotty-server) contains server code for Java and includes server-side diagram layout, the extension of the Language Server Protocol, and the integration with the Xtext framework.
* [sprotty-theia](https://github.com/eclipse-sprotty/sprotty-theia) contains the glue code to integrate Sprotty views in the Theia IDE.
* [sprotty-vscode](https://github.com/eclipse-sprotty/sprotty-vscode) contains the glue code to integrate Sprotty views in VS Code.

The project is built on [ci.eclipse.org/sprotty](https://ci.eclipse.org/sprotty/).

## Docs

For further information please consult the [Wiki](https://github.com/eclipse/sprotty/wiki).
For further information please consult the [documentation on the website](https://sprotty.org/docs/).

The version history is documented in the [CHANGELOG](https://github.com/eclipse-sprotty/sprotty/blob/master/CHANGELOG.md). Changes are tracked seperately for each package.

Expand Down
2 changes: 1 addition & 1 deletion examples/circlegraph/circlegraph.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h1>Sprotty Circles Example</h1>
</p>
</div>
<div class="help col-md-2">
<a href='https://github.com/eclipse/sprotty/wiki/Using-sprotty'>Help</a>
<a href="https://sprotty.org/docs/user_interaction/">Help</a>
</div>
</div>
<div draggable="true" style="height: 70px; width: 70px;" ondragstart="dragstart(event)">
Expand Down
2 changes: 1 addition & 1 deletion examples/classdiagram/class-diagram.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<h1>Sprotty Class Diagram Example</h1>
</div>
<div class="help col-md-2">
<a href='https://github.com/eclipse/sprotty/wiki/Using-sprotty'>Help</a>
<a href="https://sprotty.org/docs/user_interaction/">Help</a>
</div>
</div>
<div class="row">
Expand Down
4 changes: 2 additions & 2 deletions examples/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<div class="row">
<div class="col-md-12">
<h1>Sprotty Examples</h1>
<a href="https://github.com/eclipse/sprotty">Sprotty</a> is a web-based diagramming framework.
For information how to use these examples see <a href="https://github.com/eclipse/sprotty/wiki/Using-sprotty">Using Sprotty</a>.
<a href="https://sprotty.org/">Sprotty</a> is a web-based diagramming framework.
For information how to use these examples see the <a href="https://sprotty.org/docs/user_interaction/">documentation</a>.

<h3>Without Server</h3>
The following examples run completely in the browser and do not require any additional component.
Expand Down
2 changes: 1 addition & 1 deletion examples/multicore/multicore.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<h1>Sprotty Multicore Example</h1>
</div>
<div class="help col-md-2">
<a href='https://github.com/eclipse/sprotty/wiki/Using-sprotty'>Help</a>
<a href="https://sprotty.org/docs/user_interaction/">Help</a>
</div>
</div>
<div class="row" id="sprotty-app" data-app="multicore">
Expand Down
2 changes: 1 addition & 1 deletion examples/random-graph-distributed/random-graph.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<h1>Sprotty Random Graph Example</h1>
</div>
<div class="help col-md-2">
<a href='https://github.com/eclipse/sprotty/wiki/Using-sprotty'>Help</a>
<a href="https://sprotty.org/docs/user_interaction/">Help</a>
</div>
</div>
<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion examples/random-graph/random-graph.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ <h1>Sprotty Random Graph Example</h1>
</p>
</div>
<div class="help col-md-2">
<a href='https://github.com/eclipse/sprotty/wiki/Using-sprotty'>Help</a>
<a href="https://sprotty.org/docs/user_interaction/">Help</a>
</div>
</div>
<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion examples/svg/svg-prerendered.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<h1>Sprotty Prerendered SVG / HTML Example</h1>
</div>
<div class="help col-md-2">
<a href='https://github.com/eclipse/sprotty/wiki/Using-sprotty'>Help</a>
<a href="https://sprotty.org/docs/user_interaction/">Help</a>
</div>
</div>
<div class="row">
Expand Down
Loading