This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Synapse 1.21.0rc2 (2020-10-02) ============================== Features -------- - Convert additional templates from inline HTML to Jinja2 templates. ([\#8444](#8444)) Bugfixes -------- - Fix a regression in v1.21.0rc1 which broke thumbnails of remote media. ([\#8438](#8438)) - Do not expose the experimental `uk.half-shot.msc2778.login.application_service` flow in the login API, which caused a compatibility problem with Element iOS. ([\#8440](#8440)) - Fix malformed log line in new federation "catch up" logic. ([\#8442](#8442)) - Fix DB query on startup for negative streams which caused long start up times. Introduced in [\#8374](#8374). ([\#8447](#8447))
- Loading branch information
Showing
14 changed files
with
163 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<html> | ||
<head> | ||
<title>Success!</title> | ||
<meta name='viewport' content='width=device-width, initial-scale=1, | ||
user-scalable=no, minimum-scale=1.0, maximum-scale=1.0'> | ||
<link rel="stylesheet" href="/_matrix/static/client/register/style.css"> | ||
<script> | ||
if (window.onAuthDone) { | ||
window.onAuthDone(); | ||
} else if (window.opener && window.opener.postMessage) { | ||
window.opener.postMessage("authDone", "*"); | ||
} | ||
</script> | ||
</head> | ||
<body> | ||
<div> | ||
<p>Thank you</p> | ||
<p>You may now close this window and return to the application</p> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<html> | ||
<head> | ||
<title>Authentication</title> | ||
<meta name='viewport' content='width=device-width, initial-scale=1, | ||
user-scalable=no, minimum-scale=1.0, maximum-scale=1.0'> | ||
<script src="https://www.recaptcha.net/recaptcha/api.js" | ||
async defer></script> | ||
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script> | ||
<link rel="stylesheet" href="/_matrix/static/client/register/style.css"> | ||
<script> | ||
function captchaDone() { | ||
$('#registrationForm').submit(); | ||
} | ||
</script> | ||
</head> | ||
<body> | ||
<form id="registrationForm" method="post" action="{{ myurl }}"> | ||
<div> | ||
<p> | ||
Hello! We need to prevent computer programs and other automated | ||
things from creating accounts on this server. | ||
</p> | ||
<p> | ||
Please verify that you're not a robot. | ||
</p> | ||
<input type="hidden" name="session" value="{{ session }}" /> | ||
<div class="g-recaptcha" | ||
data-sitekey="{{ sitekey }}" | ||
data-callback="captchaDone"> | ||
</div> | ||
<noscript> | ||
<input type="submit" value="All Done" /> | ||
</noscript> | ||
</div> | ||
</div> | ||
</form> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<html> | ||
<head> | ||
<title>Authentication</title> | ||
<meta name='viewport' content='width=device-width, initial-scale=1, | ||
user-scalable=no, minimum-scale=1.0, maximum-scale=1.0'> | ||
<link rel="stylesheet" href="/_matrix/static/client/register/style.css"> | ||
</head> | ||
<body> | ||
<form id="registrationForm" method="post" action="{{ myurl }}"> | ||
<div> | ||
<p> | ||
Please click the button below if you agree to the | ||
<a href="{{ terms_url }}">privacy policy of this homeserver.</a> | ||
</p> | ||
<input type="hidden" name="session" value="{{ session }}" /> | ||
<input type="submit" value="Agree" /> | ||
</div> | ||
</form> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.