Commit Graph

7905 Commits

Author SHA1 Message Date
Joas Schilling cd5bc9b893
Improve URL detection
Signed-off-by: Joas Schilling <coding@schilljs.com>
2018-08-23 14:03:54 +02:00
Nextcloud bot 112719f457
[tx-robot] updated from transifex 2018-08-23 00:13:11 +00:00
Nextcloud bot ff3b132382
[tx-robot] updated from transifex 2018-08-22 00:12:24 +00:00
Nextcloud bot d3ab244b40
[tx-robot] updated from transifex 2018-08-21 00:12:31 +00:00
Morris Jobke 8d41d0066a
Merge pull request #10735 from nextcloud/forgotten-pass-fix-link
[stable13] Forgotten pass fix link
2018-08-20 14:47:03 +02:00
Nextcloud bot f2f723c7c8
[tx-robot] updated from transifex 2018-08-20 00:12:36 +00:00
Nextcloud bot ff8626f46e
[tx-robot] updated from transifex 2018-08-18 00:12:45 +00:00
John Molakvoæ (skjnldsv) c428c7c2bf
Do not bind reset password link if an url is set
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2018-08-17 17:07:43 +02:00
blizzz 853e55e31a
Merge pull request #10646 from nextcloud/fix-password-reset-stable13
[stable13] only warn about data lose on password reset if per-user keys are used
2018-08-15 19:08:11 +02:00
Nextcloud bot 294baf8e5d
[tx-robot] updated from transifex 2018-08-15 00:13:48 +00:00
Nextcloud bot 015c66b94f
[tx-robot] updated from transifex 2018-08-14 00:12:15 +00:00
Nextcloud bot 5327e3b4ce
[tx-robot] updated from transifex 2018-08-13 00:12:18 +00:00
Nextcloud bot 7ed7c8e37a
[tx-robot] updated from transifex 2018-08-11 00:12:39 +00:00
Bjoern Schiessle 9665637cd8
only warn about data lose on password reset if per-user keys are used
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
2018-08-10 16:54:55 +02:00
Nextcloud bot 93df97f1bf
[tx-robot] updated from transifex 2018-08-10 00:12:36 +00:00
Nextcloud bot a5985ad0f4
[tx-robot] updated from transifex 2018-08-08 00:13:28 +00:00
Nextcloud bot f6c8668a7e
[tx-robot] updated from transifex 2018-08-07 00:12:15 +00:00
Nextcloud bot 8e0e5a6b28
[tx-robot] updated from transifex 2018-08-06 00:12:30 +00:00
Nextcloud bot 66d74f6e56
[tx-robot] updated from transifex 2018-08-05 00:12:38 +00:00
Nextcloud bot 69af30b883
[tx-robot] updated from transifex 2018-08-04 00:12:47 +00:00
Nextcloud bot b02d1c8358
[tx-robot] updated from transifex 2018-08-03 00:12:32 +00:00
Nextcloud bot ddd6c72b1f
[tx-robot] updated from transifex 2018-08-02 00:12:46 +00:00
Nextcloud bot 6e449f13cd
[tx-robot] updated from transifex 2018-08-01 00:12:09 +00:00
Nextcloud bot ab6741427b
[tx-robot] updated from transifex 2018-07-31 00:12:21 +00:00
Nextcloud bot 9ba794c067
[tx-robot] updated from transifex 2018-07-28 00:12:17 +00:00
Nextcloud bot 628a0434a5
[tx-robot] updated from transifex 2018-07-27 00:12:29 +00:00
Nextcloud bot 0802675f47
[tx-robot] updated from transifex 2018-07-26 00:12:13 +00:00
Nextcloud bot ca139a4a81
[tx-robot] updated from transifex 2018-07-25 00:12:44 +00:00
Nextcloud bot ad16affc9e
[tx-robot] updated from transifex 2018-07-24 00:12:13 +00:00
Nextcloud bot ab7b4d2597
[tx-robot] updated from transifex 2018-07-23 00:12:14 +00:00
Nextcloud bot ebe599df4d
[tx-robot] updated from transifex 2018-07-22 00:12:51 +00:00
Nextcloud bot ed989326fb
[tx-robot] updated from transifex 2018-07-21 00:12:12 +00:00
Nextcloud bot 98ffebe21e
[tx-robot] updated from transifex 2018-07-20 00:12:18 +00:00
Nextcloud bot bfd533b2f1
[tx-robot] updated from transifex 2018-07-19 00:12:14 +00:00
Nextcloud bot 86279015e8
[tx-robot] updated from transifex 2018-07-18 00:12:15 +00:00
Nextcloud bot 9a92629a94
[tx-robot] updated from transifex 2018-07-17 00:12:18 +00:00
Nextcloud bot 96463faaf1
[tx-robot] updated from transifex 2018-07-16 00:12:20 +00:00
Nextcloud bot 706ff0011f
[tx-robot] updated from transifex 2018-07-15 00:12:15 +00:00
Nextcloud bot 807662f0f1
[tx-robot] updated from transifex 2018-07-14 00:12:25 +00:00
Nextcloud bot 30dea9906a
[tx-robot] updated from transifex 2018-07-13 00:12:14 +00:00
Joas Schilling f879ea142d
Improve url detection in comments
Signed-off-by: Joas Schilling <coding@schilljs.com>
2018-07-11 16:40:16 +02:00
Morris Jobke cc09db6c5b
Merge pull request #10189 from nextcloud/backport/10020/email-address-misparsed-in-comments-and-chat
[stable13] Fix "parsing" of email-addresses in comments and chat messages
2018-07-11 11:41:32 +02:00
Joas Schilling 4e99dc2318
Fix "parsing" of email-addresses in comments and chat messages
\\b matches any non-word character, including \@ and \-
In order to not detect urls in the middle of email-addresses,
we need to check for white space characters and beginning of the
message instead.

Signed-off-by: Joas Schilling <coding@schilljs.com>
2018-07-11 09:51:59 +02:00
Joas Schilling 03a6b2b49a
Correctly handle users with numeric user ids
Signed-off-by: Joas Schilling <coding@schilljs.com>
2018-07-11 09:26:29 +02:00
Nextcloud bot ef1a695707
[tx-robot] updated from transifex 2018-07-11 00:12:24 +00:00
Nextcloud bot 7843a9b21a
[tx-robot] updated from transifex 2018-07-10 08:21:28 +00:00
Nextcloud bot 37063bc657
[tx-robot] updated from transifex 2018-06-29 00:12:27 +00:00
Nextcloud bot c4e79862c4
[tx-robot] updated from transifex 2018-06-27 00:12:10 +00:00
Nextcloud bot 257c7191b3
[tx-robot] updated from transifex 2018-06-26 00:12:27 +00:00
Nextcloud bot ea89600ca0
[tx-robot] updated from transifex 2018-06-25 00:12:07 +00:00