author | Lars Hjemli <hjemli@gmail.com> | 2007-06-18 07:42:10 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-06-18 08:38:40 (UTC) |
commit | f69250358a74efa5d7d9c562b2cdd80fad1430f1 (patch) (unidiff) | |
tree | 19c0ddab227d1c27a49046e559618cd067169591 /ui-shared.c | |
parent | 4a0be586662843382ecfa53af34a13b291312bc0 (diff) | |
download | cgit-f69250358a74efa5d7d9c562b2cdd80fad1430f1.zip cgit-f69250358a74efa5d7d9c562b2cdd80fad1430f1.tar.gz cgit-f69250358a74efa5d7d9c562b2cdd80fad1430f1.tar.bz2 |
Add version info from git-describe
A new script, gen-version.sh, is now invoked from 'make version' to generate
the file VERSION. This file contains a version identifier generated by
git-describe and is included in the Makefile.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | ui-shared.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-shared.c b/ui-shared.c index 15d8254..110c696 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -257,17 +257,17 @@ void cgit_print_docstart(char *title, struct cacheitem *item) | |||
257 | ttl_seconds(item->ttl))); | 257 | ttl_seconds(item->ttl))); |
258 | html("\n"); | 258 | html("\n"); |
259 | html(cgit_doctype); | 259 | html(cgit_doctype); |
260 | html("<html>\n"); | 260 | html("<html>\n"); |
261 | html("<head>\n"); | 261 | html("<head>\n"); |
262 | html("<title>"); | 262 | html("<title>"); |
263 | html_txt(title); | 263 | html_txt(title); |
264 | html("</title>\n"); | 264 | html("</title>\n"); |
265 | htmlf("<meta name='generator' content='cgit v%s'/>\n", cgit_version); | 265 | htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); |
266 | html("<link rel='stylesheet' type='text/css' href='"); | 266 | html("<link rel='stylesheet' type='text/css' href='"); |
267 | html_attr(cgit_css); | 267 | html_attr(cgit_css); |
268 | html("'/>\n"); | 268 | html("'/>\n"); |
269 | html("</head>\n"); | 269 | html("</head>\n"); |
270 | html("<body>\n"); | 270 | html("<body>\n"); |
271 | } | 271 | } |
272 | 272 | ||
273 | void cgit_print_docend() | 273 | void cgit_print_docend() |