diff options
| author | Lars Hjemli <hjemli@gmail.com> | 2007-05-23 22:46:54 +0200 | 
|---|---|---|
| committer | Lars Hjemli <hjemli@gmail.com> | 2007-05-23 22:46:54 +0200 | 
| commit | bbcdc290c6c0b8121e57dbca4bd66c9e5e729959 (patch) | |
| tree | fb762f2153b60cc4f997095626af70baa16ce7b1 /ui-summary.c | |
| parent | Remove unused variable from ui-repolist.c:read_agefile() (diff) | |
| download | cgit-bbcdc290c6c0b8121e57dbca4bd66c9e5e729959.tar.gz cgit-bbcdc290c6c0b8121e57dbca4bd66c9e5e729959.tar.bz2 cgit-bbcdc290c6c0b8121e57dbca4bd66c9e5e729959.zip | |
Add repo.readme parameter
This parameter can be used to specify a repo-specific includefile, which will
then be printed on the summary page for the repo.
If the parametervalue is a not an absolute path, it is taken to be relative
to repo.path.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to '')
| -rw-r--r-- | ui-summary.c | 14 | 
1 files changed, 8 insertions, 6 deletions
| diff --git a/ui-summary.c b/ui-summary.c index 5799773..5c1fc33 100644 --- a/ui-summary.c +++ b/ui-summary.c @@ -153,7 +153,7 @@ static int cgit_print_archive_cb(const char *refname, const unsigned char *sha1,  		hashcpy(fileid, sha1);  	}  	if (!header) { -		html("<table>"); +		html("<table id='downloads'>");  		html("<tr><th>Downloads</th></tr>");  		header = 1;  	} @@ -193,16 +193,18 @@ static void cgit_print_archives()  void cgit_print_summary()  { -	html("<table class='list nowrap'>"); -	html("<tr class='nohover'><td id='summary' colspan='3'>"); +	html("<div id='summary'>"); +	cgit_print_archives();  	html("<h2>");  	html_txt(cgit_repo->name);  	html(" - ");  	html_txt(cgit_repo->desc);  	html("</h2>"); -	html("</td><td id='archivelist'>"); -	cgit_print_archives(); -	html("</td></tr>"); +	if (cgit_repo->readme) +		html_include(cgit_repo->readme); +	html("</div>"); + +	html("<table class='list nowrap'>");  	cgit_print_branches();  	html("<tr class='nohover'><td colspan='4'> </td></tr>");  	cgit_print_tags(); | 
