fixup! Review all href usages of target="_blank"

Some badly written lines (`target= "_blank"`, notice the space) were
missed by the precious commit.
pull/707/head
Juan Navarro 2022-03-08 16:12:15 +01:00
parent 25bcc2cefc
commit a8de57addd
3 changed files with 47 additions and 45 deletions

View File

@ -66,9 +66,10 @@ public class Connection {
* Returns the status of the Connection. Can be: * Returns the status of the Connection. Can be:
* <ul> * <ul>
* <li><code>pending</code>: if the Connection is waiting for any user to use * <li><code>pending</code>: if the Connection is waiting for any user to use
* its internal token to connect to the session, calling method <a href= * its internal token to connect to the session, calling method
* "https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Session.html#connect" * <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Session.html#connect">
* target ="_blank">Session.connect</a> in OpenVidu Browser.</li> * Session.connect
* </a> in OpenVidu Browser.</li>
* <li><code>active</code>: if the internal token of the Connection has already * <li><code>active</code>: if the internal token of the Connection has already
* been used by some user to connect to the session, and it cannot be used * been used by some user to connect to the session, and it cannot be used
* again.</li> * again.</li>
@ -249,9 +250,10 @@ public class Connection {
/** /**
* Returns the data associated to the connection on the client-side. This value * Returns the data associated to the connection on the client-side. This value
* is set with second parameter of method <a href= * is set with second parameter of method
* "https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Session.html#connect" * <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Session.html#connect">
* target ="_blank">Session.connect</a> in OpenVidu Browser * Session.connect
* </a> in OpenVidu Browser
*/ */
public String getClientData() { public String getClientData() {
return clientData; return clientData;

View File

@ -45,13 +45,14 @@ public class Publisher {
} }
/** /**
* Returns the unique identifier of the <a href= * Returns the unique identifier of the
* "https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html" * <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html">
* target= "_blank">Stream</a> associated to this Publisher. Each Publisher is * Stream
* </a> associated to this Publisher. Each Publisher is
* paired with only one Stream, so you can identify each Publisher by its * paired with only one Stream, so you can identify each Publisher by its
* <a href= * <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html#streamId">
* "https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html#streamId" * <code>Stream.streamId</code>
* target= "_blank"><code>Stream.streamId</code></a> * </a>
*/ */
public String getStreamId() { public String getStreamId() {
return streamId; return streamId;
@ -66,70 +67,69 @@ public class Publisher {
} }
/** /**
* See properties of <a href= * See properties of <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html">
* "https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html" * Stream
* target= "_blank">Stream</a> object in OpenVidu Browser library to find out * </a> object in OpenVidu Browser library to find out more
* more
*/ */
public boolean hasVideo() { public boolean hasVideo() {
return this.hasVideo; return this.hasVideo;
} }
/** /**
* See properties of <a href= * See properties of
* "https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html" * <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html">
* target= "_blank">Stream</a> object in OpenVidu Browser library to find out * Stream
* more * </a> object in OpenVidu Browser library to find out more
*/ */
public boolean hasAudio() { public boolean hasAudio() {
return this.hasAudio; return this.hasAudio;
} }
/** /**
* See properties of <a href= * See properties of
* "https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html" * <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html">
* target= "_blank">Stream</a> object in OpenVidu Browser library to find out * Stream
* more * </a> object in OpenVidu Browser library to find out more
*/ */
public Boolean isAudioActive() { public Boolean isAudioActive() {
return this.audioActive; return this.audioActive;
} }
/** /**
* See properties of <a href= * See properties of
* "https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html" * <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html">
* target= "_blank">Stream</a> object in OpenVidu Browser library to find out * Stream
* more * </a> object in OpenVidu Browser library to find out more
*/ */
public Boolean isVideoActive() { public Boolean isVideoActive() {
return this.videoActive; return this.videoActive;
} }
/** /**
* See properties of <a href= * See properties of
* "https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html" * <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html">
* target= "_blank">Stream</a> object in OpenVidu Browser library to find out * Stream
* more * </a> object in OpenVidu Browser library to find out more
*/ */
public Integer getFrameRate() { public Integer getFrameRate() {
return this.frameRate; return this.frameRate;
} }
/** /**
* See properties of <a href= * See properties of
* "https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html" * <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html">
* target= "_blank">Stream</a> object in OpenVidu Browser library to find out * Stream
* more * </a> object in OpenVidu Browser library to find out more
*/ */
public String getTypeOfVideo() { public String getTypeOfVideo() {
return this.typeOfVideo; return this.typeOfVideo;
} }
/** /**
* See properties of <a href= * See properties of
* "https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html" * <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/Stream.html">
* target= "_blank">Stream</a> object in OpenVidu Browser library to find out * Stream
* more * </a> object in OpenVidu Browser library to find out more
*/ */
public String getVideoDimensions() { public String getVideoDimensions() {
return this.videoDimensions; return this.videoDimensions;

View File

@ -81,7 +81,7 @@ public class Recording {
* specific session recording has ended. This module will remain up and running * specific session recording has ended. This module will remain up and running
* as long as the session remains active.<br> * as long as the session remains active.<br>
* <br> * <br>
* *
* <ul> * <ul>
* <li><strong>Pros vs COMPOSED</strong>: the process of starting the recording * <li><strong>Pros vs COMPOSED</strong>: the process of starting the recording
* will be noticeably faster. This can be very useful in use cases where a * will be noticeably faster. This can be very useful in use cases where a
@ -232,10 +232,10 @@ public class Recording {
/** /**
* URL of the recording. You can access the file from there. It is * URL of the recording. You can access the file from there. It is
* <code>null</code> until recording reaches "ready" or "failed" status. If * <code>null</code> until recording reaches "ready" or "failed" status. If
* <a href="https://docs.openvidu.io/en/stable/reference-docs/openvidu-config/" * <a href="https://docs.openvidu.io/en/stable/reference-docs/openvidu-config/">
* target= "_blank">OpenVidu Server configuration</a> property * OpenVidu Server configuration
* <code>OPENVIDU_RECORDING_PUBLIC_ACCESS</code> is false, this path will be * </a> property <code>OPENVIDU_RECORDING_PUBLIC_ACCESS</code> is false,
* secured with OpenVidu credentials * this path will be secured with OpenVidu credentials
*/ */
public String getUrl() { public String getUrl() {
return url; return url;