Skip to content

Commit 4102c50

Browse files
committed
Correct name throughout the project
1 parent 46af03d commit 4102c50

File tree

12 files changed

+21
-14
lines changed

12 files changed

+21
-14
lines changed

.mailmap

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Ian Stapleton Cordasco <graffatcolmingov@gmail.com> Ian Cordasco <graffatcolmingov@gmail.com>
2+
Ian Stapleton Cordasco <graffatcolmingov@gmail.com> Ian Cordasco <sigmavirus24@users.noreply.github.com>
3+
Ian Stapleton Cordasco <graffatcolmingov@gmail.com> Ian Cordasco <ian.cordasco@rackspace.com>

AUTHORS.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
Development Lead
22
----------------
33

4-
- Ian Cordasco <ian.cordasco@rackspace.com>
4+
- Ian Stapleton Cordasco <graffatcolmingov@gmail.com>
55

66
Contributors
77
------------
88

9-
None yet!
9+
- Thomas Weißschuh
10+
- Kostya Esmukov
11+
- Derek Higgins
12+
- Victor Stinner
13+
- Viktor Haag

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ If you would like to contribute but do not have a bug or feature in mind, feel
199199
free to email Ian and find out how you can help.
200200

201201
The git repository for this project is maintained at
202-
https://github.com/sigmavirus24/rfc3986
202+
https://github.com/python-hyper/rfc3986
203203

204204
.. _RFC 3986: http://tools.ietf.org/html/rfc3986
205205
.. _Apache License Version 2.0: https://www.apache.org/licenses/LICENSE-2.0

docs/source/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@
5555

5656
# General information about the project.
5757
project = u'rfc3986'
58-
copyright = u'2017, Ian Cordasco'
59-
author = u'Ian Cordasco'
58+
copyright = u'2017, Ian Stapleton Cordasco'
59+
author = u'Ian Stapleton Cordasco'
6060

6161
# The version info for the project you're documenting, acts as replacement for
6262
# |version| and |release|, also used in various other places throughout the
@@ -136,7 +136,7 @@
136136
# author, documentclass [howto, manual, or own class]).
137137
latex_documents = [
138138
(master_doc, 'rfc3986.tex', u'rfc3986 Documentation',
139-
u'Ian Cordasco', 'manual'),
139+
u'Ian Stapleton Cordasco', 'manual'),
140140
]
141141

142142

src/rfc3986/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
from .parseresult import ParseResult
3131

3232
__title__ = 'rfc3986'
33-
__author__ = 'Ian Cordasco'
33+
__author__ = 'Ian Stapleton Cordasco'
3434
__author_email__ = 'graffatcolmingov@gmail.com'
3535
__license__ = 'Apache v2.0'
3636
__copyright__ = 'Copyright 2014 Rackspace'

src/rfc3986/builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2017 Ian Cordasco
2+
# Copyright (c) 2017 Ian Stapleton Cordasco
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
55
# You may obtain a copy of the License at

src/rfc3986/parseresult.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2015 Ian Cordasco
2+
# Copyright (c) 2015 Ian Stapleton Cordasco
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
55
# You may obtain a copy of the License at

src/rfc3986/uri.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Module containing the implementation of the URIReference class."""
22
# -*- coding: utf-8 -*-
33
# Copyright (c) 2014 Rackspace
4-
# Copyright (c) 2015 Ian Cordasco
4+
# Copyright (c) 2015 Ian Stapleton Cordasco
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.
77
# You may obtain a copy of the License at

src/rfc3986/validators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2017 Ian Cordasco
2+
# Copyright (c) 2017 Ian Stapleton Cordasco
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
55
# You may obtain a copy of the License at

tests/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2015 Ian Cordasco
2+
# Copyright (c) 2015 Ian Stapleton Cordasco
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
55
# You may obtain a copy of the License at

tests/test_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2017 Ian Cordasco
2+
# Copyright (c) 2017 Ian Stapleton Cordasco
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
55
# You may obtain a copy of the License at

tests/test_parseresult.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2015 Ian Cordasco
2+
# Copyright (c) 2015 Ian Stapleton Cordasco
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
55
# You may obtain a copy of the License at

0 commit comments

Comments
 (0)