]> git.mxchange.org Git - quix0rs-apt-p2p.git/commitdiff
added license information
authorburris <burris>
Sat, 22 Feb 2003 07:05:49 +0000 (07:05 +0000)
committerburris <burris>
Sat, 22 Feb 2003 07:05:49 +0000 (07:05 +0000)
14 files changed:
LICENSE.txt [new file with mode: 0644]
actions.py
airhook.py
const.py
hash.py
khashmir.py
knode.py
krpc.py
ktable.py
node.py
test.py
test_airhook.py
test_krpc.py
util.py

diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644 (file)
index 0000000..1c71aeb
--- /dev/null
@@ -0,0 +1,24 @@
+Unless otherwise noted, all files are released under the MIT
+license, exceptions contain licensing information in them.
+
+Copyright (C) 2002-2003 Andrew Loewenstern
+
+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.
index f5d3a9fca6d1b7c12ed01ffa85c945791175d3aa..75b01574a5222404276c5590feb7dca11e0b3aaa 100644 (file)
@@ -1,3 +1,6 @@
+## Copyright 2002-2003 Andrew Loewenstern, All Rights Reserved
+# see LICENSE.txt for license information
+
 from time import time
 
 from const import reactor
index dc17dca9f13a230b2814a8dfaecf800e4d7c463a..17b046e7e1d3d710ec0113a3ce153c7f79419c45 100644 (file)
@@ -1,5 +1,6 @@
 ##  Airhook Protocol http://airhook.org/protocol.html
-##  Copyright 2002, Andrew Loewenstern, All Rights Reserved
+## Copyright 2002-2003 Andrew Loewenstern, All Rights Reserved
+# see LICENSE.txt for license information
 
 from random import uniform as rand
 from struct import pack, unpack
index 1faab28925f49f2c9a4186e0cca7d32136a28e9b..bdd8edbc239ff8657d8e6d64a50e484d25d16f91 100644 (file)
--- a/const.py
+++ b/const.py
@@ -1,3 +1,6 @@
+## Copyright 2002-2003 Andrew Loewenstern, All Rights Reserved
+# see LICENSE.txt for license information
+
 from twisted.internet.default import SelectReactor ## twistedmatrix.com
 
 reactor = SelectReactor(installSignalHandlers=0)
diff --git a/hash.py b/hash.py
index 6ac97cb66048b04ba1d47c45eceb336392c35e15..441c58a4967ce66d2ad758e919d849f8b3158465 100644 (file)
--- a/hash.py
+++ b/hash.py
@@ -1,4 +1,5 @@
-## Copyright 2002 Andrew Loewenstern, All Rights Reserved
+## Copyright 2002-2003 Andrew Loewenstern, All Rights Reserved
+# see LICENSE.txt for license information
 
 from sha import sha
 import whrandom
index b98785677d2b718d1bd229317d12bdd1cc0011d7..ac0d2c270112b9bc6a2d09d351c6a7364fb1576f 100644 (file)
@@ -1,4 +1,5 @@
-## Copyright 2002 Andrew Loewenstern, All Rights Reserved
+## Copyright 2002-2003 Andrew Loewenstern, All Rights Reserved
+# see LICENSE.txt for license information
 
 from const import reactor
 import const
index 8453942ba0c3ca847a06969375cc3cb330b1b078..3d9c4f1b3a5beb94638b191dd368f6c117532e1e 100644 (file)
--- a/knode.py
+++ b/knode.py
@@ -1,3 +1,6 @@
+## Copyright 2002-2003 Andrew Loewenstern, All Rights Reserved
+# see LICENSE.txt for license information
+
 from node import Node
 from twisted.internet.defer import Deferred
 from const import reactor, NULL_ID
diff --git a/krpc.py b/krpc.py
index 12fb4d399dfa281a8e12b40aa1e4da756c1d71b3..63d9887747594d52005a7746266dd599dfbafb95 100644 (file)
--- a/krpc.py
+++ b/krpc.py
@@ -1,3 +1,6 @@
+## Copyright 2002-2003 Andrew Loewenstern, All Rights Reserved
+# see LICENSE.txt for license information
+
 import airhook
 from twisted.internet.defer import Deferred
 from twisted.protocols import basic
index 05bd51cefb0f2f5b9c76ef1d506c56f922325289..4d4c5bb2f3d65934680d0ba18acda4b028742a4d 100644 (file)
--- a/ktable.py
+++ b/ktable.py
@@ -1,4 +1,5 @@
-## Copyright 2002 Andrew Loewenstern, All Rights Reserved
+## Copyright 2002-2003 Andrew Loewenstern, All Rights Reserved
+# see LICENSE.txt for license information
 
 import time
 from bisect import *
diff --git a/node.py b/node.py
index 93e16052c2e9d92ddc9f45f8a89c80e4f4d08767..3d91a896672c1ff64aa8f45f0c80182dfa584b54 100644 (file)
--- a/node.py
+++ b/node.py
@@ -1,3 +1,6 @@
+## Copyright 2002-2003 Andrew Loewenstern, All Rights Reserved
+# see LICENSE.txt for license information
+
 import hash
 import time
 from types import *
diff --git a/test.py b/test.py
index 4cb499e2ec39a89b576e158743bbcbc3af86e11c..8aee18de5a148a5573087f2b276d5684b7dec79f 100644 (file)
--- a/test.py
+++ b/test.py
@@ -1,3 +1,6 @@
+## Copyright 2002-2003 Andrew Loewenstern, All Rights Reserved
+# see LICENSE.txt for license information
+
 import unittest
 
 import ktable, khashmir
index 407cf1fe5f141ae3ee454055c3c7fa2419f7efc8..0812f3775282267a210216e6564777d6860a1802 100644 (file)
@@ -1,3 +1,6 @@
+## Copyright 2002-2003 Andrew Loewenstern, All Rights Reserved
+# see LICENSE.txt for license information
+
 import unittest
 from airhook import *
 from random import uniform as rand
index 147b8bb75a64ab69892b20fb7f7f7969131e597d..d7f975403c8aaca6efb82237eb0497b7bd81307b 100644 (file)
@@ -1,3 +1,6 @@
+## Copyright 2002-2003 Andrew Loewenstern, All Rights Reserved
+# see LICENSE.txt for license information
+
 from unittest import *
 from krpc import *
 from airhook import *
diff --git a/util.py b/util.py
index 633772ad8a159db7a4833ee700e276367bb8bd62..780885789496c9afbbfe0ec0ae247d1f1048d6cc 100644 (file)
--- a/util.py
+++ b/util.py
@@ -1,3 +1,6 @@
+## Copyright 2002-2003 Andrew Loewenstern, All Rights Reserved
+# see LICENSE.txt for license information
+
 def bucket_stats(l):
     """given a list of khashmir instances, finds min, max, and average number of nodes in tables"""
     max = avg = 0