From d7479317e33ec08d6a7a0d841722058c2b6aa98a Mon Sep 17 00:00:00 2001 From: scott Chacon Date: Mon, 19 Nov 2007 07:50:33 -0800 Subject: more speed improvements --- camping/gitweb.rb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'camping') diff --git a/camping/gitweb.rb b/camping/gitweb.rb index eb9417c..bae922a 100644 --- a/camping/gitweb.rb +++ b/camping/gitweb.rb @@ -1,6 +1,6 @@ require 'rubygems' require 'camping' -require 'git' +require 'lib/git' # # gitweb is a web frontend on git @@ -207,8 +207,9 @@ module GitWeb::Views h1 @repo.name h2 @repo.path + gtags = @git.tags @tags = {} - @git.tags.each { |tag| @tags[tag.sha] ||= []; @tags[tag.sha] << tag.name } + gtags.each { |tag| @tags[tag.sha] ||= []; @tags[tag.sha] << tag.name } url = 'http:' + URL(Fetch, @repo.id, '').to_s @@ -247,7 +248,7 @@ module GitWeb::Views end h3 'tags' - @git.tags.each do |tag| + gtags.each do |tag| li { a tag.name, :href => R(Commit, @repo, tag.sha) } end -- cgit