summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2007-05-16 01:38:02 +0200
committerLars Hjemli <hjemli@gmail.com>2007-05-16 01:39:08 +0200
commit97de8f0554649544c78aeb35a4c3431f17667ec5 (patch)
treec418bbd4e37606c0d63ea2e304825a4975b45b9a
parentdff894d12953a8a3cd7cdca2357771212a2f57d6 (diff)
downloadcgit-97de8f0554649544c78aeb35a4c3431f17667ec5.tar.gz
cgit-97de8f0554649544c78aeb35a4c3431f17667ec5.tar.bz2
cgit-97de8f0554649544c78aeb35a4c3431f17667ec5.zip
Add support for tree listing via h parameter
This makes the tree page benefit from repo.defbranch. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to '')
-rw-r--r--ui-tree.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/ui-tree.c b/ui-tree.c
index db63e13..032a966 100644
--- a/ui-tree.c
+++ b/ui-tree.c
@@ -69,8 +69,18 @@ void cgit_print_tree(const char *rev, const char *hex, char *path)
{
struct tree *tree;
unsigned char sha1[20];
+ struct commit *commit;
curr_rev = xstrdup(rev);
+ get_sha1(rev, sha1);
+ commit = lookup_commit_reference(sha1);
+ if (!commit || parse_commit(commit)) {
+ cgit_print_error(fmt("Invalid head: %s", rev));
+ return;
+ }
+ if (!hex)
+ hex = sha1_to_hex(commit->tree->object.sha1);
+
if (get_sha1_hex(hex, sha1)) {
cgit_print_error(fmt("Invalid object id: %s", hex));
return;
title='2011-02-15 04:16:32 +0100'>2011-02-15fixRené 'Necoro' Neumann1-1/+4 2011-02-15fixRené 'Necoro' Neumann1-1/+1 2011-02-15mysql fixRené 'Necoro' Neumann1-1/+6 2011-02-15More nice things for constant expensesRené 'Necoro' Neumann8-16/+107 2011-02-15Ignore more filesRené 'Necoro' Neumann1-0/+3 2011-02-15Add content-typeRené 'Necoro' Neumann1-0/+1 2011-02-07Update copyrightRené 'Necoro' Neumann1-1/+1 2011-02-07Instead of overloading the normal 'render' function, add a 'render_utf8' methodRené 'Necoro' Neumann3-6/+3 2011-02-07missed oneRené 'Necoro' Neumann1-1/+1 2011-02-07unicode aware formRené 'Necoro' Neumann1-1/+10 2011-02-07Use Unicode as expectedRené 'Necoro' Neumann1-2/+2 2010-08-26but not editRené 'Necoro' Neumann1-1/+8 2010-08-26Make add redirect to addRené 'Necoro' Neumann1-1/+1 2010-07-27Add datepicker to add/editRené 'Necoro' Neumann3-3/+23 2010-07-27Fix sizes of datepickerRené 'Necoro' Neumann1-3/+3 2010-07-27Add jQuery UI -- DatepickerRené 'Necoro' Neumann17-0/+1168 2010-07-27Add category manipulation supportRené 'Necoro' Neumann10-6/+85 2010-07-26Konstante KostenRené 'Necoro' Neumann1-1/+1 2010-07-26Added link to edit the constant stuffRené 'Necoro' Neumann1-1/+1 2010-07-26Added addition and modification of constant stuffRené 'Necoro' Neumann3-8/+106 2010-07-05Only show right nav arrow, if the following month is not in the futureRené 'Necoro' Neumann2-14/+20 2010-07-05Add month navigationRené 'Necoro' Neumann6-5/+35 2010-07-05Add iconRené 'Necoro' Neumann2-1/+2 2010-07-05change cursorRené 'Necoro' Neumann1-0/+5 2010-07-05Some restructuringRené 'Necoro' Neumann3-28/+45 2010-07-05Closed/Open imagesRené 'Necoro' Neumann4-0/+146 2010-05-25Move page templates into their own folderRené 'Necoro' Neumann5-5/+7 2010-05-25Added the ability to edit an expenseRené 'Necoro' Neumann3-9/+34 2010-05-12FixRené 'Necoro' Neumann1-2/+2 2010-05-12Show more detailsRené 'Necoro' Neumann4-19/+42 2010-05-12Create new form each timeRené 'Necoro' Neumann1-24/+26 2010-05-10Fix redirect in AddRené 'Necoro' Neumann1-1/+1 2010-05-10Added the 'add expense' stuffRené 'Necoro' Neumann4-3/+69