Browse Source
Only match http(s) URLs for references
Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/34322/head
Joas Schilling
3 years ago
No known key found for this signature in database
GPG Key ID: C400AAF20C1BB6FC
4 changed files with
5 additions and
5 deletions
-
core/src/OCP/comments.js
-
dist/core-main.js
-
dist/core-main.js.map
-
lib/public/IURLGenerator.php
|
|
|
@ -34,7 +34,7 @@ import $ from 'jquery' |
|
|
|
* |
|
|
|
* This is a copy of the backend regex in IURLGenerator, make sure to adjust both when changing |
|
|
|
*/ |
|
|
|
const urlRegex = /(\s|^)(https?:\/\/)?((?:[-A-Z0-9+_]+\.)+[-A-Z]+(?:\/[-A-Z0-9+&@#%?=~_|!:,.;()]*)*)(\s|$)/ig |
|
|
|
const urlRegex = /(\s|^)(https?:\/\/)((?:[-A-Z0-9+_]+\.)+[-A-Z]+(?:\/[-A-Z0-9+&@#%?=~_|!:,.;()]*)*)(\s|$)/ig |
|
|
|
|
|
|
|
/** |
|
|
|
* @param {any} content - |
|
|
|
|
|
|
|
@ -43,7 +43,7 @@ interface IURLGenerator { |
|
|
|
* |
|
|
|
* @since 25.0.0 |
|
|
|
*/ |
|
|
|
public const URL_REGEX = '/(\s|\n|^)(https?:\/\/)?((?:[-A-Z0-9+_]+\.)+[-A-Z]+(?:\/[-A-Z0-9+&@#%?=~_|!:,.;()]*)*)(\s|\n|$)/mi'; |
|
|
|
public const URL_REGEX = '/(\s|\n|^)(https?:\/\/)((?:[-A-Z0-9+_]+\.)+[-A-Z]+(?:\/[-A-Z0-9+&@#%?=~_|!:,.;()]*)*)(\s|\n|$)/mi'; |
|
|
|
|
|
|
|
/** |
|
|
|
* Returns the URL for a route |
|
|
|
|