Kiln » Dependencies » Dulwich Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in master-1, master-0, and 0.9.4

Update some copyright headers.

Changeset c42e47b57ca1

Parent f3836f36502c

by Jelmer Vernooij

Changes to 14 files · Browse files at c42e47b57ca1 Showing diff from parent f3836f36502c Diff from another changeset...

Change 1 of 1 Show Entire File dulwich/​client.py Stacked
 
1
2
 
3
4
5
 
1
 
2
3
4
5
@@ -1,5 +1,5 @@
 # client.py -- Implementation of the server side git protocols -# Copyright (C) 2008-2009 Jelmer Vernooij <jelmer@samba.org> +# Copyright (C) 2008-2013 Jelmer Vernooij <jelmer@samba.org>  # Copyright (C) 2008 John Carr  #  # This program is free software; you can redistribute it and/or
Change 1 of 1 Show Entire File dulwich/​config.py Stacked
 
1
2
 
3
4
5
 
1
 
2
3
4
5
@@ -1,5 +1,5 @@
 # config.py - Reading and writing Git config files -# Copyright (C) 2011 Jelmer Vernooij <jelmer@samba.org> +# Copyright (C) 2011-2013 Jelmer Vernooij <jelmer@samba.org>  #  # This program is free software; you can redistribute it and/or  # modify it under the terms of the GNU General Public License
Change 1 of 1 Show Entire File dulwich/​errors.py Stacked
 
1
2
3
 
4
5
6
 
1
2
 
3
4
5
6
@@ -1,6 +1,6 @@
 # errors.py -- errors for dulwich  # Copyright (C) 2007 James Westby <jw+debian@jameswestby.net> -# Copyright (C) 2009 Jelmer Vernooij <jelmer@samba.org> +# Copyright (C) 2009-2012 Jelmer Vernooij <jelmer@samba.org>  #  # This program is free software; you can redistribute it and/or  # modify it under the terms of the GNU General Public License
 
1
2
 
3
4
5
 
1
 
2
3
4
5
@@ -1,5 +1,5 @@
 # __init__.py -- Fast export/import functionality -# Copyright (C) 2010 Jelmer Vernooij <jelmer@samba.org> +# Copyright (C) 2010-2013 Jelmer Vernooij <jelmer@samba.org>  #  # This program is free software; you can redistribute it and/or  # modify it under the terms of the GNU General Public License
Change 1 of 3 Show Entire File dulwich/​hooks.py Stacked
 
1
 
2
3
4
 
20
21
22
23
24
25
26
 
30
31
32
33
 
34
35
36
 
1
2
3
4
5
 
21
22
23
 
24
25
26
 
30
31
32
 
33
34
35
36
@@ -1,4 +1,5 @@
 # hooks.py -- for dealing with git hooks +# Copyright (C) 2012-2013 Jelmer Vernooij and others.  #  # This program is free software; you can redistribute it and/or  # modify it under the terms of the GNU General Public License @@ -20,7 +21,6 @@
 import os  import subprocess  import tempfile -import warnings    from dulwich.errors import (   HookError, @@ -30,7 +30,7 @@
 class Hook(object):   """Generic hook object."""   - def execute(elf, *args): + def execute(self, *args):   """Execute the hook with the given args     :param args: argument list to hook
Change 1 of 1 Show Entire File dulwich/​index.py Stacked
 
1
2
 
3
4
5
 
1
 
2
3
4
5
@@ -1,5 +1,5 @@
 # index.py -- File parser/writer for the git index file -# Copyright (C) 2008-2009 Jelmer Vernooij <jelmer@samba.org> +# Copyright (C) 2008-2013 Jelmer Vernooij <jelmer@samba.org>  #  # This program is free software; you can redistribute it and/or  # modify it under the terms of the GNU General Public License
 
1
2
 
3
4
5
 
1
 
2
3
4
5
@@ -1,5 +1,5 @@
 # object_store.py -- Object store for git objects -# Copyright (C) 2008-2012 Jelmer Vernooij <jelmer@samba.org> +# Copyright (C) 2008-2013 Jelmer Vernooij <jelmer@samba.org>  # and others  #  # This program is free software; you can redistribute it and/or
 
1
2
3
 
4
5
6
 
1
2
 
3
4
5
6
@@ -1,6 +1,6 @@
 # objects.py -- Access to base git objects  # Copyright (C) 2007 James Westby <jw+debian@jameswestby.net> -# Copyright (C) 2008-2009 Jelmer Vernooij <jelmer@samba.org> +# Copyright (C) 2008-2013 Jelmer Vernooij <jelmer@samba.org>  #  # This program is free software; you can redistribute it and/or  # modify it under the terms of the GNU General Public License
Change 1 of 1 Show Entire File dulwich/​pack.py Stacked
 
1
2
3
 
4
5
6
 
1
2
 
3
4
5
6
@@ -1,6 +1,6 @@
 # pack.py -- For dealing with packed git objects.  # Copyright (C) 2007 James Westby <jw+debian@jameswestby.net> -# Copyright (C) 2008-2009 Jelmer Vernooij <jelmer@samba.org> +# Copyright (C) 2008-2013 Jelmer Vernooij <jelmer@samba.org>  #  # This program is free software; you can redistribute it and/or  # modify it under the terms of the GNU General Public License
Change 1 of 1 Show Entire File dulwich/​patch.py Stacked
 
1
2
 
3
4
5
 
1
 
2
3
4
5
@@ -1,5 +1,5 @@
 # patch.py -- For dealing with packed-style patches. -# Copyright (C) 2009 Jelmer Vernooij <jelmer@samba.org> +# Copyright (C) 2009-2013 Jelmer Vernooij <jelmer@samba.org>  #  # This program is free software; you can redistribute it and/or  # modify it under the terms of the GNU General Public License
 
1
2
3
 
4
5
6
 
1
2
 
3
4
5
6
@@ -1,6 +1,6 @@
 # protocol.py -- Shared parts of the git protocols  # Copyright (C) 2008 John Carr <john.carr@unrouted.co.uk> -# Copyright (C) 2008 Jelmer Vernooij <jelmer@samba.org> +# Copyright (C) 2008-2012 Jelmer Vernooij <jelmer@samba.org>  #  # This program is free software; you can redistribute it and/or  # modify it under the terms of the GNU General Public License
Change 1 of 1 Show Entire File dulwich/​repo.py Stacked
 
1
2
3
 
4
5
6
 
1
2
 
3
4
5
6
@@ -1,6 +1,6 @@
 # repo.py -- For dealing with git repositories.  # Copyright (C) 2007 James Westby <jw+debian@jameswestby.net> -# Copyright (C) 2008-2009 Jelmer Vernooij <jelmer@samba.org> +# Copyright (C) 2008-2013 Jelmer Vernooij <jelmer@samba.org>  #  # This program is free software; you can redistribute it and/or  # modify it under the terms of the GNU General Public License
Change 1 of 1 Show Entire File dulwich/​server.py Stacked
 
1
2
 
3
4
5
 
1
2
3
4
5
6
@@ -1,5 +1,6 @@
 # server.py -- Implementation of the server side git protocols  # Copyright (C) 2008 John Carr <john.carr@unrouted.co.uk> +# Coprygith (C) 2011-2012 Jelmer Vernooij <jelmer@samba.org>  #  # This program is free software; you can redistribute it and/or  # modify it under the terms of the GNU General Public License
Change 1 of 1 Show Entire File dulwich/​web.py Stacked
 
1
2
 
3
4
5
 
1
2
3
4
5
6
@@ -1,5 +1,6 @@
 # web.py -- WSGI smart-http server  # Copyright (C) 2010 Google, Inc. +# Copyright (C) 2012 Jelmer Vernooij <jelmer@samba.org>  #  # This program is free software; you can redistribute it and/or  # modify it under the terms of the GNU General Public License