Update my email address.
authorJelmer Vernooij <jelmer@jelmer.uk>
Fri, 31 Jul 2015 04:54:32 +0000 (04:54 +0000)
committerJelmer Vernooij <jelmer@jelmer.uk>
Fri, 31 Jul 2015 04:54:32 +0000 (04:54 +0000)
30 files changed:
AUTHORS
setup.py
subvertpy/__init__.py
subvertpy/_ra.c
subvertpy/_ra_iter_log.c
subvertpy/client.c
subvertpy/delta.py
subvertpy/editor.c
subvertpy/editor.h
subvertpy/marshall.py
subvertpy/properties.py
subvertpy/ra.h
subvertpy/ra.py
subvertpy/ra_svn.py
subvertpy/repos.c
subvertpy/server.py
subvertpy/tests/__init__.py
subvertpy/tests/test_client.py
subvertpy/tests/test_core.py
subvertpy/tests/test_delta.py
subvertpy/tests/test_marshall.py
subvertpy/tests/test_properties.py
subvertpy/tests/test_ra.py
subvertpy/tests/test_repos.py
subvertpy/tests/test_server.py
subvertpy/tests/test_wc.py
subvertpy/util.c
subvertpy/util.h
subvertpy/wc.c
subvertpy/wc.h

diff --git a/AUTHORS b/AUTHORS
index ac4198b0f3a1cb95ecc976f9fe08e302eb6e6b11..7769bd12eedb2e186b88e51eb0a3d3fe599b0cf3 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,5 +1,5 @@
 Original author and maintainer:
-Jelmer Vernooij <jelmer@samba.org>
+Jelmer Vernooij <jelmer@jelmer.uk>
 
 Dan Villiom Podlaski Christiansen <danchr@gmail.com>
 Mark Lee <subvertpy@lazymalevolence.com>
index d4742f18ea895b59b35d264f7aa46d9814802a21..f79afc7801d707c49c7c1162f85c5015192f35cd 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 # Setup file for subvertpy
-# Copyright (C) 2005-2010 Jelmer Vernooij <jelmer@samba.org>
+# Copyright (C) 2005-2010 Jelmer Vernooij <jelmer@jelmer.uk>
 
 from distutils.core import setup, Command
 from distutils.extension import Extension
@@ -394,7 +394,7 @@ if __name__ == "__main__":
               subvertpy_version_string, ),
           license='LGPLv2.1 or later',
           author='Jelmer Vernooij',
-          author_email='jelmer@samba.org',
+          author_email='jelmer@jelmer.uk',
           long_description="""
           Alternative Python bindings for Subversion. The goal is to have complete, portable and "Pythonic" Python bindings.
           """,
index 281be31afb7d88ba048b09d639fd98e40640fab5..66cf16c2ea81fe534be06dde2f49b9962315ceb2 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2006-2008 Jelmer Vernooij <jelmer@samba.org>
+# Copyright (C) 2006-2008 Jelmer Vernooij <jelmer@jelmer.uk>
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
@@ -16,7 +16,7 @@
 
 """Python bindings for Subversion."""
 
-__author__ = "Jelmer Vernooij <jelmer@samba.org>"
+__author__ = "Jelmer Vernooij <jelmer@jelmer.uk>"
 __version__ = (0, 9, 2)
 
 NODE_DIR = 2
index 76a2a5feeb82b1a1e054518a89a28cc256c6d626..65ce65ccd1bdc8ec1da693aa7f86228a5e7a66cf 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2008-2009 Jelmer Vernooij <jelmer@samba.org>
+ * Copyright © 2008-2009 Jelmer Vernooij <jelmer@jelmer.uk>
  * -*- coding: utf-8 -*-
  *
  * This program is free software; you can redistribute it and/or modify
index 6080da985e9b31881e90ce9504050223ae4dbf8d..89dfdaccd64871cbbd75f861bc502984643fa73d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2010 Jelmer Vernooij <jelmer@samba.org>
+ * Copyright © 2010 Jelmer Vernooij <jelmer@jelmer.uk>
  * -*- coding: utf-8 -*-
  *
  * This program is free software; you can redistribute it and/or modify
index bb95b598ca496542cbf3ba76472be5dc7db03dab..41b80f35e14c006b5a8d3114a4232e3543fbcbc3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2008 Jelmer Vernooij <jelmer@samba.org>
+ * Copyright © 2008 Jelmer Vernooij <jelmer@jelmer.uk>
  * -*- coding: utf-8 -*-
  *
  * This program is free software; you can redistribute it and/or modify
index b4d60bd27b5344c3c529c36672713c7830236eb0..7c89a113491106af48ec78c1eed7eddd3639472b 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2006 Jelmer Vernooij <jelmer@samba.org>
+# Copyright (C) 2005-2006 Jelmer Vernooij <jelmer@jelmer.uk>
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
@@ -15,7 +15,7 @@
 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 """Subversion delta operations."""
 
-__author__ = "Jelmer Vernooij <jelmer@samba.org>"
+__author__ = "Jelmer Vernooij <jelmer@jelmer.uk>"
 __docformat__ = "restructuredText"
 
 from hashlib import (
index 4a188333a99c466662d470ac91d62525e3c0cd74..c4afd2393b72edbcf7421d5a7e7407dba460f7e3 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright © 2008 Jelmer Vernooij <jelmer@samba.org>
+/* Copyright © 2008 Jelmer Vernooij <jelmer@jelmer.uk>
  * -*- coding: utf-8 -*-
  *
  * This program is free software; you can redistribute it and/or modify
index e63a020715e90a8326532746e19b5c182b2b4f67..88f72dd1632c5dec0d41d4e491e83da01fccf398 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2008 Jelmer Vernooij <jelmer@samba.org>
+ * Copyright © 2008 Jelmer Vernooij <jelmer@jelmer.uk>
  * -*- coding: utf-8 -*-
  *
  * This program is free software; you can redistribute it and/or modify
index dd8e210a7f4e35c22043495510363dd5240cc159..99d2b251032b548eb1110116ad3596750569d746 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2006-2007 Jelmer Vernooij <jelmer@samba.org>
+# Copyright (C) 2006-2007 Jelmer Vernooij <jelmer@jelmer.uk>
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
index 7fca7884dc10888d3649a808690af99f328ccc83..37f310c3cd52d11057b843e708b19b24acae0029 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@samba.org>
+# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@jelmer.uk>
  
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
@@ -15,7 +15,7 @@
 
 """Handling of Subversion properties."""
 
-__author__ = "Jelmer Vernooij <jelmer@samba.org>"
+__author__ = "Jelmer Vernooij <jelmer@jelmer.uk>"
 __docformat__ = "restructuredText"
 
 import bisect, calendar, time, urlparse
index 803cfc2541865ec2ec31ee15564ea3a16629a92a..4a148c6769541048c43a20bfc6a6c7c49c18ab4e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2008 Jelmer Vernooij <jelmer@samba.org>
+ * Copyright © 2008 Jelmer Vernooij <jelmer@jelmer.uk>
  * -*- coding: utf-8 -*-
  *
  * This program is free software; you can redistribute it and/or modify
index 9a4e38122cb0507f471468ccbf64f6d22e6622dc..a73b71340e909113b685f17429d0217f1da5804c 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2006-2008 Jelmer Vernooij <jelmer@samba.org>
+# Copyright (C) 2006-2008 Jelmer Vernooij <jelmer@jelmer.uk>
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
@@ -15,7 +15,7 @@
 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 """Python bindings for Subversion."""
 
-__author__ = "Jelmer Vernooij <jelmer@samba.org>"
+__author__ = "Jelmer Vernooij <jelmer@jelmer.uk>"
 
 from subvertpy import SubversionException, ERR_BAD_URL 
 
index 722ec14c3a91ee54484fd23b36a890306595ca06..08e0348cf152898bcff91c1f35e290dd17366737 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2006-2008 Jelmer Vernooij <jelmer@samba.org>
+# Copyright (C) 2006-2008 Jelmer Vernooij <jelmer@jelmer.uk>
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
@@ -15,7 +15,7 @@
 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 """Python bindings for Subversion."""
 
-__author__ = "Jelmer Vernooij <jelmer@samba.org>"
+__author__ = "Jelmer Vernooij <jelmer@jelmer.uk>"
 
 import SocketServer
 import base64
index dac55bd6563c685b6a6be7c8a6633a549c451930..6f1e3c2bc727c45a65c314f3cdd99a8818867ab0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2008 Jelmer Vernooij <jelmer@samba.org>
+ * Copyright © 2008 Jelmer Vernooij <jelmer@jelmer.uk>
  * -*- coding: utf-8 -*-
  *
  * This program is free software; you can redistribute it and/or modify
index 24d0476e8634a03027f124ea98ebcc96e1581834..e6ab2f4ff6c9fbe58196562238535205b309856d 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2006 Jelmer Vernooij <jelmer@samba.org>
+# Copyright (C) 2006 Jelmer Vernooij <jelmer@jelmer.uk>
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
index 17ec25a9576a1a33771c7c6c408326f0316da70f..f4394f81fe2ccef3ee087b6ea12eccd30b60a19d 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2006-2008 Jelmer Vernooij <jelmer@samba.org>
+# Copyright (C) 2006-2008 Jelmer Vernooij <jelmer@jelmer.uk>
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
@@ -16,7 +16,7 @@
 
 """Tests for subvertpy."""
 
-__author__ = 'Jelmer Vernooij <jelmer@samba.org>'
+__author__ = 'Jelmer Vernooij <jelmer@jelmer.uk>'
 __docformat__ = 'restructuredText'
 
 from cStringIO import StringIO
index 60a59923c784b7eda57f35886d67304e61ae4cd1..5c6a120057be53d14058496c9f1201c34283b3f4 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@samba.org>
+# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@jelmer.uk>
  
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
index 1c79f7595edde102f201bdad981529b5536b41f1..fda776c6b995102d3a18c5a345976f41760ea1d6 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@samba.org>
+# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@jelmer.uk>
  
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
index 76eeecb1b7000845393ec4c80f2eaa344c8621a9..ee068c7c0de6e7cee145d83d172cc82323dd1659 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@samba.org>
+# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@jelmer.uk>
  
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
index 2eaa771424d49ae067c3637751b581cad4c375ef..7dca4eafdc0a7644e07e3aae2d3679e9238d608a 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2006-2007 Jelmer Vernooij <jelmer@samba.org>
+# Copyright (C) 2006-2007 Jelmer Vernooij <jelmer@jelmer.uk>
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
index 016202954575d35fadb12ad7af79ccedd6ac05de..47362df235d3bb419415339807598f80c28dd021 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@samba.org>
+# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@jelmer.uk>
  
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
index 4042a725286350fa45546302d8f2d452bdd0f690..e8292474b18bcd1bf3c52f7810be51c96db38e03 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@samba.org>
+# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@jelmer.uk>
  
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
index 2318ff6c7171aeee1bb8cc26e435bf33aa389e5d..30260cfff151d67eec31b0c1a651c173376eeea9 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@samba.org>
+# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@jelmer.uk>
  
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
index 54077d7ade085439a96501b671c38d380a7eb804..a0430320cbef5bfd66f410bfbb7dfa69efaf89df 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@samba.org>
+# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@jelmer.uk>
  
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
index 7bac5913f985c760c8ea6c0876bd6773338d40bf..315ff3b774293fd73eb9775ab9b29db034778ee4 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@samba.org>
+# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@jelmer.uk>
  
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
index ad5f1ef30bba653e7926571290c64e5356169460..083efa6d13aa13c3d899167345c1a458385d2916 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2008 Jelmer Vernooij <jelmer@samba.org>
+ * Copyright © 2008 Jelmer Vernooij <jelmer@jelmer.uk>
  * -*- coding: utf-8 -*-
  *
  * This program is free software; you can redistribute it and/or modify
index 3252749af60ac5180faf0b70ff2ea2f817809d3b..d22313a61edb8c0b6ceedd83a16234eb6600a94d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2008 Jelmer Vernooij <jelmer@samba.org>
+ * Copyright © 2008 Jelmer Vernooij <jelmer@jelmer.uk>
  * -*- coding: utf-8 -*-
  *
  * This program is free software; you can redistribute it and/or modify
index a42df6055048b13e8905e91d1e389cba173d925c..fe062ee179690fcd4f59e41a6d9fb19993cb38a2 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2008 Jelmer Vernooij <jelmer@samba.org>
+ * Copyright © 2008 Jelmer Vernooij <jelmer@jelmer.uk>
  * -*- coding: utf-8 -*-
  *
  * This program is free software; you can redistribute it and/or modify
index 92cdaaae3ddbbd20ecf2fd59864a9229c2377fb8..854611dd3d6f9d514bbb9aa60ac9be7e4931ec7b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2008 Jelmer Vernooij <jelmer@samba.org>
+ * Copyright © 2008 Jelmer Vernooij <jelmer@jelmer.uk>
  * -*- coding: utf-8 -*-
  *
  * This program is free software; you can redistribute it and/or modify