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.
Merge commit '6a8fd03ac' into anoa/dinsic_release_1_21_x
* commit '6a8fd03ac': 1.21.0rc2 1.21.0rc2 Fix bug in remote thumbnail search (#8438) Fix DB query on startup for negative streams. (#8447) Convert additional templates to Jinja (#8444) Fix malformed log line in new federation "catch up" logic (#8442) Do not expose the experimental appservice login flow to clients. (#8440) update changelog fix a logging error in thumbnailer (#8435) changelog fixes fix version number
- Loading branch information
Showing
15 changed files
with
164 additions
and
147 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
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.