diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e2f06dab..7d4747a6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,7 +6,7 @@ We are friendly so don't be afraid to ask questions. ## Bug reports Before reporting an issue: -* check our community website over at http://community.gns3.com +* check our website over at https://gns3.com * check if an issue already exists on https://github.com/GNS3/gns3-gui * check if an issue already exists on https://github.com/GNS3/gns3-server diff --git a/docs/index.rst b/docs/index.rst index 4f12a125..5c8665ba 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -2,8 +2,8 @@ Welcome to API documentation! ====================================== .. WARNING:: - The API is not stable, feel free to send comment on GNS3 Jungle - https://community.gns3.com/ + The API is not stable, feel free to post comments on our website + https://gns3.com/ .. toctree:: general diff --git a/gns3server/templates/index.html b/gns3server/templates/index.html index aa0e14f5..2808ae87 100644 --- a/gns3server/templates/index.html +++ b/gns3server/templates/index.html @@ -4,7 +4,7 @@ Welcome to GNS 3. diff --git a/tests/handlers/test_index.py b/tests/handlers/test_index.py index 1fc19243..e4575f83 100644 --- a/tests/handlers/test_index.py +++ b/tests/handlers/test_index.py @@ -27,5 +27,5 @@ def test_index(server): response = server.get('/', api_version=None) assert response.status == 200 html = response.html - assert "Community" in html + assert "Website" in html assert __version__ in html