From a9e6d1131a1e17a836a7f7ef7cf9d1b11df7c58b Mon Sep 17 00:00:00 2001 From: Matthias Heinzel Date: Mon, 13 Apr 2020 11:27:23 +0200 Subject: [PATCH] Fix links (#1966) * README: fix broken links * fix references to tests.html The file was moved in e7aed050b4583181dd19ec23cdb57912ebf39c8d --- README.md | 6 +++--- docs/source/testing.rst | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index cccc0642b..cff9bd582 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ In embedded mode, Converse can be embedded into an element in the DOM. - vCard support [XEP 54](https://xmpp.org/extensions/xep-0054.html) - Service discovery [XEP 30](https://xmpp.org/extensions/xep-0030.html) - In-band registration [XEP 77](https://xmpp.org/extensions/xep-0077.html) -- Roster item exchange [XEP 144](https://xmpp.org/extensions/tmp/xep-0144-1.1.html) +- Roster item exchange [XEP 144](https://xmpp.org/extensions/xep-0144.html) - Chat statuses (online, busy, away, offline) - Typing and state notifications [XEP 85](https://xmpp.org/extensions/xep-0085.html) - File sharing / HTTP File Upload [XEP 363](https://xmpp.org/extensions/xep-0363.html) @@ -71,7 +71,7 @@ In embedded mode, Converse can be embedded into an element in the DOM. - Hidden Messages (aka Spoilers) [XEP 382](https://xmpp.org/extensions/xep-0382.html) - Client state indication [XEP 352](https://xmpp.org/extensions/xep-0352.html) - Last Message Correction [XEP 308](https://xmpp.org/extensions/xep-0308.html) -- OMEMO encrypted messaging [XEP 384](https://xmpp.org/extensions/xep-0384.html") +- OMEMO encrypted messaging [XEP 384](https://xmpp.org/extensions/xep-0384.html) - Anonymous logins, see the [anonymous login demo](https://conversejs.org/demo/anonymous.html) - Message Retractions [XEP-424](https://xmpp.org/extensions/xep-0424.html) - Message Moderation [XEP-425](https://xmpp.org/extensions/xep-0425.html) @@ -96,7 +96,7 @@ In embedded mode, Converse can be embedded into an element in the DOM. We use behavior-driven tests written with [jasmine.js](https://jasmine.github.io/). -Open [tests.html](https://github.com/conversejs/converse.js/blob/master/tests.html) in your browser, and the tests will run automatically. +Open [tests/index.html](https://github.com/conversejs/converse.js/blob/master/tests/index.html) in your browser, and the tests will run automatically. ## Licence diff --git a/docs/source/testing.rst b/docs/source/testing.rst index 917e84356..e6b5fe1d9 100644 --- a/docs/source/testing.rst +++ b/docs/source/testing.rst @@ -10,8 +10,8 @@ headless. Adding tests for your bugfix or feature ---------------------------------------- -Take a look at `tests.html `_ -and the `spec files `_ +Take a look at `tests/index.html `_ +and the `spec files `_ to see how tests are implemented. Running tests @@ -21,4 +21,4 @@ Check that all tests complete sucessfully. Run ``make check`` in your terminal. -To run the tests manually, run ``make serve`` and then open `http://localhost:8000/tests `_ in your browser. +To run the tests manually, run ``make serve`` and then open `http://localhost:8000/tests `_ in your browser.