Pārlūkot izejas kodu

Implement Repo.get_config().

Jelmer Vernooij 15 gadi atpakaļ
vecāks
revīzija
0ab7df6ebd
3 mainītis faili ar 16 papildinājumiem un 0 dzēšanām
  1. 2 0
      NEWS
  2. 10 0
      dulwich/repo.py
  3. 4 0
      dulwich/tests/test_repository.py

+ 2 - 0
NEWS

@@ -9,6 +9,8 @@
   * --without-speedups option to setup.py to allow building/installing 
     without the C extensions. (Hal Wine, Jelmer Vernooij)
 
+  * Implement Repo.get_config(). (Jelmer Vernooij)
+
 0.4.1	2010-01-03
 
  FEATURES

+ 10 - 0
dulwich/repo.py

@@ -342,6 +342,10 @@ class Repo(object):
     def get_parents(self, sha):
         return self.commit(sha).parents
 
+    def get_config(self):
+        from configobj import ConfigObj
+        return ConfigObj(os.path.join(self._controldir, 'config'))
+
     def commit(self, sha):
         return self._get_object(sha, Commit)
 
@@ -480,6 +484,12 @@ class Repo(object):
         ret.refs.set_ref("HEAD", "refs/heads/master")
         open(os.path.join(path, 'description'), 'wb').write("Unnamed repository")
         open(os.path.join(path, 'info', 'excludes'), 'wb').write("")
+        open(os.path.join(path, 'config'), 'wb').write("""[core]
+    repositoryformatversion = 0
+    filemode = true
+    bare = false
+    logallrefupdates = true
+""")
         return ret
 
     create = init_bare

+ 4 - 0
dulwich/tests/test_repository.py

@@ -135,3 +135,7 @@ class RepositoryTests(unittest.TestCase):
     def test_get_tags_empty(self):
         r = self.open_repo('ooo_merge.git')
         self.assertEquals({}, r.refs.as_dict('refs/tags'))
+
+    def test_get_config(self):
+        r = self.open_repo('ooo_merge.git')
+        self.assertEquals({}, r.get_config())