summaryrefslogtreecommitdiff
path: root/compress.py
diff options
context:
space:
mode:
authorThorsten Behrens <tbehrens@suse.com>2013-12-02 02:04:16 +0100
committerThorsten Behrens <thb@documentfoundation.org>2013-12-03 18:31:44 +0100
commitd46b85c396e0a7c7d355fe73010ca39c25f92d49 (patch)
treefcfb89a54e6b8a247cdcdf6c823ed8bca92aba64 /compress.py
parenta88102b95a18f61ef0ada3b7f3a9ad3c921a56e0 (diff)
Move codebase to MPL.
SUSE-contributed code is MPLv2, other patch contributors have consented to new license. Signed-off-by: Kohei Yoshida <kohei.yoshida@gmail.com> Signed-off-by: Miklos Vajna <vmiklos@suse.cz> Signed-off-by: Noel Power <noel.power@suse.com>
Diffstat (limited to 'compress.py')
-rwxr-xr-xcompress.py29
1 files changed, 5 insertions, 24 deletions
diff --git a/compress.py b/compress.py
index 72a0ad8..f23e62f 100755
--- a/compress.py
+++ b/compress.py
@@ -1,30 +1,9 @@
#!/usr/bin/env python2
-########################################################################
#
-# Copyright (c) 2013 Noel Power
-#
-# Permission is hereby granted, free of charge, to any person
-# obtaining a copy of this software and associated documentation
-# files (the "Software"), to deal in the Software without
-# restriction, including without limitation the rights to use,
-# copy, modify, merge, publish, distribute, sublicense, and/or sell
-# copies of the Software, and to permit persons to whom the
-# Software is furnished to do so, subject to the following
-# conditions:
-#
-# The above copyright notice and this permission notice shall be
-# included in all copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
-# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
-# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
-# OTHER DEALINGS IN THE SOFTWARE.
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
-########################################################################
import sys, os.path, optparse
@@ -46,3 +25,5 @@ def main():
if __name__ == '__main__':
main()
+
+# vim:set filetype=python shiftwidth=4 softtabstop=4 expandtab: