summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2005-09-02 05:32:52 +0000
committerBob Halley <halley@dnspython.org>2005-09-02 05:32:52 +0000
commitb1ac611ba847e9df17cb46150e04d5b2699a72b7 (patch)
treeab97c9e0c82a21eb1fad78dff32685d4a8cea9be
parentf7b87372077894d80cdc82f20fee5daba9881489 (diff)
downloaddnspython-b1ac611ba847e9df17cb46150e04d5b2699a72b7.tar.gz
update copyrights
Original author: Bob Halley <halley@dnspython.org> Date: 2005-01-08 08:13:48
-rw-r--r--Makefile2
-rw-r--r--dns/__init__.py2
-rw-r--r--dns/dnssec.py2
-rw-r--r--dns/exception.py2
-rw-r--r--dns/flags.py2
-rw-r--r--dns/inet.py2
-rw-r--r--dns/ipv4.py2
-rw-r--r--dns/ipv6.py2
-rw-r--r--dns/message.py2
-rw-r--r--dns/name.py2
-rw-r--r--dns/namedict.py2
-rw-r--r--dns/node.py2
-rw-r--r--dns/opcode.py2
-rw-r--r--dns/query.py2
-rw-r--r--dns/rcode.py2
-rw-r--r--dns/rdata.py2
-rw-r--r--dns/rdataclass.py2
-rw-r--r--dns/rdataset.py2
-rw-r--r--dns/rdatatype.py2
-rw-r--r--dns/rdtypes/ANY/AFSDB.py2
-rw-r--r--dns/rdtypes/ANY/CERT.py2
-rw-r--r--dns/rdtypes/ANY/CNAME.py2
-rw-r--r--dns/rdtypes/ANY/DNAME.py2
-rw-r--r--dns/rdtypes/ANY/DNSKEY.py2
-rw-r--r--dns/rdtypes/ANY/DS.py2
-rw-r--r--dns/rdtypes/ANY/GPOS.py2
-rw-r--r--dns/rdtypes/ANY/HINFO.py2
-rw-r--r--dns/rdtypes/ANY/ISDN.py2
-rw-r--r--dns/rdtypes/ANY/KEY.py2
-rw-r--r--dns/rdtypes/ANY/LOC.py2
-rw-r--r--dns/rdtypes/ANY/MX.py2
-rw-r--r--dns/rdtypes/ANY/NS.py2
-rw-r--r--dns/rdtypes/ANY/NSEC.py2
-rw-r--r--dns/rdtypes/ANY/NXT.py2
-rw-r--r--dns/rdtypes/ANY/PTR.py2
-rw-r--r--dns/rdtypes/ANY/RP.py2
-rw-r--r--dns/rdtypes/ANY/RRSIG.py2
-rw-r--r--dns/rdtypes/ANY/RT.py2
-rw-r--r--dns/rdtypes/ANY/SIG.py2
-rw-r--r--dns/rdtypes/ANY/SOA.py2
-rw-r--r--dns/rdtypes/ANY/SSHFP.py2
-rw-r--r--dns/rdtypes/ANY/TXT.py2
-rw-r--r--dns/rdtypes/ANY/X25.py2
-rw-r--r--dns/rdtypes/ANY/__init__.py2
-rw-r--r--dns/rdtypes/IN/A.py2
-rw-r--r--dns/rdtypes/IN/AAAA.py2
-rw-r--r--dns/rdtypes/IN/APL.py2
-rw-r--r--dns/rdtypes/IN/KX.py2
-rw-r--r--dns/rdtypes/IN/NAPTR.py2
-rw-r--r--dns/rdtypes/IN/NSAP.py2
-rw-r--r--dns/rdtypes/IN/NSAP_PTR.py2
-rw-r--r--dns/rdtypes/IN/PX.py2
-rw-r--r--dns/rdtypes/IN/SRV.py2
-rw-r--r--dns/rdtypes/IN/WKS.py2
-rw-r--r--dns/rdtypes/IN/__init__.py2
-rw-r--r--dns/rdtypes/__init__.py2
-rw-r--r--dns/rdtypes/keybase.py2
-rw-r--r--dns/rdtypes/mxbase.py2
-rw-r--r--dns/rdtypes/nsbase.py2
-rw-r--r--dns/rdtypes/sigbase.py2
-rw-r--r--dns/renderer.py2
-rw-r--r--dns/resolver.py2
-rw-r--r--dns/rrset.py2
-rw-r--r--dns/set.py2
-rw-r--r--dns/tokenizer.py2
-rw-r--r--dns/tsig.py2
-rw-r--r--dns/tsigkeyring.py2
-rw-r--r--dns/ttl.py2
-rw-r--r--dns/update.py2
-rw-r--r--dns/version.py2
-rw-r--r--dns/zone.py2
-rwxr-xr-xsetup.py2
-rw-r--r--tests/Makefile2
-rw-r--r--tests/flags.py2
-rw-r--r--tests/message.py2
-rw-r--r--tests/name.py2
-rw-r--r--tests/namedict.py2
-rw-r--r--tests/ntoaaton.py2
-rw-r--r--tests/rdtypeandclass.py2
-rw-r--r--tests/resolver.py2
-rw-r--r--tests/rrset.py2
-rw-r--r--tests/set.py2
-rw-r--r--tests/tokenizer.py2
-rw-r--r--tests/update.py2
-rw-r--r--tests/zone.py2
-rw-r--r--util/copyrights199
86 files changed, 184 insertions, 185 deletions
diff --git a/Makefile b/Makefile
index a1d02e6..d71832b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/__init__.py b/dns/__init__.py
index 933f0e2..f14e06a 100644
--- a/dns/__init__.py
+++ b/dns/__init__.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/dnssec.py b/dns/dnssec.py
index 550494e..d4feb65 100644
--- a/dns/dnssec.py
+++ b/dns/dnssec.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/exception.py b/dns/exception.py
index 8b51def..930590c 100644
--- a/dns/exception.py
+++ b/dns/exception.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/flags.py b/dns/flags.py
index 0fca268..6e258b4 100644
--- a/dns/flags.py
+++ b/dns/flags.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2004 Nominum, Inc.
+# Copyright (C) 2001-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/inet.py b/dns/inet.py
index c12dbbf..36cd290 100644
--- a/dns/inet.py
+++ b/dns/inet.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/ipv4.py b/dns/ipv4.py
index 42a51a2..579c3d7 100644
--- a/dns/ipv4.py
+++ b/dns/ipv4.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/ipv6.py b/dns/ipv6.py
index ec08a85..5493e43 100644
--- a/dns/ipv6.py
+++ b/dns/ipv6.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/message.py b/dns/message.py
index 622c5b3..eae5718 100644
--- a/dns/message.py
+++ b/dns/message.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2004 Nominum, Inc.
+# Copyright (C) 2001-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/name.py b/dns/name.py
index e652931..3bf5b6e 100644
--- a/dns/name.py
+++ b/dns/name.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2004 Nominum, Inc.
+# Copyright (C) 2001-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/namedict.py b/dns/namedict.py
index 3e36ae8..ca2a501 100644
--- a/dns/namedict.py
+++ b/dns/namedict.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/node.py b/dns/node.py
index e8e1c79..b3b6939 100644
--- a/dns/node.py
+++ b/dns/node.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2004 Nominum, Inc.
+# Copyright (C) 2001-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/opcode.py b/dns/opcode.py
index 2c08efb..d64b454 100644
--- a/dns/opcode.py
+++ b/dns/opcode.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2004 Nominum, Inc.
+# Copyright (C) 2001-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/query.py b/dns/query.py
index d5f86fb..c815bde 100644
--- a/dns/query.py
+++ b/dns/query.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rcode.py b/dns/rcode.py
index 1a2c86a..469d3d8 100644
--- a/dns/rcode.py
+++ b/dns/rcode.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2004 Nominum, Inc.
+# Copyright (C) 2001-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdata.py b/dns/rdata.py
index 8523205..fde2f1c 100644
--- a/dns/rdata.py
+++ b/dns/rdata.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2004 Nominum, Inc.
+# Copyright (C) 2001-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdataclass.py b/dns/rdataclass.py
index bcc25d2..09b438c 100644
--- a/dns/rdataclass.py
+++ b/dns/rdataclass.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2004 Nominum, Inc.
+# Copyright (C) 2001-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdataset.py b/dns/rdataset.py
index 518d89b..4205225 100644
--- a/dns/rdataset.py
+++ b/dns/rdataset.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2004 Nominum, Inc.
+# Copyright (C) 2001-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdatatype.py b/dns/rdatatype.py
index 560ffb9..839ad01 100644
--- a/dns/rdatatype.py
+++ b/dns/rdatatype.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2004 Nominum, Inc.
+# Copyright (C) 2001-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/AFSDB.py b/dns/rdtypes/ANY/AFSDB.py
index 559a9da..d8eb774 100644
--- a/dns/rdtypes/ANY/AFSDB.py
+++ b/dns/rdtypes/ANY/AFSDB.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/CERT.py b/dns/rdtypes/ANY/CERT.py
index 310c424..191ec6d 100644
--- a/dns/rdtypes/ANY/CERT.py
+++ b/dns/rdtypes/ANY/CERT.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/CNAME.py b/dns/rdtypes/ANY/CNAME.py
index a6df704..9572e59 100644
--- a/dns/rdtypes/ANY/CNAME.py
+++ b/dns/rdtypes/ANY/CNAME.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/DNAME.py b/dns/rdtypes/ANY/DNAME.py
index 31be8c8..672a763 100644
--- a/dns/rdtypes/ANY/DNAME.py
+++ b/dns/rdtypes/ANY/DNAME.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/DNSKEY.py b/dns/rdtypes/ANY/DNSKEY.py
index b9c3dec..34cc751 100644
--- a/dns/rdtypes/ANY/DNSKEY.py
+++ b/dns/rdtypes/ANY/DNSKEY.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2004 Nominum, Inc.
+# Copyright (C) 2004, 2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/DS.py b/dns/rdtypes/ANY/DS.py
index 0b34da9..6b17155 100644
--- a/dns/rdtypes/ANY/DS.py
+++ b/dns/rdtypes/ANY/DS.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/GPOS.py b/dns/rdtypes/ANY/GPOS.py
index fb903d1..3361e32 100644
--- a/dns/rdtypes/ANY/GPOS.py
+++ b/dns/rdtypes/ANY/GPOS.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/HINFO.py b/dns/rdtypes/ANY/HINFO.py
index eb75464..dfb1993 100644
--- a/dns/rdtypes/ANY/HINFO.py
+++ b/dns/rdtypes/ANY/HINFO.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/ISDN.py b/dns/rdtypes/ANY/ISDN.py
index 5d9a83e..f2f9d3b 100644
--- a/dns/rdtypes/ANY/ISDN.py
+++ b/dns/rdtypes/ANY/ISDN.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/KEY.py b/dns/rdtypes/ANY/KEY.py
index 9f531f8..822135f 100644
--- a/dns/rdtypes/ANY/KEY.py
+++ b/dns/rdtypes/ANY/KEY.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/LOC.py b/dns/rdtypes/ANY/LOC.py
index f58d208..4ed5c46 100644
--- a/dns/rdtypes/ANY/LOC.py
+++ b/dns/rdtypes/ANY/LOC.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/MX.py b/dns/rdtypes/ANY/MX.py
index 24312b8..3907356 100644
--- a/dns/rdtypes/ANY/MX.py
+++ b/dns/rdtypes/ANY/MX.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/NS.py b/dns/rdtypes/ANY/NS.py
index 4db3b55..77f5c3d 100644
--- a/dns/rdtypes/ANY/NS.py
+++ b/dns/rdtypes/ANY/NS.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/NSEC.py b/dns/rdtypes/ANY/NSEC.py
index c4f1d2f..8be2b46 100644
--- a/dns/rdtypes/ANY/NSEC.py
+++ b/dns/rdtypes/ANY/NSEC.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2004 Nominum, Inc.
+# Copyright (C) 2004, 2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/NXT.py b/dns/rdtypes/ANY/NXT.py
index 9383799..95c9eec 100644
--- a/dns/rdtypes/ANY/NXT.py
+++ b/dns/rdtypes/ANY/NXT.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/PTR.py b/dns/rdtypes/ANY/PTR.py
index 70753f2..33ba34c 100644
--- a/dns/rdtypes/ANY/PTR.py
+++ b/dns/rdtypes/ANY/PTR.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/RP.py b/dns/rdtypes/ANY/RP.py
index caa48c1..145decb 100644
--- a/dns/rdtypes/ANY/RP.py
+++ b/dns/rdtypes/ANY/RP.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/RRSIG.py b/dns/rdtypes/ANY/RRSIG.py
index 1f4cdda..1325c6d 100644
--- a/dns/rdtypes/ANY/RRSIG.py
+++ b/dns/rdtypes/ANY/RRSIG.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2004 Nominum, Inc.
+# Copyright (C) 2004, 2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/RT.py b/dns/rdtypes/ANY/RT.py
index b42e9fe..11424b5 100644
--- a/dns/rdtypes/ANY/RT.py
+++ b/dns/rdtypes/ANY/RT.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/SIG.py b/dns/rdtypes/ANY/SIG.py
index e63ebea..627bdbd 100644
--- a/dns/rdtypes/ANY/SIG.py
+++ b/dns/rdtypes/ANY/SIG.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/SOA.py b/dns/rdtypes/ANY/SOA.py
index 61cf99a..9acd560 100644
--- a/dns/rdtypes/ANY/SOA.py
+++ b/dns/rdtypes/ANY/SOA.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/SSHFP.py b/dns/rdtypes/ANY/SSHFP.py
index d1fc62b..b23fda3 100644
--- a/dns/rdtypes/ANY/SSHFP.py
+++ b/dns/rdtypes/ANY/SSHFP.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2004 Nominum, Inc.
+# Copyright (C) 2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/TXT.py b/dns/rdtypes/ANY/TXT.py
index 3426748..148b9f8 100644
--- a/dns/rdtypes/ANY/TXT.py
+++ b/dns/rdtypes/ANY/TXT.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/X25.py b/dns/rdtypes/ANY/X25.py
index 8a973fd..3466e91 100644
--- a/dns/rdtypes/ANY/X25.py
+++ b/dns/rdtypes/ANY/X25.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/ANY/__init__.py b/dns/rdtypes/ANY/__init__.py
index f6f7c14..8c7010d 100644
--- a/dns/rdtypes/ANY/__init__.py
+++ b/dns/rdtypes/ANY/__init__.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/IN/A.py b/dns/rdtypes/IN/A.py
index a2ca3b4..3c0e51e 100644
--- a/dns/rdtypes/IN/A.py
+++ b/dns/rdtypes/IN/A.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/IN/AAAA.py b/dns/rdtypes/IN/AAAA.py
index 598f1cd..579ac79 100644
--- a/dns/rdtypes/IN/AAAA.py
+++ b/dns/rdtypes/IN/AAAA.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/IN/APL.py b/dns/rdtypes/IN/APL.py
index 4499011..72eab2c 100644
--- a/dns/rdtypes/IN/APL.py
+++ b/dns/rdtypes/IN/APL.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/IN/KX.py b/dns/rdtypes/IN/KX.py
index cddbae1..54cb0c3 100644
--- a/dns/rdtypes/IN/KX.py
+++ b/dns/rdtypes/IN/KX.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/IN/NAPTR.py b/dns/rdtypes/IN/NAPTR.py
index 236f368..832276d 100644
--- a/dns/rdtypes/IN/NAPTR.py
+++ b/dns/rdtypes/IN/NAPTR.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/IN/NSAP.py b/dns/rdtypes/IN/NSAP.py
index 14cc56f..7d638d1 100644
--- a/dns/rdtypes/IN/NSAP.py
+++ b/dns/rdtypes/IN/NSAP.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/IN/NSAP_PTR.py b/dns/rdtypes/IN/NSAP_PTR.py
index 327581a..8ed19a7 100644
--- a/dns/rdtypes/IN/NSAP_PTR.py
+++ b/dns/rdtypes/IN/NSAP_PTR.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/IN/PX.py b/dns/rdtypes/IN/PX.py
index 632c064..74e05ab 100644
--- a/dns/rdtypes/IN/PX.py
+++ b/dns/rdtypes/IN/PX.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/IN/SRV.py b/dns/rdtypes/IN/SRV.py
index 316e92a..38f68cd 100644
--- a/dns/rdtypes/IN/SRV.py
+++ b/dns/rdtypes/IN/SRV.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/IN/WKS.py b/dns/rdtypes/IN/WKS.py
index b92318f..dcf62bf 100644
--- a/dns/rdtypes/IN/WKS.py
+++ b/dns/rdtypes/IN/WKS.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/IN/__init__.py b/dns/rdtypes/IN/__init__.py
index 1f5ecd3..fcc63b5 100644
--- a/dns/rdtypes/IN/__init__.py
+++ b/dns/rdtypes/IN/__init__.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/__init__.py b/dns/rdtypes/__init__.py
index 80f2ef8..96c1615 100644
--- a/dns/rdtypes/__init__.py
+++ b/dns/rdtypes/__init__.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/keybase.py b/dns/rdtypes/keybase.py
index aa30843..59fe534 100644
--- a/dns/rdtypes/keybase.py
+++ b/dns/rdtypes/keybase.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2004 Nominum, Inc.
+# Copyright (C) 2004, 2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/mxbase.py b/dns/rdtypes/mxbase.py
index 7bffb96..ce79e5c 100644
--- a/dns/rdtypes/mxbase.py
+++ b/dns/rdtypes/mxbase.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/nsbase.py b/dns/rdtypes/nsbase.py
index 3d8b2d4..d8f7f67 100644
--- a/dns/rdtypes/nsbase.py
+++ b/dns/rdtypes/nsbase.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rdtypes/sigbase.py b/dns/rdtypes/sigbase.py
index bc7659a..96e2468 100644
--- a/dns/rdtypes/sigbase.py
+++ b/dns/rdtypes/sigbase.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2004 Nominum, Inc.
+# Copyright (C) 2004, 2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/renderer.py b/dns/renderer.py
index 3982d06..bec0490 100644
--- a/dns/renderer.py
+++ b/dns/renderer.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2004 Nominum, Inc.
+# Copyright (C) 2001-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/resolver.py b/dns/resolver.py
index 85fcfb9..6d4fa91 100644
--- a/dns/resolver.py
+++ b/dns/resolver.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/rrset.py b/dns/rrset.py
index 609cab1..82638e2 100644
--- a/dns/rrset.py
+++ b/dns/rrset.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/set.py b/dns/set.py
index af0a46a..a5dd966 100644
--- a/dns/set.py
+++ b/dns/set.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/tokenizer.py b/dns/tokenizer.py
index 45ab8fc..4f96a67 100644
--- a/dns/tokenizer.py
+++ b/dns/tokenizer.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/tsig.py b/dns/tsig.py
index c2aabdc..480d26e 100644
--- a/dns/tsig.py
+++ b/dns/tsig.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2004 Nominum, Inc.
+# Copyright (C) 2001-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/tsigkeyring.py b/dns/tsigkeyring.py
index 032a3d8..ce763f8 100644
--- a/dns/tsigkeyring.py
+++ b/dns/tsigkeyring.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/ttl.py b/dns/ttl.py
index 3f89029..9de851b 100644
--- a/dns/ttl.py
+++ b/dns/ttl.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/update.py b/dns/update.py
index 910b1ea..4595c96 100644
--- a/dns/update.py
+++ b/dns/update.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/version.py b/dns/version.py
index 790f17c..269e07f 100644
--- a/dns/version.py
+++ b/dns/version.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/dns/zone.py b/dns/zone.py
index e9a1aaf..bef161e 100644
--- a/dns/zone.py
+++ b/dns/zone.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/setup.py b/setup.py
index 22bd6d3..76e12d6 100755
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/tests/Makefile b/tests/Makefile
index 9e0c6c2..7ca1456 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/tests/flags.py b/tests/flags.py
index 1d20388..fe4c927 100644
--- a/tests/flags.py
+++ b/tests/flags.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/tests/message.py b/tests/message.py
index f790ff8..cbe7936 100644
--- a/tests/message.py
+++ b/tests/message.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/tests/name.py b/tests/name.py
index 9de3dbe..24abfcd 100644
--- a/tests/name.py
+++ b/tests/name.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/tests/namedict.py b/tests/namedict.py
index 7cc8120..a1c6843 100644
--- a/tests/namedict.py
+++ b/tests/namedict.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/tests/ntoaaton.py b/tests/ntoaaton.py
index d1ddeab..33678b3 100644
--- a/tests/ntoaaton.py
+++ b/tests/ntoaaton.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/tests/rdtypeandclass.py b/tests/rdtypeandclass.py
index ff44033..d6e571c 100644
--- a/tests/rdtypeandclass.py
+++ b/tests/rdtypeandclass.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/tests/resolver.py b/tests/resolver.py
index 88c4091..0b17d0b 100644
--- a/tests/resolver.py
+++ b/tests/resolver.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/tests/rrset.py b/tests/rrset.py
index 9a1bb9c..910a9d3 100644
--- a/tests/rrset.py
+++ b/tests/rrset.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/tests/set.py b/tests/set.py
index 4abf8a1..e2dd9b0 100644
--- a/tests/set.py
+++ b/tests/set.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/tests/tokenizer.py b/tests/tokenizer.py
index 3bd825c..62d89c1 100644
--- a/tests/tokenizer.py
+++ b/tests/tokenizer.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/tests/update.py b/tests/update.py
index 33494d3..4587e7f 100644
--- a/tests/update.py
+++ b/tests/update.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/tests/zone.py b/tests/zone.py
index 2394f81..16af41e 100644
--- a/tests/zone.py
+++ b/tests/zone.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004 Nominum, Inc.
+# Copyright (C) 2003-2005 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose with or without fee is hereby granted,
diff --git a/util/copyrights b/util/copyrights
index 41a3b35..5033f0f 100644
--- a/util/copyrights
+++ b/util/copyrights
@@ -1,100 +1,99 @@
-./.cvsignore X 2003,2004
-./ChangeLog X 2003,2004
-./LICENSE X 2003,2004
-./MANIFEST.in X 2003,2004
-./Makefile MAKE 2003,2004
-./README X 2003,2004
-./TODO X 2003,2004
-./dns/__init__.py PYTHON 2003,2004
-./dns/dnssec.py PYTHON 2003,2004
-./dns/exception.py PYTHON 2003,2004
-./dns/flags.py PYTHON 2001,2002,2003,2004
-./dns/inet.py PYTHON 2003,2004
-./dns/ipv4.py PYTHON 2003,2004
-./dns/ipv6.py PYTHON 2003,2004
-./dns/message.py PYTHON 2001,2002,2003,2004
-./dns/name.py PYTHON 2001,2002,2003,2004
-./dns/namedict.py PYTHON 2003,2004
-./dns/node.py PYTHON 2001,2002,2003,2004
-./dns/opcode.py PYTHON 2001,2002,2003,2004
-./dns/query.py PYTHON 2003,2004
-./dns/rcode.py PYTHON 2001,2002,2003,2004
-./dns/rdata.py PYTHON 2001,2002,2003,2004
-./dns/rdataclass.py PYTHON 2001,2002,2003,2004
-./dns/rdataset.py PYTHON 2001,2002,2003,2004
-./dns/rdatatype.py PYTHON 2001,2002,2003,2004
-./dns/rdtypes/ANY/AFSDB.py PYTHON 2003,2004
-./dns/rdtypes/ANY/CERT.py PYTHON 2003,2004
-./dns/rdtypes/ANY/CNAME.py PYTHON 2003,2004
-./dns/rdtypes/ANY/DNAME.py PYTHON 2003,2004
-./dns/rdtypes/ANY/DNSKEY.py PYTHON 2004
-./dns/rdtypes/ANY/DS.py PYTHON 2003,2004
-./dns/rdtypes/ANY/GPOS.py PYTHON 2003,2004
-./dns/rdtypes/ANY/HINFO.py PYTHON 2003,2004
-./dns/rdtypes/ANY/ISDN.py PYTHON 2003,2004
-./dns/rdtypes/ANY/KEY.py PYTHON 2003,2004
-./dns/rdtypes/ANY/LOC.py PYTHON 2003,2004
-./dns/rdtypes/ANY/MX.py PYTHON 2003,2004
-./dns/rdtypes/ANY/NS.py PYTHON 2003,2004
-./dns/rdtypes/ANY/NSEC.py PYTHON 2004
-./dns/rdtypes/ANY/NXT.py PYTHON 2003,2004
-./dns/rdtypes/ANY/PTR.py PYTHON 2003,2004
-./dns/rdtypes/ANY/RP.py PYTHON 2003,2004
-./dns/rdtypes/ANY/RRSIG.py PYTHON 2004
-./dns/rdtypes/ANY/RT.py PYTHON 2003,2004
-./dns/rdtypes/ANY/SIG.py PYTHON 2003,2004
-./dns/rdtypes/ANY/SOA.py PYTHON 2003,2004
-./dns/rdtypes/ANY/TXT.py PYTHON 2003,2004
-./dns/rdtypes/ANY/X25.py PYTHON 2003,2004
-./dns/rdtypes/ANY/__init__.py PYTHON 2003,2004
-./dns/rdtypes/IN/A.py PYTHON 2003,2004
-./dns/rdtypes/IN/AAAA.py PYTHON 2003,2004
-./dns/rdtypes/IN/APL.py PYTHON 2003,2004
-./dns/rdtypes/IN/KX.py PYTHON 2003,2004
-./dns/rdtypes/IN/NAPTR.py PYTHON 2003,2004
-./dns/rdtypes/IN/NSAP.py PYTHON 2003,2004
-./dns/rdtypes/IN/NSAP_PTR.py PYTHON 2003,2004
-./dns/rdtypes/IN/PX.py PYTHON 2003,2004
-./dns/rdtypes/IN/SRV.py PYTHON 2003,2004
-./dns/rdtypes/IN/WKS.py PYTHON 2003,2004
-./dns/rdtypes/IN/__init__.py PYTHON 2003,2004
-./dns/rdtypes/__init__.py PYTHON 2003,2004
-./dns/rdtypes/keybase.py PYTHON 2004
-./dns/rdtypes/mxbase.py PYTHON 2003,2004
-./dns/rdtypes/nsbase.py PYTHON 2003,2004
-./dns/rdtypes/sigbase.py PYTHON 2004
-./dns/renderer.py PYTHON 2001,2002,2003,2004
-./dns/resolver.py PYTHON 2003,2004
-./dns/rrset.py PYTHON 2003,2004
-./dns/set.py PYTHON 2003,2004
-./dns/tokenizer.py PYTHON 2003,2004
-./dns/tsig.py PYTHON 2001,2002,2003,2004
-./dns/tsigkeyring.py PYTHON 2003,2004
-./dns/ttl.py PYTHON 2003,2004
-./dns/update.py PYTHON 2003,2004
-./dns/version.py PYTHON 2003,2004
-./dns/zone.py PYTHON 2003,2004
-./examples/mx.py X 2003,2004
-./examples/name.py X 2003,2004
-./examples/reverse.py X 2003,2004
-./examples/xfr.py X 2003,2004
-./setup.py PYTHON 2003,2004
-./tests/.cvsignore X 2003,2004
-./tests/Makefile MAKE 2003,2004
-./tests/example X 2003,2004
-./tests/example1.good X 2003,2004
-./tests/example2.good X 2003,2004
-./tests/flags.py PYTHON 2003,2004
-./tests/message.py PYTHON 2003,2004
-./tests/name.py PYTHON 2003,2004
-./tests/namedict.py PYTHON 2003,2004
-./tests/ntoaaton.py PYTHON 2003,2004
-./tests/rdtypeandclass.py PYTHON 2003,2004
-./tests/resolver.py PYTHON 2003,2004
-./tests/rrset.py PYTHON 2003,2004
-./tests/set.py PYTHON 2003,2004
-./tests/tokenizer.py PYTHON 2003,2004
-./tests/update.py PYTHON 2003,2004
-./tests/zone.py PYTHON 2003,2004
-./util/COPYRIGHT X 2003,2004
-./util/copyrights X 2003,2004
+./ChangeLog X 2003,2004,2005
+./LICENSE X 2003,2004,2005
+./MANIFEST.in X 2003,2004,2005
+./Makefile MAKE 2003,2004,2005
+./README X 2003,2004,2005
+./TODO X 2003,2004,2005
+./dns/__init__.py PYTHON 2003,2004,2005
+./dns/dnssec.py PYTHON 2003,2004,2005
+./dns/exception.py PYTHON 2003,2004,2005
+./dns/flags.py PYTHON 2001,2002,2003,2004,2005
+./dns/inet.py PYTHON 2003,2004,2005
+./dns/ipv4.py PYTHON 2003,2004,2005
+./dns/ipv6.py PYTHON 2003,2004,2005
+./dns/message.py PYTHON 2001,2002,2003,2004,2005
+./dns/name.py PYTHON 2001,2002,2003,2004,2005
+./dns/namedict.py PYTHON 2003,2004,2005
+./dns/node.py PYTHON 2001,2002,2003,2004,2005
+./dns/opcode.py PYTHON 2001,2002,2003,2004,2005
+./dns/query.py PYTHON 2003,2004,2005
+./dns/rcode.py PYTHON 2001,2002,2003,2004,2005
+./dns/rdata.py PYTHON 2001,2002,2003,2004,2005
+./dns/rdataclass.py PYTHON 2001,2002,2003,2004,2005
+./dns/rdataset.py PYTHON 2001,2002,2003,2004,2005
+./dns/rdatatype.py PYTHON 2001,2002,2003,2004,2005
+./dns/rdtypes/ANY/AFSDB.py PYTHON 2003,2004,2005
+./dns/rdtypes/ANY/CERT.py PYTHON 2003,2004,2005
+./dns/rdtypes/ANY/CNAME.py PYTHON 2003,2004,2005
+./dns/rdtypes/ANY/DNAME.py PYTHON 2003,2004,2005
+./dns/rdtypes/ANY/DNSKEY.py PYTHON 2004,2005
+./dns/rdtypes/ANY/DS.py PYTHON 2003,2004,2005
+./dns/rdtypes/ANY/GPOS.py PYTHON 2003,2004,2005
+./dns/rdtypes/ANY/HINFO.py PYTHON 2003,2004,2005
+./dns/rdtypes/ANY/ISDN.py PYTHON 2003,2004,2005
+./dns/rdtypes/ANY/KEY.py PYTHON 2003,2004,2005
+./dns/rdtypes/ANY/LOC.py PYTHON 2003,2004,2005
+./dns/rdtypes/ANY/MX.py PYTHON 2003,2004,2005
+./dns/rdtypes/ANY/NS.py PYTHON 2003,2004,2005
+./dns/rdtypes/ANY/NSEC.py PYTHON 2004,2005
+./dns/rdtypes/ANY/NXT.py PYTHON 2003,2004,2005
+./dns/rdtypes/ANY/PTR.py PYTHON 2003,2004,2005
+./dns/rdtypes/ANY/RP.py PYTHON 2003,2004,2005
+./dns/rdtypes/ANY/RRSIG.py PYTHON 2004,2005
+./dns/rdtypes/ANY/RT.py PYTHON 2003,2004,2005
+./dns/rdtypes/ANY/SIG.py PYTHON 2003,2004,2005
+./dns/rdtypes/ANY/SOA.py PYTHON 2003,2004,2005
+./dns/rdtypes/ANY/SSHFP.py PYTHON 2005
+./dns/rdtypes/ANY/TXT.py PYTHON 2003,2004,2005
+./dns/rdtypes/ANY/X25.py PYTHON 2003,2004,2005
+./dns/rdtypes/ANY/__init__.py PYTHON 2003,2004,2005
+./dns/rdtypes/IN/A.py PYTHON 2003,2004,2005
+./dns/rdtypes/IN/AAAA.py PYTHON 2003,2004,2005
+./dns/rdtypes/IN/APL.py PYTHON 2003,2004,2005
+./dns/rdtypes/IN/KX.py PYTHON 2003,2004,2005
+./dns/rdtypes/IN/NAPTR.py PYTHON 2003,2004,2005
+./dns/rdtypes/IN/NSAP.py PYTHON 2003,2004,2005
+./dns/rdtypes/IN/NSAP_PTR.py PYTHON 2003,2004,2005
+./dns/rdtypes/IN/PX.py PYTHON 2003,2004,2005
+./dns/rdtypes/IN/SRV.py PYTHON 2003,2004,2005
+./dns/rdtypes/IN/WKS.py PYTHON 2003,2004,2005
+./dns/rdtypes/IN/__init__.py PYTHON 2003,2004,2005
+./dns/rdtypes/__init__.py PYTHON 2003,2004,2005
+./dns/rdtypes/keybase.py PYTHON 2004,2005
+./dns/rdtypes/mxbase.py PYTHON 2003,2004,2005
+./dns/rdtypes/nsbase.py PYTHON 2003,2004,2005
+./dns/rdtypes/sigbase.py PYTHON 2004,2005
+./dns/renderer.py PYTHON 2001,2002,2003,2004,2005
+./dns/resolver.py PYTHON 2003,2004,2005
+./dns/rrset.py PYTHON 2003,2004,2005
+./dns/set.py PYTHON 2003,2004,2005
+./dns/tokenizer.py PYTHON 2003,2004,2005
+./dns/tsig.py PYTHON 2001,2002,2003,2004,2005
+./dns/tsigkeyring.py PYTHON 2003,2004,2005
+./dns/ttl.py PYTHON 2003,2004,2005
+./dns/update.py PYTHON 2003,2004,2005
+./dns/version.py PYTHON 2003,2004,2005
+./dns/zone.py PYTHON 2003,2004,2005
+./examples/mx.py X 2003,2004,2005
+./examples/name.py X 2003,2004,2005
+./examples/reverse.py X 2003,2004,2005
+./examples/xfr.py X 2003,2004,2005
+./setup.py PYTHON 2003,2004,2005
+./tests/Makefile MAKE 2003,2004,2005
+./tests/example X 2003,2004,2005
+./tests/example1.good X 2003,2004,2005
+./tests/example2.good X 2003,2004,2005
+./tests/flags.py PYTHON 2003,2004,2005
+./tests/message.py PYTHON 2003,2004,2005
+./tests/name.py PYTHON 2003,2004,2005
+./tests/namedict.py PYTHON 2003,2004,2005
+./tests/ntoaaton.py PYTHON 2003,2004,2005
+./tests/rdtypeandclass.py PYTHON 2003,2004,2005
+./tests/resolver.py PYTHON 2003,2004,2005
+./tests/rrset.py PYTHON 2003,2004,2005
+./tests/set.py PYTHON 2003,2004,2005
+./tests/tokenizer.py PYTHON 2003,2004,2005
+./tests/update.py PYTHON 2003,2004,2005
+./tests/zone.py PYTHON 2003,2004,2005
+./util/COPYRIGHT X 2003,2004,2005
+./util/copyrights X 2003,2004,2005