Browse Source

Merge pull request #6040 from nextcloud/revert-5936-fix/5935/fix-documentation-links

Revert "fix links to documentation"
pull/6088/head
Daniel Calviño Sánchez 4 years ago
committed by GitHub
parent
commit
fbd4dadda2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lib/Controller/SignalingController.php
  2. 2
      src/components/AdminSettings/Commands.vue
  3. 2
      src/components/AdminSettings/MatterbridgeIntegration.vue
  4. 2
      src/components/AdminSettings/TurnServers.vue
  5. 2
      src/utils/webrtc/webrtc.js

2
lib/Controller/SignalingController.php

@ -455,7 +455,7 @@ class SignalingController extends OCSController {
* servers.
*
* See sections "Backend validation" in
* https://nextcloud-talk.readthedocs.io/en/latest/standalone-signaling-api-v1.html#backend-validation
* https://nextcloud-talk.readthedocs.io/en/latest/standalone-signaling-api-v1/#backend-validation
*
* @PublicPage
*

2
src/components/AdminSettings/Commands.vue

@ -73,7 +73,7 @@ export default {
computed: {
commandHint() {
return t('spreed', 'Commands are a new beta feature in Nextcloud Talk. They allow you to run scripts on your Nextcloud server. You can define them with our command line interface. An example of a calculator script can be found in our {linkstart}documentation{linkend}.')
.replace('{linkstart}', '<a target="_blank" rel="noreferrer nofollow" class="external" href="https://nextcloud-talk.readthedocs.io/en/latest/commands.html">')
.replace('{linkstart}', '<a target="_blank" rel="noreferrer nofollow" class="external" href="https://nextcloud-talk.readthedocs.io/en/latest/commands/">')
.replace('{linkend}', ' ↗</a>')
},
},

2
src/components/AdminSettings/MatterbridgeIntegration.vue

@ -115,7 +115,7 @@ export default {
},
customBinaryText() {
return t('spreed', 'You can also set the path to the Matterbridge binary manually via the config. Check the {linkstart}Matterbridge integration documentation{linkend} for more information.')
.replace('{linkstart}', '<a target="_blank" rel="noreferrer nofollow" class="external" href="https://nextcloud-talk.readthedocs.io/en/latest/matterbridge.html">')
.replace('{linkstart}', '<a target="_blank" rel="noreferrer nofollow" class="external" href="https://nextcloud-talk.readthedocs.io/en/latest/matterbridge/">')
.replace(/{linkend}/g, ' ↗</a>')
},
},

2
src/components/AdminSettings/TurnServers.vue

@ -85,7 +85,7 @@ export default {
computed: {
documentationHint() {
return t('spreed', 'A TURN server is used to proxy the traffic from participants behind a firewall. If individual participants cannot connect to others a TURN server is most likely required. See {linkstart}this documentation{linkend} for setup instructions.')
.replace('{linkstart}', '<a target="_blank" rel="noreferrer nofollow" class="external" href="https://nextcloud-talk.readthedocs.io/en/latest/TURN.html">')
.replace('{linkstart}', '<a target="_blank" rel="noreferrer nofollow" class="external" href="https://nextcloud-talk.readthedocs.io/en/latest/TURN/">')
.replace('{linkend}', ' ↗</a>')
},
},

2
src/utils/webrtc/webrtc.js

@ -657,7 +657,7 @@ export default function initWebRtc(signaling, _callParticipantCollection, _local
if (!showedTURNWarning && !signaling.settings.turnservers.length) {
showError(
t('spreed', 'Could not establish a connection with at least one participant. A TURN server might be needed for your scenario. Please ask your administrator to set one up following {linkstart}this documentation{linkend}.')
.replace('{linkstart}', '<a target="_blank" rel="noreferrer nofollow" class="external" href="https://nextcloud-talk.readthedocs.io/en/latest/TURN.html">')
.replace('{linkstart}', '<a target="_blank" rel="noreferrer nofollow" class="external" href="https://nextcloud-talk.readthedocs.io/en/latest/TURN/">')
.replace('{linkend}', ' ↗</a>'),
{
timeout: TOAST_PERMANENT_TIMEOUT,

Loading…
Cancel
Save