diff options
76 files changed, 104 insertions, 100 deletions
diff --git a/FixUtil.py b/FixUtil.py index a38e8c210d7..e1f53ca38ec 100755 --- a/FixUtil.py +++ b/FixUtil.py @@ -3,18 +3,20 @@ import os, sys, shutil, fnmatch, re, glob, getopt from stat import * -def copyright(commentMark, patchIceE): +def copyright(commentMark, product, license): result = [ ] result.append(commentMark + " **********************************************************************\n") result.append(commentMark + "\n") result.append(commentMark + " Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved.\n") result.append(commentMark + "\n") - if patchIceE == True: - result.append(commentMark + " This copy of Ice-E is licensed to you under the terms described in the\n") - result.append(commentMark + " ICEE_LICENSE file included in this distribution.\n") - else: - result.append(commentMark + " This copy of Ice is licensed to you under the terms described in the\n") - result.append(commentMark + " ICE_LICENSE file included in this distribution.\n") + line1 = commentMark + (" This copy of %s is licensed to you under the terms described in the") % product + line2 = commentMark + if len(line1) >= 79: + line2 = commentMark + line1[line1.rfind(" ", 0, 79):] + line1 = line1[:line1.rfind(" ", 0, 79)] + line2 += (" %s file included in this distribution.") % license + result.append(line1 + "\n") + result.append(line2 + "\n") result.append(commentMark + "\n") result.append(commentMark + " **********************************************************************\n") return result @@ -40,6 +42,7 @@ def replaceCopyright(file, commentMark, commentBegin, commentEnd, newCopyrightLi newLines = [] justDone = 0 + isWindowsEOL = False if commentBegin == "": for x in oldLines: @@ -49,6 +52,8 @@ def replaceCopyright(file, commentMark, commentBegin, commentEnd, newCopyrightLi commentFound = 1 if not copyrightFound and x.lower().find("copyright") != -1: copyrightFound = 1 + if x.endswith("\r\n"): + isWindowsEOL = True # skip this comment line oldCopyrightLines.append(x) else: @@ -77,7 +82,9 @@ def replaceCopyright(file, commentMark, commentBegin, commentEnd, newCopyrightLi if commentFound: if not copyrightFound and x.find("Copyright") != -1: copyrightFound = 1 - + if x.endswith("\r\n"): + isWindowsEOL = True + # skip this comment line if x.find(commentEnd) != -1: done = 1 @@ -111,7 +118,10 @@ def replaceCopyright(file, commentMark, commentBegin, commentEnd, newCopyrightLi newFile = open(file, "w") newFile.writelines(beforeCopyrightLines) - newFile.writelines(newCopyrightLines) + if isWindowsEOL: + newFile.writelines([l.replace('\n', '\r\n') for l in newCopyrightLines]) + else: + newFile.writelines(newCopyrightLines) # # Hack to keep the .err files @@ -125,28 +135,22 @@ def replaceCopyright(file, commentMark, commentBegin, commentEnd, newCopyrightLi os.chmod(file, S_IMODE(mode)) print "------ Replaced copyright in " + file + " -------" - # - # Make sure Windows Makefiles are kept in DOS format. - # - if fnmatch.fnmatch(file, "*.mak*") or fnmatch.fnmatch(file, "*Make.rules.bcc") or fnmatch.fnmatch(file, "*Make.rules.msvc"): - os.popen("unix2dos " + file); - return copyrightFound # # Replace alls copyrights # -def replaceAllCopyrights(path, patchIceE, recursive): +def replaceAllCopyrights(path, product, license, recursive): - cppCopyright = copyright("//", patchIceE) - mcCopyright = copyright("; //", patchIceE) - makefileCopyright = copyright("#", patchIceE) - vbCopyright = copyright("'", patchIceE) + cppCopyright = copyright("//", product, license) + mcCopyright = copyright("; //", product, license) + makefileCopyright = copyright("#", product, license) + vbCopyright = copyright("'", product, license) pythonCopyright = makefileCopyright rubyCopyright = makefileCopyright xmlCopyright = [] xmlCopyright.append("<!--\n"); - xmlCopyright.extend(copyright("", patchIceE)) + xmlCopyright.extend(copyright("", product, license)) xmlCopyright.append("-->\n"); files = os.listdir(path) @@ -154,7 +158,7 @@ def replaceAllCopyrights(path, patchIceE, recursive): fullpath = os.path.join(path, x); if os.path.isdir(fullpath) and not os.path.islink(fullpath): if recursive: - replaceAllCopyrights(fullpath, patchIceE, True) + replaceAllCopyrights(fullpath, product, license, True) else: commentMark = "" @@ -193,7 +197,7 @@ def replaceAllCopyrights(path, patchIceE, recursive): elif fnmatch.fnmatch(x, "*.vb"): commentMark = "'" copyrightLines = vbCopyright - elif fnmatch.fnmatch(x, "*.xml"): + elif fnmatch.fnmatch(x, "*.xml") or fnmatch.fnmatch(x, "*.xaml"): commentBegin = "<!--" commentEnd = "-->" copyrightLines = xmlCopyright diff --git a/cpp/demo/Ice/protobuf/Client.cpp b/cpp/demo/Ice/protobuf/Client.cpp index 0baae8f5248..192b133b7b3 100644 --- a/cpp/demo/Ice/protobuf/Client.cpp +++ b/cpp/demo/Ice/protobuf/Client.cpp @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/cpp/demo/Ice/protobuf/Hello.ice b/cpp/demo/Ice/protobuf/Hello.ice index 3453d0a9fa9..32eec032e6e 100644 --- a/cpp/demo/Ice/protobuf/Hello.ice +++ b/cpp/demo/Ice/protobuf/Hello.ice @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/cpp/demo/Ice/protobuf/HelloI.cpp b/cpp/demo/Ice/protobuf/HelloI.cpp index 7ea465805f6..4789975276d 100644 --- a/cpp/demo/Ice/protobuf/HelloI.cpp +++ b/cpp/demo/Ice/protobuf/HelloI.cpp @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/cpp/demo/Ice/protobuf/HelloI.h b/cpp/demo/Ice/protobuf/HelloI.h index e82667964ab..856a3927638 100644 --- a/cpp/demo/Ice/protobuf/HelloI.h +++ b/cpp/demo/Ice/protobuf/HelloI.h @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/cpp/demo/Ice/protobuf/Makefile b/cpp/demo/Ice/protobuf/Makefile index 33f02dcecb5..6397473610e 100644 --- a/cpp/demo/Ice/protobuf/Makefile +++ b/cpp/demo/Ice/protobuf/Makefile @@ -1,6 +1,6 @@ # ********************************************************************** # -# Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +# Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. # # This copy of Ice is licensed to you under the terms described in the # ICE_LICENSE file included in this distribution. diff --git a/cpp/demo/Ice/protobuf/Makefile.mak b/cpp/demo/Ice/protobuf/Makefile.mak index 612b36cce0a..fafa1591b0a 100644 --- a/cpp/demo/Ice/protobuf/Makefile.mak +++ b/cpp/demo/Ice/protobuf/Makefile.mak @@ -1,6 +1,6 @@ -#**********************************************************************
+# **********************************************************************
#
-# Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved.
+# Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved.
#
# This copy of Ice is licensed to you under the terms described in the
# ICE_LICENSE file included in this distribution.
diff --git a/cpp/demo/Ice/protobuf/Server.cpp b/cpp/demo/Ice/protobuf/Server.cpp index e39445cd890..368183e76bb 100644 --- a/cpp/demo/Ice/protobuf/Server.cpp +++ b/cpp/demo/Ice/protobuf/Server.cpp @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/cpp/test/Ice/protobuf/AllTests.cpp b/cpp/test/Ice/protobuf/AllTests.cpp index b17f2d13405..99f205bc0c9 100644 --- a/cpp/test/Ice/protobuf/AllTests.cpp +++ b/cpp/test/Ice/protobuf/AllTests.cpp @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/cpp/test/Ice/protobuf/Client.cpp b/cpp/test/Ice/protobuf/Client.cpp index b704aa5da04..f67148e297b 100644 --- a/cpp/test/Ice/protobuf/Client.cpp +++ b/cpp/test/Ice/protobuf/Client.cpp @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/cpp/test/Ice/protobuf/Makefile b/cpp/test/Ice/protobuf/Makefile index d1df993bf18..3b4c4d4698f 100644 --- a/cpp/test/Ice/protobuf/Makefile +++ b/cpp/test/Ice/protobuf/Makefile @@ -1,6 +1,6 @@ # ********************************************************************** # -# Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +# Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. # # This copy of Ice is licensed to you under the terms described in the # ICE_LICENSE file included in this distribution. diff --git a/cpp/test/Ice/protobuf/Makefile.mak b/cpp/test/Ice/protobuf/Makefile.mak index 0948f926785..154043be5ac 100644 --- a/cpp/test/Ice/protobuf/Makefile.mak +++ b/cpp/test/Ice/protobuf/Makefile.mak @@ -1,6 +1,6 @@ # **********************************************************************
#
-# Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved.
+# Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved.
#
# This copy of Ice is licensed to you under the terms described in the
# ICE_LICENSE file included in this distribution.
diff --git a/cpp/test/Ice/protobuf/Server.cpp b/cpp/test/Ice/protobuf/Server.cpp index a62c326f266..57c454a897b 100644 --- a/cpp/test/Ice/protobuf/Server.cpp +++ b/cpp/test/Ice/protobuf/Server.cpp @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/cpp/test/Ice/protobuf/Test.ice b/cpp/test/Ice/protobuf/Test.ice index 58190d47ade..fd8c1bce1ac 100644 --- a/cpp/test/Ice/protobuf/Test.ice +++ b/cpp/test/Ice/protobuf/Test.ice @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/cpp/test/Ice/protobuf/TestI.cpp b/cpp/test/Ice/protobuf/TestI.cpp index 668e2f761b5..19078e249f7 100644 --- a/cpp/test/Ice/protobuf/TestI.cpp +++ b/cpp/test/Ice/protobuf/TestI.cpp @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/cpp/test/Ice/protobuf/TestI.h b/cpp/test/Ice/protobuf/TestI.h index 19a42d95129..562381248b5 100644 --- a/cpp/test/Ice/protobuf/TestI.h +++ b/cpp/test/Ice/protobuf/TestI.h @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/cpp/test/Ice/protobuf/run.py b/cpp/test/Ice/protobuf/run.py index 70bca77e564..801c69ddd03 100755 --- a/cpp/test/Ice/protobuf/run.py +++ b/cpp/test/Ice/protobuf/run.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # ********************************************************************** # -# Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +# Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. # # This copy of Ice is licensed to you under the terms described in the # ICE_LICENSE file included in this distribution. diff --git a/cs/demo/Ice/serialize/Client.cs b/cs/demo/Ice/serialize/Client.cs index cf47dcb90a2..b05d22ad538 100644 --- a/cs/demo/Ice/serialize/Client.cs +++ b/cs/demo/Ice/serialize/Client.cs @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/cs/demo/Ice/serialize/Greet.ice b/cs/demo/Ice/serialize/Greet.ice index 431b546ec83..6e92f8e7d72 100644 --- a/cs/demo/Ice/serialize/Greet.ice +++ b/cs/demo/Ice/serialize/Greet.ice @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/cs/demo/Ice/serialize/GreetI.cs b/cs/demo/Ice/serialize/GreetI.cs index a5fc7e4b657..55557352a12 100644 --- a/cs/demo/Ice/serialize/GreetI.cs +++ b/cs/demo/Ice/serialize/GreetI.cs @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/cs/demo/Ice/serialize/Makefile b/cs/demo/Ice/serialize/Makefile index 4890262dfb0..299ff773c4f 100644 --- a/cs/demo/Ice/serialize/Makefile +++ b/cs/demo/Ice/serialize/Makefile @@ -1,6 +1,6 @@ # ********************************************************************** # -# Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +# Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. # # This copy of Ice is licensed to you under the terms described in the # ICE_LICENSE file included in this distribution. diff --git a/cs/demo/Ice/serialize/Makefile.mak b/cs/demo/Ice/serialize/Makefile.mak index 8059cf04a3a..e0fa4125bdd 100644 --- a/cs/demo/Ice/serialize/Makefile.mak +++ b/cs/demo/Ice/serialize/Makefile.mak @@ -1,6 +1,6 @@ # **********************************************************************
#
-# Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved.
+# Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved.
#
# This copy of Ice is licensed to you under the terms described in the
# ICE_LICENSE file included in this distribution.
diff --git a/cs/demo/Ice/serialize/MyGreeting.cs b/cs/demo/Ice/serialize/MyGreeting.cs index 14611101383..85d89f170df 100755 --- a/cs/demo/Ice/serialize/MyGreeting.cs +++ b/cs/demo/Ice/serialize/MyGreeting.cs @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/cs/demo/Ice/serialize/Server.cs b/cs/demo/Ice/serialize/Server.cs index 0674f915223..c9a653d1b08 100644 --- a/cs/demo/Ice/serialize/Server.cs +++ b/cs/demo/Ice/serialize/Server.cs @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/cs/src/Ice/StreamWrapper.cs b/cs/src/Ice/StreamWrapper.cs index fb6d5b96070..81d14a2d7cc 100755 --- a/cs/src/Ice/StreamWrapper.cs +++ b/cs/src/Ice/StreamWrapper.cs @@ -1,7 +1,7 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/cs/test/Ice/seqMapping/Serializable.cs b/cs/test/Ice/seqMapping/Serializable.cs index cc1dd70f2b2..7689f10acf7 100755 --- a/cs/test/Ice/seqMapping/Serializable.cs +++ b/cs/test/Ice/seqMapping/Serializable.cs @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/cs/test/Ice/stream/Serializable.cs b/cs/test/Ice/stream/Serializable.cs index 8bca585d059..a0f9cc9a1de 100755 --- a/cs/test/Ice/stream/Serializable.cs +++ b/cs/test/Ice/stream/Serializable.cs @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/fixCopyright.py b/fixCopyright.py index b81f87d3e0b..268e2615df8 100755 --- a/fixCopyright.py +++ b/fixCopyright.py @@ -21,12 +21,12 @@ for x in sys.argv[1:]: ice_dir = os.path.normpath(os.path.join(os.path.dirname(__file__))) -FixUtil.replaceAllCopyrights(ice_dir, False, False) +FixUtil.replaceAllCopyrights(ice_dir, "Ice", "ICE_LICENSE", False) for dir in ["slice", "cpp", "java", "cs", "vb", "php", "py", "rb", "demoscript", "distribution", "config", "certs",\ "scripts"]: home = os.path.join(ice_dir, dir) if home: - FixUtil.replaceAllCopyrights(home, False, True) + FixUtil.replaceAllCopyrights(home, "Ice", "ICE_LICENSE", True) # ********************************************************************** # diff --git a/java/demo/Ice/protobuf/Client.java b/java/demo/Ice/protobuf/Client.java index cbdbb7aca2b..4969f272532 100644 --- a/java/demo/Ice/protobuf/Client.java +++ b/java/demo/Ice/protobuf/Client.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/demo/Ice/protobuf/Hello.ice b/java/demo/Ice/protobuf/Hello.ice index 8ddbbbd34ae..9b1f965a3dd 100644 --- a/java/demo/Ice/protobuf/Hello.ice +++ b/java/demo/Ice/protobuf/Hello.ice @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/demo/Ice/protobuf/HelloI.java b/java/demo/Ice/protobuf/HelloI.java index e3fcf7008bb..4fe9cf4e5a2 100644 --- a/java/demo/Ice/protobuf/HelloI.java +++ b/java/demo/Ice/protobuf/HelloI.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/demo/Ice/protobuf/Server.java b/java/demo/Ice/protobuf/Server.java index 6ffab5d02fb..c78c193ebca 100644 --- a/java/demo/Ice/protobuf/Server.java +++ b/java/demo/Ice/protobuf/Server.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/demo/Ice/protobuf/ant/ProtocTask.java b/java/demo/Ice/protobuf/ant/ProtocTask.java index b102cb9fccd..bc94ca3d25b 100644 --- a/java/demo/Ice/protobuf/ant/ProtocTask.java +++ b/java/demo/Ice/protobuf/ant/ProtocTask.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/demo/Ice/protobuf/build.xml b/java/demo/Ice/protobuf/build.xml index 3fde0caa899..98b3781d296 100644 --- a/java/demo/Ice/protobuf/build.xml +++ b/java/demo/Ice/protobuf/build.xml @@ -1,7 +1,7 @@ <!-- ********************************************************************** - Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. + Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. This copy of Ice is licensed to you under the terms described in the ICE_LICENSE file included in this distribution. diff --git a/java/demo/Ice/serialize/Client.java b/java/demo/Ice/serialize/Client.java index e5c6ce82fb0..5b4bc97db47 100644 --- a/java/demo/Ice/serialize/Client.java +++ b/java/demo/Ice/serialize/Client.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/demo/Ice/serialize/Demo/MyGreeting.java b/java/demo/Ice/serialize/Demo/MyGreeting.java index bbefc3e687b..b8387520d3d 100644 --- a/java/demo/Ice/serialize/Demo/MyGreeting.java +++ b/java/demo/Ice/serialize/Demo/MyGreeting.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/demo/Ice/serialize/Greet.ice b/java/demo/Ice/serialize/Greet.ice index e06d9d04f6d..f69fdfb3933 100644 --- a/java/demo/Ice/serialize/Greet.ice +++ b/java/demo/Ice/serialize/Greet.ice @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/demo/Ice/serialize/GreetI.java b/java/demo/Ice/serialize/GreetI.java index 855af5173f5..319e7171455 100644 --- a/java/demo/Ice/serialize/GreetI.java +++ b/java/demo/Ice/serialize/GreetI.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/demo/Ice/serialize/Server.java b/java/demo/Ice/serialize/Server.java index 6550ea79a6d..98959b1c352 100644 --- a/java/demo/Ice/serialize/Server.java +++ b/java/demo/Ice/serialize/Server.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/demo/Ice/serialize/build.xml b/java/demo/Ice/serialize/build.xml index e43616e3199..ea9a6032c95 100644 --- a/java/demo/Ice/serialize/build.xml +++ b/java/demo/Ice/serialize/build.xml @@ -1,7 +1,7 @@ <!-- ********************************************************************** - Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. + Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. This copy of Ice is licensed to you under the terms described in the ICE_LICENSE file included in this distribution. diff --git a/java/src/IceInternal/InputStreamWrapper.java b/java/src/IceInternal/InputStreamWrapper.java index aa12dda716c..1188d96d165 100644 --- a/java/src/IceInternal/InputStreamWrapper.java +++ b/java/src/IceInternal/InputStreamWrapper.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/src/IceInternal/OutputStreamWrapper.java b/java/src/IceInternal/OutputStreamWrapper.java index 471eef7358c..7958d8e9dd4 100644 --- a/java/src/IceInternal/OutputStreamWrapper.java +++ b/java/src/IceInternal/OutputStreamWrapper.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/protobuf/AllTests.java b/java/test/Ice/protobuf/AllTests.java index a5ce93d0fca..c4383d50eff 100644 --- a/java/test/Ice/protobuf/AllTests.java +++ b/java/test/Ice/protobuf/AllTests.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/protobuf/Client.java b/java/test/Ice/protobuf/Client.java index 9381242aacf..477c18717de 100644 --- a/java/test/Ice/protobuf/Client.java +++ b/java/test/Ice/protobuf/Client.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/protobuf/Collocated.java b/java/test/Ice/protobuf/Collocated.java index 64843c27243..b6cbd618efc 100644 --- a/java/test/Ice/protobuf/Collocated.java +++ b/java/test/Ice/protobuf/Collocated.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/protobuf/MyClassI.java b/java/test/Ice/protobuf/MyClassI.java index 29e637d532b..4a496058f57 100644 --- a/java/test/Ice/protobuf/MyClassI.java +++ b/java/test/Ice/protobuf/MyClassI.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/protobuf/Server.java b/java/test/Ice/protobuf/Server.java index e77a401ddca..79369f115a9 100644 --- a/java/test/Ice/protobuf/Server.java +++ b/java/test/Ice/protobuf/Server.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/protobuf/Test.ice b/java/test/Ice/protobuf/Test.ice index f30fca97b31..0f07eeb58fe 100644 --- a/java/test/Ice/protobuf/Test.ice +++ b/java/test/Ice/protobuf/Test.ice @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/protobuf/ant/ProtocTask.java b/java/test/Ice/protobuf/ant/ProtocTask.java index d1ea695bbb4..d6260ba868a 100644 --- a/java/test/Ice/protobuf/ant/ProtocTask.java +++ b/java/test/Ice/protobuf/ant/ProtocTask.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/protobuf/build.xml b/java/test/Ice/protobuf/build.xml index 8e992925cee..45251289bf0 100644 --- a/java/test/Ice/protobuf/build.xml +++ b/java/test/Ice/protobuf/build.xml @@ -1,7 +1,7 @@ <!-- ********************************************************************** - Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. + Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. This copy of Ice is licensed to you under the terms described in the ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/protobuf/run.py b/java/test/Ice/protobuf/run.py index 70bca77e564..801c69ddd03 100755 --- a/java/test/Ice/protobuf/run.py +++ b/java/test/Ice/protobuf/run.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # ********************************************************************** # -# Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +# Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. # # This copy of Ice is licensed to you under the terms described in the # ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/seqMapping/AMDMyClassI.java b/java/test/Ice/seqMapping/AMDMyClassI.java index b7502ba976e..29462a84008 100644 --- a/java/test/Ice/seqMapping/AMDMyClassI.java +++ b/java/test/Ice/seqMapping/AMDMyClassI.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/seqMapping/AMDServer.java b/java/test/Ice/seqMapping/AMDServer.java index 0671b3b9739..fdfb7334d2e 100644 --- a/java/test/Ice/seqMapping/AMDServer.java +++ b/java/test/Ice/seqMapping/AMDServer.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/seqMapping/AllTests.java b/java/test/Ice/seqMapping/AllTests.java index f966d195c81..37b1df2d96d 100644 --- a/java/test/Ice/seqMapping/AllTests.java +++ b/java/test/Ice/seqMapping/AllTests.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/seqMapping/Client.java b/java/test/Ice/seqMapping/Client.java index 50f10b56976..a86180a3780 100644 --- a/java/test/Ice/seqMapping/Client.java +++ b/java/test/Ice/seqMapping/Client.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/seqMapping/Collocated.java b/java/test/Ice/seqMapping/Collocated.java index ecf8050ab8c..c394d4b28d3 100644 --- a/java/test/Ice/seqMapping/Collocated.java +++ b/java/test/Ice/seqMapping/Collocated.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/seqMapping/MyClassI.java b/java/test/Ice/seqMapping/MyClassI.java index bbd0724b838..1f27328f65b 100644 --- a/java/test/Ice/seqMapping/MyClassI.java +++ b/java/test/Ice/seqMapping/MyClassI.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/seqMapping/Serialize/Large.java b/java/test/Ice/seqMapping/Serialize/Large.java index 2d4c96331ba..088836a16d9 100644 --- a/java/test/Ice/seqMapping/Serialize/Large.java +++ b/java/test/Ice/seqMapping/Serialize/Large.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/seqMapping/Serialize/Small.java b/java/test/Ice/seqMapping/Serialize/Small.java index a4a539538d9..fd75da7a6bf 100644 --- a/java/test/Ice/seqMapping/Serialize/Small.java +++ b/java/test/Ice/seqMapping/Serialize/Small.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/seqMapping/Serialize/SmallHolder.java b/java/test/Ice/seqMapping/Serialize/SmallHolder.java index 23268a36624..6e9fbab4534 100644 --- a/java/test/Ice/seqMapping/Serialize/SmallHolder.java +++ b/java/test/Ice/seqMapping/Serialize/SmallHolder.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/seqMapping/Serialize/Struct.java b/java/test/Ice/seqMapping/Serialize/Struct.java index 05aac11c81c..972318239f8 100644 --- a/java/test/Ice/seqMapping/Serialize/Struct.java +++ b/java/test/Ice/seqMapping/Serialize/Struct.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/seqMapping/Serialize/StructHolder.java b/java/test/Ice/seqMapping/Serialize/StructHolder.java index f2df361778a..fc71f229388 100644 --- a/java/test/Ice/seqMapping/Serialize/StructHolder.java +++ b/java/test/Ice/seqMapping/Serialize/StructHolder.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/seqMapping/Server.java b/java/test/Ice/seqMapping/Server.java index f8fc5ea2460..c28c73bf7a5 100644 --- a/java/test/Ice/seqMapping/Server.java +++ b/java/test/Ice/seqMapping/Server.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/seqMapping/Test.ice b/java/test/Ice/seqMapping/Test.ice index ded8f55d5c4..73a068330e3 100644 --- a/java/test/Ice/seqMapping/Test.ice +++ b/java/test/Ice/seqMapping/Test.ice @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/seqMapping/TestAMD.ice b/java/test/Ice/seqMapping/TestAMD.ice index c32d951d62e..5ffdf4734fc 100644 --- a/java/test/Ice/seqMapping/TestAMD.ice +++ b/java/test/Ice/seqMapping/TestAMD.ice @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/seqMapping/Twoways.java b/java/test/Ice/seqMapping/Twoways.java index 73a94b316c3..03ece8d7e7e 100644 --- a/java/test/Ice/seqMapping/Twoways.java +++ b/java/test/Ice/seqMapping/Twoways.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/seqMapping/TwowaysAMI.java b/java/test/Ice/seqMapping/TwowaysAMI.java index f47ed59951e..c0773795560 100644 --- a/java/test/Ice/seqMapping/TwowaysAMI.java +++ b/java/test/Ice/seqMapping/TwowaysAMI.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/seqMapping/build.xml b/java/test/Ice/seqMapping/build.xml index a12392802de..f2efe1a9b8f 100644 --- a/java/test/Ice/seqMapping/build.xml +++ b/java/test/Ice/seqMapping/build.xml @@ -1,7 +1,7 @@ <!-- ********************************************************************** - Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. + Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. This copy of Ice is licensed to you under the terms described in the ICE_LICENSE file included in this distribution. diff --git a/java/test/Ice/stream/Serialize/Small.java b/java/test/Ice/stream/Serialize/Small.java index e06d6b587ed..554c30bf971 100644 --- a/java/test/Ice/stream/Serialize/Small.java +++ b/java/test/Ice/stream/Serialize/Small.java @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/py/demo/Ice/protobuf/Client.py b/py/demo/Ice/protobuf/Client.py index ca4b7e17b5c..17e4b0ab604 100644 --- a/py/demo/Ice/protobuf/Client.py +++ b/py/demo/Ice/protobuf/Client.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # ********************************************************************** # -# Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +# Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. # # This copy of Ice is licensed to you under the terms described in the # ICE_LICENSE file included in this distribution. diff --git a/py/demo/Ice/protobuf/Hello.ice b/py/demo/Ice/protobuf/Hello.ice index f987ad8da31..e4eb8ae79c2 100644 --- a/py/demo/Ice/protobuf/Hello.ice +++ b/py/demo/Ice/protobuf/Hello.ice @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. diff --git a/py/demo/Ice/protobuf/Server.py b/py/demo/Ice/protobuf/Server.py index 0ccd8d6dbc5..a0d4e538e71 100644 --- a/py/demo/Ice/protobuf/Server.py +++ b/py/demo/Ice/protobuf/Server.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # ********************************************************************** # -# Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +# Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. # # This copy of Ice is licensed to you under the terms described in the # ICE_LICENSE file included in this distribution. diff --git a/py/test/Ice/protobuf/AllTests.py b/py/test/Ice/protobuf/AllTests.py index 566179a7db9..b2d17fa1c58 100644 --- a/py/test/Ice/protobuf/AllTests.py +++ b/py/test/Ice/protobuf/AllTests.py @@ -1,6 +1,6 @@ # ********************************************************************** # -# Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +# Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. # # This copy of Ice is licensed to you under the terms described in the # ICE_LICENSE file included in this distribution. diff --git a/py/test/Ice/protobuf/Client.py b/py/test/Ice/protobuf/Client.py index 070df3ac032..d90e80c2cef 100755 --- a/py/test/Ice/protobuf/Client.py +++ b/py/test/Ice/protobuf/Client.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # ********************************************************************** # -# Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +# Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. # # This copy of Ice is licensed to you under the terms described in the # ICE_LICENSE file included in this distribution. diff --git a/py/test/Ice/protobuf/Server.py b/py/test/Ice/protobuf/Server.py index 9caa59fd1f7..b036f018aa3 100755 --- a/py/test/Ice/protobuf/Server.py +++ b/py/test/Ice/protobuf/Server.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # ********************************************************************** # -# Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +# Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. # # This copy of Ice is licensed to you under the terms described in the # ICE_LICENSE file included in this distribution. diff --git a/py/test/Ice/protobuf/Test.ice b/py/test/Ice/protobuf/Test.ice index bb234d349c8..e0b48adda82 100644 --- a/py/test/Ice/protobuf/Test.ice +++ b/py/test/Ice/protobuf/Test.ice @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. |