Skip to content

Commit a1973bb

Browse files
author
Kevin Deldycke
committed
Add missing copyright headers.
1 parent d920fae commit a1973bb

11 files changed

+87
-0
lines changed

ocs_sdk/__init__.py

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (c) 2013-2014 Online SAS and Contributors. All Rights Reserved.
4+
# Julien Castets <jcastets@ocs.online.net>
5+
#
6+
# Licensed under the BSD 2-Clause License (the "License"); you may not use this
7+
# file except in compliance with the License. You may obtain a copy of the
8+
# License at http://opensource.org/licenses/BSD-2-Clause
29

310
__version__ = '0.3.1'

ocs_sdk/apis/__init__.py

+8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (c) 2013-2014 Online SAS and Contributors. All Rights Reserved.
4+
# Julien Castets <jcastets@ocs.online.net>
5+
# Kevin Deldycke <kdeldycke@ocs.online.net>
6+
#
7+
# Licensed under the BSD 2-Clause License (the "License"); you may not use this
8+
# file except in compliance with the License. You may obtain a copy of the
9+
# License at http://opensource.org/licenses/BSD-2-Clause
210

311
import platform
412
import sys

ocs_sdk/apis/api_account.py

+9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (c) 2013-2014 Online SAS and Contributors. All Rights Reserved.
4+
# Julien Castets <jcastets@ocs.online.net>
5+
# Romain Gay <rgay@ocs.online.net>
6+
# Kevin Deldycke <kdeldycke@ocs.online.net>
7+
#
8+
# Licensed under the BSD 2-Clause License (the "License"); you may not use this
9+
# file except in compliance with the License. You may obtain a copy of the
10+
# License at http://opensource.org/licenses/BSD-2-Clause
211

312
from itertools import izip_longest
413

ocs_sdk/apis/api_compute.py

+8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (c) 2013-2014 Online SAS and Contributors. All Rights Reserved.
4+
# Julien Castets <jcastets@ocs.online.net>
5+
# Kevin Deldycke <kdeldycke@ocs.online.net>
6+
#
7+
# Licensed under the BSD 2-Clause License (the "License"); you may not use this
8+
# file except in compliance with the License. You may obtain a copy of the
9+
# License at http://opensource.org/licenses/BSD-2-Clause
210

311
from . import API
412

ocs_sdk/apis/api_metadata.py

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (c) 2013-2014 Online SAS and Contributors. All Rights Reserved.
4+
# Julien Castets <jcastets@ocs.online.net>
5+
#
6+
# Licensed under the BSD 2-Clause License (the "License"); you may not use this
7+
# file except in compliance with the License. You may obtain a copy of the
8+
# License at http://opensource.org/licenses/BSD-2-Clause
29

310
from . import API
411

ocs_sdk/tests/__init__.py

+8
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
11
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (c) 2013-2014 Online SAS and Contributors. All Rights Reserved.
4+
# Julien Castets <jcastets@ocs.online.net>
5+
# Kevin Deldycke <kdeldycke@ocs.online.net>
6+
#
7+
# Licensed under the BSD 2-Clause License (the "License"); you may not use this
8+
# file except in compliance with the License. You may obtain a copy of the
9+
# License at http://opensource.org/licenses/BSD-2-Clause

ocs_sdk/tests/apis/__init__.py

+8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (c) 2013-2014 Online SAS and Contributors. All Rights Reserved.
4+
# Julien Castets <jcastets@ocs.online.net>
5+
# Kevin Deldycke <kdeldycke@ocs.online.net>
6+
#
7+
# Licensed under the BSD 2-Clause License (the "License"); you may not use this
8+
# file except in compliance with the License. You may obtain a copy of the
9+
# License at http://opensource.org/licenses/BSD-2-Clause
210

311
import json
412
import urlparse

ocs_sdk/tests/apis/test_api.py

+8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (c) 2013-2014 Online SAS and Contributors. All Rights Reserved.
4+
# Julien Castets <jcastets@ocs.online.net>
5+
# Kevin Deldycke <kdeldycke@ocs.online.net>
6+
#
7+
# Licensed under the BSD 2-Clause License (the "License"); you may not use this
8+
# file except in compliance with the License. You may obtain a copy of the
9+
# License at http://opensource.org/licenses/BSD-2-Clause
210

311
import unittest
412

ocs_sdk/tests/apis/test_api_account.py

+9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (c) 2013-2014 Online SAS and Contributors. All Rights Reserved.
4+
# Julien Castets <jcastets@ocs.online.net>
5+
# Romain Gay <rgay@ocs.online.net>
6+
# Kevin Deldycke <kdeldycke@ocs.online.net>
7+
#
8+
# Licensed under the BSD 2-Clause License (the "License"); you may not use this
9+
# file except in compliance with the License. You may obtain a copy of the
10+
# License at http://opensource.org/licenses/BSD-2-Clause
211

312
import unittest
413
import uuid

ocs_sdk/tests/apis/test_api_metadata.py

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (c) 2013-2014 Online SAS and Contributors. All Rights Reserved.
4+
# Julien Castets <jcastets@ocs.online.net>
5+
#
6+
# Licensed under the BSD 2-Clause License (the "License"); you may not use this
7+
# file except in compliance with the License. You may obtain a copy of the
8+
# License at http://opensource.org/licenses/BSD-2-Clause
29

310
import json
411
import unittest

setup.py

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3+
#
4+
# Copyright (c) 2013-2014 Online SAS and Contributors. All Rights Reserved.
5+
# Julien Castets <jcastets@ocs.online.net>
6+
# Kevin Deldycke <kdeldycke@ocs.online.net>
7+
#
8+
# Licensed under the BSD 2-Clause License (the "License"); you may not use this
9+
# file except in compliance with the License. You may obtain a copy of the
10+
# License at http://opensource.org/licenses/BSD-2-Clause
311

412
import os
513
import re

0 commit comments

Comments
 (0)