Fix top-of-file license URLs here in gitdb too · gitpython-developers/gitdb@e0769d1

33 files changed

lines changed

Original file line numberDiff line numberDiff line change

@@ -1,7 +1,7 @@

11

# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors

22

#

33

# This module is part of GitDB and is released under

4-

# the New BSD License: http://www.opensource.org/licenses/bsd-license.php

4+

# the New BSD License: https://opensource.org/license/bsd-3-clause/

55

"""Initialize the object database module"""

66
77

import sys

Original file line numberDiff line numberDiff line change

@@ -1,7 +1,7 @@

11

# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors

22

#

33

# This module is part of GitDB and is released under

4-

# the New BSD License: http://www.opensource.org/licenses/bsd-license.php

4+

# the New BSD License: https://opensource.org/license/bsd-3-clause/

55

"""Module with basic data structures - they are designed to be lightweight and fast"""

66

from gitdb.util import bin_to_hex

77
Original file line numberDiff line numberDiff line change

@@ -1,7 +1,7 @@

11

# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors

22

#

33

# This module is part of GitDB and is released under

4-

# the New BSD License: http://www.opensource.org/licenses/bsd-license.php

4+

# the New BSD License: https://opensource.org/license/bsd-3-clause/

55
66

from gitdb.db.base import *

77

from gitdb.db.loose import *

Original file line numberDiff line numberDiff line change

@@ -1,7 +1,7 @@

11

# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors

22

#

33

# This module is part of GitDB and is released under

4-

# the New BSD License: http://www.opensource.org/licenses/bsd-license.php

4+

# the New BSD License: https://opensource.org/license/bsd-3-clause/

55

"""Contains implementations of database retrieveing objects"""

66

from gitdb.util import (

77

join,

Original file line numberDiff line numberDiff line change

@@ -1,7 +1,7 @@

11

# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors

22

#

33

# This module is part of GitDB and is released under

4-

# the New BSD License: http://www.opensource.org/licenses/bsd-license.php

4+

# the New BSD License: https://opensource.org/license/bsd-3-clause/

55

from gitdb.db.base import (

66

CompoundDB,

77

ObjectDBW,

Original file line numberDiff line numberDiff line change

@@ -1,7 +1,7 @@

11

# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors

22

#

33

# This module is part of GitDB and is released under

4-

# the New BSD License: http://www.opensource.org/licenses/bsd-license.php

4+

# the New BSD License: https://opensource.org/license/bsd-3-clause/

55

from gitdb.db.base import (

66

FileDBBase,

77

ObjectDBR,

Original file line numberDiff line numberDiff line change

@@ -1,7 +1,7 @@

11

# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors

22

#

33

# This module is part of GitDB and is released under

4-

# the New BSD License: http://www.opensource.org/licenses/bsd-license.php

4+

# the New BSD License: https://opensource.org/license/bsd-3-clause/

55

"""Contains the MemoryDatabase implementation"""

66

from gitdb.db.loose import LooseObjectDB

77

from gitdb.db.base import (

Original file line numberDiff line numberDiff line change

@@ -1,7 +1,7 @@

11

# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors

22

#

33

# This module is part of GitDB and is released under

4-

# the New BSD License: http://www.opensource.org/licenses/bsd-license.php

4+

# the New BSD License: https://opensource.org/license/bsd-3-clause/

55

"""Module containing a database to deal with packs"""

66

from gitdb.db.base import (

77

FileDBBase,

Original file line numberDiff line numberDiff line change

@@ -1,7 +1,7 @@

11

# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors

22

#

33

# This module is part of GitDB and is released under

4-

# the New BSD License: http://www.opensource.org/licenses/bsd-license.php

4+

# the New BSD License: https://opensource.org/license/bsd-3-clause/

55

import codecs

66

from gitdb.db.base import (

77

CompoundDB,

Original file line numberDiff line numberDiff line change

@@ -1,7 +1,7 @@

11

# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors

22

#

33

# This module is part of GitDB and is released under

4-

# the New BSD License: http://www.opensource.org/licenses/bsd-license.php

4+

# the New BSD License: https://opensource.org/license/bsd-3-clause/

55

"""Module with common exceptions"""

66

from gitdb.util import to_hex_sha

77