From c69b55610e3cceb5cbd48784fb7cc0458d463f3a Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Sat, 24 Feb 2007 21:39:51 -0800 Subject: Revert "i'm confused?" This reverts commit 71520ba4e171195c983320b9c00e37c215fad39c. --- bn_django/git_browse/models.py | 36 ++++++++++------------ bn_django/git_browse/settings.py | 7 +---- .../git_browse/templates/git_browse/base.html | 2 +- .../git_browse/templates/git_browse/blob.html | 2 +- .../git_browse/templates/git_browse/commit.html | 2 +- .../git_browse/templates/git_browse/full_log.html | 2 +- bn_django/git_browse/views.py | 19 ++---------- 7 files changed, 23 insertions(+), 47 deletions(-) (limited to 'bn_django/git_browse') diff --git a/bn_django/git_browse/models.py b/bn_django/git_browse/models.py index 315365a..c914cac 100644 --- a/bn_django/git_browse/models.py +++ b/bn_django/git_browse/models.py @@ -1,13 +1,6 @@ from django.db import models from django.conf import settings -try: - GITBROWSE_BASE = settings.GITBROWSE_BASE -except AttributeError: - GITBROWSE_BASE='/home' -if GITBROWSE_BASE[-1] != '/': - GITBROWSE_BASE += '/' - try: GITCOMMAND = settings.GITCOMMAND except AttributeError: @@ -23,11 +16,14 @@ if ADMIN_URL[-1] == '/': # Create your models here. class Repository(models.Model): - path = models.FilePathField("relative path to repository", \ - path=GITBROWSE_BASE,recursive=True,match="^.*\.git$",unique=True, \ +# path = models.FilePathField("relative path to repository", \ +# path=GITBROWSE_BASE,recursive=True,match="\.git$",unique=True, \ +# blank=False) + path = models.CharField("path to git dir", maxlength=386, unique=True,\ + blank=False, default="/srv/git/") + name = models.CharField(_("name"), maxlength=80, unique=True) + slug = models.SlugField("short description of repo", unique=True,\ blank=False) - name = models.CharField(_("name"), maxlength=80) - slug = models.SlugField(prepopulate_from=("path",),unique=True) git_version = models.CharField(_("git version"), maxlength=100, \ default="git version 1.4.4", blank=True, \ help_text="Output of \'git --version\'") @@ -46,29 +42,27 @@ class Repository(models.Model): def getGITPREFIX(self): """returns the glued together combination of GITCOMMAND and GITBROWSE_BASE needed to call git commands on this repository""" - return 'cd ' + str(GITBROWSE_BASE) + str(self.slug) + '; ' \ - + str(GITCOMMAND) + ' --git-dir=' + str(GITBROWSE_BASE) \ - + str(self.slug) + '/.git ' + return 'cd ' + str(self.path) + '; ' + str(GITCOMMAND) + ' --git-dir='\ + + str(self.path) def scan(self): import os GITPREFIX = self.getGITPREFIX() heads = dict() - for h in os.listdir(GITBROWSE_BASE + self.slug + '/.git/refs/heads/'): - f = open(GITBROWSE_BASE + self.slug + '/.git/refs/heads/' + h,'r') + for h in os.listdir(self.path + '/refs/heads/'): + f = open(self.path + '/refs/heads/' + h,'r') heads[h.strip()] = f.readline().strip() f.close() tags = dict() - for t in os.listdir(GITBROWSE_BASE + self.slug + '/.git/refs/tags/'): - f = open(GITBROWSE_BASE + self.slug + '/.git/refs/tags/' + t,'r') + for t in os.listdir(self.path + '/refs/tags/'): + f = open(self.path + '/refs/tags/' + t,'r') tags[t.strip()] = f.readline().strip() f.close() return (GITPREFIX, heads, tags) def shortlog(self): import commands - GITPREFIX = 'cd ' + GITBROWSE_BASE + self.slug + '; ' + GITCOMMAND \ - + ' --git-dir=' + GITBROWSE_BASE + self.slug + '/.git ' + GITPREFIX = self.getGITPREFIX() logtxt = commands.getoutput(GITPREFIX \ + ' log --relative-date --max-count=6 | cat') log_items = logtxt.split('\ncommit ') @@ -195,6 +189,8 @@ class Commit(models.Model): raw = raw.splitlines() if len(raw) < 3: return self.treehash = raw[0].split()[-1].strip() + if not raw[1].startswith('parent'): + raw.insert(1, 'parent ') self.parenthash = raw[1][6:].strip() self.author = raw[2].split()[1] self.author_date = time.ctime(int(raw[2].split()[-2])) diff --git a/bn_django/git_browse/settings.py b/bn_django/git_browse/settings.py index 53799ab..87b957d 100644 --- a/bn_django/git_browse/settings.py +++ b/bn_django/git_browse/settings.py @@ -1,7 +1,2 @@ - -# full path to directory holding all the git repositories (or sys links to -# the repositories) -GITBROWSE_BASE = '/srv/git/' - # fill path to the git command -GITCOMMAND = '/usr/bin/git' +GITCOMMAND = '/usr/local/bin/git' diff --git a/bn_django/git_browse/templates/git_browse/base.html b/bn_django/git_browse/templates/git_browse/base.html index c86e03b..89a0139 100644 --- a/bn_django/git_browse/templates/git_browse/base.html +++ b/bn_django/git_browse/templates/git_browse/base.html @@ -4,7 +4,7 @@ {{ block.super }} - + {% endblock %} diff --git a/bn_django/git_browse/templates/git_browse/blob.html b/bn_django/git_browse/templates/git_browse/blob.html index 1fb1437..3730807 100644 --- a/bn_django/git_browse/templates/git_browse/blob.html +++ b/bn_django/git_browse/templates/git_browse/blob.html @@ -7,7 +7,7 @@ {{ size|filesizeformat }}

Download zip

Raw contents

-
{{ contents }}
+
{{ contents|escape|wordwrap:80 }}
{% else %}

No such object: {{ hash }}

{% endif %} {% endblock %} diff --git a/bn_django/git_browse/templates/git_browse/commit.html b/bn_django/git_browse/templates/git_browse/commit.html index 3a1aefd..b4ee4a6 100644 --- a/bn_django/git_browse/templates/git_browse/commit.html +++ b/bn_django/git_browse/templates/git_browse/commit.html @@ -22,7 +22,7 @@

Committer Date

{{ commit.committer_date }}
{% if commit.rawdiff %} -
{{ commit.rawdiff }}
+
{{ commit.rawdiff|escape|wordwrap:80 }}
{% else %}No diff{% endif %} {% else %}

No such object: {{ hash }}

diff --git a/bn_django/git_browse/templates/git_browse/full_log.html b/bn_django/git_browse/templates/git_browse/full_log.html index d2a1311..913a3c4 100644 --- a/bn_django/git_browse/templates/git_browse/full_log.html +++ b/bn_django/git_browse/templates/git_browse/full_log.html @@ -11,7 +11,7 @@
Author: {{ item.author }}
Date: {{ item.date }}
Comment: -
{{ item.comment|wordwrap:80 }}
+
{{ item.comment|escape|wordwrap:80 }}
{% endfor %} {% endif %} {% endblock %} diff --git a/bn_django/git_browse/views.py b/bn_django/git_browse/views.py index f28aa76..ed653df 100644 --- a/bn_django/git_browse/views.py +++ b/bn_django/git_browse/views.py @@ -8,11 +8,6 @@ import os, commands from models import * -try: - GITBROWSE_BASE = settings.GITBROWSE_BASE+'/' -except AttributeError: - GITBROWSE_BASE='/home/' - try: GITCOMMAND = settings.GITCOMMAND except AttributeError: @@ -41,11 +36,9 @@ def view_tree(request, repo, hash=None,branch=None): (GITPREFIX, heads, tags) = therepo.scan() if(hash == None): - head_ref = commands.getoutput('cd ' + GITBROWSE_BASE \ - + therepo.slug +'/.git; cat HEAD') + head_ref = commands.getoutput('cd ' + therepo.path + '; cat HEAD') head_ref = head_ref.split()[1] - hash = commands.getoutput('cd ' + GITBROWSE_BASE + therepo.slug \ - +'/.git; cat ' + head_ref) + hash = commands.getoutput('cd ' + therepo.path + '; cat ' + head_ref) tree_ls = commands.getoutput(GITPREFIX + ' ls-tree ' + hash) tree_objs = list() @@ -70,9 +63,6 @@ def view_log(request, repo, hash=None): therepo = get_object_or_404(Repository, slug=repo) (GITPREFIX, heads, tags) = therepo.scan() - GITPREFIX = 'cd ' + GITBROWSE_BASE + therepo.slug + '; ' + GITCOMMAND \ - + ' --git-dir=' + GITBROWSE_BASE + therepo.slug + '/.git ' - logtxt = commands.getoutput(GITPREFIX + ' log | cat') log_items = logtxt.split('\ncommit ') if (log_items[0] == ''): @@ -126,11 +116,6 @@ def view_obj(request, repo, hash, branch=None): (GITPREFIX, heads, tags) = therepo.scan() obj_type = commands.getoutput(GITPREFIX + ' cat-file -t ' + hash) - #if(obj_type == 'tree'): - # redirect_to('../tree/' + hash); - #if(obj_type == 'blob'): - # redirect_to('../blob/' + hash); - obj_contents = commands.getoutput(GITPREFIX + ' cat-file -p ' + hash) obj_size = commands.getoutput(GITPREFIX + ' cat-file -s ' + hash) -- cgit v1.2.3