Skip to content

Commit 08766d4

Browse files
committed
Updated copyright year. Also removed copyrights from some places where they weren't needed and fixed copyright indentation in Python files.
1 parent 7c77d8a commit 08766d4

File tree

187 files changed

+229
-259
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

187 files changed

+229
-259
lines changed

COPYRIGHT.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2008-2011 Nokia Siemens Networks Oyj
1+
Copyright 2008-2012 Nokia Siemens Networks Oyj
22

33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.

atest/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ License and Copyright
1313

1414
All the content in `atest` folder is the under following copyright::
1515

16-
Copyright 2008-2011 Nokia Siemens Networks Oyj
16+
Copyright 2008-2012 Nokia Siemens Networks Oyj
1717

1818
Licensed under the Apache License, Version 2.0 (the "License");
1919
you may not use this file except in compliance with the License.

atest/robot/libdoc/XmlLibrary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2008-2011 Nokia Siemens Networks Oyj
1+
# Copyright 2008-2012 Nokia Siemens Networks Oyj
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

doc/python/PythonTutorial.rst

Lines changed: 1 addition & 1 deletion

doc/quickstart/quickstart.rst

Lines changed: 1 addition & 1 deletion

doc/userguide/src/RobotFrameworkUserGuide.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
Version |version|
1111
--------------------
1212

13-
| Copyright |copy| Nokia Siemens Networks 2008-2011
13+
| Copyright |copy| Nokia Siemens Networks 2008-2012
1414
| Licensed under the `Creative Commons Attribution 3.0 Unported`__ license
1515

1616
__ http://creativecommons.org/licenses/by/3.0/

install.py

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,5 @@
11
#!/usr/bin/env python
22

3-
# Copyright 2008-2011 Nokia Siemens Networks Oyj
4-
#
5-
# Licensed under the Apache License, Version 2.0 (the "License");
6-
# you may not use this file except in compliance with the License.
7-
# You may obtain a copy of the License at
8-
#
9-
# http://www.apache.org/licenses/LICENSE-2.0
10-
#
11-
# Unless required by applicable law or agreed to in writing, software
12-
# distributed under the License is distributed on an "AS IS" BASIS,
13-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14-
# See the License for the specific language governing permissions and
15-
# limitations under the License.
16-
173
"""Install script for Robot Framework source distributions.
184
195
Usage: python install.py [ in(stall) | un(install) | re(install) ]
@@ -105,9 +91,9 @@ def _remove(path):
10591

10692

10793
if __name__ == '__main__':
108-
actions = { 'install': install, 'in': install,
109-
'uninstall': uninstall, 'un': uninstall,
110-
'reinstall': reinstall, 're': reinstall }
94+
actions = {'install': install, 'in': install,
95+
'uninstall': uninstall, 'un': uninstall,
96+
'reinstall': reinstall, 're': reinstall}
11197
try:
11298
actions[sys.argv[1]]()
11399
except (KeyError, IndexError):

proto/memory_test/calculate_rebot_model.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,3 @@
1-
# Copyright 2008-2011 Nokia Siemens Networks Oyj
2-
#
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-
151
import sys, os
162
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', '..', 'src'))
173
from robot.reporting.outputparser import OutputParser

proto/parallel/Parallel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2008-2011 Nokia Siemens Networks Oyj
1+
# Copyright 2008-2012 Nokia Siemens Networks Oyj
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

src/java/org/robotframework/RobotFramework.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright 2008-2011 Nokia Siemens Networks Oyj
1+
/* Copyright 2008-2012 Nokia Siemens Networks Oyj
22
*
33
* Licensed under the Apache License, Version 2.0 (the "License");
44
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)