From 3ada214989701ddaaa73c88fe984ccbb26c07905 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Sat, 5 May 2012 20:27:36 +0200 Subject: [PATCH] Added sha1_from_bin --- public_html/libgit/base.php | 6 ++++++ public_html/test.php | 2 ++ 2 files changed, 8 insertions(+) diff --git a/public_html/libgit/base.php b/public_html/libgit/base.php index 7b15c05..bd9f7bc 100644 --- a/public_html/libgit/base.php +++ b/public_html/libgit/base.php @@ -18,8 +18,14 @@ function pretty_dump($input) echo($output); } +function sha1_from_bin($bin) +{ + return bin2hex($bin); +} + require(dirname(__FILE__) . "/class.repository.php"); require(dirname(__FILE__) . "/class.object.php"); +require(dirname(__FILE__) . "/class.tree.php"); require(dirname(__FILE__) . "/class.commit.php"); require(dirname(__FILE__) . "/class.actor.php"); ?> diff --git a/public_html/test.php b/public_html/test.php index 0508c2a..19d2026 100644 --- a/public_html/test.php +++ b/public_html/test.php @@ -3,4 +3,6 @@ require("libgit/base.php"); $s = new GitRepository("/home/occupy/testrepo.git"); pretty_dump($s->GetObject("54e03e490b1bee1c154c3545bf258cab0629ee02")); +pretty_dump($s->GetObject("98d99489382a3541e6783bb2083554785f3eb72a")); pretty_dump($s->GetObject("9d8e0ba4a30f6a5d775a879c42c7de5aed4530c6")); +pretty_dump($s->GetObject("710bfee4440517255475bf7c5454c0bdbb3b3e56"));