misc: remove auth2_ssl module (#57209)

This commit is contained in:
Valentin Deniaud 2021-09-22 18:00:02 +02:00
parent 5ad1949b2d
commit bea7640b8e
7 changed files with 0 additions and 92 deletions

View File

@ -20,9 +20,6 @@ recursive-include src/authentic2/saml/templates *.html *.txt *.xml
recursive-include src/authentic2/idp/templates *.html *.txt *.xml
recursive-include src/authentic2_idp_cas/templates *.html *.txt *.xml
recursive-include src/authentic2/idp/saml/templates *.html *.txt *.xml
recursive-include src/authentic2/auth2_auth/auth2_ssl/templates *.html *.txt *.xml
recursive-include src/authentic2/auth2_auth/templates *.html *.txt *.xml
recursive-include src/authentic2/auth2_auth/auth2_oath/templates *.html *.txt *.xml
recursive-include src/authentic2_auth_fc/templates/authentic2_auth_fc *.html
recursive-include src/authentic2_auth_saml/templates/authentic2_auth_saml *.html
recursive-include src/authentic2_auth_saml/templates/mellon *.html
@ -35,8 +32,6 @@ recursive-include src/authentic2/saml/locale *.po *.mo
recursive-include src/authentic2/idp/locale *.po *.mo
recursive-include src/authentic2/idp/saml/locale *.po *.mo
recursive-include src/authentic2_idp_cas/locale *.po *.mo
recursive-include src/authentic2/auth2_auth/locale *.po *.mo
recursive-include src/authentic2/auth2_auth/auth2_ssl/locale *.po *.mo
recursive-include src/authentic2/attribute_aggregator/locale *.po *.mo
recursive-include src/authentic2/disco_service/locale *.po *.mo
recursive-include src/authentic2/custom_user/locale *.po *.mo
@ -55,7 +50,6 @@ recursive-include src/authentic2 README
include doc/*.rst
include doc/pictures/*
include COPYING NEWS README AUTHORS.txt
include src/authentic2/auth2_auth/auth2_ssl/authentic_ssl.vhost
include getlasso.sh
include getlasso3.sh
include src/authentic2/nonce/README.rst

View File

@ -1,20 +0,0 @@
# authentic2 - versatile identity manager
# Copyright (C) 2010-2019 Entr'ouvert
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
class Plugin:
def get_apps(self):
return [__name__]

View File

@ -1,27 +0,0 @@
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('auth', '0002_auto_20150323_1720'),
]
operations = [
migrations.CreateModel(
name='ClientCertificate',
fields=[
(
'id',
models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True),
),
('serial', models.CharField(max_length=255, blank=True)),
('subject_dn', models.CharField(max_length=255)),
('issuer_dn', models.CharField(max_length=255)),
('cert', models.TextField()),
('user', models.ForeignKey(to='auth.User', on_delete=models.CASCADE)),
],
options={},
bases=(models.Model,),
),
]

View File

@ -1,19 +0,0 @@
from django.conf import settings
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('auth2_ssl', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='clientcertificate',
name='user',
field=models.ForeignKey(to=settings.AUTH_USER_MODEL, on_delete=models.CASCADE),
preserve_default=True,
),
]

View File

@ -1,20 +0,0 @@
# Generated by Django 1.11.20 on 2019-06-14 12:38
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('auth2_ssl', '0002_auto_20150409_1840'),
]
operations = [
migrations.RemoveField(
model_name='clientcertificate',
name='user',
),
migrations.DeleteModel(
name='ClientCertificate',
),
]