[wwwsearch-commits] r21647 - wwwsearch/ClientCookie/trunk/ClientCookie

jjlee at codespeak.net jjlee at codespeak.net
Mon Jan 2 20:58:49 CET 2006


Author: jjlee
Date: Mon Jan  2 20:58:46 2006
New Revision: 21647

Modified:
   wwwsearch/ClientCookie/trunk/ClientCookie/_BSDDBCookieJar.py
   wwwsearch/ClientCookie/trunk/ClientCookie/_ClientCookie.py
   wwwsearch/ClientCookie/trunk/ClientCookie/_ConnCache.py
   wwwsearch/ClientCookie/trunk/ClientCookie/_HeadersUtil.py
   wwwsearch/ClientCookie/trunk/ClientCookie/_LWPCookieJar.py
   wwwsearch/ClientCookie/trunk/ClientCookie/_MSIECookieJar.py
   wwwsearch/ClientCookie/trunk/ClientCookie/_MSIEDBCookieJar.py
   wwwsearch/ClientCookie/trunk/ClientCookie/_MozillaCookieJar.py
   wwwsearch/ClientCookie/trunk/ClientCookie/_Opener.py
   wwwsearch/ClientCookie/trunk/ClientCookie/_Request.py
   wwwsearch/ClientCookie/trunk/ClientCookie/_urllib2_support.py
Log:
Update copyright year

Modified: wwwsearch/ClientCookie/trunk/ClientCookie/_BSDDBCookieJar.py
==============================================================================
--- wwwsearch/ClientCookie/trunk/ClientCookie/_BSDDBCookieJar.py	(original)
+++ wwwsearch/ClientCookie/trunk/ClientCookie/_BSDDBCookieJar.py	Mon Jan  2 20:58:46 2006
@@ -1,6 +1,6 @@
 """Persistent CookieJar based on bsddb standard library module.
 
-Copyright 2003-2004 John J Lee <jjl at pobox.com>
+Copyright 2003-2006 John J Lee <jjl at pobox.com>
 
 This code is free software; you can redistribute it and/or modify it under
 the terms of the BSD License (see the file COPYING included with the

Modified: wwwsearch/ClientCookie/trunk/ClientCookie/_ClientCookie.py
==============================================================================
--- wwwsearch/ClientCookie/trunk/ClientCookie/_ClientCookie.py	(original)
+++ wwwsearch/ClientCookie/trunk/ClientCookie/_ClientCookie.py	Mon Jan  2 20:58:46 2006
@@ -22,7 +22,7 @@
 Comments to John J Lee <jjl at pobox.com>.
 
 
-Copyright 2002-2005 John J Lee <jjl at pobox.com>
+Copyright 2002-2006 John J Lee <jjl at pobox.com>
 Copyright 1997-1999 Gisle Aas (original libwww-perl code)
 Copyright 2002-2003 Johnny Lee (original MSIE Perl code)
 

Modified: wwwsearch/ClientCookie/trunk/ClientCookie/_ConnCache.py
==============================================================================
--- wwwsearch/ClientCookie/trunk/ClientCookie/_ConnCache.py	(original)
+++ wwwsearch/ClientCookie/trunk/ClientCookie/_ConnCache.py	Mon Jan  2 20:58:46 2006
@@ -11,7 +11,7 @@
 The ConnectionCache class provides cache expiration.
 
 
-Copyright (C) 2004 John J Lee <jjl at pobox.com>.
+Copyright (C) 2004-2006 John J Lee <jjl at pobox.com>.
 Copyright (C) 2001 Gisle Aas.
 
 This code is free software; you can redistribute it and/or modify it under

Modified: wwwsearch/ClientCookie/trunk/ClientCookie/_HeadersUtil.py
==============================================================================
--- wwwsearch/ClientCookie/trunk/ClientCookie/_HeadersUtil.py	(original)
+++ wwwsearch/ClientCookie/trunk/ClientCookie/_HeadersUtil.py	Mon Jan  2 20:58:46 2006
@@ -1,7 +1,7 @@
 """Utility functions for HTTP header value parsing and construction.
 
 Copyright 1997-1998, Gisle Aas
-Copyright 2002-2004, John J. Lee
+Copyright 2002-2006, John J. Lee
 
 This code is free software; you can redistribute it and/or modify it under
 the terms of the BSD License (see the file COPYING included with the

Modified: wwwsearch/ClientCookie/trunk/ClientCookie/_LWPCookieJar.py
==============================================================================
--- wwwsearch/ClientCookie/trunk/ClientCookie/_LWPCookieJar.py	(original)
+++ wwwsearch/ClientCookie/trunk/ClientCookie/_LWPCookieJar.py	Mon Jan  2 20:58:46 2006
@@ -9,7 +9,7 @@
 (domain_dot and port_spec) while still being compatible with libwww-perl,
 I hope.
 
-Copyright 2002-2004 John J Lee <jjl at pobox.com>
+Copyright 2002-2006 John J Lee <jjl at pobox.com>
 Copyright 1997-1999 Gisle Aas (original libwww-perl code)
 
 This code is free software; you can redistribute it and/or modify it under

Modified: wwwsearch/ClientCookie/trunk/ClientCookie/_MSIECookieJar.py
==============================================================================
--- wwwsearch/ClientCookie/trunk/ClientCookie/_MSIECookieJar.py	(original)
+++ wwwsearch/ClientCookie/trunk/ClientCookie/_MSIECookieJar.py	Mon Jan  2 20:58:46 2006
@@ -1,7 +1,7 @@
 """Microsoft Internet Explorer cookie loading on Windows.
 
 Copyright 2002-2003 Johnny Lee <typo_pl at hotmail.com> (MSIE Perl code)
-Copyright 2002-2004 John J Lee <jjl at pobox.com> (The Python port)
+Copyright 2002-2006 John J Lee <jjl at pobox.com> (The Python port)
 
 This code is free software; you can redistribute it and/or modify it under
 the terms of the BSD License (see the file COPYING included with the

Modified: wwwsearch/ClientCookie/trunk/ClientCookie/_MSIEDBCookieJar.py
==============================================================================
--- wwwsearch/ClientCookie/trunk/ClientCookie/_MSIEDBCookieJar.py	(original)
+++ wwwsearch/ClientCookie/trunk/ClientCookie/_MSIEDBCookieJar.py	Mon Jan  2 20:58:46 2006
@@ -1,6 +1,6 @@
 """Persistent CookieJar based on MS Internet Explorer cookie database.
 
-Copyright 2003-2004 John J Lee <jjl at pobox.com>
+Copyright 2003-2006 John J Lee <jjl at pobox.com>
 
 This code is free software; you can redistribute it and/or modify it under
 the terms of the BSD License (see the file COPYING included with the

Modified: wwwsearch/ClientCookie/trunk/ClientCookie/_MozillaCookieJar.py
==============================================================================
--- wwwsearch/ClientCookie/trunk/ClientCookie/_MozillaCookieJar.py	(original)
+++ wwwsearch/ClientCookie/trunk/ClientCookie/_MozillaCookieJar.py	Mon Jan  2 20:58:46 2006
@@ -1,6 +1,6 @@
 """Mozilla / Netscape cookie loading / saving.
 
-Copyright 2002-2004 John J Lee <jjl at pobox.com>
+Copyright 2002-2006 John J Lee <jjl at pobox.com>
 Copyright 1997-1999 Gisle Aas (original libwww-perl code)
 
 This code is free software; you can redistribute it and/or modify it under

Modified: wwwsearch/ClientCookie/trunk/ClientCookie/_Opener.py
==============================================================================
--- wwwsearch/ClientCookie/trunk/ClientCookie/_Opener.py	(original)
+++ wwwsearch/ClientCookie/trunk/ClientCookie/_Opener.py	Mon Jan  2 20:58:46 2006
@@ -1,7 +1,7 @@
 """Integration with Python standard library module urllib2: OpenerDirector
 class.
 
-Copyright 2004 John J Lee <jjl at pobox.com>
+Copyright 2004-2006 John J Lee <jjl at pobox.com>
 
 This code is free software; you can redistribute it and/or modify it under
 the terms of the BSD License (see the file COPYING included with the

Modified: wwwsearch/ClientCookie/trunk/ClientCookie/_Request.py
==============================================================================
--- wwwsearch/ClientCookie/trunk/ClientCookie/_Request.py	(original)
+++ wwwsearch/ClientCookie/trunk/ClientCookie/_Request.py	Mon Jan  2 20:58:46 2006
@@ -1,6 +1,6 @@
 """Integration with Python standard library module urllib2: Request class.
 
-Copyright 2004 John J Lee <jjl at pobox.com>
+Copyright 2004-2006 John J Lee <jjl at pobox.com>
 
 This code is free software; you can redistribute it and/or modify it under
 the terms of the BSD License (see the file COPYING included with the

Modified: wwwsearch/ClientCookie/trunk/ClientCookie/_urllib2_support.py
==============================================================================
--- wwwsearch/ClientCookie/trunk/ClientCookie/_urllib2_support.py	(original)
+++ wwwsearch/ClientCookie/trunk/ClientCookie/_urllib2_support.py	Mon Jan  2 20:58:46 2006
@@ -3,7 +3,7 @@
 Also includes a redirection bugfix, support for parsing HTML HEAD blocks for
 the META HTTP-EQUIV tag contents, and following Refresh header redirects.
 
-Copyright 2002-2004 John J Lee <jjl at pobox.com>
+Copyright 2002-2006 John J Lee <jjl at pobox.com>
 
 This code is free software; you can redistribute it and/or modify it under
 the terms of the BSD License (see the file COPYING included with the


More information about the wwwsearch-commits mailing list