Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
django-cas-server
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Samir
django-cas-server
Commits
99096990
Commit
99096990
authored
Jul 03, 2016
by
Valentin Samir
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update sime legal headers
parent
8e5b75e0
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
45 additions
and
11 deletions
+45
-11
cas_server/auth.py
cas_server/auth.py
+1
-1
cas_server/cas.py
cas_server/cas.py
+1
-0
cas_server/default_settings.py
cas_server/default_settings.py
+2
-2
cas_server/federate.py
cas_server/federate.py
+1
-1
cas_server/management/commands/cas_clean_federate.py
cas_server/management/commands/cas_clean_federate.py
+11
-0
cas_server/management/commands/cas_clean_sessions.py
cas_server/management/commands/cas_clean_sessions.py
+11
-0
cas_server/management/commands/cas_clean_tickets.py
cas_server/management/commands/cas_clean_tickets.py
+11
-0
cas_server/models.py
cas_server/models.py
+1
-1
cas_server/tests/mixin.py
cas_server/tests/mixin.py
+1
-1
cas_server/tests/test_models.py
cas_server/tests/test_models.py
+1
-1
cas_server/tests/test_utils.py
cas_server/tests/test_utils.py
+1
-1
cas_server/tests/utils.py
cas_server/tests/utils.py
+1
-1
cas_server/urls.py
cas_server/urls.py
+1
-1
cas_server/views.py
cas_server/views.py
+1
-1
No files found.
cas_server/auth.py
View file @
99096990
#
⁻
*- coding: utf-8 -*-
#
-
*- coding: utf-8 -*-
# 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 General Public License version 3 for
...
...
cas_server/cas.py
View file @
99096990
...
...
@@ -20,6 +20,7 @@
# This file is originated from https://github.com/python-cas/python-cas
# at commit ec1f2d4779625229398547b9234d0e9e874a2c9a
# some modifications have been made to be unicode coherent between python2 and python2
import
six
from
six.moves.urllib
import
parse
as
urllib_parse
...
...
cas_server/default_settings.py
View file @
99096990
#
⁻
*- coding: utf-8 -*-
#
-
*- coding: utf-8 -*-
# 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 General Public License version 3 for
...
...
@@ -8,7 +8,7 @@
# along with this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# (c) 2015 Valentin Samir
# (c) 2015
-2016
Valentin Samir
"""Default values for the app's settings"""
from
django.conf
import
settings
from
django.contrib.staticfiles.templatetags.staticfiles
import
static
...
...
cas_server/federate.py
View file @
99096990
...
...
@@ -8,7 +8,7 @@
# along with this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# (c) 201
5
Valentin Samir
# (c) 201
6
Valentin Samir
"""federated mode helper classes"""
from
.default_settings
import
settings
...
...
cas_server/management/commands/cas_clean_federate.py
View file @
99096990
# -*- coding: utf-8 -*-
# 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 General Public License version 3 for
# more details.
#
# You should have received a copy of the GNU General Public License version 3
# along with this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# (c) 2016 Valentin Samir
from
django.core.management.base
import
BaseCommand
from
django.utils.translation
import
ugettext_lazy
as
_
...
...
cas_server/management/commands/cas_clean_sessions.py
View file @
99096990
# -*- coding: utf-8 -*-
# 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 General Public License version 3 for
# more details.
#
# You should have received a copy of the GNU General Public License version 3
# along with this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# (c) 2016 Valentin Samir
"""Clean deleted sessions management command"""
from
django.core.management.base
import
BaseCommand
from
django.utils.translation
import
ugettext_lazy
as
_
...
...
cas_server/management/commands/cas_clean_tickets.py
View file @
99096990
# -*- coding: utf-8 -*-
# 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 General Public License version 3 for
# more details.
#
# You should have received a copy of the GNU General Public License version 3
# along with this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# (c) 2016 Valentin Samir
"""Clean old trickets management command"""
from
django.core.management.base
import
BaseCommand
from
django.utils.translation
import
ugettext_lazy
as
_
...
...
cas_server/models.py
View file @
99096990
#
⁻
*- coding: utf-8 -*-
#
-
*- coding: utf-8 -*-
# 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 General Public License version 3 for
...
...
cas_server/tests/mixin.py
View file @
99096990
#
⁻
*- coding: utf-8 -*-
#
-
*- coding: utf-8 -*-
# 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 General Public License version 3 for
...
...
cas_server/tests/test_models.py
View file @
99096990
#
⁻
*- coding: utf-8 -*-
#
-
*- coding: utf-8 -*-
# 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 General Public License version 3 for
...
...
cas_server/tests/test_utils.py
View file @
99096990
#
⁻
*- coding: utf-8 -*-
#
-
*- coding: utf-8 -*-
# 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 General Public License version 3 for
...
...
cas_server/tests/utils.py
View file @
99096990
#
⁻
*- coding: utf-8 -*-
#
-
*- coding: utf-8 -*-
# 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 General Public License version 3 for
...
...
cas_server/urls.py
View file @
99096990
#
⁻
*- coding: utf-8 -*-
#
-
*- coding: utf-8 -*-
# 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 General Public License version 3 for
...
...
cas_server/views.py
View file @
99096990
#
⁻
*- coding: utf-8 -*-
#
-
*- coding: utf-8 -*-
# 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 General Public License version 3 for
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment