-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from nitmir/dev
Update to version 1.2.0 v1.2.0 - 2020-07-05 =================== Added ----- * Bootstrap 4 templates * Support for Django 2.2 and 3.0 Fixes ----- * Replace calls to add_description_unit. As of Sphinx 2.4, the deprecated add_description_unit function has been removed. * Fix CRYPT-DES hash method for LDAP * Fix various spelling miskate in README.rst * Service URL: keep blank GET arguments Changed ------- * Use python3 for flake8, check_rst and coverage * Update README.rst quickstart for using python3 by default Removed ------- * Drop support for Django 2.0 and 2.1 as it reached end of life. We still keep Django 1.11 as it is the last supported release by python2 AND the currently packaged version of Django in Debian Buster (current stable).
- Loading branch information
Showing
34 changed files
with
538 additions
and
163 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
File renamed without changes.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,34 @@ | ||
html, body { | ||
height: 100%; | ||
background-color: #eee; | ||
} | ||
.cover-container { | ||
max-width: 50em; | ||
} | ||
|
||
/* Page title */ | ||
#app-name { | ||
color: #000; | ||
text-shadow: 0 .05rem .2rem rgba(255, 255, 255, .5); | ||
} | ||
#app-name img { | ||
width: 110px; | ||
margin-right: 1rem; | ||
} | ||
@media screen and (max-width: 680px) { | ||
#app-name img { | ||
display: block; | ||
margin: auto; | ||
} | ||
} | ||
|
||
/* Add icons to login form */ | ||
/* Font-Awesome attribution is already done inside SVG files */ | ||
.form-signin input[type="text"] { | ||
background: right 1rem top 50% / 5% no-repeat url('fa-user.svg'); | ||
padding-right: 3rem; | ||
} | ||
.form-signin input[type="password"] { | ||
background: right 1rem top 50% / 5% no-repeat url('fa-lock.svg'); | ||
padding-right: 3rem; | ||
} |
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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
cas_server/templates/cas_server/logged.html → ...rver/templates/cas_server/bs3/logged.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
2 changes: 1 addition & 1 deletion
2
cas_server/templates/cas_server/logout.html → ...rver/templates/cas_server/bs3/logout.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
4 changes: 2 additions & 2 deletions
4
cas_server/templates/cas_server/warn.html → ...server/templates/cas_server/bs3/warn.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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{% extends "cas_server/base.html" %} | ||
{% extends "cas_server/bs3/base.html" %} | ||
{% load static %} | ||
{% load i18n %} | ||
|
||
{% block content %} | ||
<form class="form-signin" method="post"> | ||
{% csrf_token %} | ||
{% include "cas_server/form.html" %} | ||
{% include "cas_server/bs3/form.html" %} | ||
<button class="btn btn-primary btn-block btn-lg" type="submit">{% trans "Connect to the service" %}</button> | ||
</form> | ||
{% endblock %} |
Oops, something went wrong.