Skip to content

Commit f3917a4

Browse files
author
Roland Hedberg
committed
On Copyright statement in one place.
1 parent 5127e7e commit f3917a4

33 files changed

+84
-368
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2013 Roland Hedberg. All rights reserved.
1+
Copyright 2014 Roland Hedberg. All rights reserved.
22

33
Redistribution and use in source and binary forms, with or without modification, are
44
permitted provided that the following conditions are met:

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
# General information about the project.
4141
project = u'pysaml2'
42-
copyright = u'2010-2011, Roland Hedberg'
42+
copyright = u'2014, Roland Hedberg'
4343

4444
# The version info for the project you're documenting, acts as replacement for
4545
# |version| and |release|, also used in various other places throughout the

example/idp2/idp.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
logger = logging.getLogger("saml2.idp")
5252
logger.setLevel(logging.WARNING)
5353

54+
5455
class Cache(object):
5556
def __init__(self):
5657
self.user2uid = {}
@@ -879,6 +880,7 @@ def metadata(environ, start_response):
879880
logger.error("An error occured while creating metadata:" + ex.message)
880881
return not_found(environ, start_response)
881882

883+
882884
def staticfile(environ, start_response):
883885
try:
884886
path = args.path
@@ -893,6 +895,7 @@ def staticfile(environ, start_response):
893895
logger.error("An error occured while creating metadata:" + ex.message)
894896
return not_found(environ, start_response)
895897

898+
896899
def application(environ, start_response):
897900
"""
898901
The main WSGI application. Dispatch the current request to

example/idp2/templates/root.mako

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<%def name="post()" filter="trim">
1717
<div>
1818
<div class="footer">
19-
<p>&#169; Copyright 2011 Ume&#229; Universitet &nbsp;</p>
19+
<p>&#169; Copyright 2014 Ume&#229; Universitet &nbsp;</p>
2020
</div>
2121
</div>
2222
</%def>

example/idp2_repoze/templates/root.mako

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<%def name="post()" filter="trim">
1717
<div>
1818
<div class="footer">
19-
<p>&#169; Copyright 2011 Ume&#229; Universitet &nbsp;</p>
19+
<p>&#169; Copyright 2014 Ume&#229; Universitet &nbsp;</p>
2020
</div>
2121
</div>
2222
</%def>

setup.py

Lines changed: 4 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,10 @@
11
#!/usr/bin/env python
2-
#
3-
# Copyright (C) 2007 SIOS Technology, Inc.
4-
# Copyright (C) 2011 Umea Universitet, Sweden
5-
#
6-
# Licensed under the Apache License, Version 2.0 (the "License");
7-
# you may not use this file except in compliance with the License.
8-
# You may obtain a copy of the License at
9-
#
10-
# http://www.apache.org/licenses/LICENSE-2.0
11-
#
12-
# Unless required by applicable law or agreed to in writing, software
13-
# distributed under the License is distributed on an "AS IS" BASIS,
14-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15-
# See the License for the specific language governing permissions and
16-
# limitations under the License.
17-
#
18-
#
2+
193
import sys
204

215
from setuptools import setup
226
from setuptools.command.test import test as TestCommand
237

24-
258
class PyTest(TestCommand):
269

2710
def finalize_options(self):
@@ -84,7 +67,9 @@ def run_tests(self):
8467
package_data={'': ['xml/*.xml']},
8568
classifiers=["Development Status :: 4 - Beta",
8669
"License :: OSI Approved :: Apache Software License",
87-
"Topic :: Software Development :: Libraries :: Python Modules"],
70+
"Topic :: Software Development :: Libraries :: Python Modules",
71+
"Programming Language :: Python :: 2.6",
72+
"Programming Language :: Python :: 2.7"],
8873

8974
scripts=["tools/parse_xsd2.py", "tools/make_metadata.py",
9075
"tools/mdexport.py", "tools/merge_metadata.py"],

src/s2repoze/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
# -*- coding: utf-8 -*-
22
# Created by Roland Hedberg
3-
# Copyright (c) 2009 Umeå Universitet. All rights reserved.

src/s2repoze/plugins/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
11
# -*- coding: utf-8 -*-
2-
# Created by Roland Hedberg
3-
# Copyright (c) 2009 Umeå Universitet. All rights reserved.

src/s2repoze/plugins/sp.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,4 @@
1-
# Copyright (C) 2009 Umea University
21
#
3-
# Licensed under the Apache License, Version 2.0 (the "License");
4-
# you may not use this file except in compliance with the License.
5-
# You may obtain a copy of the License at
6-
#
7-
# http://www.apache.org/licenses/LICENSE-2.0
8-
#
9-
# Unless required by applicable law or agreed to in writing, software
10-
# distributed under the License is distributed on an "AS IS" BASIS,
11-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12-
# See the License for the specific language governing permissions and
13-
# limitations under the License.
14-
152
"""
163
A plugin that allows you to use SAML2 SSO as authentication
174
and SAML2 attribute aggregations as metadata collector in your

src/saml2/assertion.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,5 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3-
#
4-
# Copyright (C) 2010-2011 Umeå University
5-
#
6-
# Licensed under the Apache License, Version 2.0 (the "License");
7-
# you may not use this file except in compliance with the License.
8-
# You may obtain a copy of the License at
9-
#
10-
# http://www.apache.org/licenses/LICENSE-2.0
11-
#
12-
# Unless required by applicable law or agreed to in writing, software
13-
# distributed under the License is distributed on an "AS IS" BASIS,
14-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15-
# See the License for the specific language governing permissions and
16-
# limitations under the License.
173
import importlib
184
import logging
195

0 commit comments

Comments
 (0)