diff options
author | Matthew Newhook <matthew@zeroc.com> | 2015-04-07 17:22:46 -0230 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2015-04-07 17:22:46 -0230 |
commit | 3d6cf4775e46a6ba32f228440894db7ed14850bb (patch) | |
tree | d7da7eac56ec7d55a4917a92046aae689f51394c /cpp | |
parent | Fixed test failure, changed DN from IceGrid/session (diff) | |
download | ice-3d6cf4775e46a6ba32f228440894db7ed14850bb.tar.bz2 ice-3d6cf4775e46a6ba32f228440894db7ed14850bb.tar.xz ice-3d6cf4775e46a6ba32f228440894db7ed14850bb.zip |
Remove some unused scripts.
Fixed some copyright headers.
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/config/findSliceFiles.py | 44 | ||||
-rw-r--r-- | cpp/src/Slice/Python.cpp | 2 | ||||
-rw-r--r-- | cpp/src/Slice/Ruby.cpp | 2 |
3 files changed, 2 insertions, 46 deletions
diff --git a/cpp/config/findSliceFiles.py b/cpp/config/findSliceFiles.py deleted file mode 100644 index 97c45c78ba1..00000000000 --- a/cpp/config/findSliceFiles.py +++ /dev/null @@ -1,44 +0,0 @@ -#!/usr/bin/env python - -# ********************************************************************** -# -# Copyright (c) 2003-2015 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. -# -# ********************************************************************** - -import os, sys - -def usage(): - print >> sys.stderr, "usage: " + sys.argv[0] + " slice-dir output-file" - sys.exit(1) - -if (len(sys.argv)) != 3: - usage(); - -if not os.path.exists(sys.argv[1]): - print >> sys.stderr, "`" + sys.argv[1] + "' does not exist." - sys.exit(1); - -if not os.path.isdir(sys.argv[1]): - print >> sys.stderr, "`" + sys.argv[1] + "' is not a directory." - sys.exit(1); - -out = file(sys.argv[2], "w+") - -print >> out, "SLICEFILES =", -first = True -for root, dirs, files in os.walk(sys.argv[1]): - for name in files: - if not name.startswith(".") and name.endswith(".ice"): - if not first: - print >> out, "\\" - print >> out, " ", - else: - first = False - print >> out, os.path.join(root, name), -print >> out, "\n" - -sys.exit(0) diff --git a/cpp/src/Slice/Python.cpp b/cpp/src/Slice/Python.cpp index 75b118d2eef..25210f33759 100644 --- a/cpp/src/Slice/Python.cpp +++ b/cpp/src/Slice/Python.cpp @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2015 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/src/Slice/Ruby.cpp b/cpp/src/Slice/Ruby.cpp index c623bfc8696..a8d43563c5c 100644 --- a/cpp/src/Slice/Ruby.cpp +++ b/cpp/src/Slice/Ruby.cpp @@ -1,6 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved. +// Copyright (c) 2003-2015 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. |